@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}

.en {
  font-family: "Jost", sans-serif;
}

.text-green {
  color: #39b382;
}

/******** コンテンツ幅 ********/
/*z-index*/
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

*,
*::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 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%;
  height: auto;
}

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
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=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/*------------------------
btn (システム内のボタン基準)
------------------------*/
.btn a {
  width: 100%;
  max-width: 180px;
  max-width: 11.25rem;
  min-height: 48px;
  min-height: 3rem;
  background-color: #ccc;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  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;
  border-radius: 5px;
}
.btn a:hover {
  opacity: 0.8;
}
.btn.--yellow a {
  background-color: #f6ab00;
}
.btn.--line a {
  background-color: #00b900;
}
.btn.--blue a {
  background-color: #00a0ab;
}

/*------------------------
共通スタイル
------------------------*/
/****  pc,spだし分け  *****/
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
}

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

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

.titleArea {
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.titleArea .titleArea__en {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1;
  color: #39b382;
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
  .titleArea .titleArea__en {
    font-size: 7.2vw;
    margin-bottom: 1.6vw;
  }
}
.titleArea .titleArea__jp {
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1;
  color: #39b382;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .titleArea .titleArea__jp {
    font-size: 2.4vw;
  }
}

.section-catch {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5833333333;
  color: #39b382;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .section-catch {
    font-size: 4.8vw;
  }
}

.section-lead {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.25;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .section-lead {
    font-size: 3.2vw;
  }
}

.appeal {
  position: relative;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  line-height: 1;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-inline: 0.8em;
}
@media screen and (max-width: 900px) {
  .appeal {
    font-size: 4vw;
  }
}
.appeal::before, .appeal::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 0.8em;
  background-color: #333;
}
.appeal::before {
  left: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-animation: appealIn-before 3s ease infinite;
          animation: appealIn-before 3s ease infinite;
}
.appeal::after {
  right: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-animation: appealIn-after 3s ease infinite;
          animation: appealIn-after 3s ease infinite;
}

@-webkit-keyframes appealIn-before {
  0% {
    -webkit-transform: rotate(-30deg) scaleY(1);
            transform: rotate(-30deg) scaleY(1);
  }
  30% {
    -webkit-transform: rotate(-30deg) scaleY(1.2) translateY(-5px);
            transform: rotate(-30deg) scaleY(1.2) translateY(-5px);
  }
  50% {
    -webkit-transform: rotate(-30deg) scaleY(1);
            transform: rotate(-30deg) scaleY(1);
  }
}

@keyframes appealIn-before {
  0% {
    -webkit-transform: rotate(-30deg) scaleY(1);
            transform: rotate(-30deg) scaleY(1);
  }
  30% {
    -webkit-transform: rotate(-30deg) scaleY(1.2) translateY(-5px);
            transform: rotate(-30deg) scaleY(1.2) translateY(-5px);
  }
  50% {
    -webkit-transform: rotate(-30deg) scaleY(1);
            transform: rotate(-30deg) scaleY(1);
  }
}
@-webkit-keyframes appealIn-after {
  0% {
    -webkit-transform: rotate(30deg) scaleY(1);
            transform: rotate(30deg) scaleY(1);
  }
  30% {
    -webkit-transform: rotate(30deg) scaleY(1.2) translateY(-5px);
            transform: rotate(30deg) scaleY(1.2) translateY(-5px);
  }
  50% {
    -webkit-transform: rotate(30deg) scaleY(1);
            transform: rotate(30deg) scaleY(1);
  }
}
@keyframes appealIn-after {
  0% {
    -webkit-transform: rotate(30deg) scaleY(1);
            transform: rotate(30deg) scaleY(1);
  }
  30% {
    -webkit-transform: rotate(30deg) scaleY(1.2) translateY(-5px);
            transform: rotate(30deg) scaleY(1.2) translateY(-5px);
  }
  50% {
    -webkit-transform: rotate(30deg) scaleY(1);
            transform: rotate(30deg) scaleY(1);
  }
}
/***** innerなど余白 *****/
.inner {
  width: 100%;
  max-width: 1620px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 900px) {
  .inner {
    padding-inline: 20px;
  }
}

/******* flex ******/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/****** font ****/
p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  p {
    font-size: 3.2vw;
    line-height: 1.5;
  }
}

.bold {
  font-weight: bold;
}

/*****スクロール時にふわっと**********/
.fadein {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadein-right {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  opacity: 0;
}

.fadein-left {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
}

.fadein.scrollin,
.fadein-right.scrollin,
.fadein-left.scrollin {
  -webkit-transform: unset;
          transform: unset;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.fadein.scrollin.delay200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.pop {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.pop.scrollin {
  -webkit-animation: popBounce 0.6s ease-out forwards;
          animation: popBounce 0.6s ease-out forwards;
}

@-webkit-keyframes popBounce {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  80% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popBounce {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  80% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/**　動画***/
.movie-wrapper {
  display: block;
  width: 100%;
}
.movie-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/***　背景　****/
.bg-green {
  background-color: #39b382;
  color: #fff;
}

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

/*** pc左右 **/
.pc-left {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(50vw - 250px);
  height: 100%;
  background-color: #61c29b;
}
@media screen and (max-width: 900px) {
  .pc-left {
    display: none;
  }
}
.pc-left .pc-left__cont {
  width: 100%;
  height: 100%;
}
.pc-left .pc-left__cont--item {
  position: absolute;
}
.pc-left .pc-left__cont--item.--main-text {
  top: 7vh;
  width: 7%;
  right: 6%;
}
.pc-left .pc-left__cont--item.--shop {
  top: 3vh;
  width: 53%;
  left: 20%;
}
.pc-left .pc-left__cont--item.--15th {
  top: 35vh;
  width: 31%;
  left: 34%;
}

.main-contents {
  width: 500px;
  width: 31.25rem;
  min-width: 375px;
  min-width: 23.4375rem;
  position: absolute;
  top: 0;
  left: calc(50vw - 250px);
  z-index: 10;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .main-contents {
    left: 0;
    width: 100%;
    min-width: auto;
    z-index: auto;
    z-index: initial;
  }
}

.pc-parts-wrapper {
  overflow: hidden;
}

.pc-bottom-slider-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .pc-bottom-slider-wrapper {
    display: none;
  }
}

.pc-bottom-slider__slider {
  height: 15vh;
}
.pc-bottom-slider__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.pc-bottom-slider__slider .swiper-slide {
  width: auto !important;
  height: 100% N !important;
}
.pc-bottom-slider__slider .swiper-slide img {
  width: auto !important;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*アイコン*/
.staff-icon {
  position: fixed;
  z-index: 1;
}
@media (max-width: 1024px) {
  .staff-icon {
    display: none;
  }
}
.staff-icon.icon--sugawara {
  top: 32vh;
  left: 1%;
  width: 100px;
  width: 6.25rem;
  -webkit-animation: sugawara 10s ease infinite;
          animation: sugawara 10s ease infinite;
}
@media screen and (max-width: 900px) {
  .staff-icon.icon--sugawara {
    width: 16vw;
    top: 40vh;
    -webkit-animation: sugawara-sp 10s ease infinite;
            animation: sugawara-sp 10s ease infinite;
  }
}
.staff-icon.icon--sugawara2 {
  bottom: 15vh;
  left: calc(50% - 250px - 12vw);
  width: 100px;
  width: 6.25rem;
  -webkit-animation: sugawara2 10s ease infinite;
          animation: sugawara2 10s ease infinite;
}
@media screen and (max-width: 900px) {
  .staff-icon.icon--sugawara2 {
    display: none !important;
  }
}
.staff-icon.icon--obi {
  top: 10vh;
  right: 0;
  width: 130px;
  width: 8.125rem;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  -webkit-animation: obi 10s ease infinite;
          animation: obi 10s ease infinite;
}
@media screen and (max-width: 900px) {
  .staff-icon.icon--obi {
    width: 22vw;
    top: calc(66px + 3vw);
    -webkit-animation: obi-sp 10s ease infinite;
            animation: obi-sp 10s ease infinite;
  }
}
.staff-icon.icon--ogata {
  top: 60vh;
  right: 0;
  width: 100px;
  width: 6.25rem;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  -webkit-animation: ogata 10s ease infinite;
          animation: ogata 10s ease infinite;
}
@media screen and (max-width: 900px) {
  .staff-icon.icon--ogata {
    width: 18vw;
    top: 65vh;
    -webkit-animation: ogata-sp 10s ease infinite;
            animation: ogata-sp 10s ease infinite;
  }
}

@media (max-width: 1024px) {
  .home .staff-icon {
    display: block;
    z-index: 5;
  }
}

@-webkit-keyframes sugawara {
  0% {
    left: -10%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    left: 1%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  13% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  15% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  17% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  20% {
    left: 1%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    left: -10%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    left: -10%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes sugawara {
  0% {
    left: -10%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    left: 1%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  13% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  15% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  17% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  20% {
    left: 1%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    left: -10%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    left: -10%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes sugawara-sp {
  0% {
    left: -30%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    left: 1%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  13% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  15% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  17% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  20% {
    left: 1%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    left: -30%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    left: -30%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes sugawara-sp {
  0% {
    left: -30%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    left: 1%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  13% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  15% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  17% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  20% {
    left: 1%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    left: -30%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    left: -30%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes sugawara2 {
  0% {
    bottom: -2vh;
  }
  40% {
    bottom: -2vh;
  }
  50% {
    bottom: 8vh;
  }
  60% {
    bottom: 0;
  }
  70% {
    bottom: 15vh;
  }
  80% {
    bottom: 15vh;
  }
  90% {
    bottom: -2vh;
  }
  100% {
    bottom: -2vh;
  }
}
@keyframes sugawara2 {
  0% {
    bottom: -2vh;
  }
  40% {
    bottom: -2vh;
  }
  50% {
    bottom: 8vh;
  }
  60% {
    bottom: 0;
  }
  70% {
    bottom: 15vh;
  }
  80% {
    bottom: 15vh;
  }
  90% {
    bottom: -2vh;
  }
  100% {
    bottom: -2vh;
  }
}
@-webkit-keyframes obi {
  0% {
    right: -10%;
  }
  30% {
    right: -10%;
  }
  35% {
    right: 2%;
  }
  50% {
    right: 2%;
  }
  55% {
    right: -10%;
  }
  100% {
    right: -10%;
  }
}
@keyframes obi {
  0% {
    right: -10%;
  }
  30% {
    right: -10%;
  }
  35% {
    right: 2%;
  }
  50% {
    right: 2%;
  }
  55% {
    right: -10%;
  }
  100% {
    right: -10%;
  }
}
@-webkit-keyframes obi-sp {
  0% {
    right: -30%;
  }
  30% {
    right: -30%;
  }
  35% {
    right: 2%;
  }
  50% {
    right: 2%;
  }
  55% {
    right: -30%;
  }
  100% {
    right: -30%;
  }
}
@keyframes obi-sp {
  0% {
    right: -30%;
  }
  30% {
    right: -30%;
  }
  35% {
    right: 2%;
  }
  50% {
    right: 2%;
  }
  55% {
    right: -30%;
  }
  100% {
    right: -30%;
  }
}
@-webkit-keyframes ogata {
  0% {
    right: -10%;
  }
  70% {
    right: -10%;
  }
  75% {
    right: 2%;
  }
  85% {
    right: 2%;
  }
  95% {
    right: -10%;
  }
  100% {
    right: -10%;
  }
}
@keyframes ogata {
  0% {
    right: -10%;
  }
  70% {
    right: -10%;
  }
  75% {
    right: 2%;
  }
  85% {
    right: 2%;
  }
  95% {
    right: -10%;
  }
  100% {
    right: -10%;
  }
}
@-webkit-keyframes ogata-sp {
  0% {
    right: -30%;
  }
  70% {
    right: -30%;
  }
  75% {
    right: 2%;
  }
  85% {
    right: 2%;
  }
  95% {
    right: -30%;
  }
  100% {
    right: -30%;
  }
}
@keyframes ogata-sp {
  0% {
    right: -30%;
  }
  70% {
    right: -30%;
  }
  75% {
    right: 2%;
  }
  85% {
    right: 2%;
  }
  95% {
    right: -30%;
  }
  100% {
    right: -30%;
  }
}
/*一覧を見る*/
.all-link {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding-right: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 900px) {
  .all-link {
    font-size: 2.4vw;
    padding-right: 3vw;
  }
}
.all-link::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  background: no-repeat center/contain url(../images/arrow-white@2x.svg);
}
@media screen and (max-width: 900px) {
  .all-link::after {
    width: 2.4vw;
    height: 2.4vw;
  }
}

/*** swiper parts ***/
.swiper-buttons-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 76px;
  width: 4.75rem;
}
@media screen and (max-width: 900px) {
  .swiper-buttons-wrapper {
    width: 17.2vw;
  }
}

.swiper-button-prev,
.swiper-button-next {
  top: 0 !important;
  width: 22px !important;
  width: 1.375rem !important;
  height: 22px !important;
  height: 1.375rem !important;
  background: no-repeat center/contain url(../images/slider-navi@2x.svg);
}
@media screen and (max-width: 900px) {
  .swiper-button-prev,
.swiper-button-next {
    top: -2vw !important;
    width: 4.4vw !important;
    height: 4.4vw !important;
  }
}

.swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*------------------------
タイトルアニメ
------------------------*/
.title-animation {
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.title-animation span {
  display: block;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.title-animation.scrollin,
.title-animation.scrollin span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.titleArea__en.title-animation.scrollin {
  -webkit-transform: translate(0, 0) scaleX(0.8);
          transform: translate(0, 0) scaleX(0.8);
}

/* ===== 左から登場 ===== */
.title-animation.--left {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.title-animation.--left span {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

.title-animation.--left.scrollin,
.title-animation.--left.scrollin span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#page-contact .ulPage-mv__en,
#page-contact-confirm .ulPage-mv__en,
#page-thanks .ulPage-mv__en {
  margin-bottom: 0;
}

#page-contact-confirm .contact__form--lists dd {
  color: #39b382;
}

.contact__top {
  padding: 20px;
  padding: 1.25rem;
  border: 3px solid #39b382;
  border-radius: 10px;
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
}
@media screen and (max-width: 900px) {
  .contact__top {
    padding: 4vw;
    border-radius: 2vw;
    margin: 0 auto 6vw;
  }
}

.contact__tel .lead {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.contact__tel .tel {
  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;
  gap: 5px;
  gap: 0.3125rem;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 900px) {
  .contact__tel .tel {
    font-size: 8vw;
    margin-bottom: 4vw;
  }
}
.contact__tel .tel .icon {
  display: block;
  width: 30px;
  width: 1.875rem;
}
@media screen and (max-width: 900px) {
  .contact__tel .tel .icon {
    width: 6vw;
  }
}

.contact__opentime {
  line-height: 1.2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.contact__lead {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.contact__form {
  padding: 20px 20px 40px;
  padding: 1.25rem 1.25rem 2.5rem;
  border: 2px solid #39b382;
  border-radius: 10px;
}
.contact__form input,
.contact__form textarea {
  border: 1px solid #39b382;
  border-radius: 5px;
  width: 100%;
  min-height: 48px;
  min-height: 3rem;
  padding: 0.5em 1em;
}
.contact__form textarea {
  min-height: 10em;
}
.contact__form input[type=checkbox] {
  width: 20px;
  height: 20px;
  padding: 0;
  min-height: auto;
  position: relative;
}
.contact__form input[type=checkbox]:checked:after {
  display: block;
  content: "";
  position: absolute;
  top: 4px;
  left: 2px;
  width: 13px;
  height: 8px;
  border-left: 2px solid #39b382;
  border-bottom: 2px solid #39b382;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.contact__form .agree-area {
  color: #39b382;
  font-weight: bold;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}
.contact__form .agree-area label {
  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;
}
.contact__form .agree-area .wpcf7-list-item {
  margin: 0;
}

.contact__form--lists dl {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.contact__form--lists dl:last-child {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.contact__form--lists dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #39b382;
  margin-bottom: 0.5em;
}
.contact__form--lists dt .required {
  position: relative;
  top: 1px;
  top: 0.0625rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 3px 10px 3px 9px;
  padding: 0.1875rem 0.625rem 0.1875rem 0.5625rem;
  background-color: #39b382;
  color: #fff;
  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;
  border-radius: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 10px;
  margin-left: 0.625rem;
}
.contact__form--lists dd {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.contact__bottom {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.contact__bottom a {
  color: #39b382;
  text-decoration: underline;
}

/****確認画面****/
.contact__btn {
  text-align: center;
}
.contact__btn input {
  background-color: #39b382;
  margin: 0 auto;
  max-width: 220px;
  max-width: 13.75rem;
  color: #fff;
}
.contact__btn .wpcf7-spinner {
  position: absolute;
}

.contact__back {
  text-align: center;
}
.contact__back input {
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  max-width: 140px;
  max-width: 8.75rem;
  color: #39b382;
  min-height: auto;
  padding: 0.5em 1em;
}

.thanks__message {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.thanks .btn a {
  background-color: #39b382;
  margin: 0 auto;
}

.wpcf7-response-output {
  display: none;
}

/*------------------------
contact
------------------------*/
.cta {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 900px) {
  .cta {
    padding: 12vw 0;
  }
}
.cta .titleArea__en {
  color: #333;
}
.cta .titleArea__jp {
  color: #333;
}
.cta .section-lead {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .cta .section-lead {
    margin-bottom: 6vw;
  }
}

.cta__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 900px) {
  .cta__links {
    gap: 4vw;
  }
}
.cta__links .icon {
  width: 124px;
  width: 7.75rem;
}
@media screen and (max-width: 900px) {
  .cta__links .icon {
    width: 24.8vw;
  }
}
.cta__links .links .btn + .btn {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 900px) {
  .cta__links .links .btn + .btn {
    margin-top: 2vw;
  }
}
.cta__links .links .btn.--blue img {
  width: 85%;
  margin: auto;
}

/*------------------------
sns
------------------------*/
.sns-cta {
  padding: 60px 0;
  padding: 3.75rem 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  .sns-cta {
    padding: 12vw 0;
  }
}
.sns-cta .section-lead {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 900px) {
  .sns-cta .section-lead {
    margin-bottom: 8vw;
  }
}

.sns-cta__illust {
  width: 120px;
  width: 7.5rem;
  position: absolute;
  top: 67px;
  top: 4.1875rem;
  left: -16px;
  left: -1rem;
}
@media screen and (max-width: 900px) {
  .sns-cta__illust {
    width: 24vw;
    top: 13.4vw;
    left: -3.2vw;
  }
}

.sns-cta__appeal {
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .sns-cta__appeal {
    margin-bottom: 6vw;
  }
}
.sns-cta__appeal.appeal {
  padding-inline: 1.4em 1.2em;
}
.sns-cta__appeal.appeal::before, .sns-cta__appeal.appeal::after {
  width: 3px;
  bottom: -2px;
  height: 1.5em;
}
@media screen and (max-width: 900px) {
  .sns-cta__appeal.appeal::before, .sns-cta__appeal.appeal::after {
    width: 0.6vw;
    bottom: -0.4vw;
  }
}
.sns-cta__appeal .small {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 900px) {
  .sns-cta__appeal .small {
    font-size: 3.2vw;
  }
}
.sns-cta__appeal .main {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 900px) {
  .sns-cta__appeal .main {
    font-size: 4.4vw;
  }
}

.sns-cta__bnrs {
  display: block;
  max-width: 340px;
  max-width: 21.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .sns-cta__bnrs {
    max-width: 68vw;
  }
}
.sns-cta__bnrs + .sns-cta__bnrs {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 900px) {
  .sns-cta__bnrs + .sns-cta__bnrs {
    margin-top: 2vw;
  }
}

.footer {
  background-color: #fff;
}
.footer .inner {
  padding: 50px 0;
  padding: 3.125rem 0;
  border-top: 1px solid #333;
  max-width: 340px;
  max-width: 21.25rem;
}
@media screen and (max-width: 900px) {
  .footer .inner {
    padding: 10vw 0;
    max-width: 68vw !important;
  }
}

.footer__logo {
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 900px) {
  .footer__logo {
    margin-bottom: 0.4vw;
  }
}

.footer__info {
  padding-left: 56px;
  padding-left: 3.5rem;
}
@media screen and (max-width: 900px) {
  .footer__info {
    padding-left: 11.2vw;
  }
}

.footer__access {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .footer__access {
    font-size: 2.4vw;
  }
}
.footer__access .small {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (max-width: 900px) {
  .footer__access .small {
    font-size: 2.2vw;
  }
}

.copyright {
  font-size: 10px;
  font-size: 0.625rem;
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 900px) {
  .copyright {
    font-size: 2vw;
    margin-top: 6vw;
  }
}

.header {
  width: calc(50vw - 250px);
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  padding: 5vh 0 0 clamp(20px, 4.6vw, 90px);
  overflow-y: auto;
  background-color: #61c29b;
}
@media screen and (max-width: 900px) {
  .header {
    padding: 0;
    width: 100%;
    height: 66px;
    z-index: 12;
    background-color: rgba(255, 255, 255, .7);
    overflow: visible;
    overflow: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 1.25rem;
  }
}

.header_logo {
  display: none;
}
@media screen and (max-width: 900px) {
  .header_logo {
    display: block;
    width: 83%;
    max-width: 18.75rem;
  }
}

.header__inner {
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 1400px) {
  .header__inner {
    zoom: 0.8;
  }
}
@media screen and (max-width: 900px) {
  .header__inner {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: #61c29b;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 65px 20px 60px;
    max-width: 500px;
    zoom: 1;
  }
}

.header__ham {
  width: 30px;
  height: 25px;
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 100;
}

.header__ham span {
  width: 100%;
  height: 2px;
  background-color: #39b382;
  border-radius: 10px;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}

.header__ham span:nth-child(1) {
  top: 0px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.header__ham span:nth-child(2) {
  top: 12px;
}

.header__ham span:nth-child(3) {
  top: 24px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.header.is-active .header__ham span:nth-child(1) {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  top: 12px;
}

.header.is-active .header__ham span:nth-child(2) {
  display: none;
}

.header.is-active .header__ham span:nth-child(3) {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  top: 12px;
}

.header__logo {
  width: 140px;
  width: 8.75rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 900px) {
  .header__logo {
    position: fixed;
    top: 10px;
    left: 20px;
    right: auto;
    width: 2.9375rem;
  }
}

.header__btns {
  margin-top: 3vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px 10px;
  gap: 0.5rem 0.625rem;
}
.header__btns .btn a {
  max-width: 180px;
  max-width: 11.25rem;
}
.header__btns .btn a .en {
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.header__btns .btn.--blue a img {
  width: 83%;
  margin: 0 auto;
}

/*
  -----------------------------------
nav menu
  -----------------------------------
  */
.header__nav .header__nav-items {
  width: 100%;
  color: #fff;
}
.header__nav .header__nav-item {
  margin-bottom: 0.7em;
}
.header__nav a.header__nav-link {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  padding-left: 1.3em;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header__nav a.header__nav-link:hover {
  opacity: 0.8;
}
.header__nav a.header__nav-link::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  background: no-repeat center/contain url(../images/header_nav_icon@2x.png);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header.is-active .header__inner {
  right: 0;
}
@media screen and (max-width: 900px) {
  .header.is-active .header__ham span {
    background-color: #fff;
  }
}

body.is-active {
  overflow: hidden;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

.video-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-modal__content {
  position: relative;
  max-width: 80%;
  width: 800px;
  background: #000;
  border-radius: 8px;
  z-index: 2;
}
.video-modal__content iframe {
  position: relative;
  z-index: 2;
}

.video-modal__content iframe {
  width: 100%;
  height: 450px;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: -10px;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 45px;
  background: url("../images/top/youtube-icon@2x.png") no-repeat center center;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

.top-study__slide--img {
  position: relative;
  cursor: pointer;
}

.staff-mv {
  padding: 140px 0 0;
  padding: 8.75rem 0 0;
}
@media screen and (max-width: 900px) {
  .staff-mv {
    padding: 28vw 0 0;
  }
}

.staff-mv__title--en {
  font-weight: 600;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
  max-width: 62.2%;
}
@media screen and (max-width: 900px) {
  .staff-mv__title--en {
    margin: 0 auto 4vw;
  }
}

.staff-mv__title--jp {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.75;
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
  color: #39b382;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 900px) {
  .staff-mv__title--jp {
    font-size: 4vw;
    margin-bottom: 12vw;
  }
}

.staff-mv__lead {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.25;
  text-align: center;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .staff-mv__lead {
    font-size: 3.2vw;
    margin-bottom: 16vw;
  }
}

.staff-items {
  padding: 60px 0;
  padding: 3.75rem 0;
}
.staff-items .inner {
  max-width: 410px;
  max-width: 25.625rem;
}

.staff-item {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
.staff-item .img {
  width: 116px;
  width: 7.25rem;
}
.staff-item .role {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
}
.staff-item .name {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2666666667;
  font-weight: 500;
  -webkit-transform: translateX(-0.05em);
          transform: translateX(-0.05em);
}
.staff-item .name-en {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
}
.staff-item .license {
  font-size: 16px;
  font-size: 1rem;
  color: #39b382;
  font-weight: 500;
}
@media (max-width: 500px) {
  .staff-item .license {
    font-size: 0.875rem;
  }
}
.staff-item .detail {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media (max-width: 500px) {
  .staff-item .detail {
    font-size: 0.875rem;
  }
}
.staff-item .comment {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
@media (max-width: 500px) {
  .staff-item .comment {
    font-size: 0.875rem;
  }
}
.staff-item.--small {
  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: 0;
}
.staff-item.--small .img {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
.staff-item.--small .comment {
  text-align: center;
}

.staff-item__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 30px;
  gap: 1.875rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media (max-width: 500px) {
  .staff-item__column {
    gap: 0.625rem;
  }
}
.staff-item__column.--team {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.staff-item__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.staff-link {
  max-width: 100%;
}
.staff-link a {
  background-color: #39b382;
  max-width: 100%;
}
.staff-link a span {
  position: relative;
}
.staff-link a span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -30px;
  width: 14px;
  height: 12px;
  background: no-repeat center/contain url(../images/staff/link-arrow@2x.png);
}

/*------------------------
スタッフ詳細
------------------------*/
.single-staff-mv {
  padding: 80px 0;
  padding: 5rem 0;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .single-staff-mv {
    padding: 8vw 0 12vw;
  }
}

.single-staff-mv__catch {
  color: #39b382;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .single-staff-mv__catch {
    margin-bottom: 6vw;
  }
}
.single-staff-mv__catch::before, .single-staff-mv__catch::after {
  background-color: #39b382;
}
.single-staff-mv__catch::before span, .single-staff-mv__catch::after span {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 900px) {
  .single-staff-mv__catch::before span, .single-staff-mv__catch::after span {
    font-size: 2.8vw;
  }
}

.single-staff-mv__title-wrapper,
.single-staff-mv__en-wrapper {
  -webkit-transform: scaleX(0.85);
          transform: scaleX(0.85);
}

.single-staff-mv__name {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 900px) {
  .single-staff-mv__name {
    font-size: 10vw;
    margin-bottom: 2vw;
  }
}

.single-staff-mv__en {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .single-staff-mv__en {
    font-size: 7.2vw;
    margin-bottom: 6vw;
  }
}

.single-staff-mv__icon {
  max-width: 200px;
  max-width: 12.5rem;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 900px) {
  .single-staff-mv__icon {
    max-width: 40vw;
    margin: 0 auto 8vw;
  }
}

.single-staff-mv__infoTag {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.25;
  text-align: center;
  color: #39b382;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .single-staff-mv__infoTag {
    font-size: 3.2vw;
  }
}

.single-staff-mv__info01 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .single-staff-mv__info01 {
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
}

.single-staff-mv__info02 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .single-staff-mv__info02 {
    font-size: 3.2vw;
  }
}
.single-staff-mv__info02 .emoji {
  display: inline-block;
  width: 1em;
  -webkit-transform: translateY(0.2em);
          transform: translateY(0.2em);
}

.single-staff-cont {
  background-color: #f2f2f2;
  padding: 60px 0;
  padding: 3.75rem 0;
}
.single-staff-cont .inner {
  max-width: 390px;
  max-width: 24.375rem;
}
.single-staff-cont .mb40 {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.single-staff-cont .mb0 {
  margin-bottom: 0 !important;
}
.single-staff-cont .imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  margin: 0 0 40px;
  margin: 0 0 2.5rem;
}
.single-staff-cont .imgs .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-staff-cont .imgs .img img {
  border-radius: 5px;
  overflow: hidden;
}

.single-staff-cont__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  gap: 0.6875rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.single-staff-cont__item .icon {
  width: 47px;
  width: 2.9375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.single-staff-cont__item .comment {
  background-color: #fff;
  padding: 0.8em 1em;
  border-radius: 10px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: normal;
  position: relative;
  max-width: 230px;
  max-width: 14.375rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.single-staff-cont__item .comment::before {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: no-repeat center/contain url(../images/staff/fukidashi-corner_left@2x.png);
}
.single-staff-cont__item.--staff {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.single-staff-cont__item.--staff .comment::before {
  left: auto;
  right: -10px;
  background: no-repeat center/contain url(../images/staff/fukidashi-corner_right@2x.png);
}

.single-staff-link-wrapper {
  padding: 60px;
  padding: 3.75rem;
  background-color: #fff;
}
.single-staff-link-wrapper .staff-link {
  max-width: 280px;
  max-width: 17.5rem;
  margin: 0 auto;
}
.single-staff-link-wrapper .staff-link a {
  min-height: 60px;
  min-height: 3.75rem;
}

#page-top {
  margin-top: 0 !important;
}

.mv__slide .text {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.3333333333;
  text-align: center;
  padding: 50px 0;
  padding: 3.125rem 0;
  width: 100%;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 900px) {
  .mv__slide .text {
    font-size: 4.8vw;
    padding: 16vw 0 10vw;
  }
}
.mv__slide .text.--overlay {
  background-image: radial-gradient(at 30% 0%, #ffffff, transparent);
}
.mv__slide .text.--bottom {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: 50%;
  color: #fff;
  top: auto;
  bottom: 0;
}
.mv__slide .text.--bottom.--overlay {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(77, 77, 77, .98)), to(rgba(77, 77, 77, 0)));
  background: linear-gradient(to top, rgba(77, 77, 77, .98) 0%, rgba(77, 77, 77, 0) 100%);
}
.mv__slide .mv__banner {
  position: absolute;
  bottom: 30px;
  bottom: 1.875rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
}
@media screen and (max-width: 900px) {
  .mv__slide .mv__banner {
    bottom: 6vw;
  }
}

/*------------------------
news
------------------------*/
.top-news {
  padding: 40px 0 60px;
  padding: 2.5rem 0 3.75rem;
  background-color: #39b382;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .top-news {
    padding: 8vw 0;
  }
}
.top-news .inner {
  max-width: 90%;
}
@media screen and (max-width: 900px) {
  .top-news .inner {
    max-width: 85%;
  }
}
.top-news .title {
  margin: 0 auto 15px;
  margin: 0 auto 0.9375rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 900px) {
  .top-news .title {
    margin-bottom: 4vw;
  }
}
.top-news .title img {
  width: 50px;
  width: 3.125rem;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 900px) {
  .top-news .title img {
    width: 10vw;
    padding-bottom: 3vw;
  }
}

.top-news__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (max-width: 900px) {
  .top-news__items {
    gap: 1vw;
  }
}

.top-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 900px) {
  .top-news__item {
    gap: 2vw;
  }
}
.top-news__item time {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (max-width: 900px) {
  .top-news__item time {
    font-size: 2.8vw;
  }
}

.top-news__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 900px) {
  .top-news__title {
    font-size: 2.8vw;
  }
}

/*------------------------
top : who we are
------------------------*/
.top-who {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 900px) {
  .top-who {
    padding: 12vw 0;
  }
}
.top-who .titleArea {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .top-who .titleArea {
    margin-bottom: 4vw;
  }
}
.top-who .section-catch {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 900px) {
  .top-who .section-catch {
    margin-bottom: 2vw;
  }
}
.top-who .section-lead {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .top-who .section-lead {
    margin-bottom: 4vw;
  }
}
.top-who .appeal {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 900px) {
  .top-who .appeal {
    margin-bottom: 2vw;
  }
}

/*------------------------
top-support
------------------------*/
.top-support {
  padding: 20px 0 40px;
  padding: 1.25rem 0 2.5rem;
}
@media screen and (max-width: 900px) {
  .top-support {
    padding: 4vw 0 8vw;
  }
}
.top-support .section-catch {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .top-support .section-catch {
    margin-bottom: 4vw;
  }
}

.top-support__img {
  max-width: 340px;
  max-width: 21.25rem;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 900px) {
  .top-support__img {
    max-width: 68vw;
    margin: 0 auto 8vw;
  }
}

.top-img.--01 {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 900px) {
  .top-img.--01 {
    margin-bottom: 1vw;
  }
}

/*------------------------
top-works
------------------------*/
.top-works {
  padding: 60px 0 0;
  padding: 3.75rem 0 0;
}
@media screen and (max-width: 900px) {
  .top-works {
    padding: 12vw 0 0;
  }
}
.top-works .section-catch {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 900px) {
  .top-works .section-catch {
    margin-bottom: 2vw;
  }
}
.top-works .section-lead {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .top-works .section-lead {
    margin-bottom: 6vw;
  }
}

.top-works__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 900px) {
  .top-works__items {
    gap: 6vw;
  }
}

.top-works__item {
  position: relative;
}
.top-works__item:nth-child(1) .illust {
  width: 86px;
  width: 5.375rem;
  bottom: 0;
  right: -50px;
  right: -3.125rem;
}
@media screen and (max-width: 900px) {
  .top-works__item:nth-child(1) .illust {
    width: 17.2vw;
    right: -10vw;
  }
}
.top-works__item:nth-child(2) .illust {
  width: 106px;
  width: 6.625rem;
  bottom: 20px;
  bottom: 1.25rem;
  left: -70px;
  left: -4.375rem;
}
@media screen and (max-width: 900px) {
  .top-works__item:nth-child(2) .illust {
    width: 21.2vw;
    bottom: 4vw;
    left: -14vw;
  }
}
.top-works__item:nth-child(3) .illust {
  width: 84px;
  width: 5.25rem;
  bottom: 0;
  right: -30px;
  right: -1.875rem;
}
@media screen and (max-width: 900px) {
  .top-works__item:nth-child(3) .illust {
    width: 16.8vw;
    right: -6vw;
  }
}
.top-works__item .circle {
  display: block;
  width: 195px;
  width: 12.1875rem;
}
@media screen and (max-width: 900px) {
  .top-works__item .circle {
    width: 39vw;
  }
}
.top-works__item .illust {
  display: block;
  position: absolute;
}

/*------------------------
google 口コミ
------------------------*/
.works__google--top {
  width: 80%;
  max-width: 337px;
  max-width: 21.0625rem;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
@media screen and (max-width: 900px) {
  .works__google--top {
    max-width: 67.4vw;
    margin: 0 auto 4vw;
  }
}

/*------------------------
about
------------------------*/
.top-about {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 900px) {
  .top-about {
    padding: 12vw 0;
  }
}
.top-about .section-catch {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .top-about .section-catch {
    margin-bottom: 4vw;
  }
}
.top-about .section-lead {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .top-about .section-lead {
    margin-bottom: 6vw;
  }
}

/*------------------------
top study
------------------------*/
.top-study {
  color: #fff;
  padding: 60px 0 80px;
  padding: 3.75rem 0 5rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .top-study {
    padding: 12vw 0 16vw;
  }
}
.top-study .titleArea {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .top-study .titleArea {
    margin-bottom: 4vw;
  }
}
.top-study .titleArea__en,
.top-study .titleArea__jp {
  color: #fff;
}
.top-study .section-lead {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .top-study .section-lead {
    margin-bottom: 6vw;
  }
}

.top-study__slider {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .top-study__slider {
    margin-bottom: 6vw;
  }
}
.top-study__slider .swiper-wrapper {
  padding-bottom: 5%;
}
@media screen and (max-width: 900px) {
  .top-study__slider .swiper-wrapper {
    padding-bottom: 8vw;
  }
}

.top-study__slide {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .top-study__slide {
    border-radius: 2vw;
  }
}

.top-study__slide--img {
  aspect-ratio: 16/9;
}
.top-study__slide--img img {
  aspect-ratio: 16/9;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-study__link {
  -webkit-transform: translate(130px, -5px);
          transform: translate(130px, -5px);
}
@media screen and (max-width: 900px) {
  .top-study__link {
    -webkit-transform: translate(24vw, -3.5vw);
            transform: translate(24vw, -3.5vw);
  }
}

.top-study__movie-text {
  background-color: #fff;
  color: #333;
  padding: 1em;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .top-study__movie-text {
    font-size: 3vw;
  }
}

.top-study__bottom {
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  max-width: 400px;
  max-width: 25rem;
}
@media screen and (max-width: 900px) {
  .top-study__bottom {
    bottom: -2.6vw;
    max-width: 80vw;
  }
}

/*------------------------
ちょっと笑えるシリーズ
------------------------*/
.top-laugh {
  padding: 60px 0;
  padding: 3.75rem 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  .top-laugh {
    padding: 12vw 0;
  }
}
.top-laugh .section-lead {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .top-laugh .section-lead {
    margin-bottom: 4vw;
  }
}

.top-laugh__illust {
  width: 113px;
  width: 7.0625rem;
  position: absolute;
  top: 51px;
  top: 3.1875rem;
  right: -20px;
  right: -1.25rem;
}
@media screen and (max-width: 900px) {
  .top-laugh__illust {
    display: none;
  }
}

.top-laugh__appeal {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .top-laugh__appeal {
    margin-bottom: 4vw;
  }
}
.top-laugh__appeal.appeal {
  padding-inline: 1.4em 1.2em;
}
.top-laugh__appeal.appeal::before, .top-laugh__appeal.appeal::after {
  width: 3px;
  bottom: -2px;
  height: 1.5em;
}
.top-laugh__appeal .small {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 900px) {
  .top-laugh__appeal .small {
    font-size: 3.2vw;
    margin-bottom: 2vw;
  }
}
.top-laugh__appeal .main {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 900px) {
  .top-laugh__appeal .main {
    font-size: 4.4vw;
  }
}

.top-laugh__link {
  display: block;
  max-width: 340px;
  max-width: 21.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .top-laugh__link {
    max-width: 68vw;
  }
}

/*------------------------
VOICE
------------------------*/
.top-voice {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 900px) {
  .top-voice {
    padding: 12vw 0;
  }
}
.top-voice .titleArea__en {
  color: #fff;
}
.top-voice .titleArea__jp {
  color: #fff;
}
.top-voice .section-lead {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 900px) {
  .top-voice .section-lead {
    margin-bottom: 8vw;
  }
}

.top-voice__illust {
  max-width: 385px;
  max-width: 24.0625rem;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
@media screen and (max-width: 900px) {
  .top-voice__illust {
    max-width: 77vw;
    margin: 0 auto 4vw;
  }
}

.top-voice__slider .swiper-wrapper {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .top-voice__slider .swiper-wrapper {
    padding-bottom: 8vw;
  }
}

.top-voice__slide {
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 900px) {
  .top-voice__slide {
    padding: 5vw 4vw;
    border-radius: 2vw;
  }
}
.top-voice__slide .desc {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media screen and (max-width: 900px) {
  .top-voice__slide .desc {
    font-size: 2.4vw;
  }
}

.top-voice__slide--up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .top-voice__slide--up {
    gap: 1vw;
    margin-bottom: 4vw;
  }
}
.top-voice__slide--up .img {
  width: 65px;
  width: 4.0625rem;
}
@media screen and (max-width: 900px) {
  .top-voice__slide--up .img {
    width: 13vw;
  }
}
.top-voice__slide--up .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  color: #333;
}
.top-voice__slide--up .text .name {
  padding: 3px;
  padding: 0.1875rem;
  font-size: 12px;
  font-size: 0.75rem;
  border-top: 1px solid rgba(51, 51, 51, .5);
  border-bottom: 1px solid rgba(51, 51, 51, .5);
}
@media screen and (max-width: 900px) {
  .top-voice__slide--up .text .name {
    padding: 0.6vw;
    font-size: 2.4vw;
  }
}
.top-voice__slide--up .text .topic {
  padding: 6px 3px;
  padding: 0.375rem 0.1875rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(51, 51, 51, .5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 5px;
  gap: 0.3125rem;
}
.top-voice__slide--up .text .topic img {
  width: 15%;
}
@media screen and (max-width: 900px) {
  .top-voice__slide--up .text .topic {
    padding: 1.2vw 0.6vw;
    font-size: 2.8vw;
  }
}

.top-voice__link {
  -webkit-transform: translate(118px, -8px);
          transform: translate(118px, -8px);
}
@media screen and (max-width: 900px) {
  .top-voice__link {
    -webkit-transform: translate(24vw, -3.5vw);
            transform: translate(24vw, -3.5vw);
  }
}

/***下層共通***/
.ulPage-mv {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 900px) {
  .ulPage-mv {
    padding: 8vw 0 12vw;
  }
}
.ulPage-mv .mv__lead {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (max-width: 900px) {
  .ulPage-mv .mv__lead {
    padding: 0 4vw;
  }
}
.ulPage-mv .titletext_01 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.875;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .ulPage-mv .titletext_01 {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
.ulPage-mv .titletext_02 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 900px) {
  .ulPage-mv .titletext_02 {
    font-size: 3.6vw;
  }
}

.ulPage-mv__en-wrapper {
  -webkit-transform: scaleX(0.85);
          transform: scaleX(0.85);
}

.ulPage-mv__title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 900px) {
  .ulPage-mv__title {
    font-size: 10vw;
    margin-bottom: 2vw;
  }
}

.ulPage-mv__en {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .ulPage-mv__en {
    font-size: 7.2vw;
    margin-bottom: 6vw;
  }
}

.ulPage__cont {
  padding: 60px 0;
  padding: 3.75rem 0;
}
.ulPage__cont .fudosanbox {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.ulPage__cont .fudosanbox .img {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.ulPage__cont .fudosanbox .text .subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .fudosanbox .text .subtitle {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
.ulPage__cont .fudosanbox .text .guidetext {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: normal;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .fudosanbox .text .guidetext {
    font-size: 3.2vw;
  }
}
.ulPage__cont .fudosanbox .text .guidetext .textimg {
  max-width: 80%;
  margin: 2em auto 0;
}
.ulPage__cont .guideimg {
  margin: 30px 0;
}
.ulPage__cont .guideimg + .fudosanbox {
  margin-top: 40px;
}
.ulPage__cont .guideimg .h3_title {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0.3em 1em;
  background-color: #b1e5cf;
  border-radius: 10em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .guideimg .h3_title {
    font-size: 3.6vw;
    margin-bottom: 4vw;
  }
}
.ulPage__cont .guideimg .p_c1 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #39b382;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .guideimg .p_c1 {
    font-size: 3.6vw;
    margin-bottom: 1vw;
  }
}
.ulPage__cont .guideimg .p_c2 {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .guideimg .p_c2 {
    margin-bottom: 4vw;
  }
}
.ulPage__cont .guideimg .p_c0 {
  border-radius: 10px;
  border: 2px solid #333;
  overflow: hidden;
}
.ulPage__cont .guideimg .p_c0 .p_c3 {
  padding: 0.3em 1em;
  text-align: center;
  background-color: #b1e5cf;
  font-weight: bold;
}
.ulPage__cont .guideimg .p_c0 .p_c4 {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 1em 1em;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .guideimg .p_c0 .p_c4 {
    font-size: 2.8vw;
  }
}
.ulPage__cont .reasonbox .reason-title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.5;
  border-bottom: 1px solid #39b382;
  font-weight: bold;
  color: #39b382;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .reasonbox .reason-title {
    font-size: 6.4vw;
    margin-bottom: 4vw;
  }
}
.ulPage__cont .reasonbox .reason-catch {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .reasonbox .reason-catch {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }
}
.ulPage__cont .reasonbox .reasontext {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .reasonbox .reasontext {
    font-size: 3.2vw;
    margin-bottom: 8vw;
  }
}
.ulPage__cont .reasonimg {
  max-width: 90%;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 900px) {
  .ulPage__cont .reasonimg {
    margin-bottom: 12vw;
  }
}
.ulPage__cont .reasonimg.--right {
  margin-left: auto;
}

.topics {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 900px) {
  .topics {
    padding: 12vw 0;
  }
}
.topics .inner {
  position: relative;
}
.topics .inner .topics__icon {
  position: absolute;
  top: -75px;
  left: -12px;
  width: 83px;
}
.topics .topics__title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .topics .topics__title {
    font-size: 6.4vw;
    margin-bottom: 6vw;
  }
}
.topics .topics__title::before, .topics .topics__title::after {
  background-color: #fff;
}

#page-reason .ulPage__cont {
  padding-bottom: 0;
}
#page-reason .mv__lead .titletext_01 {
  margin-bottom: 0;
}

#page-company .ulPage-mv__en {
  margin-bottom: 0;
}
#page-company .company_table {
  border-collapse: collapse;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
#page-company .company_table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}
#page-company .company_table dt {
  -moz-text-align-last: justify;
       text-align-last: justify;
  width: 6em;
  margin-right: 20px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
}
#page-company .company_table dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
#page-company .googlemap {
  width: 100%;
}
#page-company .googlemap iframe {
  aspect-ratio: 600/450;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#page-privacy .ulPage-mv__en {
  margin-bottom: 0;
}
#page-privacy .privacy-cont .lead {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
#page-privacy .privacy-cont__item + .privacy-cont__item {
  margin-top: 2em;
}
#page-privacy .privacy-cont__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #39b382;
}
@media screen and (max-width: 900px) {
  #page-privacy .privacy-cont__title {
    font-size: 3.6vw;
  }
}

#page-loan .text-blue {
  color: #00B4DE;
}

/*------------------------
blog
------------------------*/
.archive-blog .single-staff-mv__name {
  margin-bottom: 0;
}

.blog-cont {
  padding: 0 0 60px;
  padding: 0 0 3.75rem;
}
@media screen and (max-width: 900px) {
  .blog-cont {
    padding: 0 0 12vw;
  }
}

.blog-cont__list {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.blog-cont__list:last-child {
  margin-bottom: 0;
}
.blog-cont__list a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 40px;
  padding-right: 2.5rem;
  position: relative;
}
.blog-cont__list a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  right: 0.625rem;
  width: 20px;
  height: 20px;
  background: no-repeat center/contain url(../images/arrow-green@2x.png);
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.blog-cont__list a:hover:after {
  right: 5px;
  right: 0.3125rem;
}

.blog-cont__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}

.blog-cont__img {
  aspect-ratio: 1/1;
  width: 30%;
}
.blog-cont__img img {
  aspect-ratio: 1/1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-cont__box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.blog-cont__time {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

.blog-cont__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

.blog-cont__content {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.page-nation {
  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;
  gap: 10px;
  gap: 0.625rem;
}
.page-nation .page-numbers {
  display: block;
  color: #39b382;
  width: 25px;
  height: 25px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #39b382;
  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;
}
.page-nation .page-numbers.current {
  background-color: #39b382;
  color: #fff;
}
.page-nation .page-numbers.next, .page-nation .page-numbers.prev {
  width: auto;
  border: none;
}

/*詳細ページ*/
#single-blog .blog-cont {
  padding: 60px 0;
  padding: 3.75rem 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 900px) {
  #single-blog .blog-cont {
    padding: 12vw 0;
  }
}

.blog-cont__titleArea {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.blog-cont__titleArea .blog-cont__time {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.blog-cont__titleArea .blog-cont__title {
  font-size: 20px;
  font-size: 1.25rem;
  border-bottom: 1px solid #39b382;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.blog-cont__text {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.blog-cont__text .blog-cont__text {
  padding: 30px 0;
  padding: 1.875rem 0;
}
.blog-cont__text img {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.blog-cont__text p {
  margin-bottom: 1em;
}
.blog-cont__text a {
  color: #39b382;
  text-decoration: underline;
}
.blog-cont__text h1, .blog-cont__text h2, .blog-cont__text h3, .blog-cont__text h4, .blog-cont__text h5, .blog-cont__text h6 {
  margin: 0 0 1em 0;
  font-weight: bold !important;
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}
.post-navigation .btn a {
  padding: 0 10px;
  padding: 0 0.625rem;
  background-color: #39b382;
}

#page-404 .btn a {
  margin: 0 auto;
  background-color: #39b382;
}
/*# sourceMappingURL=styles.css.map */
