@charset "UTF-8";
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
.center {
  text-align: center;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
}

.header-inner {
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  width: 175px;
}

.global-nav {
  margin-left: auto;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  gap: 20px;
}

.nav-link {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
  padding: 10px;
  display: block;
}

.nav-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .header {
    padding: 10px;
  }
  .header-inner {
    padding: 0 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
  .header-logo img {
    width: 120px;
  }
  /* Mobile Nav */
  .nav-toggle {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: #0D7C29;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 0;
  }
  .nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 6px auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
  }
  .nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  .nav-list-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 90;
    padding-top: 80px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow-y: auto;
  }
  .global-nav.is-active .nav-list-wrapper {
    right: 0;
  }
  body.is-nav-open {
    overflow: hidden;
  }
  .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 0;
  }
  .nav-list.facility .nav-item:nth-child(1) .nav-link {
    color: var(--color-primary-cyan);
  }
  .nav-list.facility .nav-item:nth-child(2) .nav-link {
    color: var(--color-primary-pink);
  }
  .nav-list.facility .nav-item:nth-child(3) .nav-link {
    color: var(--color-primary-yellow);
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .nav-link {
    font-size: 1rem;
    padding: 20px;
    display: block;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .nav-list {
    gap: 20px;
    margin-top: 0;
  }
  .nav-link {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #1A9C3A;
    font-size: 18px;
    text-align: center;
    padding: 0 30px;
    background: #fff;
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.08);
            box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.08);
    border-radius: 30px;
  }
  .facility {
    margin-top: 20px;
  }
  .facility .nav-item:nth-child(1) .nav-link {
    background: var(--color-primary-cyan);
  }
  .facility .nav-item:nth-child(2) .nav-link {
    background: var(--color-primary-pink);
  }
  .facility .nav-item:nth-child(3) .nav-link {
    background: var(--color-primary-yellow);
  }
  .facility .nav-link {
    color: #fff;
    padding: 0 40px;
  }
}
/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 100px 0;
}

.contact-card {
  background: var(--color-white);
  border-radius: 20px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
  color: #6D3316;
}

.contact-subtitle {
  font-family: var(--font-en);
  color: var(--color-primary-pink);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  display: block;
  font-weight: 500;
}

.contact-hours {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 500;
  color: #6D3316;
}

/* Phone Grid */
.phone-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 65px;
}

.phone-box {
  border: 5px solid;
  border-radius: 20px;
  padding: 20px 10px 10px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-height: 150px;
}

.phone-box.is-cyan {
  border-color: var(--color-primary-cyan);
}

.phone-box.is-pink {
  border-color: var(--color-primary-pink);
}

.phone-box.is-yellow {
  border-color: var(--color-primary-yellow);
}

.phone-box-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.phone-box-name.is-bunen {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

.phone-box-logo {
  height: 50px;
  width: auto;
}

.phone-box-sub-text-inline {
  font-size: 1.1rem;
  font-weight: 700;
}

.phone-box-number {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-primary-cyan);
}

.phone-box.is-pink .phone-box-number {
  color: var(--color-primary-pink);
}

.phone-box.is-yellow .phone-box-number {
  color: var(--color-primary-yellow);
}

/* Contact Button */
.btn-contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 750px;
  height: 150px;
  border: 5px solid var(--color-accent-green);
  border-radius: 20px;
  color: var(--color-accent-green);
  font-size: 25px;
  font-weight: 700;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 4px 6px 5px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px 5px rgba(0, 0, 0, 0.08);
  padding-right: 2.5em;
}

.btn-contact-icon {
  background: var(--color-accent-green);
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 90px;
  font-size: 1em;
}

@media (max-width: 768px) {
  .contact-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .contact-card {
    padding: 40px 20px;
    border-radius: 20px;
  }
  .contact-title {
    font-size: 1.5rem;
  }
  .contact-hours {
    font-size: 1rem;
  }
  .phone-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .phone-box {
    padding: 20px 10px;
  }
  .phone-box-logo {
    height: 40px;
  }
  .phone-box-sub-text-inline {
    font-size: 1rem;
  }
  .phone-box-number {
    font-size: 28px;
  }
  .btn-contact {
    height: 100px;
    font-size: 16px;
  }
  .btn-contact-icon {
    width: 40px;
    height: 40px;
    right: 15px;
    font-size: 1em;
  }
}
.footer {
  background-color: #F6FCE1;
  padding: 50px 0 20px;
}

.page-top {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  position: fixed;
  background-color: #ECEEE2;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #6D3316;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.4;
  text-align: center;
  -webkit-box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  bottom: 20px;
  right: 10px;
  cursor: pointer;
}
.page-top:hover {
  opacity: 0.7;
}
.page-top::before {
  width: 100%;
  font-family: FontAwesome;
  content: "\f062";
  font-weight: normal;
  font-size: 14px;
  text-align: center;
}
.page-top.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-inner {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
}

.footer-brand-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #fff;
  border-radius: 0 30px 30px 0;
  margin-left: calc(50% - 50vw);
  padding: 30px 50px 30px 0;
}

.footer-logo {
  width: 210px;
}

.footer-address-info {
  font-size: 12px;
}

.footer-address {
  margin-top: 0;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-nav-list {
  width: 100%;
  padding: 0;
  gap: none;
  margin-top: 15px;
}
.footer-nav-list:nth-child(5) li {
  margin-bottom: 10px;
}
.footer-nav-list li {
  list-style-type: none;
}
.footer-nav-list li a {
  color: #0D7C29;
  font-size: 17px;
  font-weight: 600;
}
.footer-nav-list ul {
  margin-top: 10px;
}
.footer-nav-list ul li a {
  color: #6D3316;
  font-size: 14px;
}

.footer-copyright {
  margin-top: 100px;
  color: #929292;
  font-size: 14px;
  font-weight: 450;
  text-align: center;
}

@media (min-width: 1024px) {
  .page-top {
    width: 150px;
    height: 150px;
    border-radius: 75px;
    font-size: 25px;
    bottom: 100px;
    right: 50px;
  }
  .page-top::before {
    font-size: 20px;
  }
  .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer-nav {
    width: 70%;
    padding-left: 100px;
    gap: 30px;
  }
  .footer-nav-list {
    width: calc(33.3333333333% - 20px);
  }
  .footer-nav-list:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer-nav-list:nth-child(2) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .footer-nav-list:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer-nav-list:nth-child(4) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .footer-nav-list:nth-child(5) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 1023px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer-inner {
    padding: 0 15px;
  }
  .footer-brand-card {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0 40px 20px;
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 30px;
    width: 160px;
  }
  .footer-address-info {
    text-align: center;
  }
  .footer-nav-list {
    margin-top: 30px;
  }
  .footer-nav-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .footer-copyright {
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-nav-list {
    width: calc(50% - 20px);
  }
}
.body-wrap {
  position: relative;
}

main {
  display: block;
}

.container::after {
  content: "";
  display: block;
  clear: both;
}

@media print, screen and (min-width: 1023px) {
  .wide-container {
    max-width: 1270px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1022px) {
  .wide-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.container-breaking-out {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

body.bg-pink {
  background: #FEFAFC;
}

.section-01 {
  padding: 4em 0 0;
}
.section-01 > *:first-child {
  margin-top: 0;
}
.section-01 .h2-02 {
  margin-top: 0;
}

.sec-normal {
  border-bottom: 1px solid #D9D9D9;
  padding: 3em 0;
}
.sec-normal > *:first-child {
  margin-top: 0;
}
@media print, screen and (min-width: 1023px) {
  .sec-normal {
    padding: 5em 0;
  }
}

@media print, screen and (min-width: 768px) {
  .hide-pc {
    display: none;
  }
}

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

p, ul, ol, dl, h2, h3, h4, h5, table {
  margin-top: 2em;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

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

.left {
  text-align: left !important;
}

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

.img-r {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .img-r {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .img-r {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
  }
}

.img-l {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .img-l {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .img-l {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
  }
}

.large {
  font-size: 110%;
}

.x-large {
  font-size: 140%;
}
@media screen and (max-width: 767px) {
  .x-large {
    font-size: 120%;
  }
}

.xx-large {
  font-size: 170%;
}
@media screen and (max-width: 767px) {
  .xx-large {
    font-size: 130%;
  }
}

.small {
  font-size: 84%;
}

.x-small {
  font-size: 70%;
}

em {
  font-weight: bold;
  font-style: normal;
}

.attention {
  color: red;
}

.memo {
  color: #888;
  font-size: 80%;
}

.tel {
  text-align: center;
}
.tel a {
  color: #000;
  text-decoration: none;
}
.tel a:hover, .tel a:active, .tel a:focus {
  color: black;
  text-decoration: none;
}
.tel a:visited {
  color: black;
}
.tel span {
  display: inline-block;
}
.tel .label {
  font-family: "EB Garamond", serif;
  letter-spacing: 0.2em;
}
.tel .no {
  font-family: "EB Garamond", serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .tel .no {
    font-size: 3.75px;
    font-size: 2.4rem;
  }
}
.tel .memo {
  color: #000;
}
@media print, screen and (min-width: 768px) {
  .tel .memo {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tel .memo {
    display: block;
  }
}
.tel .note {
  color: #999;
  font-size: 15px;
  font-size: 1.5rem;
  display: block;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .tel .note {
    font-size: 1.875px;
    font-size: 1.2rem;
  }
}

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

.margin__0 {
  margin-top: 0 !important;
}
.margin__05x {
  margin-top: 1em !important;
}
.margin__15x {
  margin-top: 3em !important;
}
.margin__2x {
  margin-top: 4em !important;
}

.fileicon {
  padding-left: 10px;
  padding-right: 10px;
}

.fileicon:before {
  font-family: FontAwesome;
  display: inline-block;
  padding-right: 3px;
}

.fileicon--docx:before {
  content: "\f1c2";
}

.fileicon--xlsx:before {
  content: "\f1c3";
}

.fileicon--pptx:before {
  content: "\f1c4";
}

.fileicon--pdf:before {
  content: "\f1c1";
}

.fileicon--zip:before {
  content: "\f1c6";
}

.fromTopIn {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fromTopOut {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  opacity: 0;
}

.fromBottomIn {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fromBottomOut {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
  opacity: 0;
}

.fromLeftIn {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fromLeftOut {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translate(-10px, 0);
          transform: translate(-10px, 0);
  opacity: 0;
}

.fromRightIn {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fromRightOut {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translate(10px, 0);
          transform: translate(10px, 0);
  opacity: 0;
}

.icon-text {
  display: inline-block;
  line-height: 1;
  border-radius: 15px;
  padding: 5px 1em;
  color: #fff;
  background: #0D7C29;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .icon-text {
    font-size: 1.625px;
    font-size: 1.04rem;
  }
}

.header.is-login {
  position: static !important;
}

@media print, screen and (min-width: 768px) {
  body.view-index .header-logo img {
    width: 150px;
  }
}

.page-title-wrapper {
  z-index: 1;
  position: relative;
  padding: 3em 0;
  background: #fff;
  margin-top: 100px;
}
.page-title-wrapper.mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 7/5;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  margin-top: 0;
}
.page-title-wrapper.mv h1.page-title {
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.55);
}
.page-title-wrapper.ohi {
  background-image: url(../../ohi/img/img_mv.jpg);
}
.page-title-wrapper.ohi_namikawa {
  background-image: url(../../ohi_namikawa/img/img_mv.jpg);
}
.page-title-wrapper.chiyokawa {
  background-image: url(../../chiyokawa/img/img_mv.jpg);
}
@media print, screen and (min-width: 1023px) {
  .page-title-wrapper {
    padding: 4vw 0;
    margin-top: 160px;
  }
  .page-title-wrapper.mv {
    aspect-ratio: 12/5;
  }
}

.page-title-inner {
  text-align: center;
}
.page-title-inner .en {
  color: #EE58A9;
  font-size: 20px;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
}
.page-title-inner h1.page-title {
  font-size: 32px;
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
  color: #6D3316;
}
@media screen and (max-width: 767px) {
  .page-title-inner h1.page-title {
    font-size: 30px;
  }
}

.mv {
  width: 100%;
}
.mv img {
  aspect-ratio: 7/5;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv img.img-top {
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
}
.mv img.img-btm {
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}
@media print, screen and (min-width: 1023px) {
  .mv img {
    aspect-ratio: 12/5;
  }
}

.btn-normal {
  width: 260px;
  height: 60px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.1);
  background-color: #0D7C29;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 30px;
}
.btn-normal::after {
  font-family: FontAwesome;
  content: "\f061";
  font-weight: normal;
  font-size: 12px;
}

.btn-cv {
  border: 1px solid #188EA0;
  color: #fff;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(147, 222, 214)), to(rgb(43, 181, 181)));
  background: linear-gradient(180deg, rgb(147, 222, 214) 0%, rgb(43, 181, 181) 100%);
  font-size: 26px;
  font-weight: bold;
  padding: 15px 100px;
}
@media screen and (max-width: 767px) {
  .btn-cv {
    padding: 10px;
    width: 100%;
  }
}

.btn-form {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  display: inline-block;
  padding: 1em 3em;
  -webkit-box-shadow: 0px 0px 10px -7px #000;
          box-shadow: 0px 0px 10px -7px #000;
  border-radius: 30px;
  line-height: 1;
  border: none;
  background: #0D7C29;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .btn-form {
    font-size: 2px;
    font-size: 1.28rem;
  }
}

.btn-back {
  font-size: 16px;
  font-size: 1.6rem;
  color: #0D7C29;
  display: inline-block;
  padding: 1em 3em;
  -webkit-box-shadow: 0px 0px 10px -7px #000;
          box-shadow: 0px 0px 10px -7px #000;
  border-radius: 30px;
  line-height: 1;
  border: none;
  background: #fff;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .btn-back {
    font-size: 2px;
    font-size: 1.28rem;
  }
}

.acms-entry table,
.table-01 {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #D9D9D9;
}
.acms-entry table th, .acms-entry table td,
.table-01 th,
.table-01 td {
  border-bottom: 1px solid #D9D9D9;
  border-right: none;
  font-weight: 500;
  padding: 15px;
  border-radius: 0;
}
.acms-entry table th p, .acms-entry table td p,
.table-01 th p,
.table-01 td p {
  margin: 0;
}
.acms-entry table th,
.table-01 th {
  min-width: 15%;
  width: 20%;
  text-align: center;
  background-color: #ECEEE2;
}
@media screen and (max-width: 767px) {
  .acms-entry table th,
  .table-01 th {
    width: 30%;
  }
}
.acms-entry table table,
.table-01 table {
  margin-top: 0;
}
.acms-entry table table th, .acms-entry table table td,
.table-01 table th,
.table-01 table td {
  border: 0;
}
.acms-entry table table th,
.table-01 table th {
  background: none;
}
.acms-entry table hr,
.table-01 hr {
  border: none;
  border-top: 1px dashed #D9D9D9;
  margin: 15px 0 10px;
}
@media screen and (max-width: 767px) {
  .acms-entry table th, .acms-entry table td,
  .table-01 th,
  .table-01 td {
    display: block;
    width: 100%;
    padding: 10px;
  }
}

.table-02 {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #D9D9D9;
  text-align: center;
}
.table-02 th, .table-02 td {
  border-bottom: 1px solid #D9D9D9;
  border-right: none;
  font-weight: 500;
  padding: 15px;
  border-radius: 0;
}
.table-02 th p, .table-02 td p {
  margin: 0;
}
.table-02 th {
  min-width: 15%;
  width: 20%;
  text-align: center;
  background-color: #ECEEE2;
}
@media screen and (max-width: 767px) {
  .table-02 th {
    width: 30%;
  }
}
.table-wrap {
  overflow-x: scroll;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.sec-title {
  font-size: 24px;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.sec-title .en {
  font-size: 15px;
  color: #EE58A9;
  line-height: 1;
}
.sec-title .en::before {
  content: "\a";
  white-space: pre;
}
@media print, screen and (min-width: 768px) {
  .sec-title {
    font-size: 30px;
  }
}

.sec-copy {
  font-size: 24px;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
.sec-copy .en {
  font-size: 15px;
  color: #EE58A9;
  line-height: 1;
}
.sec-copy .en::before {
  content: "\a";
  white-space: pre;
}
@media print, screen and (min-width: 768px) {
  .sec-copy {
    font-size: 30px;
  }
}

.h2-01 {
  font-size: 24px;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.h2-01 .en {
  font-size: 15px;
  color: #EE58A9;
  line-height: 1;
}
.h2-01 .en::before {
  content: "\a";
  white-space: pre;
}
@media print, screen and (min-width: 768px) {
  .h2-01 {
    font-size: 30px;
  }
}

.container > *:first-child {
  margin-top: 0;
}

.h3-01 {
  color: #6D3316;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .h3-01 {
    font-size: 22px;
  }
}

.entry h3.title {
  color: #6D3316;
  font-size: 32px;
  font-size: 3.2rem;
  margin: 0;
  line-height: 1.5;
  font-weight: normal;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .entry h3.title {
    font-size: 4px;
    font-size: 2.56rem;
  }
}
@media screen and (max-width: 767px) {
  .entry h3.title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) and (min-width: 480px) and (max-width: 1200px) {
  .entry h3.title {
    font-size: 3.5px;
    font-size: 2.24rem;
  }
}

.h4-01 {
  font-weight: normal;
  color: #999;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .h4-01 {
    font-size: 3.25px;
    font-size: 2.08rem;
  }
}
.h4-01:before {
  content: "●";
  color: #999;
  font-size: 20px;
  font-size: 2rem;
  display: inline-block;
  position: relative;
  top: -0.2em;
  left: -0.4em;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .h4-01:before {
    font-size: 2.5px;
    font-size: 1.6rem;
  }
}

.h4-border {
  display: block;
  text-align: center;
}
.h4-border h4 {
  display: inline-block;
  padding: 0.5em 0;
  border-bottom: 5px dotted #999;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .h4-border h4 {
    font-size: 2.75px;
    font-size: 1.76rem;
  }
}

.entry h4.title {
  font-weight: normal;
  color: #999;
  font-size: 26px;
  font-size: 2.6rem;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .entry h4.title {
    font-size: 3.25px;
    font-size: 2.08rem;
  }
}
.entry h4.title:before {
  content: "●";
  color: #999;
  font-size: 20px;
  font-size: 2rem;
  display: inline-block;
  position: relative;
  top: -0.2em;
  left: -0.4em;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .entry h4.title:before {
    font-size: 2.5px;
    font-size: 1.6rem;
  }
}

.copy-title {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.copy-title h2, .copy-title h3, .copy-title h4 {
  font-weight: normal;
  color: #6D3316;
  margin: 0;
  font-size: 38px;
  font-size: 3.8rem;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .copy-title h2, .copy-title h3, .copy-title h4 {
    font-size: 4.75px;
    font-size: 3.04rem;
  }
}
@media screen and (max-width: 767px) {
  .copy-title h2, .copy-title h3, .copy-title h4 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) and (min-width: 480px) and (max-width: 1200px) {
  .copy-title h2, .copy-title h3, .copy-title h4 {
    font-size: 3.5px;
    font-size: 2.24rem;
  }
}
@media screen and (max-width: 479px) {
  .copy-title h2, .copy-title h3, .copy-title h4 {
    font-size: 23px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 479px) and (min-width: 480px) and (max-width: 1200px) {
  .copy-title h2, .copy-title h3, .copy-title h4 {
    font-size: 2.875px;
    font-size: 1.84rem;
  }
}
.copy-title .copy {
  margin: 0;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .copy-title .copy {
    font-size: 3.5px;
    font-size: 2.24rem;
  }
}
@media screen and (max-width: 767px) {
  .copy-title .copy {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) and (min-width: 480px) and (max-width: 1200px) {
  .copy-title .copy {
    font-size: 2.75px;
    font-size: 1.76rem;
  }
}
.copy-title .deco {
  width: 9px;
  display: inline-block;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ad7bb3+0,e8b8c4+50,e4a15a+100 */
  background: #ad7bb3; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#ad7bb3), color-stop(50%, #e8b8c4), to(#e4a15a));
  background: linear-gradient(to bottom, #ad7bb3 0%, #e8b8c4 50%, #e4a15a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ad7bb3", endColorstr="#e4a15a",GradientType=0 ); /* IE6-9 */
  display: block;
}
.copy-title .text {
  display: block;
  padding-left: 1em;
}
.copy-title.-blue .deco {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#447bb2+0,00a392+100 */
  background: #447bb2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#447bb2), to(#00a392));
  background: linear-gradient(to bottom, #447bb2 0%, #00a392 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#447bb2", endColorstr="#00a392",GradientType=0 ); /* IE6-9 */
}

ul.list-headline {
  margin-top: 0;
  border-top: 5px dotted #FAD9DF;
  padding: 0;
}
ul.list-headline li {
  list-style: none;
}
ul.list-headline li a {
  display: block;
  border-bottom: 5px dotted #FAD9DF;
  background: url(../img/icon_arrow_b.png) no-repeat 97% 50%;
  background-size: 13px 13px;
  padding: 1em 0;
  color: #6D3316;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
ul.list-headline li a:hover, ul.list-headline li a:active, ul.list-headline li a:focus {
  color: #6d3316;
  text-decoration: none;
}
ul.list-headline li a:visited {
  color: #6d3316;
}
ul.list-headline li a dl {
  margin: 0;
  padding: 0 0.5em;
}
@media print, screen and (min-width: 768px) {
  ul.list-headline li a dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
ul.list-headline li a dt {
  color: #0D7C29;
}
@media print, screen and (min-width: 768px) {
  ul.list-headline li a dt {
    width: 8em;
  }
}
ul.list-headline li a dd {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  ul.list-headline li a dd {
    width: calc(100% - 8em);
  }
}
ul.list-headline li a dd a {
  color: #0D7C29;
  text-decoration: none;
}
ul.list-headline li a dd a:hover, ul.list-headline li a dd a:active, ul.list-headline li a dd a:focus {
  color: #0d7c29;
  text-decoration: none;
}
ul.list-headline li a dd a:visited {
  color: #0d7c29;
}
ul.list-headline li a:hover {
  background: rgba(250, 217, 223, 0.4);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.rice {
  padding: 0;
}
.rice li {
  margin: 0 0 5px 1em;
  text-indent: -1em;
  list-style: none;
}
.rice li:before {
  content: "※";
}

ul.list {
  list-style-type: none;
}
ul.list li {
  padding-left: 1em;
  text-indent: -0.1em;
}
ul.list li::before {
  margin: 0 5px 0 -0.8em;
  display: inline-block;
  content: "●";
  font-size: 5px;
  font-size: 0.5rem;
  color: #0D7C29;
  position: relative;
  top: -3px;
  left: 0;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  ul.list li::before {
    font-size: 0.625px;
    font-size: 0.4rem;
  }
}

.list-arrow {
  padding-left: 0;
  list-style-type: none;
}
.list-arrow a {
  position: relative;
  display: inline-block;
  padding-left: 1em;
  text-decoration: none;
}
.list-arrow a::before {
  width: 14px;
  height: 14px;
  color: #fff;
  background: #0D7C29;
  font-family: ionicons;
  content: "\f3d1";
  margin-right: 5px;
  display: inline-block;
  font-size: 10px;
  font-size: 1rem;
  border-radius: 7px;
  text-align: center;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .list-arrow a::before {
    font-size: 1.25px;
    font-size: 0.8rem;
  }
}

dl.facility-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0;
}
dl.facility-list dt {
  width: 8em;
}
dl.facility-list dd {
  width: calc(100% - 8em);
}
@media screen and (max-width: 767px) {
  dl.facility-list dt, dl.facility-list dd {
    width: 100%;
  }
}

dl.icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 10px;
}
dl.icon-list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
  height: 35px;
  border-radius: 20px;
  background-color: #0D7C29;
  font-size: 15px;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
dl.icon-list dd {
  width: calc(100% - 130px);
  margin-top: 10px;
  padding-top: 5px;
}
@media screen and (max-width: 767px) {
  dl.icon-list dd {
    width: 100%;
    margin-top: 5px;
  }
}

ol {
  padding-left: 1em;
}
ol li {
  margin: 20px 0;
}

.text-copy-01 {
  font-size: 30px;
  font-size: 3rem;
  margin-top: 0;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .text-copy-01 {
    font-size: 3.75px;
    font-size: 2.4rem;
  }
}

.lead {
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  .lead {
    text-align: center;
  }
}

.em {
  font-weight: 600;
}

.acms-entry [class*=column-eximage-].nocaption, .acms-entry [class*=column-image-].nocaption, .acms-entry [class*=column-media-].nocaption, .acms-entry [class*=column-video-], .acms-entry [class*=column-yolp-], .acms-entry [class*=column-youtube-] {
  margin-top: 2em !important;
}
@media screen and (max-width: 767px) {
  .acms-entry [class*=column-eximage-].nocaption, .acms-entry [class*=column-image-].nocaption, .acms-entry [class*=column-media-].nocaption, .acms-entry [class*=column-video-], .acms-entry [class*=column-yolp-], .acms-entry [class*=column-youtube-] {
    margin-bottom: 2em !important;
  }
}

.acms-thumbnail p {
  margin-top: 0;
}

/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box .error-text {
  /* エラー文 */
  margin: 5px 0 0 0;
  color: red;
}

.contact-form {
  width: 100%;
  padding: 0;
  list-style: none;
}
.contact-form td, .contact-form th {
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .contact-form td, .contact-form th {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .contact-form th {
    width: 30%;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .contact-form th {
    border: 0;
    text-align: left;
    padding-bottom: 0;
  }
}

.contact-form-group::after {
  content: "";
  display: block;
  clear: both;
}

.contact-form-label {
  display: block;
  text-align: left;
  margin: 0;
  padding: 10px 10px 0 10px;
  font-weight: 600;
}

.contact-form-control {
  display: block;
  padding: 10px;
}

.contact-form-grid {
  margin: 0 -5px;
}

.contact-form-col,
.acms-entry .contact-form-col {
  margin: 0 0 10px 0;
  padding: 0 5px;
}
.contact-form-col:last-child,
.acms-entry .contact-form-col:last-child {
  margin: 0;
}

@media print, screen and (min-width: 768px) {
  .contact-form {
    display: table;
    width: 100%;
  }
  .contact-form-group {
    display: table-row;
  }
  .contact-form-label,
  .contact-form-control {
    display: table-cell;
  }
  .contact-form-label {
    width: 30%;
    padding: 25px 15px 15px 15px;
    vertical-align: top;
  }
  .contact-form-control {
    width: 70%;
    padding: 15px;
  }
  .contact-form-col {
    margin: 0;
  }
  table.contact-form {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #D9D9D9;
  }
  table.contact-form tr {
    width: 100%;
  }
  table.contact-form th, table.contact-form td {
    border-bottom: 1px solid #D9D9D9;
    border-right: none;
    padding: 15px;
    border-radius: 0;
  }
  table.contact-form th p, table.contact-form td p {
    margin: 0;
  }
  table.contact-form th {
    background-color: #ECEEE2;
    font-weight: 600;
  }
  table.contact-form .contact-form-group {
    display: inline-table;
  }
}
.contact-box input[type=text],
.contact-box input[type=number],
.contact-box input[type=email],
.contact-box input[type=tel],
.contact-box textarea {
  border: 1px solid #edf3f8;
  border-radius: 3px;
  background: #edf3f8;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 1em 1.5em !important;
}
.contact-box input[type=text]:hover,
.contact-box input[type=number]:hover,
.contact-box input[type=email]:hover,
.contact-box input[type=tel]:hover,
.contact-box textarea:hover {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* ステップ
------------------------------ */
.contact-box .mail-step {
  margin: 0 0 35px 0;
  padding: 0 10px;
  /* カウンターの設定 */
  counter-reset: mailStep;
}
.contact-box .mail-step-item {
  float: left;
  list-style: none;
  margin: 0 10px;
  padding: 18px 0 14px;
  color: #999;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .contact-box .mail-step-item {
    font-size: 2px;
    font-size: 1.28rem;
  }
}
.contact-box .mail-step-item:before {
  /* カウンターの設定 */
  counter-increment: mailStep;
  content: counter(mailStep) ".";
}
.contact-box .mail-step-item-current {
  color: #333;
}
@media print, screen and (min-width: 768px) {
  .contact-box .mail-step {
    height: 60px;
  }
}

/* 送信ボタン
------------------------------ */
.form-btn-box {
  margin: 0 10px 50px 10px;
  text-align: center;
}

.form-btn {
  display: inline-block;
}

.form-btn-return {
  float: left;
}

.form-btn-send {
  float: right;
}

@media print, screen and (min-width: 768px) {
  .form-btn-return {
    float: none;
  }
  .form-btn-send {
    float: none;
    max-width: 360px;
    width: 100%;
  }
}
/* ラベル
------------------------------ */
.label-required {
  margin: 0 5px;
  padding: 2px 1em;
  color: #FFF;
  font-size: 14px;
  border-radius: 1em;
  background: #EB677B;
  line-height: 1.2;
  font-weight: normal;
}

@media print, screen and (min-width: 768px) {
  .label-required {
    float: right;
  }
}
/* フォーム要素
------------------------------ */
.contact-box select[required]:required {
  border: 1px solid #C49511;
}
.contact-box select.focused:invalid {
  border: 1px solid #c41134;
}
.contact-box select[required]:valid {
  border: 1px solid #A7A7AA;
}
.contact-box input[required]:required,
.contact-box textarea[required]:required {
  background: #FFFDEB;
}
.contact-box input.focused:invalid,
.contact-box textarea.focused:invalid {
  background: #FFEBEE;
}
.contact-box input[required]:valid,
.contact-box textarea[required]:valid {
  background: #FFF;
}
.contact-box input[type=text],
.contact-box input[type=password],
.contact-box input[type=datetime],
.contact-box input[type=datetime-local],
.contact-box input[type=date],
.contact-box input[type=month],
.contact-box input[type=time],
.contact-box input[type=week],
.contact-box input[type=number],
.contact-box input[type=email],
.contact-box input[type=url],
.contact-box input[type=search],
.contact-box input[type=tel] {
  padding: 14px 5px 10px 5px;
}
.contact-box textarea {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 5px 5px 4px;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .contact-box textarea {
    font-size: 2px;
    font-size: 1.28rem;
  }
}
.contact-box select {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 11px 30px 11px 10px;
  vertical-align: top;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .contact-box select {
    font-size: 2px;
    font-size: 1.28rem;
  }
}

/* バリデーター
------------------------------ */
.valid-mark {
  display: none;
}

.valid-mark.valid {
  display: inline;
  color: #5cb85c;
  float: right;
}

.invalid {
  background: #ffebee !important;
}

table.contact-form .cource {
  padding-left: 30px;
}
table.contact-form .price {
  color: #666;
  font-size: 84%;
}
table.contact-form .readonly, table.contact-form .readonly:focus {
  border: 0;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-kiyaku {
  text-align: center;
  margin-top: 2em;
}

.sec-contact-form {
  padding: 4em 0;
}

.acms-form input[type=text], .acms-form input[type=password], .acms-form input[type=datetime], .acms-form input[type=datetime-local], .acms-form input[type=date], .acms-form input[type=month], .acms-form input[type=time], .acms-form input[type=week], .acms-form input[type=number], .acms-form input[type=email], .acms-form input[type=url], .acms-form input[type=search], .acms-form input[type=tel], .acms-form input.acms-form-control,
.acms-form textarea,
.acms-form .entryFormLiteEditor,
.acms-form textarea.acms-form-control {
  background: #fff;
  font-size: 16px;
}

.form-btn-box {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 20px;
}
.form-btn-box .button-more {
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 500px;
  min-width: 250px;
  height: 100px;
}
.form-btn-box .button-more input {
  width: 100%;
  height: 100%;
  border: 5px solid #1B7D32;
  border-radius: 20px;
  color: #1B7D32;
  font-size: 25px;
  font-weight: 700;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 4px 6px 5px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px 5px rgba(0, 0, 0, 0.08);
  padding: 15px 40px 15px 20px;
}
.form-btn-box .button-more .btn-contact-icon {
  content: "";
  display: block;
  background: #1B7D32;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 20px;
  font-size: 1em;
}
.form-btn-box .button-more.-back input {
  padding: 15px 20px 15px 40px;
}
.form-btn-box .button-more.-back .btn-contact-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 20px;
  z-index: 1;
}

article.entry {
  background: #fff;
  border-radius: 20px;
  padding: 2em;
  margin: 100px 0 200px;
}

.acms-entry [class*=column-eximage-].nocaption, .acms-entry [class*=column-image-].nocaption, .acms-entry [class*=column-media-].nocaption, .acms-entry [class*=column-video-], .acms-entry [class*=column-yolp-], .acms-entry [class*=column-youtube-] {
  margin-top: 4em;
}

.acms-entry [class*=column-eximage-], .acms-entry [class*=column-image-], .acms-entry [class*=column-media-] {
  margin-top: 4em;
}

.acms-entry a.file {
  display: block;
  color: #0D7C29;
  position: relative;
}
.acms-entry a.file::before {
  width: 14px;
  height: 14px;
  color: #fff;
  background: #0D7C29;
  font-family: ionicons;
  content: "\f3d1";
  margin-right: 5px;
  display: inline-block;
  font-size: 10px;
  font-size: 1rem;
  border-radius: 7px;
  text-align: center;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .acms-entry a.file::before {
    font-size: 1.25px;
    font-size: 0.8rem;
  }
}
.acms-entry h2.title, .acms-entry h3.title, .acms-entry h4.title {
  margin-top: 3em !important;
}
.acms-entry .h3-01 {
  margin-left: -1.5em;
}
.acms-entry .h3-01 .en {
  padding-left: 3px;
}
.acms-entry .list01 {
  margin-top: 1em;
}
.acms-entry .index-text {
  margin: 0.5em 0 3em;
  color: #0D7C29;
  text-align: center;
  color: #6D3316;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .acms-entry .index-text {
    font-size: 2px;
    font-size: 1.28rem;
  }
}

header.entry-header {
  padding-bottom: 0.5em;
  margin-bottom: 2em;
  border-bottom: 1px solid #FFE0B2;
}
header.entry-header .h2-02 {
  margin-top: 0;
}
header.entry-header .entry-header-info {
  margin-top: 0.5em;
  text-align: right;
}
header.entry-header .entry-header-info a {
  display: inline-block;
  padding: 0.5em 1em;
  border: 1px solid #0D7C29;
  color: #0D7C29;
  line-height: 1;
}
header.entry-header .entry-header-info a:hover {
  color: #0D7C29;
}
header.entry-header a {
  color: #6D3316;
  text-decoration: none;
}
header.entry-header a:hover, header.entry-header a:active, header.entry-header a:focus {
  color: #6d3316;
  text-decoration: none;
}
header.entry-header a:visited {
  color: #6d3316;
}

section.sec-blog,
section.section {
  padding: 50px 0 200px;
}

.card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}
.card-wrap .card-item {
  width: 100%;
  margin-top: 30px;
}
.card-wrap .card-img {
  border-radius: 20px;
  margin: 0;
  overflow: hidden;
}
.card-wrap .card-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
}
.card-wrap .card-txt {
  font-size: 16px;
  margin-top: 15px;
}
.card-wrap.col-four .card-title {
  text-align: center;
}
.card-wrap.col-four ul {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .card-wrap {
    margin-top: 30px;
  }
  .card-wrap .card-item {
    width: calc(33.3333333333% - 20px);
    margin-top: 40px;
  }
  .card-wrap .card-title {
    font-size: 22px;
  }
  .card-wrap.col-two .card-item {
    width: calc(50% - 20px);
  }
  .card-wrap.col-four .card-item {
    width: calc(50% - 15px);
  }
}
@media print, screen and (min-width: 1023px) {
  .card-wrap.col-two {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-wrap.col-two .card-item {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 460px;
  }
  .card-wrap.col-four .card-item {
    width: calc(25% - 15px);
  }
}

.flow-container {
  padding: 1rem 0;
  margin-top: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-family: sans-serif;
}

.step-wrap {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: -10px;
}

.step-wrap:nth-child(1) {
  z-index: 4;
}

.step-wrap:nth-child(2) {
  z-index: 3;
}

.step-wrap:nth-child(3) {
  z-index: 2;
}

.step-wrap:nth-child(4) {
  z-index: 1;
}

.step-wrap:last-child {
  margin-right: 0;
}

.step-arrow {
  position: relative;
  width: 100%;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.step-wrap:nth-child(1) .step-label {
  padding-left: 0;
}

/* 左端（最初の要素）：左側が直線 */
.step-wrap:first-child .step-arrow {
  -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

/* 中間の要素：左側が矢印の凹み、右側が矢印の突起 */
.step-wrap:not(:first-child):not(:last-child) .step-arrow {
  -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
          clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
}

/* 右端（最後の要素）：右側が直線 */
.step-wrap:last-child .step-arrow {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  z-index: 1;
  padding-left: 10px;
}

.step-wrap:last-child .step-label {
  padding-right: 0;
}

/* 色：奇数が濃い緑、偶数が薄い緑 */
.step-wrap:nth-child(odd) .step-arrow {
  background: #0D7C29;
}

.step-wrap:nth-child(even) .step-arrow {
  background: #D3EDC6;
}

.step-wrap:nth-child(odd) .step-label {
  color: #fff;
}

.step-wrap:nth-child(even) .step-label {
  color: #0a5c1e;
}

@media print, screen and (min-width: 768px) {
  .step-label {
    font-size: 15px;
    padding-left: 0;
    padding-right: 10px;
  }
}
.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.media-body {
  width: 100%;
  margin-top: 30px;
}
.media-body *:first-child {
  margin-top: 0;
}

.media-img {
  width: 100%;
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
}

@media print, screen and (min-width: 1023px) {
  .media {
    margin-top: 20px;
  }
  .media-body {
    width: calc(55% - 20px);
  }
  .media-img {
    width: calc(45% - 20px);
  }
  .img-left .media-body {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .img-left .media-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.introduction-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.introduction-box {
  width: 100%;
}

.introduction-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

@media print, screen and (min-width: 1023px) {
  .introduction-box {
    width: 50%;
    padding: 0 25px;
  }
  .introduction-title {
    font-size: 24px;
  }
}
.special-menu {
  border: 5px solid #0D7C29;
  border-radius: 20px;
  margin-top: 30px;
  padding: 20px;
}
.special-menu ul {
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  .special-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .special-menu ul {
    padding: 0 10px;
  }
}

.archive {
  background: #000;
  padding: 8px;
  color: #fff;
  margin-bottom: 2em;
}
.archive a {
  color: #fff;
  text-decoration: none;
}
.archive a:hover, .archive a:active, .archive a:focus {
  color: white;
  text-decoration: none;
}
.archive a:visited {
  color: white;
}
.archive .inner {
  border: 1px solid #ddd;
  padding: 15px;
}
.archive h2 {
  text-align: center;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  .archive h2 {
    font-size: 2.25px;
    font-size: 1.44rem;
  }
}
.archive h2::after {
  display: block;
  content: "";
  background: #0D7C29;
  height: 2px;
  width: 40px;
  margin-left: auto;
  margin-right: auto;
}

ul.archive-entry {
  margin: 1em 0 0;
  padding: 0;
}
ul.archive-entry li {
  list-style: none;
}
ul.archive-entry li:not(:last-child) {
  margin-bottom: 10px;
}
ul.archive-entry a {
  display: block;
}
ul.archive-entry a::after {
  content: "";
  display: block;
  clear: both;
}
ul.archive-entry .thumb {
  width: 70px;
  float: left;
  margin-right: 10px;
}
ul.archive-entry .body {
  overflow: hidden;
}
ul.archive-entry .body dl {
  margin: 0;
}
ul.archive-entry .body .date {
  font-size: 11px;
  font-size: 1.1rem;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  ul.archive-entry .body .date {
    font-size: 1.375px;
    font-size: 0.88rem;
  }
}
ul.archive-entry .body .title {
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
  ul.archive-entry .body .title {
    font-size: 1.625px;
    font-size: 1.04rem;
  }
}

.archive-year {
  margin: 1em 0 0;
  padding: 0;
}
.archive-year li {
  list-style: none;
}
.archive-year li:not(:last-child) {
  margin-bottom: 10px;
}
.archive-year a {
  display: block;
  position: relative;
}
.archive-year a::after {
  content: "";
  display: block;
  clear: both;
}
.archive-year a::after {
  font-family: ionicons;
  content: "\f125";
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 5px;
  color: #0D7C29;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.archive-year a:hover::after {
  -webkit-transform: translate(5px, 0px);
          transform: translate(5px, 0px);
}