@charset "UTF-8";
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: #fff;
  font-family: "Yu Gothic Medium", YuGothic, "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #4d4d4d;
  height: auto !important;
  overflow: hidden;
}

.fax {
  pointer-events: none;
}

.mb20 {
  margin-bottom: 20px;
}

.font_bold {
  font-weight: bold;
  color: #6ad46a;
  font-size: 18px;
}

a {
  color: #4d4d4d;
}

figure {
  margin: 0;
  text-align: center;
}

p {
  line-height: 1.8;
}
p:first-of-type {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

ol,
ul {
  line-height: 1.8;
  padding: 0 0 0 1.8em;
}

li {
  margin: 0 0 1em;
}
li:last-child {
  margin-bottom: 0;
}

.pc-only {
  display: block !important;
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .col:not(:last-child) {
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
}

.row:not(:last-child) {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .row:not(:last-child) {
    margin-bottom: 40px;
    margin-bottom: 4rem;
  }
}

.bread {
  margin-bottom: 80px;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .bread {
    margin-bottom: 60px;
    margin-bottom: 6rem;
  }
}
.bread .container {
  padding: 0 20px;
  max-width: 1040px;
}
@media (max-width: 767px) {
  .bread .container {
    padding: 0 4.5%;
    max-width: calc(1000px + 9%);
  }
}
.bread ul {
  list-style: none;
  padding-left: 0;
}
.bread ul > * {
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
}
.bread ul > *:not(:last-child) {
  margin-right: 2em;
}
.bread ul > *:not(:last-child):before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: calc(100% + 0.6em);
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  transform: rotate(45deg);
}
.bread a {
  text-decoration: none;
}

body:not(.home) main > section > .container {
  padding: 0 20px;
  max-width: 1040px;
}
@media (max-width: 767px) {
  body:not(.home) main > section > .container {
    padding: 0 4.5%;
    max-width: calc(1000px + 6%);
  }
}

.column_main {
  margin-bottom: 180px;
}
@media (max-width: 767px) {
  .column_main {
    margin-bottom: 100px;
  }
}
.column_main > section > .container {
  max-width: none;
  padding: 0;
}
.column_main > section:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .column_main > section:not(:last-child) {
    margin-bottom: 60px;
  }
}

.pager {
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.pager .nav-links {
  display: flex;
}
.pager .nav-links > * {
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f3d3;
  color: #6ad46a;
  border: 1px solid #6ad46a;
  border-radius: 100px;
  font-weight: bold;
}
.pager .nav-links > *:not(:last-child) {
  margin-right: 0.5em;
}
.pager .nav-links > *.current {
  background: #6ad46a;
  color: #fff;
}
.pager .nav-links > *.prev {
  position: relative;
}
.pager .nav-links > *.prev:before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #6ad46a;
  border-right: 1px solid #6ad46a;
  transform: translateX(-50%) rotate(222deg);
}
.pager .nav-links > *.next {
  position: relative;
}
.pager .nav-links > *.next:before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #6ad46a;
  border-right: 1px solid #6ad46a;
  transform: translateX(-50%) rotate(45deg);
}

/*==================================================
アコーディオンのためのcss
===================================*/
.qa {
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.qa .qa-area {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  counter-reset: number 0;
}
.qa .qa-area li {
  border: 1px solid rgba(106, 212, 106, 0.2);
  border-radius: 4px;
}
.qa .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  padding: 20px 60px 20px calc(26px + 2.8em);
  transition: all 0.5s ease;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 0;
  min-height: 4.8em;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .qa .title {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.qa .title::after {
  content: "+";
  position: absolute;
  width: 1em;
  height: 1em;
  background: transparent;
  font-weight: bold;
  transition: 0.3s;
  top: 0;
  right: 20px;
  left: auto;
  transform: rotate(0deg);
  bottom: 0;
  transform-origin: 50% 50%;
  margin: auto;
  display: inline-block;
  font-size: 1.5em;
  text-indent: 0.15em;
  line-height: 0.9em;
}
.qa .title:before {
  font-weight: bold;
  width: 2.6em;
  border-radius: 4px;
  height: 2.6em;
  font-size: 1em;
  position: static;
  display: inline-block;
  margin-right: 0.7em;
  line-height: 2.6em;
  color: #fff;
  text-indent: 0.55em;
  letter-spacing: 0.2em;
  counter-increment: number 1;
  content: "Q" counter(number);
  position: absolute;
  top: calc(20px + 0em);
  left: 20px;
  bottom: auto;
  margin: 0 auto;
}
.qa .title.close::after {
  transform: rotate(45deg);
}
.qa .box {
  display: none;
  /*はじめは非表示*/
  background: #e6f3d3;
  margin: 0 20px 20px;
  padding: 20px;
  border-radius: 4px;
  position: relative;
}

.highlight_ttl > h2,
.highlight_ttl h3,
.highlight_ttl h4 {
  background: #e6f3d3;
  padding: 1em;
}
.highlight_ttl > h2:before, .highlight_ttl > h2:after,
.highlight_ttl h3:before,
.highlight_ttl h3:after,
.highlight_ttl h4:before,
.highlight_ttl h4:after {
  content: none;
}

.step > div {
  border: 1px solid #6ad46a;
}
@media (min-width: 768px) {
  .step > div {
    display: flex;
  }
}
.step > div:not(:last-child) {
  position: relative;
  margin-bottom: 50px;
}
.step > div:not(:last-child):before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: auto;
  left: 0;
  right: 0;
  bottom: auto;
  margin: 0 auto;
  top: calc(100% + 10px);
  border-top: 3px solid #6ad46a;
  border-right: 3px solid #6ad46a;
  transform: rotate(135deg);
}
.step h3 {
  font-size: 18px;
  font-size: 1.8rem;
}
.step h3:before {
  content: none;
}
.step .col {
  padding: 1em 0.5em;
}
.step .col:first-child {
  background: #6ad46a;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: left;
}

.btn {
  display: block;
  overflow: hidden;
  margin: auto;
}
.btn a {
  display: block;
  border: 1px solid #6ad46a;
  color: #fff;
  background: #6ad46a;
  padding: 0.82em calc(6% + 16px);
  margin: 0 auto 1px;
  max-width: 316px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  line-height: 1.4;
  border-radius: 100px;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
}
.btn a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  margin: auto;
  width: 5px;
  height: 5px;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.btn a:hover {
  background: #fff;
  color: #6ad46a;
}
.btn a:hover:before {
  border-top: 1px solid #6ad46a;
  border-right: 1px solid #6ad46a;
}

header {
  transition: transform 0.3s;
  background: #e6f3d3;
  transform: translateY(0);
  position: relative;
  z-index: 1000;
}
header.active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transform: translateY(-50px);
  transition: transform 0.3s;
  box-shadow: 0 0px 10px rgba(77, 77, 77, 0.08);
}
@media (min-width: 1100px) {
  header.active .header_info_wrap {
    top: 14px;
  }
  header.active .title {
    padding: 30px 0;
    min-height: auto;
  }
  header.active .gnav {
    padding-bottom: 10px;
  }
}
header .container {
  max-width: calc(1500px + 12%);
  padding: 0 6%;
}
@media (max-width: 1099px) {
  header .container {
    padding: 0 4.5%;
    max-width: calc(1000px + 9%);
  }
}
header .hdr_text h1 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 0.3em 0;
  text-align: left;
  background: transparent;
  position: relative;
  margin-bottom: 0;
  z-index: 1;
  display: flex;
}
@media (max-width: 1099px) {
  header .hdr_text h1 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
header .hdr_text h1:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -1;
  background: #6ad46a;
  position: absolute;
  top: 0;
  left: -300%;
  right: -300%;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1099px) {
  header .header {
    position: relative;
    width: 100%;
    z-index: 50;
  }
}
header .box {
  display: table;
  position: relative;
}
@media (max-width: 1099px) {
  header .box {
    width: 100%;
  }
}
header .title {
  margin: 0;
  font-size: 0;
}
@media (min-width: 1100px) {
  header .title {
    display: table-cell;
    vertical-align: middle;
    min-height: 164px;
    padding: 60px 0 40px;
  }
}
@media (max-width: 1099px) {
  header .title {
    padding: 16px 0;
  }
}
header .title a {
  display: block;
  width: 272px;
  height: 44px;
}
@media (max-width: 1099px) {
  header .title a {
    width: 120px;
    height: auto;
  }
}
@media (min-width: 1100px) {
  header .gnav {
    display: table-cell;
    vertical-align: bottom;
    width: 100%;
    text-align: right;
    padding-bottom: 30px;
  }
}
header .gnav > ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
@media (max-width: 1099px) {
  header .gnav > ul {
    transform-origin: center top;
    visibility: hidden;
    transition: 0.3s;
    transform: rotateX(90deg);
    padding-bottom: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0 -5%;
  }
}
@media (min-width: 1100px) {
  header .gnav > ul li {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
  }
  header .gnav > ul li:first-child:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    border-left: 1px dashed rgba(77, 77, 77, 0.8);
    border-left: 1px solid rgba(77, 77, 77, 0.4);
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  header .gnav > ul li:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    border-right: 1px solid rgba(77, 77, 77, 0.4);
    border-right: 1px dashed rgba(77, 77, 77, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
@media (max-width: 1099px) {
  header .gnav > ul li {
    background: rgba(106, 212, 106, 0.96);
    margin: 0;
  }
  header .gnav > ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
header .gnav > ul li a {
  padding: 0em 1.875em;
  color: #4d4d4d;
  text-decoration: none;
  font-weight: bold;
  font-family: "Yu Gothic Medium", YuGothic, "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  text-align: center;
  font-size: 1.8rem;
  border-bottom: 2px solid rgba(106, 212, 106, 0);
  transition: 0.3s;
}
@media (min-width: 1100px) {
  header .gnav > ul li a:hover {
    border-bottom: 2px solid #6ad46a;
  }
}
@media (max-width: 1499px) {
  header .gnav > ul li a {
    font-size: 1.6rem;
    padding: 0em 1.125em;
  }
}
@media (max-width: 1099px) {
  header .gnav > ul li a {
    color: #fff;
    padding: 1em 6%;
    text-align: left;
  }
}
header .gnav > ul li a span {
  color: #6ad46a;
  display: block;
  margin-top: 0.3em;
  font-family: "Chelsea Market", cursive;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1;
}
@media (max-width: 1499px) {
  header .gnav > ul li a span {
    font-size: 1.2rem;
  }
}
@media (max-width: 1099px) {
  header .gnav > ul li a span {
    display: none;
  }
}
header .header_info_wrap {
  position: absolute;
  top: 28px;
  left: auto;
  right: 0;
  bottom: auto;
  margin: 0 auto;
}
@media (max-width: 1099px) {
  header .header_info_wrap {
    display: none;
  }
}
header .header_info_wrap .header_info {
  text-align: right;
}
header .header_info_wrap .icon {
  display: block;
  max-width: 1.2em;
  height: 1.2em;
  margin-right: 0.25em;
}
header .header_info_wrap .icon img {
  width: 100%;
}
header .header_info_wrap .tel {
  display: flex;
  line-height: 1;
  align-items: center;
  justify-content: flex-end;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 0;
}
header .header_info_wrap .tel a {
  color: #6ad46a;
}
header .header_info_wrap p {
  color: #6ad46a;
  font-weight: bold;
}
header .header_info_wrap p:not(.tel) {
  font-size: 14px;
  font-size: 1.4rem;
}
header .header_info_wrap p:not(:first-child) {
  margin-top: 0.3em;
}
header .sp_header_info_wrap {
  position: absolute;
  top: 50%;
  left: auto;
  right: 30px;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0 auto;
  display: none;
}
@media (max-width: 767px) {
  header .sp_header_info_wrap {
    display: block;
  }
}
header .sp_header_info_wrap .header_info {
  text-align: right;
}
header .sp_header_info_wrap .icon {
  max-width: 40px;
}
header .sp_header_info_wrap .icon a {
  display: block;
  font-size: 0;
}
header .sp_header_info_wrap .icon img {
  width: 100%;
}
@media (max-width: 1099px) {
  header .btn-gnavi {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    bottom: auto;
    right: 0;
    margin: 0 auto;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transition: transform 0.3s;
    overflow: hidden;
    z-index: 50;
  }
  header .btn-gnavi:after, header .btn-gnavi:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 4px;
    background: #6ad46a;
    transition: transform 0.5s;
  }
  header .btn-gnavi:before {
    top: 0;
  }
  header .btn-gnavi:after {
    bottom: 0;
  }
  header .btn-gnavi span {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 4px;
    background: #6ad46a;
    transition: transform 0.5s;
  }
  header .btn-gnavi.close:not(.fix) {
    background: none;
  }
  header .btn-gnavi.close:not(.fix):before {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    background: #6ad46a;
  }
  header .btn-gnavi.close:not(.fix):after {
    bottom: 50%;
    transform: translate(0, 50%) rotate(-45deg);
    background: #6ad46a;
  }
  header .btn-gnavi.close:not(.fix) span {
    transform: translate(100%, -50%);
  }
}
header.menu_open .gnav > ul {
  visibility: visible;
  transform: rotateX(0deg);
}

.mv-pc-only {
  display: block !important;
}
@media (max-width: 767px) {
  .mv-pc-only {
    display: none !important;
  }
}

.mv-sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .mv-sp-only {
    display: block !important;
  }
}

.mv {
  position: relative;
}
.mv .slick-slider {
  margin-bottom: 0;
  height: 100%;
}
.mv .slick-slider li {
  margin-bottom: 0;
}
.mv .slick-slider li img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mv .slick-slider .slick-list {
  height: 100%;
}
.mv .slick-slider .slick-list .slick-track {
  height: 100%;
}
.mv .copy {
  position: absolute;
  padding-left: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  z-index: 1000;
}
.mv .copy > li {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.mv .copy > li img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50%;
  max-width: 500px;
  max-height: 482px;
  z-index: 1001;
}

@media (max-width: 750px) {
  .mv .copy > li img {
    width: 90%;
  }
}
.mv {
  background: #e6f3d3;
}
@media (min-width: 768px) {
  .mv {
    padding: 0 6% 80px;
  }
}
.mv .mv-inner {
  position: relative;
}
.mv .slick {
  max-width: 1500px;
  margin: auto;
  overflow: hidden;
  padding-left: 0;
}
@media (min-width: 768px) {
  .mv .slick {
    border-radius: 40px;
  }
}
.mv .mv-copy {
  max-width: 1500px;
  position: absolute;
  top: 0;
  padding-left: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  list-style: none;
  z-index: 1;
  margin: auto;
}
.mv .mv-copy img {
  max-width: 1224px;
  top: auto;
  left: 4%;
  right: auto;
  bottom: 7.1428571429%;
  position: absolute;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .mv .mv-copy img {
    max-width: none;
    max-height: none;
    width: 63.3540372671%;
    min-width: 620px;
  }
}
@media (max-width: 767px) {
  .mv .mv-copy img {
    width: 90.5333333333%;
    bottom: 4.6666666667%;
    min-width: auto;
  }
}

#top-footer {
  background: #e6f3d3;
  padding: 100px 0 90px;
  padding: 10rem 0 9rem;
  margin-bottom: 0;
  color: #4d4d4d;
}
@media (max-width: 767px) {
  #top-footer {
    padding: 80px 0;
    padding: 8rem 0;
  }
}
#top-footer .footer_logo img {
  display: block;
}
@media (min-width: 768px) {
  #top-footer .box {
    display: grid;
    grid-template: "text-box table-box" auto "btn-box table-box" 1fr/1fr 55%;
    grid-gap: 40px 8%;
  }
}
#top-footer .text-box {
  grid-area: text-box;
}
#top-footer .text-box p {
  margin: 0;
}
#top-footer .text-box p:not(.tel):not(.more) {
  line-height: 1.625;
}
#top-footer .text-box p:not(:last-child) {
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  #top-footer .table-box {
    margin-top: 20px;
  }
}
#top-footer h2 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.8;
  padding-bottom: 0;
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  #top-footer h2 {
    text-align: left;
  }
}
@media (max-width: 767px) {
  #top-footer h2 {
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
}
#top-footer h2:before {
  content: none;
}
#top-footer .tel {
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}
#top-footer .tel a {
  color: #4d4d4d;
}
#top-footer .table-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px 4.5454545455%;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  #top-footer .table-box {
    grid-area: table-box;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  #top-footer .table-box {
    letter-spacing: 0.05em;
    padding: 30px 4.5454545455%;
  }
}
#top-footer .table-box .table-box-inner {
  width: 100%;
}
#top-footer .table-box table {
  text-align: center;
}
#top-footer .table-box thead th {
  width: 8%;
  padding: 0.7em 0.1em;
  font-weight: bold;
  color: #fff;
}
#top-footer .table-box thead th.one {
  width: 10%;
}
#top-footer .table-box thead th.one-half {
  width: 15%;
}
#top-footer .table-box thead th.two {
  width: 20%;
}
#top-footer .table-box thead th.three {
  width: 30%;
}
#top-footer .table-box tbody tr > * {
  padding: 0.7em 0.1em;
  border-bottom: 1px solid #6ad46a;
}
#top-footer .table-info {
  margin-top: 0.3em;
}
#top-footer .table-info > * {
  margin: 0;
  color: #4d4d4d;
}
#top-footer .table-info > *:not(:last-child) {
  margin-bottom: 0.3em;
}
#top-footer .table-info > *.color-primary {
  color: #6ad46a;
}
@media (min-width: 768px) {
  #top-footer .btn-box {
    width: 100%;
    grid-area: btn-box;
  }
}
@media (max-width: 767px) {
  #top-footer .btn-box {
    margin-top: 30px;
  }
}

footer {
  background: #e6f3d3;
  color: #4d4d4d;
}
@media (max-width: 767px) {
  footer {
    border-top: 1px solid #4d4d4d;
  }
}
footer .pagetop {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 100;
}
footer .pagetop a {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  background: #6ad46a;
}
@media (min-width: 768px) {
  footer .pagetop a {
    width: 70px;
    height: 70px;
  }
}
footer .pagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #4d4d4d;
  border-left: 2px solid #4d4d4d;
  transform: translate(-50%, -20%) rotate(45deg);
  transition: 0.2s;
}
footer.high .pagetop {
  position: absolute;
  bottom: auto;
  right: 5%;
  top: 0;
  margin: 0;
  transform: translateY(-95%);
}
footer nav ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
}
footer nav ul li {
  display: inline-block;
  color: #4d4d4d;
}
@media (min-width: 768px) {
  footer nav ul li:not(:last-child) {
    border-right: 1px solid rgba(77, 77, 77, 0.5);
  }
}
@media (max-width: 767px) {
  footer nav ul li {
    display: block;
    border-bottom: 1px solid rgba(77, 77, 77, 0.5);
  }
}
footer nav ul li a {
  padding: 0.1em 0.8em;
  color: #4d4d4d;
  display: block;
  text-decoration: none;
}
footer nav ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  footer nav ul li a {
    padding: 0.8em 6%;
  }
}
footer .copyright {
  text-align: center;
  color: #6ad46a;
}
@media (min-width: 768px) {
  footer .copyright {
    margin-bottom: 40px;
  }
}

table {
  margin: 0 auto;
  border-spacing: 0;
  width: 100%;
}
table td,
table th {
  padding: 0.7em 0.5em;
}
table th {
  text-align: center;
  font-weight: normal;
}
table.table-typeC thead {
  background: #6ad46a;
}
table.table-typeC tbody {
  color: #4d4d4d;
}

.table-type1 {
  width: 100%;
}
.table-type1 caption {
  margin-bottom: 0.5em;
  text-align: center;
}
.table-type1 td,
.table-type1 th {
  border: 1px solid #6ad46a;
}
.table-type1 th {
  background: #6ad46a;
  color: #fff;
  text-align: left;
}
.table-type1 td {
  background: #fff;
}
.table-type1 tr:not(:last-child) td {
  border-bottom: 0;
}
.table-type1 tr:not(:first-child) th {
  border-bottom: 0;
  border-top: 1px solid #fff;
}

.table-type2 {
  width: 100%;
}
.table-type2 caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
.table-type2 td,
.table-type2 th {
  padding: 0.7em 1em;
  border-top: 1px solid #6ad46a;
  border-bottom: 1px solid #6ad46a;
}
@media (max-width: 767px) {
  .table-type2 td,
  .table-type2 th {
    padding: 0.7em 0.3em;
  }
}
.table-type2 tbody th {
  text-align: left;
}
.table-type2 td:last-child {
  text-align: right;
  white-space: nowrap;
}

.table-type3 {
  width: 100%;
}
.table-type3 caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
.table-type3 td,
.table-type3 th {
  border: 1px solid #6ad46a;
  padding: 0.7em 1em;
  text-align: center;
}
@media (max-width: 767px) {
  .table-type3 td,
  .table-type3 th {
    padding: 0.7em 0.3em;
  }
}
.table-type3 thead th {
  background: #6ad46a;
  color: #fff;
  border-bottom: 0;
}
.table-type3 thead th:not(:last-child) {
  border-right: 1px solid #fff;
}
.table-type3 thead th:first-child {
  border-left: 0;
}
.table-type3 thead th:not(:first-child) {
  border-bottom: 0;
}
.table-type3 thead td:not(:first-child) {
  border-left: 0;
}
.table-type3 tbody th {
  background: #6ad46a;
  color: #fff;
  border-left: 0;
  border-top: 1px solid #fff;
}
.table-type3 tbody td:first-child {
  border-left: 0;
}
.table-type3 tbody tr:not(:first-child) > td {
  border-top: 0;
}
.table-type3 td {
  background: #fff;
}
.table-type3 td:not(:first-child) {
  border-left: 0;
}

.table-type4 {
  width: 100%;
  border-left: 1px solid #6ad46a;
}
.table-type4 caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
.table-type4 td,
.table-type4 th {
  border: 1px solid #6ad46a;
  padding: 0.7em 1em;
  text-align: center;
}
@media (max-width: 767px) {
  .table-type4 td,
  .table-type4 th {
    padding: 0.7em 0.3em;
    font-size: 14px;
  }
}
.table-type4 thead th {
  background: #6ad46a;
  color: #fff;
  border-bottom: 0;
}
.table-type4 thead th:not(:last-child) {
  border-right: 1px solid #fff;
}
.table-type4 thead th:first-child {
  border-left: 0;
}
.table-type4 thead th:not(:first-child) {
  border-bottom: 0;
}
.table-type4 thead td:not(:first-child) {
  border-left: 0;
}
.table-type4 tbody th {
  background: rgba(106, 212, 106, 0.15);
}
.table-type4 tbody th:not(:first-child) {
  border-left: 0;
}
.table-type4 tbody th + td {
  border-left: 0;
}
.table-type4 tbody td {
  border-left: 0;
}
.table-type4 tbody tr:not(:first-child) > td {
  border-top: 0;
}
.table-type4 tbody tr > :not(:last-child) {
  text-align: left;
}
.table-type4 tbody tr > :last-child {
  text-align: right;
}
.table-type4 tbody tr > :first-child {
  text-align: left;
}
.table-type4 td {
  background: #fff;
}
.table-type4 td:not(:first-child) {
  border-left: 0;
}

h1:not(.title) {
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5;
  background: #6ad46a;
  margin: 0 0 0.5em 0;
  padding: 0.9em 4.5%;
  position: relative;
  color: #fff;
}
@media (max-width: 767px) {
  h1:not(.title) {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 1em 0;
  position: relative;
  word-wrap: break-word;
  position: relative;
  padding-bottom: 0.4285714286em;
  line-height: 1.6428571429;
  text-align: center;
  z-index: 4;
}
@media (max-width: 767px) {
  h2 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
h2:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 152px;
  height: 12px;
  background-image: linear-gradient(-45deg, #fff 25%, #6ad46a 25%, #6ad46a 50%, #fff 50%, #fff 75%, #6ad46a 75%, #6ad46a);
  background-size: 10px 10px;
}
@media (max-width: 767px) {
  h2:before {
    width: 120px;
    height: 8px;
  }
}

h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0 0 0.5em 0;
  padding-left: 16px;
  position: relative;
  word-wrap: break-word;
  line-height: 1.5;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: calc(100% - 0.6em);
  top: 0;
  left: 0;
  bottom: 0;
  background: #6ad46a;
  margin: auto;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0 0 0.4em 0;
  padding-left: 12px;
  position: relative;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
h4::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 2px;
  left: 0;
  top: 0.7em;
  background: #6ad46a;
}

[href^=tel] {
  text-decoration: none !important;
  display: inline-block;
}
@media (min-width: 767px) {
  [href^=tel] {
    pointer-events: none !important;
  }
}

[id^=top-] {
  margin-bottom: 100px;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  [id^=top-] {
    margin-bottom: 80px;
    margin-bottom: 8rem;
  }
}
[id^=top-] .container {
  max-width: calc(1200px + 12%);
  padding: 0 6%;
}
[id^=top-] h2 {
  margin-bottom: 60px;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  [id^=top-] h2 {
    margin-bottom: 40px;
    margin-bottom: 4rem;
  }
}
[id^=top-] h2 .en {
  display: block;
  color: #6ad46a;
  font-size: 0.6111111111em;
  font-family: "Chelsea Market", cursive;
  letter-spacing: 0.05em;
}
[id^=top-] p:not(.more):not(.tel):not(.fax) {
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  [id^=top-] p:not(.more):not(.tel):not(.fax) {
    letter-spacing: 0.05em;
  }
}

@media (min-width: 768px) {
  .btn.pc-left a {
    margin-left: 0;
  }
}

#top-news {
  margin-top: 100px;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  #top-news {
    margin-top: 67px;
    margin-top: 6.7rem;
  }
}
@media (min-width: 768px) {
  #top-news .news-box-wrap {
    display: flex;
    align-items: center;
    width: 100%;
  }
}
@media (min-width: 768px) {
  #top-news .ttl {
    width: 18.3333333333%;
    min-width: 160px;
    padding-right: 4%;
  }
}
#top-news h3 {
  font-size: 22px;
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  #top-news h3 {
    margin: 0;
  }
}
@media (max-width: 767px) {
  #top-news h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  #top-news .news-box {
    width: 98.3333333333%;
  }
}
#top-news .news-list {
  margin: 0;
}
@media (min-width: 768px) {
  #top-news .news-list {
    display: flex;
    flex-wrap: wrap;
  }
}
#top-news .news-list dt,
#top-news .news-list dd {
  margin-left: 0;
  margin-right: 0;
  padding: 1em 0;
  border-bottom: 1px solid rgba(77, 77, 77, 0.15);
}
#top-news .news-list dt:first-of-type,
#top-news .news-list dd:first-of-type {
  border-top: 1px solid rgba(77, 77, 77, 0.15);
}
@media (max-width: 767px) {
  #top-news .news-list dt,
  #top-news .news-list dd {
    padding-left: 0.3em;
    padding-right: 0.3em;
  }
}
@media (min-width: 768px) {
  #top-news .news-list dt {
    width: 160px;
    padding-left: 1em;
    padding-right: 3em;
  }
}
@media (max-width: 767px) {
  #top-news .news-list dt {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media (min-width: 768px) {
  #top-news .news-list dd {
    width: calc(100% - 160px);
    padding-right: 1em;
  }
}
@media (max-width: 767px) {
  #top-news .news-list dd {
    padding-top: 0.5em;
  }
  #top-news .news-list dd:first-of-type {
    border-top: 0;
  }
}
#top-news .news-list dd a {
  text-decoration: none;
}
#top-news .news-list dd a:hover {
  text-decoration: underline;
}

#top-please h2 {
  margin-bottom: 1.3em;
}
#top-please p {
  padding-left: 0;
  line-height: 1.6153846154;
  font-size: 26px;
  font-size: 2.6rem;
  text-decoration: underline;
  text-decoration-thickness: 0.5384615385em;
  text-decoration-color: #e6f3d3;
  text-underline-offset: -0.1em;
  margin-bottom: 34px;
  margin-bottom: 3.4rem 0;
  text-align: center;
}
#top-please p .br {
  display: none;
}
#top-please p:before {
  content: none;
}
@media (max-width: 767px) {
  #top-please p {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.7692307692;
    margin-bottom: 24px;
  }
  #top-please p .br {
    display: block;
  }
}

@media (min-width: 1201px) {
  #top-about .box {
    display: grid;
    gap: 1%;
    grid-template: "text img"/590px 1fr;
  }
}
#top-about .img-box {
  grid-area: img;
  position: relative;
  margin: 0;
}
@media (min-width: 1201px) {
  #top-about .img-box {
    margin-right: -16vw;
  }
}
@media (max-width: 1200px) {
  #top-about .img-box {
    margin-bottom: 30px;
    padding-top: 500px;
  }
}
@media (max-width: 767px) {
  #top-about .img-box {
    padding-top: 60%;
  }
}
#top-about .img-box img {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
}
#top-about .img-box:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #e6f3d3;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 1200px) {
  #top-about .img-box:before {
    top: 10px;
    left: 10px;
  }
}
#top-about .text-box {
  grid-area: text;
}
@media (min-width: 1201px) {
  #top-about .text-box {
    padding: 140px 0;
  }
}
#top-about h3 {
  padding-left: 0;
  line-height: 1.6153846154;
  font-size: 26px;
  font-size: 2.6rem;
  text-decoration: underline;
  text-decoration-thickness: 0.5384615385em;
  text-decoration-color: #e6f3d3;
  text-underline-offset: -0.1em;
  margin-bottom: 34px;
  margin-bottom: 3.4rem 0;
}
#top-about h3:before {
  content: none;
}
@media (max-width: 767px) {
  #top-about h3 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.7692307692;
    margin-bottom: 24px;
    text-align: center;
  }
}
#top-about .btn {
  margin-top: 40px;
}
@media (max-width: 1200px) {
  #top-about .btn.pc-left a {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  #top-about .btn {
    margin-top: 30px;
  }
}

#top-concept {
  padding: 100px 0;
  padding: 10rem 0;
  background: #e6f3d3;
}
@media (max-width: 767px) {
  #top-concept {
    padding: 80px 0;
    padding: 8rem 0;
  }
}
@media (min-width: 1201px) {
  #top-concept .container {
    max-width: calc(1000px + 12%);
    padding: 0 6%;
  }
}
#top-concept .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -17.5px;
  margin-right: -17.5px;
  margin-top: -17.5px;
}
@media (max-width: 1200px) {
  #top-concept .box {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -10px;
  }
}
#top-concept .box > * {
  width: calc(33.3% - 35px);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 3px solid #e6f3d3;
  margin: 17.5px;
}
@media (max-width: 1200px) {
  #top-concept .box > * {
    width: calc(50% - 20px);
    margin: 10px;
  }
}
@media (max-width: 450px) {
  #top-concept .box > * {
    width: calc(100% - 20px);
  }
}
#top-concept .card-item {
  padding: 50px 2.6%;
}
@media (max-width: 1200px) {
  #top-concept .card-item {
    padding: 30px 6% 40px;
  }
}
#top-concept .icon {
  max-width: 190px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  #top-concept .icon {
    max-width: 130px;
  }
}
@media (max-width: 767px) {
  #top-concept .icon {
    max-width: 90px;
  }
}
#top-concept h3 {
  padding: 0;
  text-align: center;
  color: #6ad46a;
}
#top-concept h3:before {
  content: none;
}
#top-concept p {
  font-weight: bold;
  text-align: center;
}
#top-concept .btn {
  margin-top: 50px;
  margin-top: 5rem;
}
@media (max-width: 1200px) {
  #top-concept .btn {
    margin-top: 30px;
    margin-top: 3rem;
  }
}

@media (min-width: 1201px) {
  #top-medical .container {
    max-width: calc(1000px + 12%);
    padding: 0 6%;
  }
}
@media (min-width: 768px) {
  #top-medical h2 {
    margin-bottom: 54px;
    margin-bottom: 5.4rem;
  }
}
#top-medical .p-box {
  margin-bottom: 44px;
  margin-bottom: 4.4rem;
}
@media (min-width: 768px) {
  #top-medical .p-box {
    text-align: center;
  }
}
@media (max-width: 767px) {
  #top-medical .p-box {
    margin-bottom: 20px;
    margin-bottom: 2rem;
  }
}
#top-medical .p-box > * {
  margin: 0;
}
#top-medical .p-box > *:not(:last-child) {
  margin-bottom: 0.7em;
}
#top-medical .list-box {
  border-radius: 20px;
  background: #fff;
  border: 3px solid #6ad46a;
  padding: 50px calc(6% + 4px);
}
@media (max-width: 767px) {
  #top-medical .list-box {
    padding: 30px 6%;
  }
}
#top-medical h3 {
  padding-left: 0;
  margin-top: 0;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 26px;
  margin-bottom: 2.6rem;
}
#top-medical h3:before {
  content: none;
}
#top-medical .list_inner:not(:last-child) {
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  #top-medical .list_inner:not(:last-child) {
    margin-bottom: 26px;
  }
}
#top-medical .list {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: auto;
}
@media (min-width: 768px) {
  #top-medical .list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 20% 51% 15%);
    grid-template-rows: repeat(auto-fit, minmax(1em, 1fr));
    gap: 0.5em 6.6666666667%;
  }
}
#top-medical .list > * {
  position: relative;
  padding-left: 1em;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767px) {
  #top-medical .list > *:not(:last-child) {
    margin-bottom: 1em;
  }
}
#top-medical .list > *:before {
  content: "・";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top-medical .btn {
  margin-top: 50px;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  #top-medical .btn {
    margin-top: 30px;
    margin-top: 3rem;
  }
}

#top-map {
  position: relative;
  padding-top: 400px;
  margin: 0;
}
#top-map iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.archive-list {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .archive-list {
    margin-bottom: 80px;
  }
}
.archive-list dl {
  margin-top: 0;
}
@media (min-width: 768px) {
  .archive-list dl {
    display: flex;
    flex-wrap: wrap;
  }
}
.archive-list dt,
.archive-list dd {
  padding: 1.2em 0;
  border-bottom: 1px solid rgba(77, 77, 77, 0.2);
}
@media (min-width: 768px) {
  .archive-list dt:first-of-type,
  .archive-list dd:first-of-type {
    border-top: 1px solid rgba(77, 77, 77, 0.2);
  }
}
@media (min-width: 768px) {
  .archive-list dt {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .archive-list dt {
    border-bottom: 0;
    padding-bottom: 0.6em;
    border-top: 1px solid rgba(77, 77, 77, 0.2);
  }
}
.archive-list dd {
  margin: 0;
}
@media (min-width: 768px) {
  .archive-list dd {
    width: calc(100% - 150px);
  }
}
@media (max-width: 767px) {
  .archive-list dd {
    border-top: 0;
    padding-top: 0;
  }
}

.single-wrap {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .single-wrap {
    margin-bottom: 80px;
  }
}
.single-wrap .date {
  margin-bottom: 20px;
}
.single-wrap .post-area {
  background: #e6f3d3;
  padding: 60px 6%;
}
@media (max-width: 767px) {
  .single-wrap .post-area {
    padding: 30px 6%;
  }
}
/*# sourceMappingURL=main.css.map */