@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, a, b {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 100%;
  list-style-type: none;
  vertical-align: baseline;
  text-decoration: none;
  box-sizing: border-box;
}

#top {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #top {
    background-image: url(../images/teaser-sp.jpg);
  }
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 140%;
  font-family: "Noto Sans JP", sans-serif;
  color: #323232;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url(../images/bg_secondpage.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 280px;
  padding-top: 0.1px;
}
@media screen and (max-width: 767px) {
  body {
    background-size: 100% 46.67vw;
  }
}

a {
  color: #323232;
}
@media screen and (min-width: 768px) {
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.7;
  }
}

#top {
  background-image: url(../images/bg_toppage.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

img {
  max-width: 100%;
  max-height: 100%;
}

input[type=submit], input[type=button],
button[type=submit],
button[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration,
button[type=submit]::-webkit-search-decoration,
button[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus,
button[type=submit]::focus,
button[type=button]::focus {
  outline-offset: -2px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.no-padding {
  padding: 0 !important;
}

.bg-yellow {
  background-color: #fff8eb;
}

header {
  z-index: 10;
  border-top: 3px solid #049A03;
  background-color: #FFFAEF;
  position: fixed;
  width: 100%;
  top: 0;
}
@media screen and (min-width: 768px) {
  header {
    display: flex;
    align-items: center;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  header #nav-content {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    width: 80%;
  }
}
header .header-logo {
  padding: 5px 10px;
  background: #fff;
  position: absolute;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  header .header-logo {
    height: 10.667vw;
    padding: 1.3333vw;
    left: 3.733vw;
  }
}
header .header-logo__link {
  display: block;
  height: 100%;
}
header .header-logo__link img {
  display: block;
  height: 100%;
}
header #nav-drawer {
  width: 100%;
  max-width: 1350px;
  margin: auto auto 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header #nav-drawer {
    position: fixed;
    top: 0;
    width: 100%;
    height: 16vw;
  }
  header #nav-drawer #nav-input {
    display: none;
  }
  header #nav-drawer #nav-open {
    position: fixed;
    right: 0;
    top: 0;
    width: 16vw;
    height: 16vw;
    z-index: 10000;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.2s;
    background-image: url(../images/bg_menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  header #nav-drawer #nav-open::after {
    width: 100%;
    content: "MENU";
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.1em;
    color: #fff;
  }
  header #nav-drawer #nav-open span {
    margin: 8vw auto 0;
    width: 8vw;
    height: 3px;
    position: relative;
    border-radius: 3px;
    background: #049A03;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    content: "";
    cursor: pointer;
    transition: 0.2s;
    border-radius: 3px;
  }
  header #nav-drawer #nav-open span:before, header #nav-drawer #nav-open span:after {
    opacity: 1;
    transition: 0.2s;
    width: 100%;
    height: 3px;
    background: #049A03;
    display: block;
    content: "";
    cursor: pointer;
    text-align: center;
    border-radius: 3px;
    position: absolute;
    left: calc(50% - 4vw);
    top: calc(50% - 1.5px);
  }
  header #nav-drawer #nav-open span:before {
    transform: translate(0, -8.5px);
  }
  header #nav-drawer #nav-open span:after {
    transform: translate(0, 8.5px);
  }
  header #nav-drawer #nav-close {
    pointer-events: none;
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: linear-gradient(rgb(255, 251, 239) 0%, rgba(255, 251, 239, 0.7) 100%);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  header #nav-drawer #nav-content {
    overflow: auto;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    height: calc(100% - 60px);
    background: #fff;
    transition: 0.3s ease-in-out;
    transform: translateX(105%);
    border-top-left-radius: 50px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  header #nav-drawer #nav-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  header #nav-drawer #nav-input:checked + #nav-open span {
    background-color: transparent;
  }
  header #nav-drawer #nav-input:checked + #nav-open span:before {
    transform: translate(0, 0) rotate(-45deg);
  }
  header #nav-drawer #nav-input:checked + #nav-open span:after {
    transform: translate(0, 0) rotate(45deg);
  }
  header #nav-drawer #nav-input:checked + #nav-open::after {
    content: "CLOSE";
  }
  header #nav-drawer #nav-input:checked ~ #nav-close {
    pointer-events: auto;
    opacity: 1;
  }
  header #nav-drawer #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
}
@media screen and (min-width: 768px) {
  header #nav-drawer #nav-input {
    display: none;
  }
}
header .sub-list {
  display: none;
  justify-content: flex-end;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  header .sub-list {
    display: flex;
  }
}
header .sub-list__item + li {
  margin-left: 20px;
}
header .sub-list__link {
  background-color: rgb(59, 89, 152);
  border-radius: 30px;
  padding: 5px 15px 7px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
}
header .sub-list__link::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../images/icon_facebook.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(1px);
  margin-right: 5px;
}
header .gnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header .gnav {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    margin: 0;
    flex-wrap: wrap;
    padding: 0;
    align-items: inherit;
  }
}
header .gnav-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  header .gnav-list {
    padding: 8vw 8vw 4vw;
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
  }
}
header .gnav-list__link {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  header .gnav-list__link {
    justify-content: center;
    padding: 1vh 0;
    font-size: 4.8vw;
  }
}
header .gnav-list__item {
  box-sizing: border-box;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  header .gnav-list__item + .gnav-list__item {
    margin-left: 40px;
    position: relative;
  }
}
header .gnav-list__item + .gnav-list__item::after {
  position: absolute;
  left: -22px;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  content: "";
  height: 12px;
  border-left: 1px solid #323232;
}
@media screen and (max-width: 767px) {
  header .gnav-list__item + .gnav-list__item::after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  header .gnav-list__item {
    margin-left: 0;
    width: 100%;
    padding: 1vh 0;
  }
}
header .gnav-list__item.item-fb {
  display: none;
}
@media screen and (max-width: 767px) {
  header .gnav-list__item.item-fb {
    display: block;
  }
}
header .gnav-list__item.item-fb .gnav-list__link {
  border: 2px solid rgb(59, 89, 152);
  border-radius: 32px;
  height: 42px;
  padding: 0 10px;
  background-color: rgb(59, 89, 152);
  color: #fff;
  font-size: 3.733vw;
  font-weight: bold;
  letter-spacing: 0;
}
header .gnav-list__item.item-fb .gnav-list__link::before {
  display: block;
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url(../images/icon_facebook.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1.333vw;
}
@media screen and (min-width: 768px) {
  header .gnav-list__item.item-price {
    margin-left: 20px;
  }
}
header .gnav-list__item.item-price::after {
  content: none;
}
header .gnav-list__item.item-price .gnav-list__link {
  background: #049A03;
  border-radius: 32px;
  height: 42px;
  padding: 0 22px;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  header .gnav-list__item.item-reqruit {
    margin-left: 20px;
  }
}
header .gnav-list__item.item-reqruit::after {
  content: none;
}
header .gnav-list__item.item-reqruit .gnav-list__link {
  border: 2px solid #049A03;
  border-radius: 32px;
  height: 42px;
  padding: 0 22px;
  color: #049A03;
  font-weight: bold;
}

.box-row {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .row02 > p {
    display: flex;
    width: 100%;
  }
  .row02 > p label {
    width: 50%;
  }
  .row02 > p label .wpcf7-checkbox .wpcf7-list-item {
    width: 100%;
  }
  .row02 > p label + label > span {
    width: 100% !important;
  }
}

@media screen and (min-width: 768px) {
  .row03 > p {
    display: flex;
    width: 100%;
  }
  .row03 > p label {
    width: 45%;
  }
  .row03 > p label .wpcf7-form-control-wrap .wpcf7-radio span {
    white-space: nowrap;
  }
  .row03 > p label + label {
    width: 55%;
    white-space: nowrap;
  }
  .row03 > p label + label .wpcf7-form-control-wrap {
    margin-left: 20px;
    width: 100% !important;
  }
}

main.second {
  padding: 30px 20px 100px;
}
@media screen and (max-width: 767px) {
  main.second {
    padding: 5.333vw 4.8vw 16vw;
  }
}
@media screen and (min-width: 768px) {
  main {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 60px;
    padding: 4.8vw 0 16vw;
  }
}

.contentContainer {
  max-width: 1250px;
  margin: auto;
}
.contentContainer_title {
  font-weight: 300;
  font-size: 40px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 767px) {
  .contentContainer_title {
    font-size: 6.933vw;
    margin-top: 16vw;
  }
}
.contentContainer_title .sub {
  display: block;
  margin-top: 5px;
  font-weight: 400;
  font-size: 18.5983px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 767px) {
  .contentContainer_title .sub {
    font-size: 3.2vw;
    margin-top: 3px;
  }
}
.contentContainer.swiperContainer {
  max-width: 100%;
}

.secondHeader {
  padding-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .secondHeader {
    padding-bottom: 8vw;
  }
  .secondHeader .contentContainer_title {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.heroContainer {
  max-width: 1350px;
  margin: auto;
}
.heroContainer .hero {
  position: relative;
  padding-bottom: 54.7%;
}
.heroContainer .hero_copy {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 32%;
  height: 0;
  padding-bottom: 32%;
  border-radius: 450px;
  writing-mode: vertical-rl;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}
.heroContainer .hero_copy span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 175%;
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-size: 24px;
}
@media screen and (max-width: 1349px) {
  .heroContainer .hero_copy span {
    font-size: 1.77vw;
  }
}
.heroContainer .hero_mainImage {
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  width: 72%;
  padding-bottom: 50.7%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 150px;
}
.heroContainer .hero_subImage {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 33%;
  padding-bottom: 23%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 150px 0 130px 0;
}
@media screen and (max-width: 767px) {
  .heroContainer .hero {
    display: flex;
    padding-bottom: 120.5vw;
  }
  .heroContainer .hero_mainImage {
    width: calc(100% - 9.6vw);
    left: 4.8vw;
    top: 4.8vw;
    border-radius: 13.333vw;
    padding-bottom: 64vw;
  }
  .heroContainer .hero_copy {
    z-index: 1;
    width: 55.5vw;
    height: 55.5vw;
    top: 45vw;
    left: -3vw;
  }
  .heroContainer .hero_copy span {
    font-size: 3.4vw;
    line-height: 200%;
    top: 54%;
  }
  .heroContainer .hero_subImage {
    width: 48.66vw;
    height: 40vw;
    border-radius: 18.667vw 0 16vw 0;
    left: auto;
    right: 4.8vw;
    top: 75.6vw;
    z-index: 2;
  }
}
.heroContainer .heroLocation {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .heroContainer .heroLocation {
    padding: 0 4.8vw;
  }
}
.heroContainer .heroLocation-item {
  width: calc((100% - 56px) / 2);
  padding-bottom: 15.5%;
  border-radius: 50px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .heroContainer .heroLocation-item {
    width: 100%;
    border-radius: 6.933vw;
    padding-bottom: 35.5%;
  }
  .heroContainer .heroLocation-item + .heroLocation-item {
    margin-top: 8vw;
  }
}
.heroContainer .heroLocation-item .caption {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  background: #FFFFFF;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 90px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .heroContainer .heroLocation-item .caption {
    font-size: 3.2vw;
    padding: 1.6vw;
    width: 80%;
    line-height: 100%;
    bottom: -4.267vw;
  }
}
.heroContainer .image_hero_locationItem03 {
  margin-top: 30px;
  margin-bottom: 136px;
}
@media screen and (max-width: 767px) {
  .heroContainer .image_hero_locationItem03 {
    margin: 5.333vw auto 0;
    width: calc(100% - 9.6vw);
  }
}
.heroContainer .image_hero_locationItem03 img {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .heroContainer .image_hero_locationItem03 img {
    margin-bottom: 5.333vw;
  }
}

.serviceContainer {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .serviceContainer {
    padding: 0 4.8vw;
  }
}
.serviceContainer .serviceList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 78px auto 52px;
}
@media screen and (max-width: 767px) {
  .serviceContainer .serviceList {
    margin: 13.333vw auto;
  }
}
.serviceContainer .serviceList_item {
  width: 20%;
  text-align: center;
  padding-bottom: 52px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .serviceContainer .serviceList_item + .serviceList_item {
    border-left: 1px dotted rgb(50, 50, 50);
  }
}
@media screen and (max-width: 767px) {
  .serviceContainer .serviceList_item {
    padding-bottom: 9.6vw;
    width: 50%;
    margin-bottom: 13.333vw;
  }
  .serviceContainer .serviceList_item:nth-of-type(2n) {
    border-left: 1px dotted rgb(50, 50, 50);
  }
  .serviceContainer .serviceList_item:last-of-type {
    margin-bottom: 0;
  }
}
.serviceContainer .serviceList_name {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .serviceContainer .serviceList_name {
    font-size: 4.267vw;
    margin-bottom: 2.667vw;
  }
}
.serviceContainer .serviceList_image {
  display: flex;
  justify-content: center;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .serviceContainer .serviceList_image {
    max-width: 21.866vw;
    margin: 0 auto 4vw;
  }
}
.serviceContainer .serviceList_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  width: 170px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .serviceContainer .serviceList_text {
    font-size: 3.2vw;
    max-width: 32vw;
  }
}
.serviceContainer .serviceList_link {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .serviceContainer .serviceList_link {
    font-size: 3.2vw;
  }
}
.serviceContainer .serviceList_link::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/icon_arrow_right01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .serviceContainer .serviceList_link::after {
    margin-left: 1.3333vw;
  }
}

.newsContainer {
  background-color: #FFFBEF;
  padding: 60px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .newsContainer {
    padding: 9.6vw;
  }
  .newsContainer .contentContainer_title {
    margin-top: 0;
  }
}
.newsContainer .newsList {
  max-width: 1150px;
  margin: 42px auto 60px;
  border-top: 1px solid rgba(50, 50, 50, 0.5);
}
.newsContainer .newsList_item {
  border-bottom: 1px solid rgba(50, 50, 50, 0.5);
}
.newsContainer .newsList_link {
  display: block;
  padding: 18px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.15em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .newsContainer .newsList_link {
    font-size: 3.2vw;
  }
  .newsContainer .newsList_link .title {
    display: block;
    line-height: 200%;
  }
}

.facilitiesContainer {
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .facilitiesContainer {
    padding: 9.6vw 0;
  }
}
.facilitiesContainer .facilities {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 42px auto 34px;
}
.facilitiesContainer .facilities_image {
  display: block;
  padding-bottom: 30%;
  width: calc((100% - 18px) / 2);
  margin-bottom: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .facilitiesContainer .facilities_image {
    width: calc((100% - 8px) / 2);
    margin-bottom: 8px;
  }
}

.aboutContainer {
  position: relative;
  max-width: 100%;
  padding-top: 63%;
}
@media screen and (max-width: 767px) {
  .aboutContainer {
    padding: 58% 4.8vw 0;
  }
}
.aboutContainer::before {
  position: absolute;
  content: "";
  background-image: url(../images/bg_top_about.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 100%;
  padding-bottom: 67%;
  top: 0;
  left: 0;
}
.aboutContainer .about {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: auto;
  background-color: #FFFBEF;
  padding: 50px 20px;
}
@media screen and (max-width: 767px) {
  .aboutContainer .about {
    padding: 4.8vw 4.8vw 13.333vw;
  }
}
.aboutContainer .about .contentContainer_title {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .aboutContainer .about .contentContainer_title {
    margin-top: 4.8vw;
  }
}
.aboutContainer .about .box-row {
  margin: 50px auto;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .aboutContainer .about .box-row {
    flex-wrap: wrap;
    margin: 8vw auto;
  }
}
.aboutContainer .about .box-row iframe {
  display: block;
}
.aboutContainer .about .box-row .iframeWrapper,
.aboutContainer .about .box-row .aboutList {
  display: block;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .aboutContainer .about .box-row .iframeWrapper,
  .aboutContainer .about .box-row .aboutList {
    width: 100%;
  }
}
.aboutContainer .about .box-row iframe {
  border: 1px solid;
  border-radius: 6px;
  height: auto;
  min-height: 380px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .aboutContainer .about .box-row iframe {
    min-height: 69.33vw;
  }
}
.aboutContainer .about .box-row .iframeWrapper {
  position: relative;
}
.aboutContainer .about .box-row .iframeWrapper::after {
  content: "周辺情報はここを押してください";
  position: absolute;
  left: 0;
  top: -30px;
  font-weight: bold;
  font-size: 16px;
  background-image: url(../images/reply-solid.svg);
  background-repeat: no-repeat;
  background-position: 25px center;
  background-size: 20px auto;
  padding: 0px 0 10px 55px;
}
.aboutContainer .about .box-row .aboutList {
  border-top: 1px solid rgba(50, 50, 50, 0.5);
}
@media screen and (max-width: 767px) {
  .aboutContainer .about .box-row .aboutList {
    margin-top: 4.267vw;
  }
}
.aboutContainer .about .box-row .aboutList_item {
  border-bottom: 1px solid rgba(50, 50, 50, 0.5);
  display: flex;
}
@media screen and (max-width: 767px) {
  .aboutContainer .about .box-row .aboutList_item {
    flex-wrap: wrap;
    padding: 2.1333vw 0;
  }
}
.aboutContainer .about .box-row .aboutList_title, .aboutContainer .about .box-row .aboutList_text {
  display: block;
  padding: 18px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.15em;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .aboutContainer .about .box-row .aboutList_title, .aboutContainer .about .box-row .aboutList_text {
    width: 100%;
    padding: 0;
  }
}
.aboutContainer .about .box-row .aboutList_title {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .aboutContainer .about .box-row .aboutList_title {
    display: block;
    font-weight: bold;
  }
}

.accessContainer {
  position: relative;
}
.accessContainer .about {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: auto;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .accessContainer .about {
    padding: 4.8vw 0 13.333vw;
  }
}
.accessContainer .about .contentContainer_title {
  width: 100%;
}
.accessContainer .about .box-row {
  margin: 50px auto;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .accessContainer .about .box-row {
    flex-wrap: wrap;
    margin: 8vw auto;
  }
}
.accessContainer .about .box-row iframe,
.accessContainer .about .box-row .aboutList {
  display: block;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .accessContainer .about .box-row iframe,
  .accessContainer .about .box-row .aboutList {
    width: 100%;
  }
}
.accessContainer .about .box-row iframe {
  border: none;
  height: auto;
}
@media screen and (max-width: 767px) {
  .accessContainer .about .box-row iframe {
    min-height: 69.33vw;
  }
}
.accessContainer .about .box-row .aboutList {
  border-top: 1px solid rgba(50, 50, 50, 0.5);
}
@media screen and (max-width: 767px) {
  .accessContainer .about .box-row .aboutList {
    margin-top: 4.267vw;
  }
}
.accessContainer .about .box-row .aboutList_item {
  border-bottom: 1px solid rgba(50, 50, 50, 0.5);
  display: flex;
}
@media screen and (max-width: 767px) {
  .accessContainer .about .box-row .aboutList_item {
    flex-wrap: wrap;
    padding: 2.1333vw 0;
  }
}
.accessContainer .about .box-row .aboutList_title, .accessContainer .about .box-row .aboutList_text {
  display: block;
  padding: 18px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.15em;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .accessContainer .about .box-row .aboutList_title, .accessContainer .about .box-row .aboutList_text {
    width: 100%;
    padding: 0;
  }
}
.accessContainer .about .box-row .aboutList_title {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .accessContainer .about .box-row .aboutList_title {
    display: block;
    font-weight: bold;
  }
}

.infoContainer {
  max-width: 1150px;
  padding: 90px 0 100px;
}
@media screen and (max-width: 767px) {
  .infoContainer {
    padding: 8vw 4.8vw;
  }
}
.infoContainer .info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.infoContainer .info_link {
  display: block;
  position: relative;
}
.infoContainer .info_item {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 767px) {
  .infoContainer .info_item {
    width: 100%;
  }
  .infoContainer .info_item + .info_item {
    margin-top: 12vw;
  }
}
.infoContainer .info_itemTitle {
  font-weight: 400;
  font-size: 60px;
  line-height: 145%;
  color: #049A03;
}
@media screen and (max-width: 767px) {
  .infoContainer .info_itemTitle {
    font-size: 10.667vw;
  }
}
.infoContainer .info_itemImage {
  background-image: url(../images/back.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 380px;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .infoContainer .info_itemImage {
    height: 58.67vw;
  }
}
.infoContainer .info_itemText {
  display: block;
  position: absolute;
  left: 0;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .infoContainer .info_itemText {
    bottom: 5.333vw;
  }
}
.infoContainer .info_itemText span {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 190%;
  background-color: #fff;
  color: #323232;
}
@media screen and (max-width: 767px) {
  .infoContainer .info_itemText span {
    font-size: 4.5vw;
  }
}
.infoContainer .info_itemText .text {
  display: block;
  margin-top: 5px;
  background-color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-family: "Shippori Mincho", serif;
  padding: 12px 10px;
}
@media screen and (max-width: 767px) {
  .infoContainer .info_itemText .text {
    font-size: 10.7507px;
    letter-spacing: -0.015em;
    padding: 2.667vw;
  }
}
.infoContainer .info_itemText .text .tel {
  display: block;
  margin-top: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .infoContainer .info_itemText .text .tel {
    font-size: 13.4383px;
  }
}
.infoContainer .info_item .link {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 767px) {
  .infoContainer .info_item .link_button {
    height: 6.4vw;
    font-size: 3.2vw;
  }
}

.messageContainer .message {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .messageContainer .message {
    margin-top: 8vw;
  }
}
.messageContainer .message_title {
  font-weight: 300;
  font-size: 40px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.25em;
  color: #323232;
}
@media screen and (max-width: 767px) {
  .messageContainer .message_title {
    font-size: 5.333vw;
    margin-bottom: 8vw;
    flex-wrap: wrap;
  }
  .messageContainer .message_title span {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
.messageContainer .message_text {
  max-width: 1150px;
  margin: 28px auto 65px;
  font-weight: 400;
  font-size: 18px;
  line-height: 250%;
  text-align: justify;
  letter-spacing: 0.05em;
}
.messageContainer .message .box-row {
  max-width: 1150px;
  margin: 0 auto 148px;
  justify-content: space-between;
}
.messageContainer .message .box-row_item {
  width: calc((100% - 20px) / 2);
  padding-bottom: 36%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.messageContainer .basicPolicy_title {
  font-weight: 400;
  font-size: 26px;
  line-height: 38px;
  text-align: center;
  letter-spacing: 0.4em;
}
.messageContainer .basicPolicy_text {
  max-width: 810px;
  margin: 28px auto 114px;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
}

.historyContainer {
  border-top: 1px solid rgba(50, 50, 50, 0.5);
  max-width: 1050px;
  margin: auto;
  padding: 76px 0 0;
}
.historyContainer .history {
  background-image: url(../images/bg_history.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .historyContainer .history {
    background-size: contain;
  }
}
.historyContainer .history_title {
  font-weight: 400;
  font-size: 26px;
  line-height: 38px;
  letter-spacing: 0.4em;
  text-align: center;
}
.historyContainer .history_list {
  max-width: 810px;
  margin: 28px auto 0;
}
.historyContainer .history_listItem {
  display: flex;
  flex-wrap: wrap;
}
.historyContainer .history_listItem + li {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .historyContainer .history_listItem + li {
    margin-top: 5.333vw;
  }
}
.historyContainer .history_listItem .year {
  width: 25%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .historyContainer .history_listItem .year {
    width: 100%;
    margin-bottom: 1.3vw;
    font-weight: bold;
  }
}
.historyContainer .history_listItem .text {
  width: 75%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .historyContainer .history_listItem .text {
    width: 100%;
  }
}
.historyContainer .history_listItem .year,
.historyContainer .history_listItem .text {
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.1em;
}

.secondNewsContainer {
  padding: 120px 0 76px;
}
@media screen and (max-width: 767px) {
  .secondNewsContainer {
    padding: 8vw 0 0;
  }
}
.secondNewsContainer .secondNews {
  max-width: 1150px;
  margin: auto;
}
.secondNewsContainer .secondNewsList {
  border-top: 1px solid rgba(50, 50, 50, 0.5);
}
.secondNewsContainer .secondNewsList_link {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(50, 50, 50, 0.5);
}
.secondNewsContainer .secondNewsList_link .date,
.secondNewsContainer .secondNewsList_link .body {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.1em;
}
.secondNewsContainer .secondNewsList_link .date {
  width: 140px;
}
.secondNewsContainer .secondNewsList_link .body {
  width: calc(100% - 140px);
  display: flex;
  align-items: center;
}
.secondNewsContainer .secondNewsList_link .body .category {
  margin-right: 20px;
}
.secondNewsContainer .effort {
  max-width: 1150px;
  margin: auto;
}
.secondNewsContainer .effort p {
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
}
.secondNewsContainer .effort_title {
  font-weight: 300;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 50px;
}
.secondNewsContainer .effort_title span {
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.25em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .secondNewsContainer .effort_title {
    font-size: 5.333vw;
    margin-bottom: 8vw;
    flex-wrap: wrap;
  }
  .secondNewsContainer .effort_title span {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
.secondNewsContainer .effort_image img {
  display: block;
  margin: auto;
}
.secondNewsContainer .effortTable {
  border-top: 1px solid;
  border-right: 1px solid;
  display: flex;
  flex-wrap: wrap;
}
.secondNewsContainer .effortTable_title, .secondNewsContainer .effortTable_item {
  width: 33.3333333333%;
  border-left: 1px solid;
  border-bottom: 1px solid;
  padding: 10px;
  line-height: 200%;
  font-size: 16px;
}
.secondNewsContainer .effortTable_title {
  text-align: center;
  background-color: #CCE8BD;
}

.secondServiceContainer {
  padding: 120px 0 76px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer {
    padding: 8vw 0 0;
  }
}
.secondServiceContainer .room {
  max-width: 900px;
  margin: 0 auto 100px;
}
.secondServiceContainer .room_title {
  font-weight: 300;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.secondServiceContainer .serviceList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -15px 65px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .serviceList {
    margin: 0 auto 3.733vw;
    justify-content: flex-start;
  }
}
.secondServiceContainer .serviceList_item {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .serviceList_item {
    margin: 0 3.733vw 3.733vw 0;
  }
}
.secondServiceContainer .serviceList_link {
  border: 1px solid #049A03;
  border-radius: 50px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .serviceList_link {
    height: 9.067vw;
    font-size: 3.733vw;
  }
}
.secondServiceContainer .serviceList_item.current a {
  background-color: #049A03;
  color: #fff;
}
.secondServiceContainer .service_mainImage {
  border-radius: 50px;
  padding-bottom: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .service_mainImage {
    border-radius: 5.333vw;
    margin-bottom: 8vw;
  }
}
.secondServiceContainer .service_title {
  font-weight: 300;
  font-size: 32px;
  line-height: 150%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .service_title {
    font-size: 6.4vw;
  }
}
.secondServiceContainer .service_address, .secondServiceContainer .service_address * {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .service_address, .secondServiceContainer .service_address * {
    font-size: 3.733vw;
  }
}
.secondServiceContainer .summary {
  max-width: 1150px;
  margin: auto;
}
.secondServiceContainer .summary_title {
  font-weight: 300;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.secondServiceContainer .summary_title span {
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.25em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .summary_title {
    font-size: 5.333vw;
    margin-bottom: 8vw;
    flex-wrap: wrap;
  }
  .secondServiceContainer .summary_title span {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
.secondServiceContainer .summaryList {
  margin: auto auto 50px;
}
.secondServiceContainer .summaryList_item {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .summaryList_item {
    flex-wrap: wrap;
  }
}
.secondServiceContainer .summaryList_item .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  width: 180px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .summaryList_item .title {
    width: 100%;
  }
}
.secondServiceContainer .summaryList_item .contents {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  width: calc(100% - 180px);
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .summaryList_item .contents {
    width: 100%;
  }
}
.secondServiceContainer .summaryList_item + .summaryList_item {
  border-top: 1px solid rgba(50, 50, 50, 0.5);
}
.secondServiceContainer .summaryImage {
  display: flex;
  justify-content: center;
  max-width: 950px;
  margin: auto;
}
.secondServiceContainer .summaryImage_item {
  width: calc((100% - 50px) / 2);
  margin: 0 25px;
  padding-bottom: 30%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .summaryImage_item {
    width: 48%;
    margin: 0 4% 0 0;
  }
  .secondServiceContainer .summaryImage_item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.secondServiceContainer .complaints {
  max-width: 1150px;
  margin: auto;
}
.secondServiceContainer .complaints_title {
  font-weight: 300;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.secondServiceContainer .complaints_title span {
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.25em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .complaints_title {
    font-size: 5.333vw;
    margin-bottom: 8vw;
    flex-wrap: wrap;
  }
  .secondServiceContainer .complaints_title span {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
.secondServiceContainer .complaints_contents {
  display: flex;
  padding: 30px;
  background: #FFFBEF;
  border-radius: 20px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .complaints_contents {
    flex-wrap: wrap;
  }
}
.secondServiceContainer .complaints_contents .title {
  width: 200px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .complaints_contents .title {
    width: 100%;
    text-align: center;
  }
}
.secondServiceContainer .complaints_contents .complaints_text {
  width: calc(100% - 200px);
}
@media screen and (min-width: 768px) {
  .secondServiceContainer .complaints_contents .complaints_text {
    padding: 0 20px;
    border-left: 1px solid #323232;
  }
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .complaints_contents .complaints_text {
    border-top: 1px dotted #323232;
    margin-top: 1.3vw;
    padding-top: 1.3vw;
    width: 100%;
  }
}
.secondServiceContainer .complaints_contents .complaints_text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.secondServiceContainer .complaints_contents .complaints_text p + * {
  margin-top: 18px;
}
.secondServiceContainer .complaints_contents .complaints_text p span {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .complaints_contents .complaints_text p span {
    display: block;
  }
}
.secondServiceContainer .other {
  max-width: 1150px;
  margin: 100px auto 0;
}
.secondServiceContainer .other_title {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.4em;
  margin-bottom: 32px;
}
.secondServiceContainer .otherWrapper {
  display: flex;
  max-width: 1050px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .otherWrapper {
    flex-wrap: wrap;
  }
}
.secondServiceContainer .otherList {
  margin-right: 120px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .otherList {
    margin-right: 0;
    width: 100%;
  }
}
.secondServiceContainer .otherList_item {
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.secondServiceContainer .otherList_item + .otherList_item {
  border-top: 1px dotted #323232;
}
.secondServiceContainer .otherList_item .title,
.secondServiceContainer .otherList_item .contents {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.05em;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .otherList_item .title,
  .secondServiceContainer .otherList_item .contents {
    padding: 2.667vw 0;
  }
}
.secondServiceContainer .otherList_item .title {
  width: 70px;
}
.secondServiceContainer .otherList_item .contents {
  font-weight: 700;
}
.secondServiceContainer .otherReception_text {
  padding: 15px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.secondServiceContainer .otherReception_item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .otherReception_item {
    flex-wrap: wrap;
  }
}
.secondServiceContainer .otherReception_item + .otherReception_item {
  margin-top: 25px;
}
.secondServiceContainer .otherReception_item .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  width: 180px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .otherReception_item .title {
    width: 100%;
  }
}
.secondServiceContainer .otherReception_item .contents {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .secondServiceContainer .otherReception_item .contents {
    padding: 0 20px;
    border-left: 1px solid #323232;
  }
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .otherReception_item .contents {
    width: 100%;
    border-top: 1px dotted #323232;
    margin-top: 1.3vw;
    padding-top: 1.3vw;
  }
}
.secondServiceContainer .otherLink {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .otherLink {
    margin-top: 8vw;
  }
}
.secondServiceContainer .otherLink a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  border: 1px solid #049A03;
  border-radius: 35px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  height: 35px;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .otherLink a {
    height: auto;
    padding: 2.667vw 10.667vw;
    line-height: 140%;
  }
}
.secondServiceContainer .otherLink a::after {
  position: absolute;
  content: "";
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../images/icon_arrow_right01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .secondServiceContainer .otherLink a::after {
    right: 5.333vw;
  }
}

.disclosure {
  display: flex;
  justify-content: center;
  max-width: 1150px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .disclosure {
    margin: 0 auto 3.733vw;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .disclosure_item {
    margin: 0 3.733vw 3.733vw 0;
  }
}
.disclosure_item a {
  height: 70px;
  border: 1px solid #049A03;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media screen and (max-width: 767px) {
  .disclosure_item a {
    height: 9.067vw;
    font-size: 3.733vw;
    min-width: auto;
    padding: 0 4.267vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .disclosure_item {
    width: calc((100% - 100px) / 2);
    margin-right: 50px;
  }
  .disclosure_item:nth-of-type(3n) {
    margin-right: 0;
  }
}
.disclosure_item.current a {
  background-color: #049A03;
  color: #fff;
}

.statement {
  max-width: 1150px;
  margin: 45px auto 0;
}
@media screen and (max-width: 767px) {
  .statement {
    margin: 6.933vw auto 0;
  }
}
.statement p {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .statement p {
    font-size: 4vw;
    line-height: 140%;
  }
}
.statementList {
  border-top: 1px solid rgba(50, 50, 50, 0.5);
}
.statementList_item {
  border-bottom: 1px solid rgba(50, 50, 50, 0.5);
}
.statementList_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  padding: 18px 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .statementList_link:hover {
    color: #049A03;
  }
}
@media screen and (max-width: 767px) {
  .statementList_link {
    flex-wrap: wrap;
  }
}
.statementList_link .date {
  margin-right: 20px;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .statementList_link .date {
    width: 100%;
  }
}
.statementList_link .body {
  width: calc(100% - 255px);
}
@media screen and (max-width: 767px) {
  .statementList_link .body {
    width: 100%;
    line-height: 140%;
    margin: 2.667vw 0;
  }
}
.statement .download {
  width: 135px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .statement .download {
    width: 100%;
  }
}
.statement .download img {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .statement .download img {
    margin-left: 0;
  }
}

.secondService02Container {
  max-width: 100%;
  background-color: #FFFBEF;
  margin: auto -20px;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .secondService02Container {
    margin: auto -4.8vw;
    padding: 8vw 4.8vw;
    box-sizing: content-box;
  }
}
.secondService02Container .purpose {
  max-width: 1150px;
  margin: auto;
}
.secondService02Container .purpose_title {
  font-weight: 300;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.secondService02Container .purpose_title span {
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.25em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .secondService02Container .purpose_title {
    font-size: 5.333vw;
    margin-bottom: 8vw;
    flex-wrap: wrap;
  }
  .secondService02Container .purpose_title span {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
.secondService02Container .purposeList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.secondService02Container .purposeList_item {
  background-color: #fff;
  margin: 0 7px;
  width: calc((100% - 84px) / 6);
  padding-bottom: calc((100% - 84px) / 6);
  position: relative;
  border-radius: 200px;
}
@media screen and (max-width: 767px) {
  .secondService02Container .purposeList_item {
    width: 48%;
    padding-bottom: 30%;
    border-radius: 5.333vw;
    margin: 0 4% 5.333vw 0;
  }
  .secondService02Container .purposeList_item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.secondService02Container .purposeList_item span {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 300;
  font-size: 18px;
  line-height: 200%;
  text-align: center;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .secondService02Container .purposeList_item span {
    font-size: 4.267vw;
    line-height: 140%;
  }
}
.secondService02Container .policy {
  max-width: 1150px;
  margin: auto;
  counter-reset: count;
}
.secondService02Container .policy_title {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.4em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .secondService02Container .policy_title {
    font-size: 5.333vw;
    margin-bottom: 8vw;
    flex-wrap: wrap;
  }
  .secondService02Container .policy_title span {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
.secondService02Container .policy_item {
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
  /* or 32px */
  letter-spacing: 0.05em;
  margin: 0 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .secondService02Container .policy_item {
    margin: 0 0 0 8vw;
    font-size: 4vw;
  }
}
.secondService02Container .policy_item + .policy_item {
  margin-top: 10px;
}
.secondService02Container .policy_item::before {
  position: absolute;
  left: -20px;
  top: 0;
  counter-increment: count;
  content: counter(count) ".";
}
.secondService02Container .service02 {
  max-width: 1150px;
  margin: auto;
}
.secondService02Container .service02_title {
  font-weight: 300;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.secondService02Container .service02_title span {
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.25em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .secondService02Container .service02_title {
    font-size: 5.333vw;
    margin-bottom: 8vw;
    flex-wrap: wrap;
  }
  .secondService02Container .service02_title span {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
.secondService02Container .service02_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.05em;
}
.secondService02Container .service02_title02 {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.4em;
  margin: 60px auto 12px;
}
.secondService02Container .service02List {
  margin: auto auto 50px;
  max-width: 1050px;
}
.secondService02Container .service02List_item {
  display: flex;
  flex-wrap: wrap;
  padding: 21px 0;
  align-items: center;
}
.secondService02Container .service02List_item .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  width: 160px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .secondService02Container .service02List_item .title {
    width: 100%;
  }
}
.secondService02Container .service02List_item .contents {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  width: calc(100% - 200px);
}
@media screen and (min-width: 768px) {
  .secondService02Container .service02List_item .contents {
    padding-left: 20px;
    border-left: 1px solid #323232;
  }
}
@media screen and (max-width: 767px) {
  .secondService02Container .service02List_item .contents {
    border-top: 1px dotted #323232;
    width: 100%;
    margin-top: 1.3vw;
    padding-top: 1.3vw;
  }
}

.galleryContainer {
  padding: 120px 0 76px;
}
@media screen and (max-width: 767px) {
  .galleryContainer {
    padding: 8vw 0 0;
  }
}
.galleryContainer .gallery {
  max-width: 1060px;
  margin: auto;
}
.galleryContainer .gallery_cat {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -15px 65px;
}
@media screen and (max-width: 767px) {
  .galleryContainer .gallery_cat {
    margin: 0 auto 3.733vw;
    justify-content: flex-start;
  }
}
.galleryContainer .gallery_cat_item {
  margin: 0 15px 15px;
}
@media screen and (max-width: 767px) {
  .galleryContainer .gallery_cat_item {
    margin: 0 3.733vw 3.733vw 0;
  }
}
.galleryContainer .gallery_cat_link {
  border: 1px solid #049A03;
  border-radius: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  min-width: 200px;
}
@media screen and (max-width: 767px) {
  .galleryContainer .gallery_cat_link {
    height: 9.067vw;
    font-size: 3.733vw;
    min-width: auto;
  }
}
.galleryContainer .gallery_cat_link.current {
  background-color: #049A03;
  color: #fff;
}
.galleryContainer .gallerySlider .slick-prev {
  left: -30px;
}
.galleryContainer .gallerySlider .slick-next {
  right: -30px;
}
.galleryContainer .gallerySlider .slick-list {
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .galleryContainer .gallerySlider .slick-list {
    border-radius: 5.333vw;
  }
}
.galleryContainer .gallerySlider_item {
  padding: 0 !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.galleryContainer .gallerySlider_item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0 520px;
}
@media screen and (max-width: 767px) {
  .galleryContainer .gallerySlider_item a {
    padding: 0 0 80vw;
  }
}
.galleryContainer .gallery .caption {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  padding: 5px 30px;
  border: 1px solid #049A03;
  border-radius: 35px;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .galleryContainer .gallery .caption {
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.galleryContainer .galleryList {
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
}
.galleryContainer .galleryList_item {
  width: calc((100% - 60px) / 3);
  position: relative;
  margin-right: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .galleryContainer .galleryList_item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 7%;
  }
  .galleryContainer .galleryList_item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.galleryContainer .galleryList_item a {
  display: block;
  width: 100%;
  padding-bottom: 60%;
}
@media screen and (max-width: 767px) {
  .galleryContainer .galleryList_item a {
    padding-bottom: 70%;
  }
  .galleryContainer .galleryList_item a .caption {
    bottom: 0;
    transform: translate(-50%, 50%);
    padding: 1.3vw 2.667vw;
    font-size: 3.2vw;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .galleryContainer .galleryList_item:nth-of-type(3n) {
    margin-right: 0;
  }
}

.recruitContainer {
  padding: 120px 0 76px;
}
@media screen and (max-width: 767px) {
  .recruitContainer {
    padding: 8vw 0 0;
  }
}
.recruitContainer .recruit {
  max-width: 1150px;
  margin: auto;
}
.recruitContainer .recruit_torikumi {
  margin-bottom: 30px;
}
.recruitContainer .recruit_torikumiLink {
  border: 2px solid #049A03;
  border-radius: 32px;
  height: 42px;
  padding: 0 22px;
  color: #fff;
  background-color: #049A03;
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.2em;
  position: relative;
}
.recruitContainer .recruit_torikumiLink::after {
  content: "CLICK→";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.recruitContainer .recruit_title {
  font-weight: 300;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.recruitContainer .recruit_title span {
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.25em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .recruitContainer .recruit_title {
    font-size: 5.333vw;
    margin-bottom: 8vw;
    flex-wrap: wrap;
  }
  .recruitContainer .recruit_title span {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
.recruitContainer .recruit .singleContents * {
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.05em;
}
.recruitContainer .recruitList {
  border-top: 1px solid rgba(50, 50, 50, 0.5);
}
.recruitContainer .recruitList_item {
  border-bottom: 1px solid rgba(50, 50, 50, 0.5);
}
.recruitContainer .recruitList_link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  padding: 18px 0;
}
.recruitContainer .recruitList_link .date {
  margin-right: 20px;
}
.recruitContainer .recruitList_row {
  display: flex;
  border-bottom: 1px solid rgba(50, 50, 50, 0.5);
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .recruitContainer .recruitList_row {
    flex-wrap: wrap;
  }
}
.recruitContainer .recruitList_title {
  width: 230px;
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .recruitContainer .recruitList_title {
    width: 100%;
    font-weight: bold;
  }
}
.recruitContainer .recruitList_contents {
  width: calc(100% - 230px);
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .recruitContainer .recruitList_contents {
    width: 100%;
  }
}

.formContainer {
  max-width: initial;
  background-color: #FFFBEF;
  margin: auto -20px;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .formContainer {
    margin-top: 8vw;
    padding: 8vw;
  }
}
.formContainer .form_title {
  font-weight: 300;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.formContainer .form_title span {
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.25em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .formContainer .form_title {
    font-size: 5.333vw;
    margin-bottom: 8vw;
    flex-wrap: wrap;
  }
  .formContainer .form_title span {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}

.contactContainer {
  padding: 80px 0;
}

.singleBody {
  max-width: 1150px;
  margin: 100px auto 70px;
}
.singleBody_content * {
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
}
.singleBody_content * + * {
  margin-top: 20px;
}
.singleBody_title {
  font-weight: bold;
  font-size: 26px;
  margin: 20px 0;
}
.singleBody .single-catlist {
  margin-bottom: 50px;
}
.singleBody #breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}
.singleBody #breadcrumb ul li {
  margin-right: 25px;
  position: relative;
}
.singleBody #breadcrumb ul li + li::before {
  content: ">";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.singleBody #breadcrumb ul li a {
  text-decoration: underline;
}

.singleNav {
  max-width: 1150px;
  margin: auto;
  display: flex;
}
.singleNav__item.prev {
  margin-right: auto;
}
.singleNav__item.next {
  margin-left: auto;
}

.pagenavi {
  margin-top: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.15em;
}
.pagenavi span, .pagenavi a {
  display: block;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  text-indent: 4px;
  font-weight: bold;
  margin: 0 5px;
}
.pagenavi span.current, .pagenavi a.current {
  background: #049A03;
  color: #fff;
}

.link {
  display: flex;
  justify-content: center;
}
.link_button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  margin: auto;
  border: 1px solid #049A03;
  border-radius: 35px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  height: 35px;
  position: relative;
  min-width: 254px;
  background-color: #fff;
}
.link_button::after {
  position: absolute;
  content: "";
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../images/icon_arrow_right01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 10px;
}

.sliderList__item .sliderList__link {
  max-width: 115rem;
  height: 50rem;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  position: relative;
  background-color: rgba(0, 0, 0, 0.05);
}

.footer {
  background-color: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .footer {
    margin: 21.333vw 4.8vw 10.667vw;
    flex-wrap: wrap;
    width: auto;
  }
}
.footer_head {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .footer_head {
    width: 100%;
  }
}
.footer_body {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .footer_body {
    width: 100%;
  }
}
.footer_logo {
  margin-bottom: 15px;
}
.footer_address {
  font-weight: 400;
  font-size: 20px;
  line-height: 200%;
  display: flex;
  align-items: center;
  letter-spacing: 0.015em;
  font-family: "Shippori Mincho";
}
.footer_banner {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer_banner {
    justify-content: space-between;
    margin: 4.267vw auto 10.667vw;
  }
}
.footer_bannerItem {
  display: block;
}
.footer_bannerItem img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer_bannerItem {
    margin-left: 10px;
  }
  .footer_bannerItem img {
    max-width: 142px;
  }
}
@media screen and (max-width: 767px) {
  .footer_bannerItem {
    width: 48%;
  }
}
.footer_bannerItem.full img {
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .footer_bannerItem.full {
    width: 100%;
    margin-left: 0;
  }
  .footer_bannerItem.full img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.footer .copy {
  margin-top: 16px;
  font-family: "Shippori Mincho";
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer .copy {
    font-size: 3.2vw;
    text-align: center;
    margin: 4.267vw auto 0;
  }
}
.footer .fnav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer .fnav {
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
  }
}
.footer .fnav_link {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .footer .fnav_link {
    justify-content: center;
    line-height: 6.4vw;
    font-size: 4.267vw;
    text-align: center;
  }
}
.footer .fnav .separater {
  border-left: 1px solid #ccc;
  height: 10px;
}
.footer .fnav_item {
  box-sizing: border-box;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .footer .fnav_item {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .fnav_item.item-price {
    width: 48%;
    margin-top: 5.333vw;
  }
}
.footer .fnav_item.item-price .fnav_link {
  background: #049A03;
  border-radius: 32px;
  height: 42px;
  padding: 0 22px;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer .fnav_item.item-reqruit {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .fnav_item.item-reqruit {
    width: 48%;
    margin-top: 5.333vw;
  }
}
.footer .fnav_item.item-reqruit::after {
  content: none;
}
.footer .fnav_item.item-reqruit .fnav_link {
  border: 2px solid #049A03;
  border-radius: 32px;
  height: 42px;
  padding: 0 22px;
  color: #049A03;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer .fnav .fnav_item + .fnav_item,
  .footer .fnav .separater + .fnav_item {
    margin-left: 40px;
    position: relative;
  }
  .footer .fnav .fnav_item + .fnav_item::after,
  .footer .fnav .separater + .fnav_item::after {
    position: absolute;
    left: -22px;
    top: calc(50% + 2px);
    transform: translateY(-50%);
    content: "";
    height: 12px;
    border-left: 1px solid #323232;
  }
}

.contactform {
  max-width: 1150px;
  margin: auto;
}
.contactform::before {
  content: "※は必須項目です。";
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.4em;
  color: #049A03;
  display: block;
  margin-bottom: 30px;
}
.contactform form .required {
  color: #049A03;
  display: inline-block;
  margin-left: 10px;
}
.contactform form .row {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .contactform form .row {
    margin-top: 5.333vw;
  }
}
.contactform form label {
  display: flex;
  padding-top: 8px;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .contactform form label {
    flex-wrap: wrap;
    font-size: 4.267vw;
  }
}
.contactform form label .wpcf7-form-control-wrap {
  margin-top: -8px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .contactform form label .wpcf7-form-control-wrap {
    width: 100%;
    margin-top: 1.3vw;
  }
}
.contactform form .wpcf7-form-control-wrap {
  display: block;
  width: calc(100% - 276px);
  position: relative;
}
.contactform form .wpcf7-form-control-wrap input[type=text],
.contactform form .wpcf7-form-control-wrap input[type=email],
.contactform form .wpcf7-form-control-wrap input[type=tel],
.contactform form .wpcf7-form-control-wrap textarea {
  border: none;
  outline: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #323232;
  padding: 10px 16px;
  border-radius: 3px;
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
}
.contactform form .wpcf7-form-control-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
.contactform form .wpcf7-checkbox, .contactform form .wpcf7-acceptance, .contactform form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.contactform form .wpcf7-checkbox .wpcf7-list-item, .contactform form .wpcf7-acceptance .wpcf7-list-item, .contactform form .wpcf7-radio .wpcf7-list-item {
  margin: 0 15px 10px 0;
}
.contactform form .wpcf7-checkbox .wpcf7-list-item label, .contactform form .wpcf7-acceptance .wpcf7-list-item label, .contactform form .wpcf7-radio .wpcf7-list-item label {
  display: block;
}
.contactform form .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label, .contactform form .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label, .contactform form .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 30px;
}
.contactform form .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before, .contactform form .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before, .contactform form .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  content: "";
  border: 1px solid #cccccc;
  box-sizing: border-box;
  background-color: #fff;
}
.contactform form .wpcf7-checkbox .wpcf7-list-item input, .contactform form .wpcf7-acceptance .wpcf7-list-item input, .contactform form .wpcf7-radio .wpcf7-list-item input {
  display: none;
}
.contactform form .wpcf7-checkbox .wpcf7-list-item input:checked + span::before, .contactform form .wpcf7-acceptance .wpcf7-list-item input:checked + span::before, .contactform form .wpcf7-radio .wpcf7-list-item input:checked + span::before {
  border: 2px solid #323232;
}
.contactform form .wpcf7-checkbox .wpcf7-list-item input:checked + span::after, .contactform form .wpcf7-acceptance .wpcf7-list-item input:checked + span::after, .contactform form .wpcf7-radio .wpcf7-list-item input:checked + span::after {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  content: "";
}
.contactform form .your-dropdown {
  display: block;
  position: relative;
  width: calc(100% - 276px);
  margin-right: 0;
  margin-left: auto;
  margin-top: -8px;
}
@media screen and (max-width: 767px) {
  .contactform form .your-dropdown {
    width: 100%;
    margin-top: 1.3vw;
  }
}
.contactform form .your-dropdown .wpcf7-form-control-wrap {
  width: 100%;
  margin-top: 0px;
}
.contactform form .your-dropdown select.wpcf7-select {
  width: 100%;
  border: 1px solid #323232;
  background-color: #ffffff;
  padding: 10px 34px 10px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
}
.contactform form .your-dropdown::after {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 16px;
  transform: translateY(-70%);
  content: "\f0dd";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  z-index: 1;
  pointer-events: none;
}
.contactform form .wpcf7-checkbox .wpcf7-list-item input:checked + span::after, .contactform form .wpcf7-acceptance .wpcf7-list-item input:checked + span::after {
  height: 5px;
  content: "";
  border-bottom: 4px solid #323232;
  border-left: 4px solid #323232;
  transform: rotate(-45deg) translate(3px, -6px);
}
.contactform form .wpcf7-radio {
  padding-top: 4px;
}
.contactform form .wpcf7-radio .wpcf7-list-item label span::before {
  border-radius: 20px;
}
.contactform form .wpcf7-radio .wpcf7-list-item input:checked + span::after {
  height: 10px;
  border-radius: 20px;
  background-color: #323232;
}
.contactform form .contact-form__item.policy {
  margin-top: 25px;
  line-height: 150%;
  padding: 10px;
  max-height: 300px;
  overflow: auto;
  border-radius: 3px;
  border: 1px solid #323232;
}
.contactform form .contact-form__item .acceptance {
  margin-top: 25px;
  margin-bottom: 25px;
  line-height: 150%;
  overflow: auto;
  border-radius: 3px;
  border: 1px solid #323232;
}
.contactform form .contact-form__item .acceptance .wpcf7-acceptance {
  padding: 8px 20px;
  box-sizing: border-box;
  background-color: #F8F8F7;
  text-align: center;
}
.contactform form .contact-form__item .acceptance .wpcf7-list-item {
  margin: 0 auto;
}
.contactform form .contact-form__item .acceptance .wpcf7-list-item .wpcf7-list-item-label {
  z-index: 1;
}
.contactform form .row-check {
  display: flex;
  padding-top: 8px;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .contactform form .row-check {
    flex-wrap: wrap;
  }
}
.contactform form .contact-form__item--check {
  margin-right: 0;
  margin-left: auto;
  width: calc(100% - 276px);
}
@media screen and (max-width: 767px) {
  .contactform form .contact-form__item--check {
    width: 100%;
    margin-top: 1.3vw;
  }
}
.contactform form .contact-form__item--check * {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
}
.contactform form .contact-form__item--check .text a {
  color: #049A03;
  text-decoration: underline;
}
.contactform form .contact-form__item--check .wpcf7-form-control-wrap {
  width: initial;
  margin-top: 20px;
  padding: 16px 20px;
  background-color: #fff;
  border: 1px solid #323232;
  cursor: pointer;
}
.contactform form input[type=submit],
.contactform form input[type=button] {
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
  padding: 8px 20px;
  border-radius: 3px;
  margin-right: 10px;
}
.contactform form input[type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  background: #049A03;
  border: 1px solid #049A03;
  border-radius: 50px;
  height: 70px;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin: 50px auto;
  min-width: 445px;
}
@media screen and (max-width: 767px) {
  .contactform form input[type=submit] {
    min-width: auto;
    margin: 8vw auto;
    height: auto;
  }
}
.contactform form input[type=button] {
  background-color: #efefef;
  color: #333;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 2.667vw 16vw;
}

.form-submit {
  display: flex;
  justify-content: center;
  position: relative;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 0;
}

div#wpcf7cpcnf {
  position: relative;
}

.wpcf7cp-form-hide .form {
  display: none;
}

#wpcf7cpcnf > table {
  width: 100%;
}
#wpcf7cpcnf > table tr td, #wpcf7cpcnf > table tr th {
  border-bottom: 1px solid rgba(50, 50, 50, 0.5);
  padding: 20px 0;
  font-weight: 300;
  font-size: 16px;
}
#wpcf7cpcnf > table tr td *, #wpcf7cpcnf > table tr th * {
  line-height: 200%;
  letter-spacing: 0.05em;
}
#wpcf7cpcnf > table tr th {
  width: 276px;
}
#wpcf7cpcnf > table tr td {
  width: calc(100% - 276px);
}

.wpcf7cp-btns {
  display: flex;
  justify-content: center;
}
.wpcf7cp-btns button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  background: #049A03;
  border: 1px solid #049A03;
  border-radius: 50px;
  height: 70px;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin: 50px 10px;
  padding: 0 50px;
  min-width: 200px;
}

.page_contents h3 {
  font-weight: bold;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 0.4em;
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .page_contents h3 {
    font-size: 5.867vw;
  }
}
.page_contents h4 {
  font-weight: 300;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .page_contents h4 {
    font-size: 4.8vw;
  }
}
.page_contents * {
  font-size: 16px;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .page_contents * {
    font-size: 4vw;
  }
}
.page_contents * + p {
  margin-top: 20px;
}
.page_contents * + h3 {
  margin-top: 60px;
}
.page_contents * + h4 {
  margin-top: 40px;
}
.page_contents ol li, .page_contents ul li {
  list-style-type: decimal;
  margin-left: 20px;
  margin-top: 10px;
}
.page_contents ul > li {
  font-size: 18px;
}
.page_contents ul > li + li {
  margin-top: 20px;
}
.page_contents a {
  text-decoration: underline;
  color: #049A03;
}

.entry-content__pagenavi {
  margin-top: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.15em;
}
.entry-content__pagenavi span, .entry-content__pagenavi a {
  display: block;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  text-indent: 4px;
  font-weight: bold;
  margin: 0 5px;
}
.entry-content__pagenavi span.current, .entry-content__pagenavi a.current {
  background: #049A03;
  color: #fff;
}

.slider {
  margin: auto;
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slider .slick-track,
.slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slider .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slider .slick-list:focus {
  outline: none;
}
.slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slider .slick-list .slick-slide {
  padding: 0 4rem;
  float: left;
  height: 100%;
  min-height: 1px;
}
@media screen and (max-width: 767px) {
  .slider .slick-list .slick-slide {
    padding: 0;
  }
}
.slider .slick-list .slick-slide a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.slider .slick-prev,
.slider .slick-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border-top: 2px solid #ac9e6d;
  border-left: 2px solid #ac9e6d;
}
@media screen and (max-width: 767px) {
  .slider .slick-prev,
  .slider .slick-next {
    display: none !important;
  }
}
.slider .slick-prev {
  left: 9rem;
  transform: rotate(-45deg);
}
.slider .slick-next {
  right: 9rem;
  transform: rotate(135deg);
}
.slider .slide-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  z-index: 1;
  transform: translate(-50%, 3rem);
}
.slider .slide-dots li {
  padding: 0;
  position: relative;
  background: none;
  margin: 0 0.5rem;
}
.slider .slide-dots li button {
  background: none;
}
.slider .slide-dots li::after {
  content: "";
  position: absolute;
  height: 1.2rem;
  width: 1.2rem;
  background: #d5d5d5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1.2rem;
}
.slider .slide-dots li.slick-active::after {
  background: #e5a53d;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}