@charset "UTF-8";
body {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.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: 160px;
  width: 10rem;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(204, 166, 216)), color-stop(30%, rgb(211, 167, 227)), to(rgb(255, 162, 197)));
  background: linear-gradient(180deg, rgb(204, 166, 216) 0%, rgb(211, 167, 227) 30%, rgb(255, 162, 197) 100%);
  padding: 12px;
  padding: 0.75rem;
  border-radius: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-contact:hover {
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, .3);
          box-shadow: 0px 2px 8px rgba(0, 0, 0, .3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-pagetop {
  position: fixed;
  right: 8px;
  bottom: 16px;
  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;
  height: 40px;
  width: 40px;
  background: #fff;
  border: solid 2px #DE3877;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .btn-pagetop {
    right: 24px;
    bottom: 24px;
    height: 48px;
    width: 48px;
  }
}

.btn-pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 2px solid #DE3877;
  border-right: 2px solid #DE3877;
  -webkit-transform: translateY(20%) rotate(-45deg);
          transform: translateY(20%) rotate(-45deg);
}

.contact-race {
  position: relative;
  overflow: hidden;
}

.contact-race::before, .contact-race::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .contact-race::before, .contact-race::after {
    height: 40px;
  }
}

.contact-race::before {
  top: 0;
  background: url("/images/common/race-top.png") repeat-x;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 768px) {
  .contact-race::before {
    background-size: contain;
  }
}

.contact-race::after {
  bottom: 0;
  background: url("/images/common/race-bottom.png") repeat-x;
  background-size: cover;
  background-position: bottom;
}
@media screen and (min-width: 768px) {
  .contact-race::after {
    background-size: contain;
  }
}

.footer {
  color: #315724;
  padding: 24px 20px 24px;
  padding: 1.5rem 1.25rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 2.5rem 2rem 1.5rem;
  }
}

.footer-logo {
  width: 88px;
  width: 5.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    width: 7.25rem;
    margin-bottom: 0;
  }
}

.footer-inner {
  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;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2.5rem;
  }
}

.footer__text {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 1rem;
    text-align: left;
    margin-left: 2rem;
  }
}

.footer__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  margin: 0 auto 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: underline;
}

.footer__copyright {
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
}

.header {
  position: fixed;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F2FAE8;
  font-weight: 500;
  width: 100%;
  height: 56px;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
    padding: 1rem 3rem;
  }
}

.header-logo {
  width: 88px;
  width: 5.5rem;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 7.25rem;
  }
}

.pc-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
}

.pc-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #315724;
  margin-right: 48px;
  margin-right: 3rem;
}

.pc-nav-list__item + .pc-nav-list__item {
  margin-left: 48px;
  margin-left: 3rem;
}

.sp-nav {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 43%;
  color: #315724;
  background: #F2FAE8;
  -webkit-transform: translateY(-100%) translateZ(0);
          transform: translateY(-100%) translateZ(0);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  visibility: hidden;
  overflow-y: auto;
}

.sp-nav.active {
  top: 56px;
  -webkit-transform: translateY(0%) translateZ(0);
          transform: translateY(0%) translateZ(0);
  visibility: visible;
}

.sp-nav__overlay {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  background: rgba(0, 0, 0, .5);
  height: 100vh;
  width: 100%;
  z-index: 1;
}

.sp-nav-list {
  text-align: center;
}

.sp-nav-list__item a {
  display: block;
  width: 100%;
  padding: 16px;
  padding: 1rem;
  border-bottom: dotted #315724 1px;
}

.sp-nav__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px auto;
  margin: 2rem auto;
}

.sp-openbtn {
  position: absolute;
  z-index: 10;
  width: 56px;
  height: 56px;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(204, 166, 216)), color-stop(30%, rgb(211, 167, 227)), to(rgb(255, 162, 197)));
  background: linear-gradient(180deg, rgb(204, 166, 216) 0%, rgb(211, 167, 227) 30%, rgb(255, 162, 197) 100%);
}
@media screen and (min-width: 768px) {
  .sp-openbtn {
    display: none;
  }
}

.sp-openbtn span {
  position: absolute;
  right: 18px;
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .sp-openbtn span {
    display: none;
  }
}

.sp-openbtn span:nth-of-type(1) {
  top: 20px;
}

.sp-openbtn span:nth-of-type(2) {
  top: 27px;
}

.sp-openbtn span:nth-of-type(3) {
  top: 34px;
}

.sp-openbtn.active span:nth-of-type(1) {
  top: 27px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sp-openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.sp-openbtn.active span:nth-of-type(3) {
  top: 27px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contact-form-list {
  max-width: 600px;
  max-width: 37.5rem;
  margin: 0 auto 32px;
  margin: 0 auto 2rem;
}

.contact-form__item, .contact-form__item--textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__item, .contact-form__item--textarea {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact-form input {
  height: 32px;
  height: 2rem;
}

.contact-form input, .contact-form textarea {
  background: #fff;
  border: 1px solid #DE3877;
  width: 100%;
  padding: 4px;
  padding: 0.25rem;
}

.contact-form dt {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .contact-form dt {
    text-align: right;
    margin-bottom: 0;
    margin-right: 1rem;
    min-width: 8.75rem;
  }
}

@media screen and (min-width: 768px) {
  .contact-form dd {
    width: 100%;
  }
}

.contact-form__title--require {
  color: #DE3877;
}

.contact-form__btn-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.contact-form__btn {
  color: #fff;
  font-weight: 500;
  background: #A48AC3;
  width: 160px;
  width: 10rem;
  padding: 12px;
  padding: 0.75rem;
  border-radius: 1.5rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.contact-form__btn:hover {
  background: #fff;
  color: #A48AC3;
  outline: 1px solid #A48AC3;
}

.contact-form__btn--back {
  color: #DE3877;
  background: #fff;
  width: 160px;
  width: 10rem;
  padding: 12px;
  padding: 0.75rem;
  border-radius: 1.5rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.contact-form__btn--back:hover {
  color: #fff;
  background: #EB77A3;
}

/*確認画面*/
.error_messe {
  color: #DE3877;
}

.contact-confirm-table {
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}

.contact-confirm-table th, .contact-confirm-table td {
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-confirm-table th, .contact-confirm-table td {
    display: table-cell;
  }
}

.contact-confirm-table th {
  width: 100%;
  text-align: left;
  border-bottom: 2px dotted #DE3877;
}
@media screen and (min-width: 768px) {
  .contact-confirm-table th {
    width: 30%;
    text-align: right;
    padding-right: 1rem;
  }
}

.contact-confirm-table td {
  width: 100%;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-confirm-table td {
    border-bottom: 2px dotted #DE3877;
    padding: 0.625rem 0.625rem 0.75rem;
  }
}

.contact-wrap {
  padding-top: 56px;
  background: #FFF2F7;
}
@media screen and (min-width: 768px) {
  .contact-wrap {
    padding-top: 80px;
  }
}

.contact {
  padding: 48px 20px 80px;
  padding: 3rem 1.25rem 5rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 4rem 2rem 7rem;
  }
}

.contact-text {
  text-align: center;
  line-height: 32px;
  line-height: 2rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact-text {
    margin-bottom: 2rem;
  }
}

.privacy-wrap {
  padding-top: 56px;
}
@media screen and (min-width: 768px) {
  .privacy-wrap {
    padding-top: 80px;
  }
}

.privacypolicy {
  padding: 48px 20px 24px;
  padding: 3rem 1.25rem 1.5rem;
  border-bottom: 2px dotted #315724;
}
@media screen and (min-width: 768px) {
  .privacypolicy {
    padding: 4rem 2rem 5rem;
  }
}

.sectiontitle--privacy {
  color: #315724;
}

.sectiontitle--privacy::before {
  color: #8BA881;
}

.privacypolicy__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .privacypolicy__text {
    font-size: 1rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
  }
}

.privacy-list {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .privacy-list {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}

.privacy-list-item {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .privacy-list-item {
    margin-bottom: 1.5rem;
  }
}

.privacy-list-item__title {
  font-weight: 500;
}

.privacy-list-item__firstlist {
  list-style: decimal;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .privacy-list-item__firstlist {
    padding-left: 2rem;
  }
}

.privacy-list-item__secondlist {
  list-style: lower-latin;
  padding-left: 16px;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .privacy-list-item__secondlist {
    padding-left: 1.25rem;
  }
}

.privacy-list-item__thirdlist {
  list-style: disc;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .privacy-list-item__thirdlist {
    padding-left: 1.5rem;
  }
}

.top-contact {
  background: #FFF2F7;
  padding: 48px 20px 88px;
  padding: 3rem 1.25rem 5.5rem;
}
@media screen and (min-width: 768px) {
  .top-contact {
    padding: 4rem 2rem 7rem;
  }
}

.sectiontitle--contact {
  color: #55357C;
}

.sectiontitle--contact::before {
  color: #A48AC3;
}

.top-contact-body {
  text-align: center;
}

.top-contact-text {
  line-height: 32px;
  line-height: 2rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.top-contact__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.manegement {
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-bottom: 160px;
  margin-bottom: 10rem;
}

.manegement__img {
  width: 100%;
  max-width: 516px;
  max-width: 32.25rem;
  margin: auto;
  -webkit-box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, .2);
          box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, .2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.manegement__img:hover {
  opacity: 0.8;
  -webkit-box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, .2);
          box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, .2);
}

.mv {
  padding-top: 56px;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .mv {
    padding-top: 80px;
    margin-bottom: 4.5rem;
  }
}

.overview {
  background: url("/images/common/overview-bg.jpg") no-repeat;
  background-size: cover;
  padding: 64px 20px;
  padding: 4rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .overview {
    padding: 8rem 11.875rem;
  }
}

.overview-inner {
  background: #fff;
  opacity: 0.9;
  padding: 32px;
  padding: 2rem;
}

.sectiontitle--overview {
  color: #55357C;
}

.sectiontitle--overview::before {
  color: #A48AC3;
}

.overview-list {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .overview-list {
    width: 26rem;
    margin: auto;
    text-align: left;
  }
}

.overview-list dt {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .overview-list dt {
    font-weight: 400;
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .overview-list dd {
    width: 60%;
  }
}

.overview-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .overview-list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto 1.5rem;
  }
}

.sectiontitle--service {
  color: #315724;
}

.sectiontitle--service::before {
  color: #8BA881;
}

.service-list {
  width: 100%;
  margin-bottom: 64px;
  margin-bottom: 4rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .service-list {
    max-width: 80rem;
    margin: 0 auto 6rem;
    padding: 0 3rem;
  }
}

.service-list-item {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .service-list-item {
    margin: 0 auto 6rem;
  }
}

.service-list-item__img img {
  max-width: 864px;
  max-width: 54rem;
}

.service-list-item__img--right img {
  margin-left: auto;
}

.service-list-item__body {
  background: url("/images/common/service-bg.jpg") no-repeat;
  background-size: cover;
  padding: 32px 20px;
  padding: 2rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .service-list-item__body {
    max-width: 39.3125rem;
    padding: 2.5rem 2rem;
  }
}

@media screen and (min-width: 768px) {
  .service-list-item__body--right {
    position: relative;
    margin-top: -18.75rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .service-list-item__body--left {
    position: relative;
    margin-top: -14.375rem;
  }
}

.service-list-item__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #DE3877;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  border-bottom: dotted 2px #DE3877;
  margin: 0 auto 16px;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 768px) {
  .service-list-item__title {
    text-align: left;
    margin: 0 0 1rem;
  }
}

.service-list-item__text {
  color: #111;
  line-height: 32px;
  line-height: 2rem;
  text-align: justify;
}

body {
  background: #F2FAE8;
}

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

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

.sectiontitle {
  position: relative;
  z-index: 0;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  padding-top: 64px;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .sectiontitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    padding-top: 5rem;
  }
}

.sectiontitle::before {
  content: attr(data-en);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.4;
  font-size: 80px;
  font-size: 5rem;
  font-family: "Tangerine", cursive;
  font-weight: 400;
  width: 100%;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .sectiontitle::before {
    top: 0;
    font-size: 6rem;
  }
}
/*# sourceMappingURL=styles.css.map */
