: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;
  }
}
.catch {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.catch-img {
  width: min(100% - 0px, 1470px);
  margin-inline: auto;
  border-radius: 0.5rem;
  position: relative;
}
.catch-img::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  z-index: 2;
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -300px;
  background: url(".//curve.png") center/contain no-repeat;
}
.catch-img img {
  position: relative;
  z-index: 1;
}
.catch-copy {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.catch-copy h2 {
  width: fit-content;
  padding: 0.25rem 1rem;
  background: #fff;
  font-size: 2em;
}
.catch-copy h2 strong {
  color: var(--cc1);
}
.catch-copy h3 {
  color: #fff;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .catch-copy {
    position: relative;
  }
  .catch-copy h2, .catch-copy h3 {
    width: 100%;
    text-align: center;
    background: var(--cc1);
    color: #fff;
  }
  .catch-copy h2 strong, .catch-copy h3 strong {
    color: #ff0;
  }
}

.home-info {
  background: var(--bg);
  position: relative;
}
.home-info::before {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: url(".//bg_staff.webp") center/contain no-repeat;
}

.home-info-content {
  width: min(100% - 0px, 1470px);
  margin-inline: auto;
  display: flex;
  padding-bottom: 2rem;
  justify-content: flex-end;
  align-items: flex-start;
}
@media screen and (max-width: 1050px) {
  .home-info-content {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.home-info-news {
  background: #fff;
  padding: 2rem 4rem;
  border-radius: 0.5rem;
  margin-right: 4rem;
}
@media screen and (max-width: 1050px) {
  .home-info-news {
    margin-right: 0;
  }
}
.home-info-news h3 {
  font-size: 1.5rem;
  position: relative;
  width: fit-content;
  padding-right: 3rem;
}
.home-info-news h3 span {
  font-size: 1rem;
  color: var(--cc1);
  margin-left: 0.5rem;
  margin-bottom: 1rem;
}
.home-info-news h3::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 2rem;
  height: 1px;
  background: var(--cc1);
  right: 0;
  top: 0;
  bottom: 0;
}
.home-info-news ul {
  margin-block: 1rem 3rem;
}
.home-info-news ul > li {
  margin-block: 0.5rem;
}
.home-info-news ul > li time {
  margin-right: 1rem;
}
.home-info-news ul > li a {
  color: var(--text);
}
.home-info-news .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;
}
.home-info-news .u-arw {
  width: 3rem;
  position: absolute;
  inset: -0.5rem -2rem 0 auto;
  margin: auto;
  z-index: 1;
}
.home-info-news .u-arw path {
  stroke-width: 2;
  stroke: var(--text);
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 3s ease-in-out infinite;
}

.home-info-schedule {
  position: relative;
  z-index: 3;
  background: #f8f6f0;
  padding: 2rem 4rem;
  border-radius: 1rem 0 0 0;
  transform: translateY(-5rem);
}
@media screen and (max-width: 1050px) {
  .home-info-schedule {
    transform: none;
  }
}

.home-info-schedule-notes1 {
  padding-block: 1rem;
  margin-bottom: 2rem;
}
.home-info-schedule-notes1 span {
  color: var(--cc1);
}

main h2.c-hd-m3 {
  --c-hd-m3-size: 2.1rem;
  --c-hd-m3-pb: 1rem;
  --c-hd-m3-subsize: 1.5rem;
  --c-hd-m3-linesize: 3rem;
  line-height: 1.2;
}

.home-s1 {
  background: url(".//bg-ptn1.jpg") center top/contain no-repeat var(--cc1);
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.home-s1 > h2 {
  --c-hd-m3-color: #fff;
  --c-hd-m3-subcolor: #ffe2bc;
  --c-hd-m3-linecolor: #ffe2bc;
  margin-bottom: 3rem;
}
.home-s1 ul {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.home-s1 ul > li {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
}
.home-s1 ul img {
  margin-inline: auto;
}
.home-s1 ul p {
  color: var(--cc1);
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-s1 ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-s2 {
  padding-top: 4rem;
  background: url(".//bg-ptn2.jpg") center top/contain no-repeat;
}
.home-s2 > h2 {
  margin-bottom: 3rem;
}
.home-s2 .c-shinryo {
  margin-bottom: 4rem;
}

.home-s3 {
  background: url(".//bg-ptn4.jpg") center top/contain no-repeat var(--cc1);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.home-s3 > h2 {
  font-size: 2.1rem;
  line-height: 1.2;
  color: #fff;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  margin-bottom: 3rem;
}
.home-s3 > h2 span {
  font-size: 1.5rem;
  display: block;
  color: #ffe2bc;
}
.home-s3 > h2::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 3rem;
  height: 1px;
  bottom: 0;
  right: 0;
  left: 0;
  background: #ffe2bc;
}

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

.home-s2-c1 {
  background: #fff7ef;
  padding-block: 4rem;
  background: url(".//bg-home-s2-c1.webp") 45% 50%/450px no-repeat #fff7ef;
}
@media screen and (max-width: 768px) {
  .home-s2-c1 {
    background-position: center bottom;
  }
}
.home-s2-c1 .c-flex {
  align-items: center;
}
.home-s2-c1 .c-flex > div p:nth-child(1) {
  font-size: 1.125rem;
}
.home-s2-c1 .c-flex strong {
  text-decoration: underline 2px var(--cc2);
}
.home-s2-c1 .c-flex .c-btn {
  margin-top: 2rem;
}

.home-s2-c2 {
  background: url(".//bg-ptn3.jpg") center top/contain no-repeat #fffef0;
  padding-block: 3rem;
}
.home-s2-c2 h3 {
  margin-bottom: 2rem;
}
.home-s2-c2 strong {
  color: var(--cc1);
}
.home-s2-c2 .c-flex > div p:nth-child(1) {
  font-size: 1.125rem;
}
.home-s2-c2 .c-flex__imgr {
  margin-left: -2rem;
}
@media screen and (max-width: 768px) {
  .home-s2-c2 .c-flex__imgr {
    margin-left: 0;
  }
}

.home-s2-c2-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-bottom: 2rem;
}
.home-s2-c2-flex .c-cklist {
  width: 40%;
  margin-right: 2rem;
}
.home-s2-c2-flex > div {
  white-space: nowrap;
  border-radius: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .home-s2-c2-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-s2-c2-flex .c-cklist {
    width: auto;
    margin-bottom: 1rem;
  }
}

.home-s3-info {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
  display: flex;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .home-s3-info {
    flex-direction: column;
  }
}
.home-s3-info .googlemap {
  width: 50%;
  margin-right: 4rem;
}
.home-s3-info .googlemap iframe {
  width: 100%;
  height: 300px;
  margin-bottom: 1rem;
}
.home-s3-info .googlemap .c-btn {
  background: #fff885;
  color: var(--cc1);
}
@media screen and (max-width: 768px) {
  .home-s3-info .googlemap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.home-s3-info > div:nth-child(2) .c-btn {
  margin-top: 2rem;
  background: var(--cc2);
}
.home-s3-info h3 {
  font-size: 1.25rem;
}

.home-s3-tel {
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-block: 2rem;
  color: #fdffcf;
}
.home-s3-tel img {
  width: 2rem;
  margin-right: 0.5rem;
}

.home-s3-access > li {
  display: flex;
  align-items: center;
}
.home-s3-access > li img {
  width: 2rem;
  margin-right: 0.5rem;
}

.clinic-arw {
  width: 2rem;
}
.clinic-arw path {
  stroke-width: 2;
  stroke: var(--text);
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 3s ease-in-out infinite;
}

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