@charset "UTF-8";
/*
Sass変数

_variables.scss

各パーツの色やサイズを変数として定義しています。
*/
/*
デバイス別設定
*/
/*
メディア

_media.scss
*/
/*
メディアクエリ

※デバイスごとのブレイクポイントは_variables.scssにて変数で設定。
*/
/*
コンテナ

* @mixin container
*/
/*

_projects.scss

*/
/*
ベース
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20rem;
  font-size: 62.5%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  html {
    scroll-padding-top: 30rem;
    font-size: 90%;
  }
}
@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 70vw;
  }
}

body {
  background: #fff;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1em;
  color: #604747;
  position: relative;
  letter-spacing: 0.16em;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 3.4666666667vw;
  }
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  color: inherit;
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

a:focus {
  text-decoration: none;
}

pre {
  /*
  background-color: transparent;
  border: none;
  padding: 16px 0;
  */
}

p {
  margin-bottom: 0;
  line-height: 1.8em;
}

dd {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0;
}

ul,
li,
dl, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

label {
  margin: 0;
  font-weight: normal;
}

time {
  line-height: 1.8em;
}

.view-pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .view-pc {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .view-pc {
    display: none;
  }
}
@media only screen and (min-width: 1101px) {
  .view-pc {
    display: block;
  }
}

.view-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .view-sp {
    display: block;
  }
}
@media only screen and (min-width: 1101px) {
  .view-sp {
    display: none;
  }
}

.view-pcTab {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .view-pcTab {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .view-pcTab {
    display: none;
  }
}

.view-pcTabL {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .view-pcTabL {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .view-pcTabL {
    display: none;
  }
}

.view-spTab {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .view-spTab {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .view-spTab {
    display: block;
  }
}
@media only screen and (min-width: 1101px) {
  .view-spTab {
    display: none;
  }
}

.view-spTabS {
  display: none;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .view-spTabS {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .view-spTabS {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .view-spTabS {
    display: block;
  }
}
@media only screen and (min-width: 1101px) {
  .view-spTabS {
    display: none;
  }
}

.text,
.desc {
  line-height: 2em;
}

body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.ff-en {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.09em;
}

.ff-min {
  font-family: shippori-mincho, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*
レイアウトフレーム
*/
.front-page .layoutRole {
  overflow: hidden;
  padding-bottom: 8rem;
  margin-bottom: 23.1rem;
}
@media only screen and (min-width: 1100px) and (max-width: 1280px) {
  .front-page .layoutRole {
    padding-bottom: 21rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .front-page .layoutRole {
    padding-bottom: 24rem;
    margin-bottom: 16rem;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .layoutRole {
    padding-bottom: 41.0666666667vw;
    margin-bottom: 19.4666666667vw;
  }
}

.page .layoutRole {
  overflow: hidden;
}

.sec__wrp {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1100px) and (max-width: 1280px) {
  .sec__wrp {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .sec__wrp {
    padding: 0 40px;
  }
}
/*
ボタン生成
*/
.btn {
  background-color: #937676;
  border-radius: 3rem;
  border: 0;
  color: #fff;
  display: block;
  font-weight: 500;
  position: relative;
  width: 28rem;
  height: 6rem;
  padding: 0;
  line-height: 6rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  z-index: 1000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .btn {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    border-radius: 8vw;
    font-size: 4vw;
    width: 74.6666666667vw;
    height: 16vw;
    line-height: 16vw;
    margin: 0 auto;
  }
}
.btn::before {
  display: block;
  content: "";
  background: url(../assets/img/common/arrow.svg) no-repeat center center/cover;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
}
@media only screen and (max-width: 767px) {
  .btn::before {
    width: 8vw;
    height: 8vw;
  }
}
.btn:hover {
  color: #fff;
  opacity: 1;
  background-color: #604747;
}
.btn.yobo1 {
  background-color: #AFAB55;
}
.btn.yobo1:hover {
  opacity: 0.8;
}
.btn.yobo2 {
  background-color: #C08150;
}
.btn.yobo2:hover {
  opacity: 0.8;
}
.btn.yobo3 {
  background-color: #495F88;
}
.btn.yobo3:hover {
  opacity: 0.8;
}
.btn.yobo4 {
  background-color: #A34B86;
}
.btn.yobo4:hover {
  opacity: 0.8;
}
.btn.wh {
  background-color: #fff;
  color: #604747;
}
.btn.wh::before {
  background: url(../assets/img/common/arrow-bw.svg) no-repeat center center/cover;
}
.btn.wh:hover {
  color: #fff;
  background-color: #604747;
}
.btn.wh:hover::before {
  background: url(../assets/img/common/arrow.svg) no-repeat center center/cover;
}

.telBtn {
  color: #7E37A1;
  font-size: 2.6rem;
  font-weight: 500;
  font-family: futura-pt, sans-serif;
  line-height: 34.53px;
  letter-spacing: 0.1em;
  text-align: right;
  position: relative;
  padding-left: 3rem;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .telBtn {
    font-size: 5.385417vw;
    padding-left: 8.8vw;
  }
}
@media only screen and (max-width: 767px) {
  .telBtn {
    font-size: 6.9333333333vw;
    line-height: 9.208vw;
    padding-left: 8.8vw;
  }
}
.telBtn::before {
  display: block;
  content: "";
  background: url(../assets/img/common/tel.svg) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.4rem;
  height: 2.398rem;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .telBtn::before {
    width: 6.4vw;
    height: 6.3946666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .telBtn::before {
    width: 6.4vw;
    height: 6.3946666667vw;
  }
}

.pagetop {
  width: 8rem;
  height: 8.8rem;
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: 9980;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .pagetop {
    bottom: 12.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .pagetop {
    width: 21.3333333333vw;
    height: 23.4666666667vw;
    bottom: 22vw;
    right: 4.2666666667vw;
  }
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.clr-dwn {
  color: #003437;
}
.clr-dwn:hover {
  color: #003437;
}

.clr-accent {
  color: #7E37A1;
}

.clr-attention {
  color: #DF3189;
}

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10.4rem;
  padding-right: 3.2rem;
  z-index: 9990;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  header {
    height: 8.6rem;
    padding-right: 1.6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  header {
    height: 12vw;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 14.9333333333vw;
    padding: 0;
  }
}
header .telBtn {
  position: absolute;
  top: 0.8rem;
  right: 3.2rem;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  header .telBtn {
    font-size: 2.4rem;
    right: 1.6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  header .telBtn {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header .telBtn {
    display: none;
  }
}
header .navRole {
  padding-top: 6.8rem;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  header .navRole {
    padding-top: 6.2rem;
  }
}
header .navRole .nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4.8rem;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1100px) and (max-width: 1340px) {
  header .navRole .nav-list {
    gap: 2.4rem;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  header .navRole .nav-list {
    gap: 2.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  header .navRole .nav-list {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header .navRole .nav-list {
    display: none;
  }
}
header .navRole .nav-list .nav {
  position: relative;
}
header .navRole .nav-list .nav::before {
  content: "";
  background: url(../assets/img/common/menu-obj.webp) no-repeat center center/cover;
  position: absolute;
  top: -2.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.6rem;
  height: 1.348rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  header .navRole .nav-list .nav::before {
    width: 8vw;
    height: 8vw;
  }
}
header .navRole .nav-list .nav.active::before, header .navRole .nav-list .nav:hover::before {
  opacity: 1;
  visibility: visible;
}
header .navRole .nav-list .nav > a {
  display: block;
  color: #604747;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  position: relative;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1100px) and (max-width: 1340px) {
  header .navRole .nav-list .nav > a {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  header .navRole .nav-list .nav > a {
    font-size: 1.2rem;
  }
}

.h__logo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 48.3rem;
  height: 14rem;
}
@media only screen and (min-width: 1100px) and (max-width: 1340px) {
  .h__logo {
    width: 44.3rem;
    height: 12.84rem;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .h__logo {
    width: 36rem;
    height: 10.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .h__logo {
    width: 55.533333vw;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .h__logo {
    width: 72.5333333333vw;
    height: 18.6666666667vw;
  }
}
.h__logo:hover {
  opacity: 1;
}

.footer {
  background-color: #f2f0e8;
  position: relative;
}
.footer .sec__wrp {
  padding-bottom: 4rem;
  padding-top: 25.8rem;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .footer .sec__wrp {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .footer .sec__wrp {
    padding-top: 45.3333333333vw;
    padding-bottom: 4.2666666667vw;
    overflow: hidden;
  }
}
.footer .logo {
  display: block;
  width: 25.1rem;
  height: auto;
  position: absolute;
  top: -4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .footer .logo {
    width: 51.4666666667vw;
    height: auto;
    top: -6.4vw;
  }
}
.footer .flex-box {
  gap: 4.5%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .footer .flex-box {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer .flex-box {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 4.2666666667vw;
  }
}
@media only screen and (min-width: 981px) {
  .footer .map {
    width: 47.75%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .footer .map {
    width: 100%;
    padding-left: 3.90625vw;
    padding-right: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer .map {
    width: 100%;
    margin: 0 auto;
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}
.footer .map iframe {
  border-radius: 40px;
  height: 100%;
  width: 55.4rem;
}
@media only screen and (min-width: 981px) {
  .footer .map iframe {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .footer .map iframe {
    height: 30rem;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer .map iframe {
    width: 100%;
    border-radius: 5.3333333333vw;
    height: 77.8666666667vw;
  }
}
@media only screen and (min-width: 981px) {
  .footer .inner {
    width: 47.75%;
  }
}
.footer .add__wrp {
  margin-bottom: 2.4rem;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .footer .add__wrp {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer .add__wrp {
    margin-bottom: 4.2666666667vw;
    padding-top: 0;
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}
.footer .add__wrp .add {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .footer .add__wrp .add {
    margin-bottom: 4.2666666667vw;
  }
}
.footer .copyright {
  display: block;
  font-size: 1.2rem;
  margin: 4rem auto 0;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .footer .copyright {
    margin: 90vw auto 16vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 3.2vw;
    margin: 112vw auto 16vw;
  }
}
.footer .obj {
  position: absolute;
  height: auto;
}
.footer .obj.obj1 {
  width: 34.027777%;
  top: -19.2rem;
  left: 3.2%;
  z-index: 100;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .footer .obj.obj1 {
    width: 67vw;
    top: auto;
    bottom: 53vw;
    left: auto;
    right: -19.2vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer .obj.obj1 {
    width: 77.3333333333vw;
    top: auto;
    bottom: 61.0666666666vw;
    left: auto;
    right: -19.2vw;
  }
}
.footer .obj.obj2 {
  width: 25%;
  top: -22.4rem;
  right: 12.5%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .footer .obj.obj2 {
    width: 48vw;
    top: auto;
    bottom: 46.4vw;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer .obj.obj2 {
    width: 56.8vw;
    top: auto;
    bottom: 46.4vw;
    left: -8.5333333333vw;
  }
}
.footer .obj.obj3 {
  width: 17.361111111%;
  top: 2.5rem;
  right: 1.1111111%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .footer .obj.obj3 {
    width: 36vw;
    top: auto;
    bottom: 29.066666666vw;
    left: 38.6666666667vw;
    right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer .obj.obj3 {
    width: 39.4666666667vw;
    top: auto;
    bottom: 29.066666666vw;
    left: 38.6666666667vw;
    right: auto;
  }
}

#f_contactArea {
  position: relative;
  height: 493px;
  background: rgba(0, 0, 0, 0.2);
}

#video-area {
  position: absolute;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

.mvRole {
  width: 100%;
  position: relative;
  margin-top: 10.4rem;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .mvRole {
    margin-top: 8.6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .mvRole {
    margin-top: 12vw;
  }
}
@media only screen and (max-width: 767px) {
  .mvRole {
    margin-top: 14.9333333333vw;
  }
}
.mvRole .mv-rainbow {
  width: 72.3rem;
  height: 39.45rem;
  position: absolute;
  bottom: -8.85rem;
  right: 0;
  z-index: 100;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .mvRole .mv-rainbow {
    width: 51.07421875vw;
    height: 25.1962890625vw;
    bottom: -2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .mvRole .mv-rainbow {
    width: 88.5333333333vw;
    height: 53.6vw;
    bottom: 33.464vw;
  }
}
@media only screen and (max-width: 767px) {
  .mvRole .mv-rainbow {
    width: 88.5333333333vw;
    height: 53.6vw;
    bottom: 33.464vw;
  }
}

.front-page .mvRole {
  height: calc(100vh - 10.4rem);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .front-page .mvRole {
    height: 168vw;
    width: 100vw;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .mvRole {
    height: 141.8666666667vw;
    width: 100vw;
    overflow: hidden;
  }
}
.front-page .mvRole .catch {
  width: 106.7rem;
  height: 21rem;
  position: absolute;
  top: 16%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 110;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .front-page .mvRole .catch {
    top: 9vw;
    width: 92.87109375vw;
    height: 17.3486328125vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .front-page .mvRole .catch {
    width: 100vw;
    height: 50.1893333333vw;
    top: 11.7333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .mvRole .catch {
    width: 100vw;
    height: 50.1893333333vw;
    top: 11.7333333333vw;
  }
}
.front-page .mvRole .mv-obj .obj {
  width: 16rem;
  height: 16rem;
  position: absolute;
  z-index: 100;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .front-page .mvRole .mv-obj .obj {
    width: 14.6484375vw;
    height: 14.6484375vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .front-page .mvRole .mv-obj .obj {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .mvRole .mv-obj .obj {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
  }
}
.front-page .mvRole .mv-obj .obj.obj1 {
  bottom: 4.9rem;
  left: 50.347222%;
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .front-page .mvRole .mv-obj .obj.obj1 {
    bottom: 3.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .front-page .mvRole .mv-obj .obj.obj1 {
    bottom: 42.4vw;
    left: 12.8vw;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .mvRole .mv-obj .obj.obj1 {
    bottom: 42.4vw;
    left: 12.8vw;
  }
}
.front-page .mvRole .mv-obj .obj.obj2 {
  bottom: 17.5rem;
  left: 60.41666%;
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .front-page .mvRole .mv-obj .obj.obj2 {
    bottom: 18rem;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .front-page .mvRole .mv-obj .obj.obj2 {
    bottom: 16.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .front-page .mvRole .mv-obj .obj.obj2 {
    bottom: 42.4vw;
    left: 44.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .mvRole .mv-obj .obj.obj2 {
    bottom: 42.4vw;
    left: 44.2666666667vw;
  }
}
.front-page .mvRole .mv-obj .obj.obj3 {
  bottom: 4.9rem;
  left: 70.48611111%;
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .front-page .mvRole .mv-obj .obj.obj3 {
    bottom: 3.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .front-page .mvRole .mv-obj .obj.obj3 {
    bottom: 10.9333333333vw;
    left: 37.0666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .mvRole .mv-obj .obj.obj3 {
    bottom: 10.9333333333vw;
    left: 37.0666666667vw;
  }
}
.front-page .mvRole .mv-obj .obj.obj4 {
  bottom: 17.5rem;
  left: 80%;
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .front-page .mvRole .mv-obj .obj.obj4 {
    bottom: 18rem;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .front-page .mvRole .mv-obj .obj.obj4 {
    bottom: 16.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .front-page .mvRole .mv-obj .obj.obj4 {
    bottom: 10.9333333333vw;
    left: 68.5333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .mvRole .mv-obj .obj.obj4 {
    bottom: 10.9333333333vw;
    left: 68.5333333333vw;
  }
}
.front-page .mvRole .mv-img {
  -webkit-animation-name: coinAnime;
          animation-name: coinAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.front-page .mvRole .mv-img.img1 {
  width: 36rem;
  height: 36rem;
  position: absolute;
  bottom: 4rem;
  left: 2.5rem;
  z-index: 100;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@media only screen and (min-width: 1024px) and (max-width: 1100px) {
  .front-page .mvRole .mv-img.img1 {
    width: 30rem;
    height: 30rem;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .front-page .mvRole .mv-img.img1 {
    width: 29.414063vw;
    height: 29.414063vw;
    bottom: 3vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .front-page .mvRole .mv-img.img1 {
    width: 45.3333333333vw;
    height: 45.3333333333vw;
    bottom: 0vw;
    left: -11.7333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .mvRole .mv-img.img1 {
    width: 45.3333333333vw;
    height: 45.3333333333vw;
    bottom: 0vw;
    left: -11.7333333333vw;
  }
}
.front-page .mvRole .mv-img.img2 {
  width: 25rem;
  height: 25rem;
  position: absolute;
  bottom: -8.8rem;
  left: 31.4rem;
  z-index: 100;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
@media only screen and (min-width: 1024px) and (max-width: 1100px) {
  .front-page .mvRole .mv-img.img2 {
    width: 20rem;
    height: 20rem;
    left: 25rem;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .front-page .mvRole .mv-img.img2 {
    width: 19.53125vw;
    height: 19.53125vw;
    bottom: -7vw;
    left: 27vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .front-page .mvRole .mv-img.img2 {
    width: 31.4666666667vw;
    height: 31.4666666667vw;
    bottom: 46.9333333333vw;
    right: -6.9333333333vw;
    left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .front-page .mvRole .mv-img.img2 {
    width: 31.4666666667vw;
    height: 31.4666666667vw;
    bottom: 46.9333333333vw;
    right: -6.9333333333vw;
    left: auto;
  }
}

.page .mvRole {
  height: auto;
  position: relative;
}
.page .mvRole .mv-hd__wrp {
  color: #fff;
  font-family: shippori-mincho, sans-serif;
  position: absolute;
  top: 32%;
  left: 8.4%;
  z-index: 1000;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .page .mvRole .mv-hd__wrp {
    left: 4.2666666667vw;
    top: 17vw;
  }
}
@media only screen and (max-width: 767px) {
  .page .mvRole .mv-hd__wrp {
    left: 8.5333333333vw;
    top: 17.3669467787vw;
  }
}
.page .mvRole .mv-hd__wrp .mv-hd {
  font-size: 6.4rem;
  text-shadow: 4px 4px 50px rgba(255, 255, 255, 0.5019607843);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .page .mvRole .mv-hd__wrp .mv-hd {
    font-size: 8.5333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  .page .mvRole .mv-hd__wrp .mv-hd {
    font-size: 10.6666666667vw;
    text-shadow: 0.6746666667vw 0.6746666667vw 8.4213333333vw rgba(255, 255, 255, 0.5019607843);
  }
}
.page .mvRole .mv-hd__wrp .mv-hd-en {
  font-size: 2.4rem;
  text-shadow: 4px 4px 50px rgba(255, 255, 255, 0.5019607843);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .page .mvRole .mv-hd__wrp .mv-hd-en {
    font-size: 4.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .page .mvRole .mv-hd__wrp .mv-hd-en {
    font-size: 4.2666666667vw;
    text-shadow: 0.6746666667vw 0.6746666667vw 8.4213333333vw rgba(255, 255, 255, 0.5019607843);
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .page .mvRole .mv-rainbow {
    bottom: -23.1120448179vw;
  }
}
@media only screen and (max-width: 767px) {
  .page .mvRole .mv-rainbow {
    bottom: -27vw;
  }
}

.drawerMenuRole {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  right: 0;
}

.drawerMenuRole {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 9990;
  background-color: #f2f0e8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 6.4vw;
  padding: 10.6666666667vw 0 22.4vw;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .drawerMenuRole {
    display: none;
  }
}
@media only screen and (min-width: 1101px) {
  .drawerMenuRole {
    display: none;
  }
}
.drawerMenuRole .logo {
  display: block;
  width: 42.6666666667vw;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .drawerMenuRole .logo {
    width: 30.666667vw;
  }
}
.drawerMenuRole.is-active {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.drawerMenuRole .navRole {
  padding-top: 7.4666666667vw;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .drawerMenuRole .navRole {
    padding-top: 6rem;
  }
}
.drawerMenuRole .navRole .nav-list {
  padding: 0 4.2666666667vw;
}
.drawerMenuRole .navRole .nav {
  border-bottom: 0.1333333333vw solid rgba(96, 71, 71, 0.3);
  color: #604747;
  font-size: 4vw;
  font-weight: 500;
  padding-top: 2.1333333333vw;
  padding-bottom: 2.1333333333vw;
  margin-top: 2.1333333333vw;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .drawerMenuRole .navRole .nav {
    padding-top: 2.266667vw;
    padding-bottom: 2.266667vw;
  }
}
.drawerMenuRole .navRole .nav a {
  display: block;
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .drawerMenuRole .navRole .nav {
    font-size: 2.822917vw;
  }
}
.drawerMenuRole .navRole .nav.ico-arrow {
  position: relative;
  padding-left: 11.2vw;
  line-height: 8vw;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .drawerMenuRole .navRole .nav.ico-arrow {
    line-height: 6vw;
  }
}
.drawerMenuRole .navRole .nav.ico-arrow::before {
  display: block;
  content: "";
  background: url(../assets/img/common/arrow-bw.svg) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8vw;
  height: 8vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .drawerMenuRole .navRole .nav.ico-arrow::before {
    width: 6vw;
    height: 6vw;
  }
}
.drawerMenuRole .navRole .nav.ico-arrow.open:before {
  background: url(../assets/img/common/arrow-dwn.svg) no-repeat center center/cover;
}
.drawerMenuRole .add {
  margin-bottom: 4.2666666667vw;
  margin-top: 4.2666666667vw;
}

@media only screen and (min-width: 980px) {
  .fixed__telBtn, .fixed__addBtn {
    display: none;
  }
}
@media only screen and (max-width: 979px) {
  .fixedBtn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 16vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    z-index: 9999;
  }
  .fixedBtn .fixed__telBtn {
    background-color: #744f4f;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50vw;
    padding: 2.1333333333vw 0 2.1333333333vw 3.2vw;
  }
  .fixedBtn .fixed__telBtn .text {
    color: #fffdb8;
    font-size: 2.9333333333vw;
    margin-bottom: 0.5333333333vw;
  }
  .fixedBtn .fixed__telBtn .tel {
    font-size: 5.176vw;
    font-weight: 500;
    font-family: futura-pt, sans-serif;
    letter-spacing: 0.1em;
    padding-left: 6.4vw;
    position: relative;
  }
  .fixedBtn .fixed__telBtn .tel::before {
    display: block;
    content: "";
    background: url(../assets/img/common/tel-wh.svg) no-repeat center center/cover;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 4.7653333333vw;
    height: 4.776vw;
  }
  .fixedBtn .fixed__addBtn {
    background-color: #937676;
    display: block;
    text-align: center;
    width: 50vw;
    line-height: 16vw;
  }
  .fixedBtn .fixed__addBtn span {
    font-weight: 600;
    position: relative;
    padding-left: 11.4666666667vw;
  }
  .fixedBtn .fixed__addBtn span::before {
    display: block;
    content: "";
    background: url(../assets/img/common/map-wh.svg) no-repeat center center/cover;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 7.448vw;
    height: 7.8746666667vw;
  }
}
/*
  ドロワー開閉ボタン

  ドロワー開閉ボタンはスマホ時に表示されます。
  */
/* ドロワーボタン */
.drawerButton {
  display: block;
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  width: 48px;
  height: 48px;
  top: 2.1333333333vw;
  right: 2.1333333333vw;
}
@media only screen and (max-width: 767px) {
  .drawerButton {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .drawerButton {
    display: block;
    top: 3vw;
    right: 3vw;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .drawerButton {
    display: none;
  }
}
@media only screen and (min-width: 1101px) {
  .drawerButton {
    display: none;
  }
}
.drawerButton.visible .burger:before, .drawerButton.visible .burger:after {
  background-color: #333333;
}
.drawerButton .burger {
  display: block;
  margin: 0 auto;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  position: relative;
  /* ドロワー表示時 */
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .drawerButton .burger {
    width: 48px;
    height: 48px;
  }
}
.drawerButton .burger::before {
  content: "";
  background: url(../assets/img/common/drawerBtn.svg) no-repeat center center/cover;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .drawerButton .burger::before {
    width: 48px;
    height: 48px;
  }
}
body.have_curtain .drawerButton .burger {
  background-color: transparent;
}
body.have_curtain .drawerButton .burger:before {
  background: url(../assets/img/common/closeBtn.svg) no-repeat center center/cover;
}

.have_curtain {
  overflow: hidden;
}

.slide-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.mvRole .slide-container {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  width: 100%;
  left: 0;
  top: 0;
}
.mvRole .slide-container img {
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100vh - 10.4rem);
}
@media only screen and (max-width: 767px) {
  .mvRole .slide-container img {
    height: 90.6666666667vw;
  }
}
.mvRole .slide-container .swiper {
  margin: 0;
  width: 100%;
}
.mvRole .slide-container .slider-mv .slide {
  height: calc(100vh - 10.4rem);
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .mvRole .slide-container .slider-mv .slide {
    height: 90.6666666667vw;
    width: 100vw;
  }
}
.mvRole .slide-container .slider-mv .slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.mvRole .slide-container .slider-mv .slide.slide1::before {
  background-image: url(../assets/img/top/mv-slide1.webp);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .mvRole .slide-container .slider-mv .slide.slide1::before {
    background-image: url(../assets/img/top/mv-slide1-sp.webp);
  }
}
@media only screen and (max-width: 767px) {
  .mvRole .slide-container .slider-mv .slide.slide1::before {
    background-image: url(../assets/img/top/mv-slide1-sp.webp);
  }
}
.mvRole .slide-container .slider-mv .slide.slide2::before {
  background-image: url(../assets/img/top/mv-slide2.png);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .mvRole .slide-container .slider-mv .slide.slide2::before {
    background-image: url(../assets/img/top/mv-slide2-sp.webp);
  }
}
@media only screen and (max-width: 767px) {
  .mvRole .slide-container .slider-mv .slide.slide2::before {
    background-image: url(../assets/img/top/mv-slide2-sp.webp);
  }
}
.mvRole .slide-container .slider-mv .slide.slide3::before {
  background-image: url(../assets/img/top/mv-slide3.png);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .mvRole .slide-container .slider-mv .slide.slide3::before {
    background-image: url(../assets/img/top/mv-slide3-sp.webp);
  }
}
@media only screen and (max-width: 767px) {
  .mvRole .slide-container .slider-mv .slide.slide3::before {
    background-image: url(../assets/img/top/mv-slide3-sp.webp);
  }
}
.mvRole .slide-container .slider-mv .slide.slide[class*=-prev]::before, .mvRole .slide-container .slider-mv .slide.slide[class*=-active]::before {
  -webkit-animation-name: m_zoom;
          animation-name: m_zoom;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@-webkit-keyframes m_zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
@keyframes m_zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

.tp__sec04 {
  /* スライドの動き等速 */
}
.tp__sec04 .slide {
  width: 37rem;
  height: 34rem;
}
@media only screen and (max-width: 767px) {
  .tp__sec04 .slide {
    width: 78.9333333333vw;
    height: 72.5333333333vw;
  }
}
.tp__sec04 .slide.-mt {
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .tp__sec04 .slide.-mt {
    margin-top: 17.0666666667vw;
  }
}
.tp__sec04 .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.instaRole .slide-container {
  width: 32.1rem;
  height: 25rem;
}
@media only screen and (max-width: 767px) {
  .instaRole .slide-container {
    width: 74.6666666667vw;
    height: 57.3333333333vw;
  }
}
.instaRole .slide {
  width: 32.1rem;
  height: 21.4rem;
}
@media only screen and (max-width: 767px) {
  .instaRole .slide {
    width: 74.6666666667vw;
    height: 49.7786666667vw;
  }
}
.instaRole .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -2.4rem;
}
@media only screen and (max-width: 767px) {
  .instaRole .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -4.2666666667vw;
  }
}
.instaRole .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #fff;
  opacity: 1;
  margin: 0 0.6rem !important;
}
@media only screen and (max-width: 767px) {
  .instaRole .swiper-pagination-bullet {
    width: 3.2vw;
    height: 3.2vw;
    margin: 0 1.6vw !important;
  }
}
.instaRole .swiper-pagination-bullet-active {
  background-color: #937676;
}

@media only screen and (min-width: 768px) and (max-width: 979px) {
  .p-about__sec03 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -8.5333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__sec03 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -8.5333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__sec03 .swiper-pagination-bullet {
    width: 3.2vw;
    height: 3.2vw;
    margin: 0 1.6vw !important;
  }
}
.p-about__sec03 .swiper-pagination-bullet-active {
  background-color: #937676;
}

.btn-prev,
.btn-next {
  display: block;
  width: 63px;
  height: 63px;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .btn-prev,
  .btn-next {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}

.galy-btn-prev {
  background: url(../assets/img/arrow.svg) no-repeat center center/cover;
}

.galy-btn-next {
  background: url(../assets/img/arrow.svg) no-repeat center center/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slideBtn__wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 4.8rem;
}
@media only screen and (max-width: 767px) {
  .slideBtn__wrp {
    gap: 2.1333333333vw;
    margin-top: 6.4vw;
    height: 10.6666666667vw;
  }
}

.sec__hd__wrp .sec__hd {
  font-size: 12rem;
  font-family: shippori-mincho, sans-serif;
  font-weight: 500;
  line-height: 16.8rem;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 100;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .sec__hd__wrp .sec__hd {
    font-size: 8rem;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .sec__hd__wrp .sec__hd {
    font-size: 16vw;
    line-height: 1.6em;
    text-align: center;
  }
}
.sec__hd__wrp .sec__hd::before {
  display: block;
  content: "";
  background: url(../assets/img/common/ttl-obj.webp) no-repeat center center/cover;
  position: absolute;
  top: -3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6rem;
  height: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .sec__hd__wrp .sec__hd::before {
    width: 11.2vw;
    height: 5.8346666667vw;
    top: -8vw;
  }
}
.sec__hd__wrp .sec__hd.vertical {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  letter-spacing: 0.1em;
}
.sec__hd__wrp .sec__hd.vertical::before {
  top: -8rem;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .sec__hd__wrp .sec__hd.vertical::before {
    top: -4vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec__hd__wrp .sec__hd.vertical::before {
    top: -8vw;
  }
}
@media only screen and (min-width: 980px) {
  .sec__hd__wrp .sec__hd.vertical {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.5em;
  }
}
@media only screen and (min-width: 1101px) {
  .sec__hd__wrp .sec__hd.vertical {
    letter-spacing: 0.1em;
  }
}

.sec__catch__wrp {
  text-align: center;
}
.sec__catch__wrp .sec__catch::before {
  display: block;
  content: "";
  background: url(../assets/img/common/catch-obj.svg) no-repeat center center/cover;
  position: absolute;
  top: -1.5rem;
  right: -5.2rem;
  width: 4.1rem;
  height: 3.9rem;
}
@media only screen and (max-width: 767px) {
  .sec__catch__wrp .sec__catch::before {
    width: 11.2vw;
    height: 5.8346666667vw;
    top: -8vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec__catch__wrp .sec__catch::before {
    top: -2.1333333333vw;
    right: -6vw;
    width: 7.4666666667vw;
    height: 7.1013333333vw;
  }
}
.sec__catch__wrp .sec__catch span {
  color: #df3189;
}

.sec__text {
  line-height: 2em;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .sec__text {
    padding-left: 3.90625vw;
    padding-right: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec__text {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

.sec__catch {
  display: inline-block;
  color: #604747;
  font-size: 3.8rem;
  font-weight: 400;
  font-family: shippori-mincho, sans-serif;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 100;
  line-height: 55.02px;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .sec__catch {
    line-height: 1.6em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .sec__catch {
    text-align: center;
    margin: 0 auto 6.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec__catch {
    font-size: 7.4666666667vw;
    line-height: 10.8106666667vw;
    text-align: center;
    margin: 0 auto 6.4vw;
  }
}
.sec__catch span {
  color: #df3189;
}

.page .sec__hd {
  font-size: 5.2rem;
  font-weight: 500;
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .page .sec__hd {
    font-size: 10.0840336134vw;
    margin-bottom: 6.4vw;
  }
}
.page .sec__hd::before {
  display: block;
  content: "";
  background: url(../assets/img/common/catch-obj.svg) no-repeat center center/cover;
  position: absolute;
  top: -4.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4.1rem;
  height: 3.9rem;
}
@media only screen and (max-width: 767px) {
  .page .sec__hd::before {
    width: 8.9635854342vw;
    height: 8.5266106443vw;
    top: -10.6442577031vw;
  }
}

.parent {
  position: relative;
}
.parent:hover .child__wrp {
  visibility: visible;
  opacity: 1;
}
.parent:hover .child__wrp .child__content {
  display: block;
}

.child__wrp {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -36rem;
  width: 24rem;
  padding-top: 3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .child__wrp {
    bottom: -36rem;
  }
}
.child__wrp .child__content {
  background-color: #F2F0E8;
  padding: 0.4rem 1.6rem 1.6rem;
  border-radius: 16px;
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
.child__wrp .child__content::before {
  background: url(../assets/img/common/triangle.svg) no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 2.6rem;
  position: absolute;
  top: -1.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
}

.child__nav {
  border-bottom: 1px solid rgba(96, 71, 71, 0.3019607843);
  padding-left: 2.4rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  position: relative;
  font-size: 1.3rem;
  font-weight: 600;
  width: 100%;
}
.child__nav::before {
  content: none;
}
.child__nav::after {
  content: "";
  background-color: #7E37A1;
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .child__nav::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}

.accordion-inner {
  display: none;
  width: 80vw;
  margin: 0 0 0 auto;
}

.bg__wrp {
  background: -webkit-linear-gradient(325.93deg, #f0d8fd 23.43%, #f2ebf6 68.15%);
  background: linear-gradient(124.07deg, #f0d8fd 23.43%, #f2ebf6 68.15%);
  position: relative;
}

/*アニメーション*/
/*コイン：コインが回転するような動き*/
@-webkit-keyframes coinAnime {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  9% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  18% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes coinAnime {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  9% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  18% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
.schdl {
  background-color: #fff;
  width: 100%;
  padding: 3.4rem 3.2rem 2.5rem;
}
@media only screen and (max-width: 767px) {
  .schdl {
    width: 100vw;
    padding: 4.2666666667vw;
  }
}

.add__wrp {
  color: #604747;
  position: relative;
  font-size: 1.5rem;
  line-height: 2em;
  letter-spacing: 0.16em;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .add__wrp {
    padding: 4.2666666667vw 4.2666666667vw 0;
    margin-bottom: 6.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .add__wrp {
    padding: 4.2666666667vw 4.2666666667vw 0;
    margin-bottom: 6.4vw;
  }
}
.add__wrp .ico-map {
  display: block;
  position: relative;
  padding-left: 5.8rem;
}
@media only screen and (max-width: 767px) {
  .add__wrp .ico-map {
    padding-left: 14.9333333333vw;
  }
}
.add__wrp .ico-map::before {
  content: "";
  position: absolute;
  background: url(../assets/img/common/map.svg) no-repeat center center/cover;
  width: 4rem;
  height: 4.218rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .add__wrp .ico-map::before {
    width: 10.6666666667vw;
    height: 11.248vw;
  }
}

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

.rainbow1 {
  position: relative;
}
.rainbow1::before {
  display: block;
  content: "";
  background: url(../assets/img/top/sec02-rainbow.svg) no-repeat center center/cover;
  position: absolute;
  left: 0;
  width: 105rem;
  height: 78.88rem;
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .rainbow1::before {
    width: 700px;
    height: 541.37px;
  }
}
@media only screen and (max-width: 767px) {
  .rainbow1::before {
    background: url(../assets/img/top/sec02-rainbow-sp.svg) no-repeat center center/cover;
    width: 81.3333333333vw;
    height: 81.3333333333vw;
  }
}

.rainbow2::before {
  display: block;
  content: "";
  background: url(../assets/img/top/sec03-rainbow.svg) no-repeat center center/cover;
  position: absolute;
  right: 0;
  width: 90.4rem;
  height: 49.2rem;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .rainbow2::before {
    background: url(../assets/img/top/sec03-rainbow-sp.svg) no-repeat center center/cover;
    width: 89.3333333333vw;
    height: 68.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .rainbow2::before {
    background: url(../assets/img/top/sec03-rainbow-sp.svg) no-repeat center center/cover;
    width: 89.3333333333vw;
    height: 68.2666666667vw;
  }
}

.rainbow3::before {
  display: block;
  content: "";
  background: url(../assets/img/top/clinic-rainbow.svg) no-repeat center center/cover;
  position: absolute;
  left: 0;
  width: 111.7rem;
  height: 64.143rem;
  z-index: 10;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .rainbow3::before {
    width: 89.7rem;
    height: 51.143rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .rainbow3::before {
    background: url(../assets/img/top/clinic-rainbow-sp.svg) no-repeat center center/cover;
    width: 82.1333333333vw;
    height: 68.296vw;
  }
}
@media only screen and (max-width: 767px) {
  .rainbow3::before {
    background: url(../assets/img/top/clinic-rainbow-sp.svg) no-repeat center center/cover;
    width: 82.1333333333vw;
    height: 68.296vw;
  }
}

.bg-img1 {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 108rem;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .bg-img1 {
    width: 100vw;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .bg-img1 {
    width: 100vw;
    height: auto;
  }
}

.recruitRole {
  margin-top: 23.2rem;
}
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
  .recruitRole {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .recruitRole {
    padding-left: 3.90625vw;
    padding-right: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole {
    margin-top: 61.3333333333vw;
  }
}
.recruitRole .sec__wrp {
  background-color: #9e597c;
  padding: 8rem;
  border-radius: 2rem;
  position: relative;
}
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
  .recruitRole .sec__wrp {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .recruitRole .sec__wrp {
    padding-left: 3.90625vw;
    padding-right: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole .sec__wrp {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .recruitRole .sec__wrp {
    padding-bottom: 36vw;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole .sec__wrp {
    padding-top: 8.5333333333vw;
    padding-bottom: 46.1333333333vw;
  }
}
.recruitRole .sec__wrp::before {
  content: "";
  position: absolute;
  background: url(../assets/img/common/recruitment.svg) no-repeat center center/cover;
  bottom: -9.03rem;
  left: 11.5rem;
  width: 51.921rem;
  height: 19.465rem;
  z-index: 100;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .recruitRole .sec__wrp::before {
    width: 73.8426666667vw;
    height: 27.6826666667vw;
    left: 0;
    bottom: -38.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole .sec__wrp::before {
    width: 73.8426666667vw;
    height: 27.6826666667vw;
    left: 0;
    bottom: -38.4vw;
  }
}
.recruitRole .hd {
  color: #fffb69;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 43.58px;
  letter-spacing: 0.16em;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .recruitRole .hd {
    font-size: 3rem;
    margin-bottom: 0.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole .hd {
    font-size: 5.3333333333vw;
    line-height: 7.264vw;
    margin-bottom: 2.1333333333vw;
    padding-left: 2.6666666667vw;
  }
}
.recruitRole .catch {
  color: #fff;
  font-size: 6rem;
  font-weight: 500;
  line-height: 86.88px;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
  position: relative;
  z-index: 110;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .recruitRole .catch {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole .catch {
    font-size: 8vw;
    line-height: 11.584vw;
    margin-bottom: 6.4vw;
    padding-left: 2.6666666667vw;
  }
}
.recruitRole .text {
  color: #fff;
  margin-bottom: 4.7rem;
  position: relative;
  z-index: 110;
}
@media only screen and (max-width: 767px) {
  .recruitRole .text {
    margin-bottom: 4.2666666667vw;
  }
}
.recruitRole .obj {
  position: absolute;
  height: auto;
}
.recruitRole .obj.obj1 {
  width: 34rem;
  top: -8rem;
  right: 7.2%;
  z-index: 100;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .recruitRole .obj.obj1 {
    width: 42vw;
    top: -28vw;
    right: -4.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole .obj.obj1 {
    width: 59.2vw;
    top: -44.2666666667vw;
    right: -4.2666666667vw;
  }
}
.recruitRole .obj.obj2 {
  width: 24rem;
  top: 28.4rem;
  right: -4.444444%;
}
@media only screen and (min-width: 1100px) and (max-width: 1280px) {
  .recruitRole .obj.obj2 {
    right: -2%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .recruitRole .obj.obj2 {
    width: 40vw;
    top: auto;
    bottom: -27.4666666667vw;
    right: -4.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole .obj.obj2 {
    width: 41.8666666667vw;
    top: auto;
    bottom: -27.4666666667vw;
    right: -4.2666666667vw;
  }
}
.recruitRole .obj.obj3 {
  width: 30rem;
  bottom: -8rem;
  right: 16.6666666667%;
}
@media only screen and (min-width: 981px) and (max-width: 1280px) {
  .recruitRole .obj.obj3 {
    bottom: -20rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .recruitRole .obj.obj3 {
    width: 45vw;
    top: auto;
    bottom: -14.6666666667vw;
    left: -4.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .recruitRole .obj.obj3 {
    width: 52.2666666667vw;
    bottom: -14.6666666667vw;
    left: -4.2666666667vw;
  }
}

.instaRole {
  background: -webkit-linear-gradient(325.93deg, #f0d8fd 23.43%, #f2ebf6 68.15%);
  background: linear-gradient(124.07deg, #f0d8fd 23.43%, #f2ebf6 68.15%);
  position: relative;
  text-align: center;
  padding: 10rem 0 9.3rem;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .instaRole {
    padding: 10rem 4.2666666667vw 30rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .instaRole {
    padding: 62vw 4.2666666667vw 75.2vw;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .instaRole {
    padding: 73vw 4.2666666667vw 75.2vw;
    margin-bottom: 0;
  }
}
.instaRole::before {
  content: "";
  position: absolute;
  background: url(../assets/img/common/insta-obj-sp.webp) no-repeat center center/cover;
  width: 87.4666666667vw;
  height: 81.448vw;
  left: 0;
  bottom: -2.5493333333vw;
}
@media only screen and (min-width: 1101px) {
  .instaRole::before {
    background: url(../assets/img/common/insta-obj.webp) no-repeat center center/cover;
    width: 50rem;
    height: 44.3rem;
    bottom: -2rem;
    left: 0;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .instaRole::before {
    width: 364px;
    height: 338.95px;
  }
}
.instaRole .hd {
  color: #7E37A1;
  font-size: 10rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: absolute;
  top: -9rem;
  right: 8rem;
  z-index: 100;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .instaRole .hd {
    font-size: 13.8666666667vw;
    right: 0;
    top: -14vw;
  }
}
@media only screen and (max-width: 767px) {
  .instaRole .hd {
    font-size: 13.8666666667vw;
    right: 0;
    top: -14vw;
  }
}
.instaRole .text {
  text-align: center;
  margin-bottom: 4.6rem;
  position: relative;
  z-index: 100;
}
@media only screen and (min-width: 1101px) and (max-width: 1400px) {
  .instaRole .text {
    width: 30%;
    margin: 0 auto 4rem;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .instaRole .text {
    width: 60%;
    text-align: left;
    margin-left: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .instaRole .text {
    margin-bottom: 4.2666666667vw;
    text-align: left;
  }
}
.instaRole .btn {
  margin: 0 auto;
  z-index: 100;
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .instaRole .btn {
    margin-left: 3.90625vw;
  }
}
.instaRole .slide-container {
  position: absolute;
  right: 8.33333333%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 980px) and (max-width: 1100px) {
  .instaRole .slide-container {
    -webkit-transform: none;
            transform: none;
    top: 10rem;
    right: 3.90625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .instaRole .slide-container {
    position: absolute;
    top: 8vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .instaRole .slide-container {
    position: absolute;
    top: 8vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.post {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2.4rem;
  padding-left: 2.4rem;
}
.post::before {
  content: "";
  background-color: #7E37A1;
  width: 14.15rem;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 767px) {
  .post::before {
    width: 17.0666666667vw;
    height: 0.2666666667vw;
  }
}
.post:hover, .post:active {
  opacity: 1;
}
.post:hover::before, .post:active::before {
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.post::after {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .post::after {
    height: 0.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .post {
    margin-bottom: 6.4vw;
    padding-bottom: 4.2666666667vw;
    padding-left: 6.4vw;
  }
}
.post a {
  position: relative;
  display: block;
}
.post a::after {
  content: "";
  background-color: #7E37A1;
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 0.9rem;
  left: -2.4rem;
  border-radius: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .post a::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    top: 2.3vw;
    left: -6.4vw;
  }
}
.post a .ttl {
  line-height: 1.98em;
}
.post .time {
  color: #7E37A1;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  line-height: 1.98em;
}
.post:last-child {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .post:last-child {
    margin-bottom: 6.4vw;
  }
}/*# sourceMappingURL=common.css.map */