@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Open+Sans:wght@400;800&family=Kalam:wght@300&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', 'Noto Sans JP', sans-serif;
  background-color: #f7f7f7;
  color: #666;
  font-size: 16px;
  line-height: 1.8em;
}

img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  body {
    max-width: 2400px;
  }
}

* p {
  color: #666;
  letter-spacing: .1em;
}

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

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

label input textarea {
  margin: 0 auto;
  display: block;
}

.section {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-title {
  position: relative;
  font-size: 38px;
  text-align: center;
  margin-bottom: 84px;
  line-height: 1.3em;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 4vw;
    margin-bottom: 64px;
  }
}

@media screen and (max-width: 576px) {
  .section-title {
    font-size: 6vw;
  }
}

.section-title::after {
  content: "";
  position: absolute;
  background-color: #eadcd3;
  width: 120px;
  height: 3px;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 576px) {
  .section-title::after {
    width: 60px;
  }
}

.inner {
  max-width: 1200px;
  width: 88%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 576px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}

.button__item2 {
  text-align: center;
  margin-top: 48px;
}

@media screen and (max-width: 576px) {
  .button__item2 {
    margin-top: 24px;
  }
}

.button__item2 .button2 {
  border: 1px solid #eadcd3;
  background-color: #eadcd3;
  border-radius: 4px;
  padding: 16px 80px;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
}

.button__item2 .button2:hover {
  background-color: #fff;
  transition: .3s all;
}

.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 9999;
}

.animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  animation: lodanimetion 1500ms ease-out forwards infinite;
}

@keyframes lodanimetion {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header {
    height: 80px;
  }
}

.header .header__inner {
  align-items: center;
  display: flex;
  height: 100px;
}

@media screen and (max-width: 768px) {
  .header .header__inner {
    height: 80px;
  }
}

.header .header__inner .header-logo img {
  width: 160px;
}

@media screen and (max-width: 768px) {
  .header .header__inner .header-logo img {
    width: 120px;
  }
}

@media screen and (max-width: 576px) {
  .header .header__inner .header-logo img {
    width: 100px;
  }
}

.header .header__inner .button__item {
  text-align: center;
  margin-left: auto;
}

.header .header__inner .button__item .button__small {
  display: block;
  width: 160px;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin: 0;
  padding: 0 6px;
  background: #EB7C5E;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
  transition-duration: .3s;
}

.header .header__inner .button__item .button__small:hover {
  background-color: #fec42e;
  transition: .3s all;
}

@media screen and (max-width: 576px) {
  .header .header__inner .button__item .button__small {
    font-size: 12px;
    width: 120px;
    height: 44px;
    font-size: 12px;
  }
}

.active {
  background-color: #f7f7f7;
  transition: .6s;
}

.logo2 {
  display: none;
}

.logo-add {
  display: block !important;
}

.logo-remove {
  display: none;
}

.main__section .main__inner {
  background: transparent url(/img/fujiemain.jpg) no-repeat center center/cover;
  margin-left: auto;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .main__section .main__inner {
    height: 100vh;
  }
}

@media screen and (max-width: 576px) {
  .main__section .main__inner {
    height: 600px;
  }
}

.main__section .main__inner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(50%);
  /* 最背面へ */
  z-index: -1;
}

.main__section .main__inner .main__container {
  position: absolute;
  bottom: 60px;
  padding: 52px;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .main__section .main__inner .main__container {
    padding: 20px;
    bottom: 200px;
    text-align: center;
  }
}

.main__section .main__inner .main__container .main__text {
  color: #ececec;
  font-size: 2.5vw;
  font-weight: 800;
  line-height: 1.3em;
  padding: 50px 0 0;
}

@media screen and (max-width: 768px) {
  .main__section .main__inner .main__container .main__text {
    font-size: 3vw;
  }
}

@media screen and (max-width: 576px) {
  .main__section .main__inner .main__container .main__text {
    font-size: 4vw;
  }
}

.main__section .main__inner .main__container .main__title {
  font-size: 9vw;
  font-weight: 800;
  line-height: 1.3em;
  color: #ececec;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .main__section .main__inner .main__container .main__title {
    font-size: 9vw;
  }
}

@media screen and (max-width: 576px) {
  .main__section .main__inner .main__container .main__title {
    font-size: 10vw;
    padding-right: 0;
  }
}

.main__section .main__inner .main__container .button__item {
  margin-top: 20px;
  text-align: center;
  margin-left: auto;
}

@media screen and (max-width: 576px) {
  .main__section .main__inner .main__container .button__item {
    margin-top: 8px;
  }
}

.main__section .main__inner .main__container .button__item .button__small {
  display: block;
  width: 470px;
  height: 84px;
  font-weight: bold;
  text-decoration: none;
  margin: 0;
  padding: 10px 16px;
  background: #EB7C5E;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
  transition-duration: .3s;
  line-height: 1;
}

.main__section .main__inner .main__container .button__item .button__small:hover {
  background-color: #fec42e;
  transition: .3s all;
}

@media screen and (max-width: 768px) {
  .main__section .main__inner .main__container .button__item .button__small {
    padding: 4px 12px;
    width: 360px;
    height: 64px;
  }
}

@media screen and (max-width: 576px) {
  .main__section .main__inner .main__container .button__item .button__small {
    font-size: 16px;
    max-width: 335px;
    width: 100%;
    height: 64px;
    margin: 0 auto;
  }
}

.main__section .main__inner .main__container .button__item .button__small .button__text-1 {
  display: block;
  font-size: 18px;
  margin: 6px 0 2px;
}

@media screen and (max-width: 768px) {
  .main__section .main__inner .main__container .button__item .button__small .button__text-1 {
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .main__section .main__inner .main__container .button__item .button__small .button__text-1 {
    font-size: 14px;
  }
}

.main__section .main__inner .main__container .button__item .button__small .button__text-2 {
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .main__section .main__inner .main__container .button__item .button__small .button__text-2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 576px) {
  .main__section .main__inner .main__container .button__item .button__small .button__text-2 {
    font-size: 22px;
  }
}

.main__section .main__inner .scroll {
  position: absolute;
  bottom: 150px;
  right: 80px;
}

@media screen and (max-width: 576px) {
  .main__section .main__inner .scroll {
    display: none;
  }
}

.main__section .main__inner .scroll .scroll__span {
  color: #fff;
  display: inline-block;
  transform: rotate(90deg);
  top: -20px;
  right: -38px;
  position: absolute;
}

.main__section .main__inner .scroll .arrow {
  position: absolute;
  top: 1.25em;
  left: 1em;
  animation: 1s arrow-animation infinite;
  width: 0;
  height: 5em;
  border: .5px solid #F5F5F5;
}

.main__section .main__inner .scroll .arrow::after {
  display: block;
  position: absolute;
  top: 100%;
  left: -1px;
  top: 100%;
  left: -2px;
  width: 1px;
  height: 10px;
  border-top: 10px solid #F5F5F5;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

@keyframes arrow-animation {
  0% {
    height: 1em;
  }
  66% {
    height: 5em;
  }
}

.feature__section {
  margin-top: 3%;
}

.feature__section .feature__inner .section-title {
  font-size: 48px;
  line-height: 1.3em;
  text-align: right;
}

.feature__section .feature__inner .section-title::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .feature__section .feature__inner .section-title {
    font-size: 5vw;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .feature__section .feature__inner .section-title {
    font-size: 6vw;
  }
}

.feature__section .feature__inner .feature__items {
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .feature__section .feature__inner .feature__items {
    margin-top: 40px;
    display: block;
    margin: 0 36px;
  }
}

.feature__section .feature__inner .feature__items .feature__item {
  width: calc(33.33333333% - 8% * 2 / 3);
  margin-right: 8%;
}

.feature__section .feature__inner .feature__items .feature__item:nth-child(2n) {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .feature__section .feature__inner .feature__items .feature__item:nth-child(2n) {
    margin-top: 40px;
  }
}

.feature__section .feature__inner .feature__items .feature__item:nth-child(3n) {
  margin-top: 160px;
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .feature__section .feature__inner .feature__items .feature__item:nth-child(3n) {
    margin: 40px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .feature__section .feature__inner .feature__items .feature__item {
    width: 100%;
    max-width: 340px;
    margin: 40px auto 0;
  }
}

.feature__section .feature__inner .feature__items .feature__item .feature__img {
  max-width: 100%;
  width: 64%;
  margin: 0 auto;
}

.feature__section .feature__inner .feature__items .feature__item .feature__body {
  margin-top: 24px;
}

.feature__section .feature__inner .feature__items .feature__item .feature__body .feature__title {
  color: #666;
  padding-bottom: 32px;
}

.concept__section {
  overflow: hidden;
  padding-bottom: 85px;
}

.concept__section .concept__inner {
  position: relative;
}

.concept__section .concept__inner .concept_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .concept__section .concept__inner .concept_item {
    display: block;
  }
}

.concept__section .concept__inner .concept_item-revers {
  flex-direction: row-reverse;
}

.concept__section .concept__inner .concept_item-revers .concept_item-texts-revers {
  padding-right: 0;
  padding-left: 7.54717%;
}

@media screen and (max-width: 768px) {
  .concept__section .concept__inner .concept_item-revers .concept_item-texts-revers {
    padding: 0;
  }
}

.concept__section .concept__inner .concept_item-texts {
  flex: 1 1 0px;
  padding-right: 7.54717%;
}

@media screen and (max-width: 768px) {
  .concept__section .concept__inner .concept_item-texts {
    padding: 0;
  }
}

.concept__section .concept__inner .concept_item-texts .concept_item-number {
  display: inline-block;
  background-color: #eadcd3;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  padding: 0 .3em;
  margin-bottom: 23px;
}

.concept__section .concept__inner .concept_item-texts .heading_concept_item {
  font-size: 3vw;
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.3em;
}

@media screen and (max-width: 768px) {
  .concept__section .concept__inner .concept_item-texts .heading_concept_item {
    font-size: 5vw;
  }
}

@media screen and (max-width: 576px) {
  .concept__section .concept__inner .concept_item-texts .heading_concept_item {
    font-size: 8vw;
  }
}

.concept__section .concept__inner .concept_item-texts .concept_item-description {
  font-size: 16px;
}

.concept__section .concept__inner .concept_item-texts .concept_item-description:nth-child(4n) {
  margin-bottom: 1.5em;
}

.concept__section .concept__inner .concept_item-texts .concept_item-description + .concept_item-description {
  margin-top: 1.5em;
}

.concept__section .concept__inner .concept_item-image {
  width: 49.3%;
  text-align: center;
  margin: 15px 0 0 -10px;
}

@media screen and (max-width: 768px) {
  .concept__section .concept__inner .concept_item-image {
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

.concept__section .concept__inner .concept__footer-text {
  margin-bottom: 20px;
}

.concept__section .concept__inner .concept__footer-text3 {
  margin-bottom: 85px;
}

.about__section {
  position: relative;
  padding: 56px 0;
  background: transparent url(/img/scissors.jpg) no-repeat center center;
  background-size: cover;
}

.about__section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
  .about__section::before {
    padding: 40px 0;
  }
}

.about__section .about__inner {
  position: relative;
  max-width: 960px;
}

.about__section .about__inner .about__title-s {
  color: #fff;
  font-size: 38px;
}

@media screen and (max-width: 768px) {
  .about__section .about__inner .about__title-s {
    font-size: 6vw;
  }
}

@media screen and (max-width: 576px) {
  .about__section .about__inner .about__title-s {
    font-size: 6vw;
  }
}

.about__section .about__inner .about__content {
  margin-top: 40px;
  display: flex;
}

@media screen and (max-width: 992px) {
  .about__section .about__inner .about__content {
    display: block;
    margin-top: 20px;
  }
}

.about__section .about__inner .about__content .about__twrap {
  width: 73%;
  margin-left: 6%;
  position: relative;
}

.about__section .about__inner .about__content .about__twrap:first-child {
  margin-left: 0;
}

@media screen and (max-width: 992px) {
  .about__section .about__inner .about__content .about__twrap {
    width: 100%;
    margin: 0;
  }
}

.about__section .about__inner .about__content .about__twrap .about__title {
  font-size: 20px;
  line-height: 2em;
  margin-bottom: 10%;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .about__section .about__inner .about__content .about__twrap .about__title {
    padding-top: 40px;
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 768px) {
  .about__section .about__inner .about__content .about__twrap .about__title {
    padding-top: 60px;
    margin-bottom: 14px；;
  }
}

@media screen and (max-width: 576px) {
  .about__section .about__inner .about__content .about__twrap .about__title {
    font-size: 18px;
    padding-top: 60px;
  }
}

.about__section .about__inner .about__content .about__twrap .about__title .about__strong {
  border-bottom: 2px solid #00ff43;
}

.about__section .about__inner .about__content .about__twrap .about__title .about__strong .strong-a {
  font-size: 28px;
  color: #00ff43;
}

@media screen and (max-width: 576px) {
  .about__section .about__inner .about__content .about__twrap .about__title .about__strong .strong-a {
    font-size: 24px;
  }
}

.about__section .about__inner .about__content .about__twrap .about__title .about__strong .strong-b {
  font-size: 42px;
  font-weight: 800;
  color: #00ff43;
}

@media screen and (max-width: 576px) {
  .about__section .about__inner .about__content .about__twrap .about__title .about__strong .strong-b {
    font-size: 32px;
  }
}

.about__section .about__inner .about__content .about__twrap .about__text {
  color: #fff;
}

.about__section .about__inner .about__footer {
  margin-top: 100px;
  text-align: center;
  border-top: 2px solid #fff;
}

.about__section .about__inner .about__footer .about__footer-text {
  color: #fff;
  padding: 40px 0;
}

.about__section .about__inner .about__footer .about__footer-text .strong-p {
  font-size: 24px;
  font-weight: 800;
}

@media screen and (max-width: 576px) {
  .about__section .about__inner .about__footer .about__footer-text .strong-p {
    font-size: 18px;
  }
}

.reward__section {
  padding-bottom: 85px;
}

.reward__section .reward__footer {
  margin: 80px auto 0;
  padding-bottom: 80px;
  text-align: center;
  border-bottom: 2px solid #666;
  /* ポイント２ */
  /* ポイント３ */
}

.reward__section .reward__footer .reward__footer-title {
  font-size: 20px;
  line-height: 1.3em;
  margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
  .reward__section .reward__footer .reward__footer-title {
    font-size: 5vw;
  }
}

.reward__section .reward__footer .reward__footer-text {
  margin-bottom: 20px;
}

.reward__section .reward__footer .reward__section-title {
  position: relative;
  font-size: 38px;
  text-align: center;
  margin: 130px 0 84px;
  line-height: 1.3em;
}

@media screen and (max-width: 768px) {
  .reward__section .reward__footer .reward__section-title {
    font-size: 4vw;
    margin-bottom: 64px;
  }
}

@media screen and (max-width: 576px) {
  .reward__section .reward__footer .reward__section-title {
    font-size: 6vw;
  }
}

.reward__section .reward__footer .card-group {
  margin: 40px auto 120px;
  max-width: 1200px;
  width: 100%;
  height: auto;
  /* ポイント１ */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .reward__section .reward__footer .card-group {
    display: block;
  }
}

.reward__section .reward__footer .card-group > :nth-child(2n) {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .reward__section .reward__footer .card-group > :nth-child(2n) {
    margin-left: 0;
  }
}

.reward__section .reward__footer .card-group > :nth-child(n+3) {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .reward__section .reward__footer .card-group > :nth-child(n+3) {
    margin-top: 0;
  }
}

.reward__section .reward__footer .card {
  /* ポイント４ */
  width: calc((100% - 20px * 1) / 2);
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .reward__section .reward__footer .card {
    width: 100%;
    margin-top: 20px !important;
  }
}

.reward__section .reward__footer .card__imgframe {
  width: 100%;
  height: auto;
  background: #bbb;
  box-sizing: border-box;
}

.reward__section .reward__footer .card__textbox {
  width: 100%;
  height: auto;
  padding: 20px 18px;
  background: #fff;
  box-sizing: border-box;
}

.reward__section .reward__footer .card__textbox > * + * {
  margin-top: 10px;
}

.reward__section .reward__footer .card__titletext {
  font-size: 20px;
  font-weight: bold;
  line-height: 125%;
}

.reward__section .reward__footer .card__overviewtext {
  font-size: 12px;
  line-height: 150%;
}

.concept__list-description {
  margin-bottom: 20px;
}

.concept__list-description .concept__list {
  font-size: 20px;
  position: relative;
  margin-bottom: 6px;
}

.concept__list-description .concept__list .concept__list-img {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 576px) {
  .concept__list-description .concept__list {
    font-size: 16px;
  }
}

.staff__section {
  background-color: #011931;
  z-index: -2;
  padding-bottom: 1px;
  margin: -2px 0;
}

.staff__section .staff__inner {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 576px) {
  .staff__section .staff__inner {
    padding: 0 40px;
  }
}

.staff__section .staff__inner .staff__bigtext {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
  top: 200px;
  left: 0;
  font-size: 180px;
  transform-origin: left top;
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .staff__section .staff__inner .staff__bigtext {
    left: 80px;
  }
}

@media screen and (max-width: 576px) {
  .staff__section .staff__inner .staff__bigtext {
    left: 100px;
  }
}

.staff__section .staff__inner .staff__title {
  color: #fff;
  position: relative;
}

.staff__section .staff__inner .staff__items {
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .staff__section .staff__inner .staff__items {
    margin-top: 30px;
    display: block;
    margin: 0 auto;
  }
}

.staff__section .staff__inner .staff__items .staff__item {
  width: 100%;
  padding: 40px 0 40px;
}

.staff__section .staff__inner .staff__items .staff__item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .staff__section .staff__inner .staff__items .staff__item {
    width: 100%;
    margin: 8% auto;
    padding: 0;
  }
  .staff__section .staff__inner .staff__items .staff__item:nth-child(3n) {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) and (max-width: 576px) {
  .staff__section .staff__inner .staff__items .staff__item {
    width: 100%;
    margin: 16% auto;
  }
}

.staff__section .staff__inner .staff__items .staff__item .staff__body {
  display: flex;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .staff__section .staff__inner .staff__items .staff__item .staff__body {
    display: initial;
    text-align: center;
  }
}

.staff__section .staff__inner .staff__items .staff__item .staff__body .staff__img {
  width: 170px;
  height: 170px;
  border-radius: 100%;
  margin: 0 auto;
  overflow: hidden;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .staff__section .staff__inner .staff__items .staff__item .staff__body .staff__img {
    margin: 0 auto;
  }
}

.staff__section .staff__inner .staff__items .staff__item .staff__body .staff__texts {
  flex: 1;
  position: relative;
}

.staff__section .staff__inner .staff__items .staff__item .staff__body .staff__texts .staff__title {
  font-size: 24px;
  margin-bottom: 18px;
  letter-spacing: 3px;
  padding: 0.25em 0;
  color: #fff;
}

.staff__section .staff__inner .staff__items .staff__item .staff__body .staff__texts .staff__title::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, #011931, #fff);
}

@media screen and (max-width: 768px) {
  .staff__section .staff__inner .staff__items .staff__item .staff__body .staff__texts .staff__title {
    margin: 14px auto;
  }
}

@media screen and (max-width: 576px) {
  .staff__section .staff__inner .staff__items .staff__item .staff__body .staff__texts .staff__title {
    text-align: left;
  }
}

.staff__section .staff__inner .staff__items .staff__item .staff__body .staff__texts .staff__position {
  position: absolute;
  top: 2px;
  right: 20px;
  color: #fff;
  font-size: 36px;
  letter-spacing: inherit;
  font-family: 'kalam', sans-serif;
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .staff__section .staff__inner .staff__items .staff__item .staff__body .staff__texts .staff__position {
    top: 6px;
    font-size: 32px;
  }
}

@media screen and (max-width: 576px) {
  .staff__section .staff__inner .staff__items .staff__item .staff__body .staff__texts .staff__position {
    top: 8px;
    right: 0;
    font-size: 24px;
    text-align: left;
  }
}

.staff__section .staff__inner .staff__items .staff__item .staff__body .staff__texts .staff__text {
  color: #fff;
}

.accordion__wrap {
  margin-top: 80px;
}

.accordion__wrap .qa__item {
  margin-bottom: 2px;
}

.accordion__wrap .qa__item .accordion__head {
  background-color: #eadcd3;
  color: #666;
  width: 70%;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .accordion__wrap .qa__item .accordion__head {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .accordion__wrap .qa__item .accordion__head {
    font-size: 13px;
    padding: 6px 20px 6px 10px;
  }
}

.accordion__wrap .qa__item .accordion__head .accordion__icon {
  position: absolute;
  background: url(/img/plus.svg) no-repeat center center/contain;
  width: 12px;
  height: 12px;
  top: 16px;
  right: 30px;
}

@media screen and (max-width: 576px) {
  .accordion__wrap .qa__item .accordion__head .accordion__icon {
    width: 10px;
    height: 10px;
    top: 14px;
    right: 10px;
  }
}

.accordion__wrap .qa__item .accordion__head .accordion__icon-b {
  position: absolute;
  background: url(/img/minus.svg) no-repeat center center/contain;
  width: 12px;
  height: 12px;
  top: 20px;
  right: 30px;
}

@media screen and (max-width: 576px) {
  .accordion__wrap .qa__item .accordion__head .accordion__icon-b {
    width: 10px;
    height: 10px;
    top: 14px;
    right: 10px;
  }
}

.accordion__wrap .qa__item .accordion__body {
  background-color: #fff;
  color: #666;
  width: 70%;
  margin: 0 auto;
  padding: 12px 20px;
  border: 1px solid #eadcd3;
  display: none;
}

@media screen and (max-width: 768px) {
  .accordion__wrap .qa__item .accordion__body {
    width: 100%;
    padding: 6px 10px;
  }
}

@media screen and (max-width: 576px) {
  .accordion__wrap .qa__item .accordion__body {
    font-size: 14px;
  }
}

.accordion__wrap .qa__item .accordion__body .accordion__body-in {
  display: flex;
}

.accordion__wrap .qa__item .accordion__body .accordion__body-in .answer {
  margin-right: 15px;
}

.accordion__wrap .pra__wrap {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 100px;
}

@media screen and (max-width: 576px) {
  .accordion__wrap .pra__wrap {
    display: block;
  }
}

.accordion__wrap .pra__wrap .accordion__head-b {
  display: inline-block;
  background-color: #fff;
  color: #eadcd3;
  border: 1px solid #eadcd3;
  border-radius: 50px;
  width: 400px;
  padding: 12px 20px;
  margin: 0 20px 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .accordion__wrap .pra__wrap .accordion__head-b {
    width: 340px;
  }
}

@media screen and (max-width: 576px) {
  .accordion__wrap .pra__wrap .accordion__head-b {
    width: 70%;
  }
}

.accordion__wrap .pra__wrap .accordion__head-b .accordion-b__icon {
  position: absolute;
  background: url(/img/arrow-bottom.svg) no-repeat center center/contain;
  width: 12px;
  height: 12px;
  top: 19px;
  right: 30px;
}

@media screen and (max-width: 576px) {
  .accordion__wrap .pra__wrap .accordion__head-b .accordion-b__icon {
    position: absolute;
    right: 10px;
  }
}

.accordion__wrap .pra__wrap .accordion__head-b .accordion-b__icon-b {
  position: absolute;
  background: url(/img/arrow-top.svg) no-repeat center center/contain;
  width: 12px;
  height: 12px;
  top: 19px;
  right: 30px;
}

@media screen and (max-width: 576px) {
  .accordion__wrap .pra__wrap .accordion__head-b .accordion-b__icon-b {
    right: 10px;
  }
}

.accordion__wrap .pra__wrap .accordion__body-b {
  display: inline-block;
  background-color: #fff;
  color: #eadcd3;
  width: 400px;
  padding: 12px 20px;
  margin: 0;
  display: none;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .accordion__wrap .pra__wrap .accordion__body-b {
    width: 340px;
  }
}

@media screen and (max-width: 576px) {
  .accordion__wrap .pra__wrap .accordion__body-b {
    width: 70%;
    margin: 0 auto;
  }
}

.map {
  position: relative;
  padding-top: 40%;
  width: 100vw;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .map {
    padding-top: 50%;
  }
}

@media screen and (max-width: 576px) {
  .map {
    padding-top: 60%;
  }
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact__section {
  background: #f7f7f7;
}

.contact__inner .contact__modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 100%;
  padding: 60px;
  height: 80%;
  z-index: 100;
  background: #fff;
  display: none;
}

@media screen and (max-width: 768px) {
  .contact__inner .contact__modal {
    width: 90%;
    height: 80%;
    padding: 38px 36px 20px;
  }
}

@media screen and (max-width: 768px) {
  .contact__inner .contact__modal {
    height: 90%;
    padding: 38px 24px 20px;
  }
}

.contact__inner .contact__modal.is-show {
  display: block;
}

.contact__inner .contact__modal-close-icon {
  text-align: center;
  position: absolute;
  right: -21px;
  top: -21px;
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .contact__inner .contact__modal-close-icon {
    right: -12px;
    top: -12px;
  }
}

.contact__inner .contact__modal-close-icon img {
  width: 43px;
}

.contact__inner .contact__modal-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 24px;
  position: relative;
  color: #707070;
  line-height: 1;
}

.contact__inner .contact__modal-title::after {
  content: "";
  width: 100px;
  height: 2px;
  background: #eadcd3;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.contact__inner .contact__modal-content {
  overflow: auto;
  margin-top: 36px;
  height: calc(100% - 124px - 52px);
}

.contact__inner .contact__modal-content > :first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .contact__inner .contact__modal-content {
    margin-top: 60px;
    height: calc(100% - 148px - 52px);
  }
}

@media screen and (max-width: 576px) {
  .contact__inner .contact__modal-content {
    margin-top: 38px;
    height: calc(100% - 128px - 52px);
  }
}

.contact__inner .contact__modal-head {
  font-size: 20px;
  padding: 0 0 0 20px;
  color: #707070;
  position: relative;
  font-weight: 700;
  margin-top: 40px;
}

@media screen and (max-width: 576px) {
  .contact__inner .contact__modal-head {
    margin-top: 32px;
  }
}

.contact__inner .contact__modal-head::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 3px;
  background: #eadcd3;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.contact__inner .contact__modal-text {
  padding: 0 0 0 20px;
  margin-top: 6px;
  color: #707070;
  line-height: 1.625;
}

.contact__inner .contact__modal-close-button {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .contact__inner .contact__modal-close-button {
    margin-top: 24px;
  }
}

.contact__inner .contact__modal-background {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000;
  opacity: 0.3;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
}

.contact__inner .contact__modal-background.is-show {
  display: block;
}

.contact__inner .button-modal {
  display: inline-block;
  background: #eadcd3;
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border-radius: 8px;
  width: 176px;
  padding: 14px;
  border: none;
}

.contact__item {
  margin: 80px auto 0;
  padding: 60px;
  background: #fff;
  width: 800px;
  max-width: 100%;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .contact__item {
    padding: 36px 48px;
    margin-top: 26px;
  }
}

@media screen and (max-width: 576px) {
  .contact__item {
    padding: 28px 12px;
    margin-top: 26px;
  }
}

.contact__item .contact__text {
  font-size: 14px;
  letter-spacing: .1em;
  margin-bottom: 24px;
  text-align: center;
}

.contact__item .contact__text .asterisk {
  font-size: 16px;
  color: #E7728E;
}

.contact__controls {
  margin: 0;
}

.contact__control {
  margin-bottom: 60px;
  display: flex;
}

@media screen and (max-width: 768px) {
  .contact__control {
    display: block;
    margin-bottom: 18px;
  }
}

.contact__control:last-child {
  margin-bottom: 0;
}

.contact__control dt {
  width: 160px;
  padding: 6px 0 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .contact__control dt {
    width: 100%;
    padding-top: 0;
  }
}

.contact__control dd {
  flex-grow: 1;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .contact__control dd {
    width: 100%;
    margin-top: 8px;
  }
}

.contact__label {
  font-size: 16px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contact__label {
    font-size: 16px;
    display: inline-block;
    padding-right: 54px;
  }
}

.contact__label::after {
  content: '＊';
  position: absolute;
  font-size: 12px;
  color: #E7728E;
  top: -4px;
}

@media screen and (max-width: 576px) {
  .contact__label::after {
    font-size: 10px;
  }
}

.contact__privacy-policy {
  margin-top: 40px;
}

@media screen and (max-width: 576px) {
  .contact__privacy-policy {
    margin-top: 24px;
  }
}

.contact__privacy-policy .contact__privacy-text {
  text-align: center;
}

.contact__privacy-policy .contact__privacy-text .contact__privacy {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.contact__privacy-policy .contact__privacy-text .contact__privacy .contact__privacy-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.contact__privacy-policy .contact__privacy-text .contact__privacy .contact__privacy-input:checked + .contact__privacy-part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background: transparent;
  transform: rotate(45deg);
  transition: transform .1s;
  position: absolute;
  top: -5px;
  left: 5px;
}

.contact__privacy-policy .contact__privacy-text .contact__privacy .contact__privacy-input:checked:focus + .contact__privacy-part {
  outline: none;
}

.contact__privacy-policy .contact__privacy-text .contact__privacy .contact__privacy-part {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #666;
  background: #fff;
  position: absolute;
  top: -2px;
  left: 0;
}

.contact__privacy-policy .contact__privacy-text .contact__privacy-link {
  text-decoration: underline;
  color: #666;
}

.form-input {
  width: 100%;
  border: 1px solid #707070;
  padding: 4px 16px;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  box-shadow: none;
  height: 38px;
}

@media screen and (max-width: 768px) {
  .form-input {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.form-textarea {
  width: 100%;
  height: 240px;
  border: 1px solid #707070;
  resize: none;
  padding: 10px 16px;
  line-height: 1.625;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .form-textarea {
    height: 180px;
  }
}

.contact__message {
  text-align: center;
  margin-top: 60px;
  display: none;
}

.contact__message.-error {
  color: #f00;
}

.wave {
  display: block;
  z-index: 9;
  position: absolute;
}

.wave2 {
  display: block;
  z-index: 8;
}

.footer {
  margin-top: -1px;
  padding-bottom: 12px;
  background-color: #eadcd3;
}

@media screen and (max-width: 576px) {
  .footer {
    padding-top: 62px;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 576px) {
  .footer__inner .footer__contents {
    display: block;
  }
}

.footer__inner .footer__left {
  text-align: left;
}

@media screen and (max-width: 576px) {
  .footer__inner .footer__left {
    width: 100%;
    padding: 0;
  }
}

.footer__inner .footer__logo a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.footer__inner .footer__logo img {
  width: 140px;
}

@media screen and (max-width: 576px) {
  .footer__inner .footer__logo img {
    width: 100px;
  }
}

.footer__inner .footer__info {
  margin-top: 22px;
  color: #fff;
}

@media screen and (max-width: 576px) {
  .footer__inner .footer__info {
    margin-top: 20px;
  }
}

.footer__inner .footer__info p {
  margin-top: 0;
  margin-bottom: 6px;
  letter-spacing: normal;
  line-height: normal;
}

@media screen and (max-width: 576px) {
  .footer__inner .footer__info p {
    margin-bottom: 6px;
    font-size: 14px;
  }
}

.footer__inner .footer__info p:last-child {
  margin-bottom: 0;
}

.footer__inner .footer__legals {
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .footer__inner .footer__legals {
    margin-top: 12px;
  }
}

.footer__inner .footer__legals .footer__privacy {
  font-size: 12px;
  cursor: pointer;
}

.footer__inner .footer__legals .footer__privacy:hover {
  opacity: 0.7;
}

.footer__inner .footer__copy {
  text-align: center;
  color: #666;
  font-size: 14px;
}

@media screen and (max-width: 576px) {
  .footer__inner .footer__copy {
    font-size: 12px;
  }
}

.footer__inner .footer__copy a {
  text-decoration: none;
  color: #666;
}

.footer__inner #js-page-top {
  position: fixed;
  bottom: 48px;
  right: 48px;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .footer__inner #js-page-top {
    bottom: 32px;
    right: 32px;
  }
}

@media screen and (max-width: 576px) {
  .footer__inner #js-page-top {
    bottom: 20px;
    right: 20px;
  }
}

.footer__inner #js-page-top a {
  display: block;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 576px) {
  .footer__inner #js-page-top a {
    width: 40px;
    height: 40px;
  }
}

.footer__inner #js-page-top a:hover {
  transform: scale(1.2, 1.2);
  transition: .3s all;
}
/*# sourceMappingURL=style.css.map */