@charset "UTF-8";
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}
a:hover {
  opacity: 0.7;
}

ul, ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: 0.4s;
}
button:hover {
  opacity: 0.7;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 800px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 800px) {
  .pc-only {
    display: block;
  }
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

header {
  position: absolute;
  z-index: 51;
  background-color: transparent;
}
@media screen and (min-width: 1138px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 25px 30px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
@media screen and (min-width: 1720px) {
  header {
    padding-left: calc(50vw - 860px);
    padding-right: calc(50vw - 860px);
  }
}
header div.main-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 88px;
  height: 68px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 35px;
}
@media screen and (min-width: 1138px) {
  header div.main-logo {
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
header div.main-logo h1 img {
  display: block;
  width: 61px;
}
@media screen and (min-width: 1138px) {
  header div.main-logo h1 img {
    width: 120px;
  }
}
header > .main-menu {
  display: none;
}
@media screen and (min-width: 1138px) {
  header > .main-menu {
    display: block;
  }
  header > .main-menu ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 33px;
  }
  header > .main-menu ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Amiri", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #2C6F4C;
    text-align: center;
  }
  header > .main-menu ul li a span {
    position: relative;
    padding-top: 5px;
    padding-right: 10px;
    font-size: 10px;
    border-top: 0.5px solid #2C6F4C;
  }
  header > .main-menu ul li a span:after {
    content: "";
    position: absolute;
    bottom: 50%;
    right: 0;
    width: 4px;
    height: 4px;
    border-left: 0.5px solid #2C6F4C;
    border-bottom: 0.5px solid #2C6F4C;
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  header > .main-menu ul .link-btn {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    align-self: center;
    gap: 10px;
  }
  header > .main-menu ul .link-btn a {
    width: 85px;
    height: 35.91px;
    padding-top: 4px;
    font-size: 13px;
    text-align: center;
  }
  header > .main-menu ul .link-btn a:first-child {
    position: relative;
    padding-right: 10px;
    border: 1px solid #2C6F4C;
  }
  header > .main-menu ul .link-btn a:first-child:after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-image: url(../img/external-link-icon-green.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  header > .main-menu ul .link-btn a:last-child {
    color: #ffffff;
    background-color: #2C6F4C;
  }
}

#menu-toggle {
  display: none;
}

label.hamburger-icon {
  position: fixed;
  top: 23px;
  right: 15px;
  z-index: 102;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: 35px;
  height: 19px;
  cursor: pointer;
  mix-blend-mode: difference;
}
@media screen and (min-width: 1138px) {
  label.hamburger-icon {
    display: none;
  }
}
label.hamburger-icon span {
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background-color: #ffffff;
}

.hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.71);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1138px) {
  .hamburger-overlay {
    display: none;
  }
}

.hamburger-menu {
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 8px;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background-color: #f7f5ef;
  transition: right 0.4s ease;
  z-index: 101;
  padding: 61px 20px 50px 15px;
  overflow-y: auto;
}
@media screen and (min-width: 1138px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu ul {
  flex: 1;
  margin: 0;
  padding: 0;
}
.hamburger-menu ul li {
  margin-right: 52px;
  border-bottom: 1px solid #C9C9C9;
}
.hamburger-menu ul li:last-child {
  margin-right: 0;
  border-bottom: none;
}
.hamburger-menu ul li a {
  display: block;
  padding: 14px 0 12px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #2C6F4C;
}
.hamburger-menu ul li a span {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #6E6E6E;
}
.hamburger-menu .link-btn {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 15px;
  margin-top: 28px;
}
.hamburger-menu .link-btn a {
  width: 50%;
  padding: 12px 0;
  font-size: 13px;
  text-align: center;
}
.hamburger-menu .link-btn a:first-child {
  position: relative;
  padding-right: 10px;
  border: 1px solid #2C6F4C;
}
.hamburger-menu .link-btn a:first-child:after {
  content: "";
  position: absolute;
  top: 46%;
  right: 25px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-image: url(../img/external-link-icon-green.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hamburger-menu .link-btn a:last-child {
  color: #ffffff;
  background-color: #2C6F4C;
}
.hamburger-menu > p {
  position: absolute;
  top: 60px;
  right: 15px;
  padding: 10px 5px 7px;
  height: 225.06px;
  background-color: #ffffff;
  font-size: 15px;
  color: #2C6F4C;
  writing-mode: vertical-rl;
  letter-spacing: 0.17em;
  line-height: 1.8;
  clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px);
}
.hamburger-menu > p span {
  display: inline-block;
  writing-mode: horizontal-tb;
  text-combine-upright: all;
  text-orientation: upright;
  margin-top: -9px;
  margin-bottom: -3px;
  letter-spacing: normal;
}

#menu-toggle:checked ~ .hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(25deg);
  background-color: #6D7388;
}

#menu-toggle:checked ~ .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .hamburger-icon span:nth-child(3) {
  transform: translateY(-9px) rotate(-25deg);
  background-color: #6D7388;
}

#menu-toggle:checked ~ .hamburger-overlay {
  opacity: 1;
  pointer-events: auto;
}

#menu-toggle:checked ~ .hamburger-menu {
  right: 0;
}

footer section.company-info {
  padding: 38px 20px 40px;
  background-color: #F0F0F0;
  text-align: center;
}
@media screen and (min-width: 800px) {
  footer section.company-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: calc(50vw - 390px);
    padding-right: calc(50vw - 390px);
  }
}
footer section.company-info div.company-area {
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.company-area {
    width: 50%;
    margin-bottom: 0;
    border-right: 0.5px solid #C9C9C9;
  }
}
footer section.company-info div.company-area > img {
  width: 123px;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.company-area > img {
    width: 192.18px;
  }
}
footer section.company-info div.company-area ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}
footer section.company-info div.company-area ul li {
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  border-radius: 35px;
}
footer section.company-info div.company-area ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  border-radius: 35px;
}
footer section.company-info div.company-area ul li:nth-child(1) a img {
  width: 24.63px;
}
footer section.company-info div.company-area ul li:nth-child(2) a img {
  width: 19.44px;
}
footer section.company-info div.company-area ul li:nth-child(3) a img {
  width: 16.85px;
}
footer section.company-info div.company-area > p {
  margin-bottom: 10px;
  font-size: 13px;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.company-area > p {
    font-size: 15px;
  }
}
footer section.company-info div.company-area div.green-btn {
  margin: 0 auto;
  font-family: inherit;
  font-size: 13px;
  color: #ffffff;
  cursor: pointer;
}
footer section.company-info div.company-area div.green-btn a {
  position: relative;
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 12px 15px 12px 0;
  background-color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.company-area div.green-btn {
    width: 211.23px;
    font-size: 15px;
  }
}
footer section.company-info div.company-area div.green-btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-image: url(../img/external-link-icon-white.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.company-area div.green-btn a:after {
    right: 55px;
  }
}
footer section.company-info div.contact-area div.tel {
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.contact-area div.tel {
    margin-bottom: 45px;
  }
}
footer section.company-info div.contact-area div.tel p {
  font-size: 13px;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.contact-area div.tel p {
    font-size: 15px;
  }
}
footer section.company-info div.contact-area div.tel div.number {
  margin-bottom: 14px;
}
footer section.company-info div.contact-area div.tel div.number a {
  position: relative;
  padding-left: 30px;
  font-size: 21px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  color: #639379;
  text-decoration: underline;
  text-decoration-color: #639379;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.contact-area div.tel div.number a {
    font-size: 25px;
  }
}
footer section.company-info div.contact-area div.tel div.number a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 23px;
  height: 17px;
  background-image: url(../img/tel.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.contact-area div.tel div.number a:before {
    width: 29.06px;
    height: 22px;
  }
}
footer section.company-info div.contact-area div.tel span {
  font-size: 12px;
  line-height: 1.4;
}
footer section.company-info div.contact-area div.fax p {
  font-size: 13px;
}
footer section.company-info div.contact-area div.fax div.number {
  font-size: 21px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  color: #639379;
}
@media screen and (min-width: 800px) {
  footer section.company-info div.contact-area div.fax div.number {
    font-size: 25px;
  }
}
footer > div {
  padding: 18px 20px 66px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 20px 30px 90px;
    text-align: left;
  }
}
footer > div > a {
  position: relative;
  padding-right: 10px;
  font-size: 11px;
  text-decoration: underline;
}
@media screen and (min-width: 800px) {
  footer > div > a {
    font-size: 13px;
  }
}
footer > div > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-image: url(../img/external-link-icon-black.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
footer > div small {
  display: block;
  margin-top: 15px;
  font-size: 11px;
  line-height: 1.5;
}
@media screen and (min-width: 800px) {
  footer > div small {
    font-size: 13px;
    text-align: right;
  }
}

body.home {
  overflow-x: hidden;
}
body.home .main-visual {
  width: 100%;
  height: 320px;
}
@media screen and (min-width: 800px) {
  body.home .main-visual {
    height: 517px;
  }
}
body.home .main-visual .inner {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 800px) {
  body.home .main-visual .inner {
    width: min(100%, 1720px);
    margin: 0 auto;
  }
}
body.home .main-visual .inner .splide {
  height: 320px;
}
@media screen and (min-width: 800px) {
  body.home .main-visual .inner .splide {
    width: 100vw;
    height: 517px;
    margin: 0 calc(50% - 50vw);
  }
}
body.home .main-visual .inner .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 800px) {
  body.home .main-visual .inner .splide .splide__track .splide__list .splide__slide img {
    height: 517px;
  }
}
body.home .main-visual .inner .splide > ul {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (min-width: 800px) {
  body.home .main-visual .inner .splide > ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    padding: 25px 0 25px 30px;
  }
}
body.home .main-visual .inner .splide > ul li {
  position: relative;
  width: 210px;
  margin-bottom: 5px;
  margin-left: 13px;
  padding-bottom: 5px;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.1em;
  border-bottom: 0.5px solid #ffffff;
}
body.home .main-visual .inner .splide > ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  transform: translateY(-50%) rotate(45deg);
}
body.home .main-visual .inner .splide > ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 800px) {
  body.home .main-visual .inner .splide > ul li {
    width: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 22px;
    border: none;
  }
  body.home .main-visual .inner .splide > ul li span {
    display: inline;
    padding: 0 25px;
  }
}
body.home .main-visual .inner > p {
  position: absolute;
  top: 60px;
  right: 15px;
  z-index: 5;
  padding: 10px 5px 7px;
  height: 225.06px;
  background-color: #F5F2ED;
  font-size: 15px;
  color: #496F63;
  writing-mode: vertical-rl;
  white-space: nowrap;
  overflow: visible;
  letter-spacing: 0.17em;
  line-height: 1.8;
  clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px);
}
body.home .main-visual .inner > p span {
  display: inline-block;
  writing-mode: horizontal-tb;
  text-combine-upright: all;
  text-orientation: upright;
  margin-top: -9px;
  margin-bottom: -3px;
  letter-spacing: normal;
}
@media screen and (min-width: 800px) {
  body.home .main-visual .inner > p {
    top: auto;
    right: 15px;
    bottom: 150px;
    height: 278.96px;
    font-size: 18px;
    letter-spacing: 0.22em;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  }
}
@media screen and (min-width: 1138px) {
  body.home .main-visual .inner > p {
    bottom: 60px;
    right: 30px;
  }
}
@media screen and (min-width: 1720px) {
  body.home .main-visual .inner > p {
    right: 0;
  }
}
body.home .sub-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  padding: 40px 0;
}
@media screen and (min-width: 800px) {
  body.home .sub-copy {
    gap: 50px;
    padding: 68px 0;
  }
}
body.home .sub-copy img {
  width: 100px;
}
@media screen and (min-width: 800px) {
  body.home .sub-copy img {
    width: 225px;
  }
}
body.home .sub-copy h2 {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.19em;
}
@media screen and (min-width: 800px) {
  body.home .sub-copy h2 {
    font-size: 20px;
  }
}
body.home section.features {
  padding: 33px 0 15px;
  background-color: #F1F1F1;
}
@media screen and (min-width: 800px) {
  body.home section.features {
    padding: 0 0 15px;
  }
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner {
    width: min(100vw, 1280px);
    margin: 0 auto;
  }
}
body.home section.features div.inner > article {
  width: calc(100% - 45px);
  padding: 0 0 45px 0;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner > article {
    width: calc(100% - 110px);
    padding-bottom: 60px;
  }
}
body.home section.features div.inner > article div.headline {
  position: relative;
}
body.home section.features div.inner > article div.headline img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner > article div.headline img {
    width: min(100%, 1170px);
    height: 290px;
  }
}
body.home section.features div.inner > article div.headline h2 {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 18px;
  font-weight: normal;
  color: #ffffff;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner > article div.headline h2 {
    top: auto;
    bottom: 20px;
    left: 110px;
    font-size: 26px;
    letter-spacing: 0.18em;
  }
}
body.home section.features div.inner > article div.headline span {
  position: absolute;
  top: 0;
  left: calc(100% - 41px);
  font-family: "Arapey", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 65px;
  line-height: 0;
  color: rgba(44, 111, 76, 0.5);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner > article div.headline span {
    top: auto;
    bottom: 80px;
    left: 110px;
    color: #ffffff;
  }
}
body.home section.features div.inner > article div.text {
  padding-left: 20px;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner > article div.text {
    padding-top: 40px;
    padding-left: 110px;
    padding-right: 70px;
  }
}
body.home section.features div.inner > article div.text > p {
  padding-top: 20px;
  font-size: 14px;
  color: #4D4D4D;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner > article div.text > p {
    font-size: 18px;
  }
}
body.home section.features div.inner > article div.text ul {
  position: relative;
  margin-top: 20px;
  padding: 15px 0 15px 10px;
  border-top: 0.5px solid #9DB8AA;
  border-bottom: 0.5px solid #9DB8AA;
}
body.home section.features div.inner > article div.text ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1.8;
  color: #4D4D4D;
}
body.home section.features div.inner > article div.text ul li:before {
  content: "";
  position: absolute;
  top: 28%;
  left: -10px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background-color: #4D4D4D;
  border-radius: 3px;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner > article div.text ul li:before {
    top: 54%;
  }
}
body.home section.features div.inner > article div.text ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner > article div.text ul li {
    font-size: 15px;
  }
}
body.home section.features div.inner > article div.text ul > img {
  position: absolute;
  bottom: 15px;
  right: -20px;
  width: 92px;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner > article div.text ul > img {
    width: 120px;
    bottom: 15px;
  }
}
body.home section.features div.inner .area {
  margin-left: auto;
}
body.home section.features div.inner .area div.headline span {
  top: 0;
  left: -20px;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .area div.headline span {
    top: auto;
    bottom: 80px;
    left: auto;
    right: 110px;
    color: #ffffff;
  }
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .area div.headline h2 {
    top: auto;
    bottom: 20px;
    right: 110px;
    left: auto;
    font-size: 26px;
    letter-spacing: 0.18em;
    text-align: right;
  }
}
body.home section.features div.inner .area div.text {
  padding-left: 0;
  padding-right: 20px;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .area div.text {
    padding-top: 40px;
    padding-left: 70px;
    padding-right: 110px;
  }
}
body.home section.features div.inner .childcare {
  position: relative;
}
body.home section.features div.inner .childcare div.headline img.illust {
  position: absolute;
  bottom: -20px;
  right: -30px;
  z-index: 1;
  width: 71px;
  height: 82px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .childcare div.headline img.illust {
    display: none;
  }
}
body.home section.features div.inner .childcare .no-border-btn {
  margin-top: 15px;
  margin-left: 20px;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .childcare .no-border-btn {
    margin-top: 45px;
    margin-bottom: 40px;
    margin-left: 0;
    padding: 0 70px 0 110px;
    text-align: center;
  }
}
body.home section.features div.inner .childcare .no-border-btn a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  width: 255px;
  margin: 0 auto;
  padding: 12px;
  font-size: 15px;
  color: #8C9995;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .childcare .no-border-btn a {
    justify-content: center;
    gap: 45px;
    width: 380px;
    padding: 8px 40px;
  }
}
body.home section.features div.inner .childcare .no-border-btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #8C9995;
  margin-left: auto;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .childcare .no-border-btn a:after {
    right: 50px;
  }
}
body.home section.features div.inner .childcare .no-border-btn a img {
  width: 91px;
}
body.home section.features div.inner .childcare > img {
  position: absolute;
  right: -20px;
  bottom: 142px;
  width: 79px;
}
body.home section.features div.inner .energy {
  position: relative;
  margin-left: auto;
}
body.home section.features div.inner .energy div.headline span {
  top: 0;
  left: -20px;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .energy div.headline span {
    top: auto;
    bottom: 80px;
    left: auto;
    right: 110px;
    color: #ffffff;
  }
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .energy div.headline h2 {
    top: auto;
    bottom: 20px;
    right: 110px;
    left: auto;
    font-size: 26px;
    letter-spacing: 0.18em;
    text-align: right;
  }
}
body.home section.features div.inner .energy div.text {
  padding-left: 0;
  padding-right: 20px;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .energy div.text {
    padding-top: 40px;
    padding-left: 70px;
    padding-right: 110px;
  }
}
body.home section.features div.inner .energy div.text .graph {
  width: 100%;
  padding-top: 20px;
}
body.home section.features div.inner .energy div.text small {
  color: #8C918E;
}
body.home section.features div.inner .energy .border-btn {
  margin-top: 25px;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .energy .border-btn {
    text-align: center;
    padding: 0 110px 0 70px;
  }
}
body.home section.features div.inner .energy .border-btn a {
  position: relative;
  display: inline-block;
  width: 255px;
  padding: 8px 20px 8px 0px;
  border: 1px solid #8C9995;
  text-align: center;
  color: #8C9995;
}
body.home section.features div.inner .energy .border-btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 65px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #8C9995;
  margin-left: auto;
}
body.home section.features div.inner .energy .illust {
  position: absolute;
  bottom: -70px;
  right: 20px;
  z-index: 1;
  width: 137px;
  height: 103px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 800px) {
  body.home section.features div.inner .energy .illust {
    width: 120px;
    right: 140px;
  }
}
body.home section.news {
  padding: 40px 20px;
}
@media screen and (min-width: 800px) {
  body.home section.news {
    width: min(100%, 780px);
    margin: 0 auto;
    padding: 50px 0;
  }
}
@media screen and (min-width: 800px) {
  body.home section.news .section-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}
body.home section.news .section-headline span {
  padding: 2px 10px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
  background-color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.news .section-headline span {
    font-size: 18px;
  }
}
body.home section.news .section-headline h2 {
  padding-top: 5px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.news .section-headline h2 {
    padding-top: 0px;
    font-size: 20px;
  }
}
body.home section.news > ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  body.home section.news > ul {
    margin-top: 35px;
    margin-bottom: 30px;
  }
}
body.home section.news > ul li {
  width: 100%;
  margin-bottom: 15px;
  font-size: 11px;
  border-bottom: 0.5px solid #E8E3DA;
}
body.home section.news > ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 800px) {
  body.home section.news > ul li {
    margin-bottom: 20px;
  }
}
body.home section.news > ul li a {
  display: block;
  padding-bottom: 15px;
}
@media screen and (min-width: 800px) {
  body.home section.news > ul li a {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 800px) {
  body.home section.news > ul li a span {
    font-size: 15px;
  }
}
body.home section.news > ul li a .news-title {
  margin-top: 5px;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 800px) {
  body.home section.news > ul li a .news-title {
    font-size: 18px;
  }
}
body.home section.news > ul li a .news-desc {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  body.home section.news > ul li a .news-desc {
    font-size: 15px;
  }
}
body.home section.news .green-btn {
  position: relative;
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 12px 15px 12px 0;
  background-color: #2C6F4C;
  font-family: inherit;
  font-size: 15px;
  color: #ffffff;
  cursor: pointer;
}
body.home section.news .green-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  width: 1px;
  height: 10px;
  background-color: #ffffff;
  transform: translateY(-50%);
}
body.home section.news .green-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 55px;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background-color: #ffffff;
}
body.home .division {
  padding: 40px 20px;
  background-color: #F5F2ED;
}
@media screen and (min-width: 780px) {
  body.home .division {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: calc(50vw - 390px);
    padding-right: calc(50vw - 390px);
  }
}
@media screen and (min-width: 800px) {
  body.home .division .section-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}
body.home .division .section-headline span {
  padding: 2px 10px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
  background-color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home .division .section-headline span {
    font-size: 18px;
  }
}
body.home .division .section-headline h2 {
  padding-top: 5px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home .division .section-headline h2 {
    padding-top: 0px;
    font-size: 20px;
  }
}
body.home .division div.detail {
  margin-top: 25px;
}
@media screen and (min-width: 780px) {
  body.home .division div.detail {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
    width: min(100%, 780px);
    margin: 0 auto;
  }
}
body.home .division div.detail > img {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 780px) {
  body.home .division div.detail > img {
    width: 52%;
  }
}
body.home .division div.detail > table {
  width: 100%;
  font-size: 11px;
  text-align: center;
  color: #1F1F1F;
  border: 1px solid #D7D4CF;
  border-collapse: collapse;
}
@media screen and (min-width: 780px) {
  body.home .division div.detail > table {
    flex: 1;
    border-color: #000;
  }
}
body.home .division div.detail > table thead th {
  padding: 7px 0;
  font-weight: normal;
  border: 1px solid #D7D4CF;
}
@media screen and (min-width: 780px) {
  body.home .division div.detail > table thead th {
    border-color: #000;
  }
}
body.home .division div.detail > table tbody tr {
  border-bottom: 1px solid #D7D4CF;
}
@media screen and (min-width: 780px) {
  body.home .division div.detail > table tbody tr {
    border-bottom: 1px solid #000;
  }
}
body.home .division div.detail > table tbody tr td {
  padding: 8px 10px;
  border: 1px solid #D7D4CF;
  vertical-align: middle;
}
@media screen and (min-width: 780px) {
  body.home .division div.detail > table tbody tr td {
    border: 1px solid #000;
  }
}
body.home .division div.detail > table tbody tr td:nth-child(4) {
  padding: 8px 5px;
}
body.home .division div.detail > table tbody tr td.negotiation {
  color: #b94a48;
}
body.home .division div.detail > table tbody tr .btn {
  position: relative;
  display: inline-block;
  padding: 3px 12px 3px 10px;
  font-size: 10px;
  color: #fff;
  background-color: #2C6F4C;
  transition: background-color 0.3s ease;
}
body.home .division div.detail > table tbody tr .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-36%);
  display: inline-block;
  vertical-align: middle;
  background-color: transparent;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 3px solid #ffffff;
}
body.home section.model-house {
  padding: 40px 20px;
}
@media screen and (min-width: 780px) {
  body.home section.model-house {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: calc(50vw - 390px);
    padding-right: calc(50vw - 390px);
  }
}
@media screen and (min-width: 800px) {
  body.home section.model-house .section-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}
body.home section.model-house .section-headline span {
  padding: 2px 10px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
  background-color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.model-house .section-headline span {
    font-size: 18px;
  }
}
body.home section.model-house .section-headline h2 {
  padding-top: 5px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.model-house .section-headline h2 {
    padding-top: 0px;
    font-size: 20px;
  }
}
body.home section.model-house > p {
  margin-top: 25px;
  text-align: center;
}
body.home section.house-plan {
  padding: 40px 20px;
  background-color: #F5F2ED;
}
@media screen and (min-width: 780px) {
  body.home section.house-plan {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: calc(50vw - 390px);
    padding-right: calc(50vw - 390px);
  }
}
@media screen and (min-width: 800px) {
  body.home section.house-plan .section-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}
body.home section.house-plan .section-headline span {
  padding: 2px 10px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
  background-color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.house-plan .section-headline span {
    font-size: 18px;
  }
}
body.home section.house-plan .section-headline h2 {
  padding-top: 5px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.house-plan .section-headline h2 {
    padding-top: 0px;
    font-size: 20px;
  }
}
body.home section.house-plan > p {
  margin-top: 25px;
  text-align: center;
}
body.home section.photo-gallary {
  padding: 40px 20px;
}
@media screen and (min-width: 780px) {
  body.home section.photo-gallary {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: calc(50vw - 390px);
    padding-right: calc(50vw - 390px);
  }
}
@media screen and (min-width: 800px) {
  body.home section.photo-gallary .section-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}
body.home section.photo-gallary .section-headline span {
  padding: 2px 10px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
  background-color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.photo-gallary .section-headline span {
    font-size: 18px;
  }
}
body.home section.photo-gallary .section-headline h2 {
  padding-top: 5px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.photo-gallary .section-headline h2 {
    padding-top: 0px;
    font-size: 20px;
  }
}
body.home section.photo-gallary #main-carousel {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 780px) {
  body.home section.photo-gallary #main-carousel .splide__track .splide__list .splide__slide {
    text-align: center;
  }
}
body.home section.photo-gallary #main-carousel .splide__track .splide__list .splide__slide img {
  width: min(100%, 539px);
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 280/223;
}
body.home section.photo-gallary #thumbnail-carousel {
  margin-top: 35px;
}
body.home section.photo-gallary #thumbnail-carousel .splide__track {
  width: calc(100% - 70px);
  margin: 0 auto;
}
@media screen and (min-width: 780px) {
  body.home section.photo-gallary #thumbnail-carousel .splide__track {
    overflow: visible;
    width: 100%;
  }
}
@media screen and (min-width: 780px) {
  body.home section.photo-gallary #thumbnail-carousel .splide__track .splide__list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    justify-content: center;
  }
}
body.home section.photo-gallary #thumbnail-carousel .splide__track .splide__list .splide__slide {
  opacity: 0.3;
  cursor: pointer;
}
body.home section.photo-gallary #thumbnail-carousel .splide__track .splide__list .splide__slide.is-active {
  opacity: 1;
  border: none;
}
@media screen and (min-width: 780px) {
  body.home section.photo-gallary #thumbnail-carousel .splide__track .splide__list .splide__slide {
    width: 100% !important;
  }
}
body.home section.photo-gallary #thumbnail-carousel .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
body.home section.photo-gallary #thumbnail-carousel .splide__arrows button.splide__arrow {
  background-color: transparent;
  width: 7px;
  height: 17px;
  transition: 0.2s;
}
@media screen and (min-width: 780px) {
  body.home section.photo-gallary #thumbnail-carousel .splide__arrows button.splide__arrow {
    display: none;
  }
}
body.home section.photo-gallary #thumbnail-carousel .splide__arrows button.splide__arrow:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 7px;
  height: 17px;
  margin: auto;
}
body.home section.photo-gallary #thumbnail-carousel .splide__arrows button.prev:before {
  background-image: url(../img/slider-left-arrow.svg);
}
body.home section.photo-gallary #thumbnail-carousel .splide__arrows button.next:before {
  background-image: url(../img/slider-right-arrow.svg);
}
body.home section.photo-gallary #thumbnail-carousel .splide__arrows button.button:disabled::before {
  opacity: 0.5;
}
body.home section.photo-gallary #thumbnail-carousel .splide__pagination {
  top: -28px;
  bottom: auto;
}
@media screen and (min-width: 780px) {
  body.home section.photo-gallary #thumbnail-carousel .splide__pagination {
    display: flex;
    left: 50%;
    transform: translateX(-50%);
  }
}
body.home section.photo-gallary #thumbnail-carousel .splide__pagination .splide__pagination__page {
  background-color: #D9D9D9;
}
body.home section.photo-gallary #thumbnail-carousel .splide__pagination .splide__pagination__page.is-active {
  background-color: #1F1F1F;
  transform: none;
}
body.home section.map {
  padding: 40px 20px;
  background-color: #F5F2ED;
}
@media screen and (min-width: 780px) {
  body.home section.map {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: calc(50vw - 390px);
    padding-right: calc(50vw - 390px);
  }
}
@media screen and (min-width: 800px) {
  body.home section.map .section-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}
body.home section.map .section-headline span {
  padding: 2px 10px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
  background-color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.map .section-headline span {
    font-size: 18px;
  }
}
body.home section.map .section-headline h2 {
  padding-top: 5px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.map .section-headline h2 {
    padding-top: 0px;
    font-size: 20px;
  }
}
body.home section.map > p {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
}
body.home section.map .iframe-wrap {
  position: relative;
  padding-bottom: 80.25%;
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 780px) {
  body.home section.map .iframe-wrap {
    padding-bottom: 32%;
  }
}
body.home section.map .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.home section.location {
  padding: 40px 20px;
}
@media screen and (min-width: 780px) {
  body.home section.location {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: calc(50vw - 390px);
    padding-right: calc(50vw - 390px);
  }
}
@media screen and (min-width: 800px) {
  body.home section.location .section-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}
body.home section.location .section-headline span {
  padding: 2px 10px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
  background-color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.location .section-headline span {
    font-size: 18px;
  }
}
body.home section.location .section-headline h2 {
  padding-top: 5px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.location .section-headline h2 {
    padding-top: 0px;
    font-size: 20px;
  }
}
body.home section.location > section {
  margin-top: 20px;
}
body.home section.location > section h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 0.1em;
  background-color: #639379;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (min-width: 780px) {
  body.home section.location > section h3 {
    font-size: 18px;
  }
}
body.home section.location > section h3:hover {
  opacity: 0.7;
}
body.home section.location > section h3 .accordion-icon {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
body.home section.location > section h3 .accordion-icon:after {
  content: "";
  position: absolute;
  inset: 0;
  top: -2px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform-origin: center;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
body.home section.location > section .detail {
  max-height: 0;
  padding: 24px 15px 21px;
  background-color: #F0F0F0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail {
    padding: 29px 36px 20px;
  }
}
body.home section.location > section .detail ul li {
  margin-bottom: 25px;
}
body.home section.location > section .detail ul li:last-child {
  margin-bottom: 0;
}
body.home section.location > section .detail ul li h4 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 15px;
  font-weight: normal;
  color: #639379;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail ul li h4 {
    font-size: 16px;
  }
}
body.home section.location > section .detail ul li h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #639379;
  transform: translateY(-50%) rotate(45deg);
}
body.home section.location > section .detail ul li dl > div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 20px;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail ul li dl > div {
    flex-direction: row;
    gap: 10px;
  }
}
body.home section.location > section .detail ul li dl > div dt {
  margin-bottom: 10px;
  font-size: 13px;
  color: #1F1F1F;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail ul li dl > div dt {
    font-size: 16px;
    white-space: nowrap;
  }
}
body.home section.location > section .detail ul li dl > div dd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 13px;
  width: 100%;
}
body.home section.location > section .detail ul li dl > div dd .dotted-line {
  flex: 1;
  height: 1px;
  background-image: url(../img/dotted-line.webp);
  background-position: center;
  background-repeat: repeat-x;
  background-size: contain;
}
body.home section.location > section .detail ul li dl > div dd .walk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100px;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail ul li dl > div dd .walk {
    width: 160px;
  }
}
body.home section.location > section .detail ul li dl > div dd .walk .label {
  width: 42px;
  padding: 2px 0;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  background-color: #639379;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail ul li dl > div dd .walk .label {
    width: 87.41px;
  }
}
body.home section.location > section .detail ul li dl > div dd .walk .time {
  font-size: 13px;
  color: #639379;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail ul li dl > div dd .walk .time {
    font-size: 16px;
  }
}
body.home section.location > section .detail dl > div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 20px;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail dl > div {
    flex-direction: row;
    gap: 10px;
  }
}
body.home section.location > section .detail dl > div dt {
  margin-bottom: 10px;
  font-size: 13px;
  color: #1F1F1F;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail dl > div dt {
    font-size: 16px;
    white-space: nowrap;
  }
}
body.home section.location > section .detail dl > div dd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 13px;
  width: 100%;
}
body.home section.location > section .detail dl > div dd .dotted-line {
  flex: 1;
  height: 1px;
  background-image: url(../img/dotted-line.webp);
  background-position: center;
  background-repeat: repeat-x;
  background-size: contain;
}
body.home section.location > section .detail dl > div dd .walk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100px;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail dl > div dd .walk {
    width: 160px;
  }
}
body.home section.location > section .detail dl > div dd .walk .label {
  width: 42px;
  padding: 2px 0;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  background-color: #639379;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail dl > div dd .walk .label {
    width: 87.41px;
  }
}
body.home section.location > section .detail dl > div dd .walk .time {
  font-size: 13px;
  color: #639379;
}
@media screen and (min-width: 780px) {
  body.home section.location > section .detail dl > div dd .walk .time {
    font-size: 16px;
  }
}
body.home section.location > section.open .detail {
  max-height: 2000px;
}
body.home section.location > section.open .accordion-icon:after {
  top: 2px;
  transform: rotate(-135deg);
}
body.home section.over-view {
  padding: 40px 20px;
  background-color: #F5F2ED;
}
@media screen and (min-width: 780px) {
  body.home section.over-view {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: calc(50vw - 390px);
    padding-right: calc(50vw - 390px);
  }
}
@media screen and (min-width: 800px) {
  body.home section.over-view .section-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}
body.home section.over-view .section-headline span {
  padding: 2px 10px;
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
  background-color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.over-view .section-headline span {
    font-size: 18px;
  }
}
body.home section.over-view .section-headline h2 {
  padding-top: 5px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #2C6F4C;
}
@media screen and (min-width: 800px) {
  body.home section.over-view .section-headline h2 {
    padding-top: 0px;
    font-size: 20px;
  }
}
body.home section.over-view > dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 25px;
}
body.home section.over-view > dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  align-self: stretch;
  width: 97px;
  font-size: 11px;
  text-align: center;
  border-top: 1px solid #D7D4CF;
  border-right: 1px solid #D7D4CF;
  border-left: 1px solid #D7D4CF;
  background-color: #E8E3DA;
}
body.home section.over-view > dl dt:last-of-type {
  border-bottom: 1px solid #D7D4CF;
}
@media screen and (min-width: 780px) {
  body.home section.over-view > dl dt {
    width: 234px;
    font-size: 13px;
  }
}
body.home section.over-view > dl dd {
  width: calc(100% - 97px);
  padding: 7px;
  font-size: 10px;
  border-top: 1px solid #D7D4CF;
  border-right: 1px solid #D7D4CF;
}
body.home section.over-view > dl dd:last-of-type {
  border-bottom: 1px solid #D7D4CF;
}
@media screen and (min-width: 780px) {
  body.home section.over-view > dl dd {
    width: calc(100% - 234px);
    padding: 12px 18px;
    font-size: 13px;
  }
}
body.home div.fixed-area {
  position: relative;
  z-index: 50;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 800px) {
  body.home div.fixed-area {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1720px;
    margin: 0 auto;
  }
}
body.home div.fixed-area div.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 40px;
}
@media screen and (min-width: 800px) {
  body.home div.fixed-area div.fixed-footer {
    position: absolute;
    bottom: 50%;
    left: auto;
    right: 104px;
    transform: translateY(-50%);
    width: 518.8px;
  }
}
body.home div.fixed-area div.fixed-footer ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 50%;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media screen and (min-width: 800px) {
  body.home div.fixed-area div.fixed-footer ul {
    font-size: 18px;
  }
}
body.home div.fixed-area div.fixed-footer ul li {
  width: 50%;
  text-align: center;
}
body.home div.fixed-area div.fixed-footer ul li a {
  display: block;
  padding: 9px 0;
}
body.home div.fixed-area div.fixed-footer .green-area {
  background-color: #2C6F4C;
  color: #9DB8AA;
}
@media screen and (min-width: 800px) {
  body.home div.fixed-area div.fixed-footer .green-area {
    border-radius: 0 0 0 10px;
  }
}
body.home div.fixed-area div.fixed-footer .green-area li a {
  position: relative;
  padding-left: 20px;
}
body.home div.fixed-area div.fixed-footer .green-area li a span {
  position: relative;
}
body.home div.fixed-area div.fixed-footer .green-area li a span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body.home div.fixed-area div.fixed-footer .green-area li:nth-child(1) a {
  padding-left: 15px;
}
body.home div.fixed-area div.fixed-footer .green-area li:nth-child(1) a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background-color: #8C9995;
}
body.home div.fixed-area div.fixed-footer .green-area li:nth-child(1) a span:before {
  background-image: url(../img/fixed-footer-tel-icon.webp);
}
body.home div.fixed-area div.fixed-footer .green-area li:nth-child(2) a span:before {
  background-image: url(../img/fixed-footer-map-icon.webp);
}
body.home div.fixed-area div.fixed-footer .pink-area {
  background-color: #E07F73;
  color: #ffffff;
}
@media screen and (min-width: 800px) {
  body.home div.fixed-area div.fixed-footer .pink-area {
    border-radius: 0 10px 0 0;
  }
}
body.home div.fixed-area div.fixed-footer .pink-area li a {
  position: relative;
}
body.home div.fixed-area div.fixed-footer .pink-area li a span {
  position: relative;
}
body.home div.fixed-area div.fixed-footer .pink-area li:nth-child(2) a {
  padding-right: 7px;
}
body.home div.fixed-area div.fixed-footer .pink-area li:nth-child(1) a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background-color: #F8F6F2;
}
body.home div.fixed-area div.fixed-footer .pink-area li:nth-child(2) a span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-image: url(../img/external-link-icon-white.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 800px) {
  body.home div.fixed-area div.fixed-footer .pink-area li:nth-child(2) a span:before {
    top: 55%;
  }
}
body.home div.fixed-area #to-top {
  position: fixed;
  bottom: 50px;
  right: 10px;
  z-index: 50;
  width: 50px;
  height: 50px;
  padding-top: 12px;
  font-size: 15px;
  color: #ffffff;
  background-color: rgba(110, 110, 110, 0.6);
  border-radius: 50px;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  body.home div.fixed-area #to-top {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    font-size: 20px;
    border-radius: 80px;
  }
}
body.home div.fixed-area #to-top::before {
  content: "";
  position: absolute;
  top: 33%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-135deg);
}
@media screen and (min-width: 800px) {
  body.home div.fixed-area #to-top::before {
    width: 10px;
    height: 10px;
  }
}

body.request main {
  padding-top: 68px;
}
@media screen and (min-width: 1138px) {
  body.request main {
    padding-top: 124.75px;
  }
}
body.request main section.headline {
  padding: 40px 30px;
  text-align: center;
  background-color: #F5F2ED;
}
@media screen and (min-width: 753px) {
  body.request main section.headline {
    padding: 48px 30px;
  }
}
body.request main section.headline h1 {
  font-size: 20px;
  font-weight: normal;
}
@media screen and (min-width: 753px) {
  body.request main section.headline h1 {
    font-size: 25px;
  }
}
body.request main section.headline span {
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #9DB8AA;
}
@media screen and (min-width: 753px) {
  body.request main section.headline span {
    font-size: 15px;
  }
}
body.request main section.headline p {
  padding-top: 10px;
  font-size: 15px;
  text-align: left;
  line-height: 1.7;
}
@media screen and (min-width: 753px) {
  body.request main section.headline p {
    font-size: 18px;
    text-align: center;
  }
}
body.request main > form {
  padding: 37px 20px;
}
@media screen and (min-width: 753px) {
  body.request main > form {
    padding: 50px calc(50vw - 376.5px) 100px;
  }
}
body.request main > form fieldset {
  margin-bottom: 40px;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset {
    margin-bottom: 50px;
  }
}
body.request main > form fieldset > div {
  margin-bottom: 23px;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 0.5px solid #D9D9D9;
  }
  body.request main > form fieldset > div:last-child {
    margin-bottom: 0;
  }
}
body.request main > form fieldset > div:last-child {
  margin-bottom: 0;
}
body.request main > form fieldset > div .form-label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .form-label {
    position: relative;
    width: 180px;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 18px;
  }
}
body.request main > form fieldset > div .form-label .required-label {
  position: relative;
  display: inline-block;
  padding-left: 45px;
  color: inherit;
}
body.request main > form fieldset > div .form-label .required-label:before {
  content: "必須";
  position: absolute;
  left: 0;
  margin-right: 12px;
  padding: 3px 5px;
  font-size: 12px;
  color: #ffffff;
  background-color: #D03F3F;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .form-label .required-label:before {
    content: "";
    display: none;
  }
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .form-label .required-label {
    padding-left: 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .form-label.required:after {
    content: "必須";
    position: absolute;
    right: 0;
    padding: 3px 5px;
    font-size: 12px;
    color: #ffffff;
    background-color: #D03F3F;
  }
}
body.request main > form fieldset > div .input-form {
  width: 100%;
  padding: 13px;
  background-color: #F0F0F0;
  font-size: 12px;
  border: none;
}
body.request main > form fieldset > div .input-form::-moz-placeholder {
  color: #D9D9D9;
}
body.request main > form fieldset > div .input-form::placeholder {
  color: #D9D9D9;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .input-form {
    flex: 1;
    font-size: 14px;
  }
}
body.request main > form fieldset > div input[type=radio].radio {
  position: relative;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 50%;
  background-color: #F0F0F0;
  cursor: pointer;
  transition: 0.2s;
}
body.request main > form fieldset > div input[type=radio].radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #2C6F4C;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
body.request main > form fieldset > div .textarea-form {
  width: 100%;
  padding: 13px;
  background-color: #F0F0F0;
  font-size: 12px;
  border: none;
}
body.request main > form fieldset > div .textarea-form::-moz-placeholder {
  color: #D9D9D9;
}
body.request main > form fieldset > div .textarea-form::placeholder {
  color: #D9D9D9;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .textarea-form {
    flex: 1;
    font-size: 14px;
  }
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .radio-area {
    flex: 1;
  }
}
body.request main > form fieldset > div .radio-area .label-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-direction: column;
  margin-bottom: 10px;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .radio-area .label-wrap {
    align-items: center;
    flex-direction: row;
  }
}
body.request main > form fieldset > div .radio-area .label-wrap label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 5px;
  padding-right: 10px;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .radio-area .label-wrap label {
    font-size: 16px;
  }
}
body.request main > form fieldset > div .radio-area .label-wrap .input-form {
  width: calc(100% - 33px);
  margin-left: 33px;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .radio-area .label-wrap .input-form {
    width: 100%;
    margin-left: 0;
  }
}
body.request main > form fieldset > div .radio-area > label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset > div .radio-area > label {
    font-size: 16px;
  }
}
body.request main > form fieldset .postal-area .input-wrap > span {
  display: block;
  margin-top: 3px;
  font-size: 9px;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset .postal-area .input-wrap > span {
    font-size: 11px;
  }
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset .postal-area .input-wrap {
    flex: 1;
  }
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset .address-area > div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex: 1;
  }
}
body.request main > form fieldset .address-area > div .input-form {
  margin-bottom: 5px;
}
body.request main > form fieldset .address-area > div .input-form:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 753px) {
  body.request main > form fieldset .address-area > div .input-form {
    display: block;
    width: 100%;
  }
}
body.request main > form .privacy-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
}
body.request main > form .privacy-area > input {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #F0F0F0;
  cursor: pointer;
  transition: 0.2s;
}
body.request main > form .privacy-area > input:checked {
  position: relative;
  background-color: #2C6F4C;
  border-color: #2C6F4C;
}
body.request main > form .privacy-area > input:checked:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
}
body.request main > form .privacy-area > p {
  font-size: 13px;
}
body.request main > form .privacy-area > p a {
  position: relative;
  display: inline-block;
  margin-right: 22px;
  text-decoration: underline;
}
body.request main > form .privacy-area > p a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url(../img/external-link-icon-black.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body.request main > form .submit-button {
  margin-top: 20px;
  text-align: center;
}
body.request main > form .submit-button input {
  display: inline-block;
  width: 160px;
  padding: 12px 0;
  color: #ffffff;
  text-align: center;
  border: none;
  background-color: #2C6F4C;
  cursor: pointer;
  transition: 0.4s;
}
body.request main > form .submit-button input:hover {
  opacity: 0.7;
}
body.request main div.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 300;
}
body.request main div.popup .popup-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  line-height: 1.6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
}
body.request main div.popup .popup-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}
body.request main div.popup .popup-content #close-popup {
  background: #2C6F4C;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}
body.request main div.popup .popup-content #close-popup:hover {
  background: #3b8a60;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}