/*
Theme Name: komachi-kaigo
*/
/****************************************
	   General Setting 
*****************************************/
body {
  padding-right: 0 !important;
}
body * {
  font-family: "Noto Sans JP", sans-serif;
  color: #12345a;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

a {
  display: block;
  color: inherit !important;
  text-decoration: none !important;
}
a:hover {
  opacity: 0.8;
}

img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

body.bg {
  position: relative;
  background: #51bdab;
  padding: 4.5rem 0;
  margin: 0;
  width: 100%;
  height: auto !important;
}
@media (max-width: 768px) {
  body.bg {
    padding: 0;
  }
}

article {
  position: relative;
  background: #fff;
  display: block;
  width: 33%;
  min-width: 480px;
  margin: 0 auto;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1882352941);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1882352941);
}
@media screen and (max-width: 768px) {
  article {
    width: 100%;
    min-width: inherit;
  }
}

header .header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30%;
  top: 4.5rem;
  left: 17%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 20px;
  border-radius: 10px;
  z-index: 9999;
}
@media (max-width: 1200px) {
  header .header {
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
    border-radius: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
header .header__logo {
  max-width: 320px;
  margin-bottom: 4.375rem;
}
@media (max-width: 1200px) {
  header .header__logo {
    display: none;
  }
}
header .header__menu {
  max-width: 340px;
  list-style: none;
}
@media (max-width: 1200px) {
  header .header__menu {
    max-width: 100%;
    width: 100%;
  }
}
header .header__menu li a {
  background: #fff;
  color: #05a78c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-weight: 900;
  padding: 12px 1rem;
  margin-bottom: 7px;
  border: solid 2px #b3e3d9;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  header .header__menu li a {
    padding: 8px 1rem;
  }
}
header .header__menu li a span {
  color: #05a78c;
  background: #fcf203;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .header .instagram {
  width: 40px;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 1201px) {
  header .nav__btn {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  header .nav__btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    z-index: 200;
    background: white;
    border-radius: 50%;
  }
  header .nav__btn:hover {
    cursor: pointer;
  }
  header .nav__btn span {
    position: absolute;
    display: block;
    width: 16px;
    height: 2px;
    background: #05967e;
    top: 21px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    border-radius: 10px;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
  }
  header .nav__btn span::before, header .nav__btn span::after {
    content: "";
    display: block;
    height: 2px;
    background: #05967e;
    position: absolute;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
  }
  header .nav__btn span::before {
    top: -6px;
    width: 16px;
  }
  header .nav__btn span::after {
    top: 6px;
    width: 16px;
  }
  header .nav__btn .hmb.open {
    background: transparent;
  }
  header .nav__btn .hmb.open::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 1;
    top: 0%;
  }
  header .nav__btn .hmb.open::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 1;
    top: 0%;
  }
  header nav.hide {
    left: 200%;
    opacity: 0;
  }
  header nav {
    background: #51bdab !important;
    position: fixed;
    left: 50%;
    top: 0px;
    width: 100%;
    max-width: 520px;
    height: 100vh;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
    padding: 70px 20px 0rem;
    z-index: 100;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
    opacity: 1;
    overflow-y: scroll;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: #51bdab;
  }
  header nav::-webkit-scrollbar {
    display: none;
  }
  header nav ul {
    width: 100%;
  }
  header nav li {
    position: relative;
    display: block;
    width: 100%;
    background: #fff;
    color: #05967e;
    padding: 0;
    border-radius: 10px;
  }
}

.alper {
  position: fixed;
  width: 280px;
  top: 5.625rem;
  right: 8%;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.alper img {
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.alper .alperFukidashi {
  width: 178px;
  top: 0;
  right: 0;
  position: absolute;
}
@media (max-width: 1200px) {
  .alper {
    display: none;
  }
}
.alper.alper-scale img {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}
.alper .alperText {
  width: 130px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3rem;
  font-family: "Yusei Magic", sans-serif;
  font-size: 1.125em;
  font-weight: 900 !important;
  color: #fff;
  top: 42px;
  right: 30px;
  text-align: center;
}

main {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
main .en {
  font-family: "Outfit", sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
main h2 {
  text-align: center;
  font-size: 2em;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
main h2 span {
  color: #05a78c;
}
main section {
  width: 100%;
}
main .inner {
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media screen and (max-width: 768px) {
  main .inner {
    padding: 0 1rem;
  }
}
main p {
  font-weight: 500;
}
main .btn {
  position: relative;
  background: #05a78c;
  color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 900;
  width: 90%;
  padding: 1rem;
  margin: 1.5rem auto;
  border-radius: 40px;
  z-index: 1;
  -webkit-box-shadow: 0 6px #05967e;
          box-shadow: 0 6px #05967e;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
main .btn:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
main .btn .arrow {
  position: absolute;
  content: "";
  background: #fff;
  width: 1.5rem;
  height: 1.5rem;
  top: 50%;
  right: 14px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
main .btn .arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: #05a78c;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 1px;
}
main .btn .arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #05a78c;
  border-right: 2px solid #05a78c;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 6px;
  top: 50%;
}
main .btn.back .arrow {
  right: auto;
  left: 30px;
}
main .btn.back .arrow::after {
  right: auto;
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
main .hukidashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .hukidashi__inner {
  position: relative;
  background: #ffffff;
  display: inline-block;
  text-align: center;
  padding: 7px 13px;
  margin: 0 auto 11px;
  border-radius: 9999px;
  font-size: 1.25em;
  font-weight: 900;
}
main .hukidashi__inner span {
  color: #f66e1e;
}
main .hukidashi__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 11px 6px 0 6px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
main .mv {
  position: relative;
  background: #51bdab;
  padding-top: 5rem;
  border-radius: 30px 30px 0 0;
}
@media (max-width: 768px) {
  main .mv {
    padding-top: 3rem;
    border-radius: 0;
  }
}
main .mv::after {
  content: "";
  position: absolute;
  bottom: -4rem;
  width: 100%;
  height: 4rem;
  border-radius: 50%/0 0 100% 100%;
  background: #51bdab;
}
main .mv__title {
  max-width: 320px;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main .mv__title {
    width: 66%;
  }
}
main .mv__image {
  padding-left: 6%;
}
main .mv__box {
  position: relative;
  margin: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  main .mv__box {
    margin: 0.75rem;
  }
}
main .mv__box-item {
  position: relative;
  text-align: center;
  background: #fff;
  color: #51bdab;
  font-size: 16px;
  font-weight: 900;
  width: 32.5%;
  padding: 0.75rem;
  margin-top: -4rem;
  border: solid 2px #b3e3d9;
  border-radius: 10px;
  z-index: 2;
}
@media (max-width: 768px) {
  main .mv__box-item {
    font-size: 14px;
  }
}
main .mv__box-item span {
  color: #f66e1e;
}
@media (max-width: 768px) {
  main .mv__box-item:last-of-type {
    padding: 0.75rem 0.25rem;
  }
}
main .mv__box-alper {
  position: absolute;
  left: -10px;
  bottom: -3rem;
  width: 26%;
  min-width: 110px;
  z-index: 1;
}
main .news {
  background: #f8f3d7;
  padding: 7rem 0 3rem;
  margin-top: -3rem;
}
main .news h2 {
  position: relative;
  color: #51bdab;
  text-align: left;
  font-size: 1.25em;
  padding-left: 1.125rem;
  margin-bottom: 11px;
}
main .news h2::before {
  content: "";
  position: absolute;
  background: url(./img/news-icon.svg);
  width: 7px;
  height: 8px;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
main .news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  background: #fff;
  padding: 13px 2.625rem 13px 1rem;
  margin-bottom: 12px;
  border-radius: 6px;
  position: relative;
}
main .news__box .date {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
}
main .news__box::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #05a78c;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 1px;
}
main .news__box::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #05a78c;
  border-right: 2px solid #05a78c;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 12px;
  top: 50%;
}
main .instagram {
  padding: 0 5% 3rem;
  background: #f8f3d7;
}
main .instagram .wpsr-ig-post {
  border-radius: 1em;
}
@media screen and (max-width: 768px) {
  main .instagram .wpsr-col-xs-12 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
            flex: 0 0 50% !important;
    gap: 0.5em !important;
  }
}
main .instagram .btn img {
  width: 1.3em;
  height: 1.3em;
  vertical-align: middle;
  margin-right: 0.4em;
}
main .instagram .btn span.iconLink {
  background: white;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1rem;
}
main .instagram .btn span.iconLink::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.5rem;
  border: solid 2px #51bdab;
  top: 40%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
main .instagram .btn span.iconLink::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.5rem;
  border-left: solid 2px #51bdab;
  border-bottom: solid 2px #51bdab;
  top: 55%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
main .service {
  background: #c9eae5;
  padding: 4.5rem 0 8.75rem;
  margin-top: -2rem;
  border-radius: 40px 40px 0 0;
}
main .service .hukidashi {
  margin-bottom: 2.625rem;
}
main .service__box {
  position: relative;
  background: #fff;
  margin-bottom: 2rem;
  border-radius: 20px;
}
main .service__box-tag {
  position: absolute;
  font-family: "Outfit", sans-serif;
  background: #fcf203;
  color: #05a78c;
  font-size: 14px;
  font-weight: 900;
  padding: 7px 1rem;
  top: -1rem;
  left: 50%;
  border-radius: 60px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
main .service__box h3 {
  text-align: center;
  background: #05a78c;
  color: #fff;
  font-size: 1.375em;
  font-weight: 900;
  padding: 1.75rem 1rem 1rem;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 768px) {
  main .service__box h3 {
    font-size: 1.25em;
  }
}
main .service__box-cnt {
  font-weight: 500;
  padding: 1rem 1.5rem 1.25rem;
}
main .hl {
  background: #ffffff;
  background-image: linear-gradient(90deg, rgba(201, 234, 229, 0.5019607843) 1px, transparent 1px), linear-gradient(rgba(201, 234, 229, 0.5019607843) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 27px 27px;
  padding: 4.5rem 0 5.625rem;
  margin-top: -5.5rem;
  overflow: hidden;
  border-radius: 40px 40px 0 0 !important;
}
main .hl h2 span {
  font-size: 0.75em;
}
@media (max-width: 768px) {
  main .hl h2 span {
    font-size: 0.675em;
  }
}
main .hl h2 .small {
  color: inherit;
}
main .hl .hukidashi__inner {
  background: #f8f3d7;
  padding: 12px 1.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  main .hl .hukidashi__inner {
    font-size: 1.125em;
  }
}
main .hl .hukidashi__inner::after {
  border-color: #f8f3d7 transparent transparent;
}
main .hl__staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main .hl__staff img {
  width: 31%;
}
main .hl__staff img:nth-child(2) {
  margin-top: 2rem;
}
main .hl__lead {
  text-align: center;
  font-weight: 500;
  margin: 1rem auto 2rem;
}
main .hl__hr {
  background: radial-gradient(circle farthest-side, #51bdab, #51bdab 35%, transparent 35%, transparent);
  background-size: 15px 8px;
  display: inline-block;
  width: 100%;
  height: 8px;
  margin-bottom: 2rem;
}
main .hl .shien {
  width: 95%;
  margin: 0 auto;
}
main .point {
  background: #f8f3d7;
  padding: 4.5rem 0 10rem;
  margin-top: -1rem;
  border-radius: 40px 40px 0 0;
}
main .point__box {
  position: relative;
  background: #fff;
  padding: 2.375rem 1.5rem 1.375rem;
  margin-top: 3.25rem;
  border-radius: 20px;
}
main .point__box:first-child {
  padding: 1rem 1.5rem 1.375rem;
}
main .point__box .hukidashi {
  position: absolute;
  left: 50%;
  top: -1.75rem;
  width: 320px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
main .point__box .hukidashi__inner {
  background: #f0e8b9;
  padding: 6px 1.75rem 12px;
}
main .point__box .hukidashi__inner::after {
  border-color: #f0e8b9 transparent transparent;
}
main .point__box img {
  margin-bottom: 1.25rem;
}
main .store {
  position: relative;
  padding: 4.5rem 0 0;
  margin-top: -5.5rem;
  background: #fff;
  border-radius: 40px 40px 0 0;
}
main .store img {
  position: absolute;
  max-width: 185px;
  width: 45%;
  top: -3rem;
  right: 1.5rem;
}
main .store table {
  width: 100%;
}
main .store table tr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1rem 0 1.25rem;
}
main .store table tr:first-child::before {
  position: absolute;
  content: "";
  width: 100%;
  background: radial-gradient(circle farthest-side, #12345a, #12345a 35%, transparent 35%, transparent);
  background-size: 8px 3px;
  display: inline-block;
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
}
main .store table tr::after {
  position: absolute;
  content: "";
  width: 100%;
  background: radial-gradient(circle farthest-side, #12345a, #12345a 35%, transparent 35%, transparent);
  background-size: 8px 3px;
  display: inline-block;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
}
main .store table tr th,
main .store table tr td {
  font-weight: 500;
}
main .store table tr th {
  width: 30%;
  text-align: left;
}
main .store table tr td {
  width: 65%;
}
main .store table tr td a {
  display: inline;
  text-decoration: underline !important;
}
main .store__lead {
  text-align: center;
  font-weight: bold;
  margin: 2.25rem auto 3.4rem;
}
main .store__lead span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(40%, #e4f7f4));
  background: linear-gradient(transparent 50%, #e4f7f4 40%);
}
main .tel {
  background: #e4f7f4;
  padding: 2.2rem 0 3.875rem;
  position: relative;
  margin-bottom: 4rem;
}
main .tel .fukidashi {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  background: white;
  border: solid 2px #12345a;
  padding: 0.5em 1em;
  border-radius: 3rem;
  font-size: 1.25em;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .tel .fukidashi {
    font-size: 1em;
  }
}
main .tel .fukidashi span {
  color: #05a78c;
}
main .tel .fukidashi::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: white;
  position: absolute;
  border-bottom: solid 2px #12345a;
  border-right: solid 2px #12345a;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
}
main .tel__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
main .tel__box img {
  width: 80px;
}
main .tel__box p {
  font-family: "Outfit", sans-serif;
  font-size: 3em;
}
@media screen and (max-width: 768px) {
  main .tel__box p {
    font-size: 2em;
  }
}
main .tel__time {
  font-size: 14px;
  text-align: center;
}
main .tel .btn {
  position: absolute;
  margin: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  background: #f66e1e;
  -webkit-box-shadow: 0 6px #ce5812;
          box-shadow: 0 6px #ce5812;
}
main .tel .btn span:before {
  background: #f66e1e;
}
main .tel .btn span:after {
  border-color: #f66e1e;
}
main .nh {
  padding: 1.25rem;
  margin: 1.5rem auto;
  border: solid 2px #dfe0d0;
  border-radius: 20px;
}
main .nh img {
  width: 90%;
  margin: 0 auto 1.25rem;
}
main .nh .btn {
  margin: 1rem 0 0;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #678f38;
}
main .nh .btn span.iconLink {
  background: white;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1rem;
}
main .nh .btn span.iconLink::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.5rem;
  border: solid 2px #678f38;
  top: 40%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
main .nh .btn span.iconLink::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.5rem;
  border-left: solid 2px #678f38;
  border-bottom: solid 2px #678f38;
  top: 55%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
main .access {
  background: #c9eae5;
  padding: 4.5rem 0 0rem;
  margin-top: 4.5rem;
  border-radius: 40px 40px 0 0;
}
main .access iframe {
  width: 100%;
  aspect-ratio: 3/2;
  border: solid 10px #fff;
  border-radius: 20px;
}
main .access__box {
  position: relative;
  background: #fff;
  padding: 2rem 10px;
  margin-top: 3.125rem;
  border-radius: 20px;
}
main .access__box .hukidashi {
  position: absolute;
  left: 50%;
  top: -1.75rem;
  width: 320px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
main .access__box .hukidashi__inner {
  background: #12345a;
  color: #fff;
  padding: 6px 1.75rem 10px;
}
main .access__box .hukidashi__inner::after {
  border-color: #12345a transparent transparent;
}
main #contact {
  background: white;
  margin-top: 4.5rem;
  padding: 4.5rem 0 5rem;
  border-radius: 40px 40px 0 0;
}
main #contact h2 span {
  color: #05a78c;
}
main #contact h3 {
  margin-top: 1.5rem;
}
main #contact h3 .must {
  background: #e6314d;
  color: white;
  font-size: 0.75em;
  padding: 0.125em 0.75em;
  border-radius: 2rem;
  margin-left: 0.5rem;
}
main #contact input.text {
  width: 100%;
  padding: 0.5em;
  background: #ebebeb;
  border-radius: 0.5em;
  margin-top: 0.5em;
}
main #contact textarea {
  width: 100%;
  padding: 0.5em;
  background: #ebebeb;
  border-radius: 0.5em;
  margin-top: 0.5em;
}
main #contact .policy a {
  display: inline;
  text-decoration: underline !important;
}

.footer {
  position: relative;
  background: #51bdab;
  border-radius: 0 0 30px 30px;
  width: 33%;
  min-width: 480px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1882352941);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1882352941);
}
@media screen and (max-width: 768px) {
  .footer {
    width: 100%;
    min-width: inherit;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: -4rem;
  width: 100%;
  height: 4rem;
  border-radius: 50%/100% 100% 0 0;
  background: #51bdab;
}
.footer__logo {
  max-width: 180px;
  margin: 0 auto 2rem;
}
.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__link a {
  color: #fff !important;
  text-decoration: underline !important;
  padding: 0 1.25rem;
}
.footer__link a:first-child {
  border-right: solid 1px #fff;
}
.footer__copy {
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin: 1.5rem auto 2rem;
}
.footer .pagetop {
  width: 130px;
  margin: 0 auto;
}

main.lower .archive-header {
  background: #51bdab;
  padding: 3rem 0 0.5rem;
  position: relative;
  margin-bottom: 4rem;
}
main.lower .archive-header::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2rem;
  width: 100%;
  height: 2rem;
  background: #51bdab;
  border-radius: 0 0 90% 90%/0 0 70% 70%;
  z-index: 0;
}
main.lower .archive-header .en {
  color: white;
}
main.lower .archive-header h1,
main.lower .archive-header .archive-title {
  text-align: center;
  font-size: 2em;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white;
}
main.lower .archive-header .archive-description {
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}
main.lower .archive-header .archive-description .category {
  font-size: 16px;
  color: white;
  margin-bottom: 0.5rem;
}
main.lower .archive-header .archive-description .date {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: white;
}

main.archive .archive-content {
  padding: 2rem 0 7rem;
  margin-top: -2rem;
}
main.archive .archive-content .inner h2 {
  position: relative;
  color: #51bdab;
  text-align: left;
  font-size: 1.25em;
  padding-left: 1.125rem;
  margin-bottom: 11px;
}
main.archive .archive-content .inner h2::before {
  content: "";
  position: absolute;
  background: url(./img/news-icon.svg);
  width: 7px;
  height: 8px;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
main.archive .archive-content .inner .news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  background: #e8faf7;
  padding: 13px 2.625rem 13px 1rem;
  margin-bottom: 12px;
  border-radius: 6px;
  position: relative;
}
main.archive .archive-content .inner .news__box .date {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
}
main.archive .archive-content .inner .news__box::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #05a78c;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 1px;
}
main.archive .archive-content .inner .news__box::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #05a78c;
  border-right: 2px solid #05a78c;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 12px;
  top: 50%;
}
main.archive .archive-content .archive-no-posts {
  text-align: center;
  padding: 3rem 0;
}
main.archive .archive-content .archive-no-posts p {
  font-weight: 500;
}
main.archive .pagination {
  padding: 2rem 0;
}
main.archive .pagination .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.archive .pagination .inner .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
main.archive .pagination .inner .page-numbers li a,
main.archive .pagination .inner .page-numbers li span {
  display: block;
  padding: 0.25rem;
  color: #05a78c;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
}
main.archive .pagination .inner .page-numbers li a:hover,
main.archive .pagination .inner .page-numbers li span:hover {
  background: #05a78c;
  color: #fff;
}
main.archive .pagination .inner .page-numbers li .current {
  background: #05a78c;
  color: #fff;
}
main.archive .pagination .inner .page-numbers li .dots {
  border: none;
  background: transparent;
  color: #05a78c;
  padding: 0.5rem 0.25rem;
}
main.archive .pagination .inner .page-numbers li .dots:hover {
  background: transparent;
  color: #05a78c;
}

main.single .single-content {
  padding: 0 0 7rem;
  margin-top: -2rem;
}
main.single .single-content__body {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  line-height: 1.8;
}
main.single .single-content__body h1 {
  font-size: 1.25em;
  font-weight: 900;
  color: #12345a;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px dotted #12345a;
}
main.single .single-content__body p {
  margin-bottom: 1.5rem;
  font-weight: 500;
}
main.single .single-content__body h2 {
  font-size: 1.25em;
  font-weight: 900;
  color: #12345a;
  margin: 2em 0 1em;
  text-align: left;
  position: relative;
  padding-left: 1em;
}
main.single .single-content__body h2::before {
  content: url(./img/h2.svg);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
}
main.single .single-content__body h3 {
  font-size: 1.125em;
  font-weight: 900;
  color: #05a78c;
  margin: 1.5em 0 1em;
}
main.single .single-content__body img {
  border-radius: 10px;
  margin: 1.5rem 0;
}
main.single .single-content__body a {
  display: inline;
  color: #05a78c !important;
  text-decoration: underline !important;
}
main.single .single-content__body a:hover {
  opacity: 0.8;
}
main.single .single-content__body ul,
main.single .single-content__body ol {
  margin: 1.5rem 0;
  padding: 1em;
  border: solid 2px #e8faf7;
  border-radius: 6px;
}
main.single .single-content__body ul li,
main.single .single-content__body ol li {
  margin-bottom: 0.5rem;
}
main.single .single-content__body table tr {
  border-top: none;
  background-image: repeating-linear-gradient(to right, #12345a 0px, #12345a 2px, transparent 2px, transparent 8px);
  background-position: top;
  background-size: 8px 2px;
  background-repeat: repeat-x;
  padding-top: 2px;
}
main.single .single-content__body table tr:last-of-type {
  border-bottom: none;
  background-image: repeating-linear-gradient(to right, #12345a 0px, #12345a 2px, transparent 2px, transparent 8px), repeating-linear-gradient(to right, #12345a 0px, #12345a 2px, transparent 2px, transparent 8px);
  background-position: top, bottom;
  background-size: 8px 2px, 8px 2px;
  background-repeat: repeat-x, repeat-x;
  padding-bottom: 2px;
}
main.single .single-content__body table tr td {
  border: none;
}
main.single .single-content__body ul {
  list-style: none;
}
main.single .single-content__body ul li {
  padding-left: 1em;
  position: relative;
}
main.single .single-content__body ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #05a78c;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc((1.8em - 6px) / 2);
}
main.single .controller {
  padding: 2rem 0;
}
main.single .controller .post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}
main.single .controller .post-navigation a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #05a78c;
  border: 2px solid #b3e3d9;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
main.single .controller .post-navigation a:hover {
  background: #05a78c;
  color: #fff;
}