@charset "UTF-8";
.font-DinMed {
  font-family: "din-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

@-webkit-keyframes slideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes slideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeUp2 {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeUp3 {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeUp4 {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeUp5 {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeUp6 {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.preparation {
  font-size: 7.2rem;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 768px) {
  .preparation {
    font-size: 6rem;
  }
}

#loader .loader-slide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  min-height: 104vh;
  z-index: 9999;
  background-color: #d49494;
  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;
}

#loader .loader-slide.open {
  -webkit-animation-name: slideOut;
          animation-name: slideOut;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

#loader .loader-slide .load-content {
  width: 240px;
  text-align: center;
  color: #fff;
  letter-spacing: 10px;
  font-size: 2rem;
}

article header {
  width: auto;
  max-width: 80px;
  text-align: left;
  padding: 0;
}

@media screen and (max-width: 768px) {
  article header {
    width: auto;
  }
}

article header h2 {
  font-size: 4.8rem;
  letter-spacing: 4px;
  text-align: left;
  position: relative;
  color: #755554;
  -webkit-transform: rotate(-270deg);
          transform: rotate(-270deg);
  opacity: 0.4;
}

@media screen and (max-width: 768px) {
  article header h2 {
    width: auto;
  }
}

article header i {
  display: block;
  padding: 20px 0 0;
  letter-spacing: 2px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  article header i {
    width: auto;
  }
}

article section h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #d49494;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*============================
#title
============================*/
article#title {
  width: auto;
  min-height: 100vh;
  background: #F3EDE7;
}

@media screen and (max-width: 768px) {
  article#title {
    width: auto;
    min-height: auto;
  }
}

article#title:after {
  content: "";
  position: absolute;
  left: 0;
  width: 40%;
  height: calc(100% + 240px);
  top: 0;
  background-color: #d49494;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  article#title:after {
    display: none;
  }
}

article#title img.bg {
  margin-top: 119px;
  width: auto;
  padding-left: 20%;
  position: absolute;
}

@media screen and (max-width: 768px) {
  article#title img.bg {
    width: auto;
    margin: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    padding: 0;
    -o-object-position: 70%;
       object-position: 70%;
  }
}

article#title section.full {
  width: auto;
  min-height: 100vh;
}

@media screen and (max-width: 768px) {
  article#title section.full {
    width: auto;
    min-height: auto;
  }
}

article#title section.full div.title {
  width: auto;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  color: #fff;
  max-width: 600px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.title {
    width: auto;
    position: static;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    color: #151515;
    padding: 40px 20px;
  }
}

article#title section.full div.title h1 {
  width: auto;
  font-size: 3.6rem;
  letter-spacing: 4px;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  article#title section.full div.title h1 {
    width: auto;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #a48141;
  }
}

article#title section.full div.title p {
  width: auto;
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 2;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.title p {
    width: auto;
  }
}

article#title section.full div.news {
  position: absolute;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  min-width: 40%;
  max-width: 55%;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news {
    width: auto;
  }
}

article#title section.full div.news p {
  width: auto;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news p {
    width: auto;
  }
}

article#title section.full div.news ul {
  width: auto;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content {
  width: auto;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content a.link {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content a.link {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content a.link p {
  width: auto;
  border: none;
  font-size: 1.4rem;
  letter-spacing: 2px;
  padding: 0;
  margin-bottom: 0;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content a.link p {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content a.link div.text__content {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content a.link div.text__content {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content a.link div.text__content h3 {
  width: auto;
  font-size: 1.4rem;
  letter-spacing: 2px;
  font-family: sans-serif;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content a.link div.text__content h3 {
    width: auto;
  }
}

div.news-sp {
  background-color: #d49494;
  padding: 20px;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  div.news-sp {
    width: auto;
    padding-top: 40px;
  }
}

div.news-sp p {
  width: auto;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px;
}

@media screen and (max-width: 768px) {
  div.news-sp p {
    width: auto;
  }
}

div.news-sp ul {
  width: auto;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  div.news-sp ul {
    width: auto;
  }
}

div.news-sp ul li.news__content {
  width: auto;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  div.news-sp ul li.news__content {
    width: auto;
  }
}

div.news-sp ul li.news__content a.link {
  color: #fff;
  display: block;
}

@media screen and (max-width: 768px) {
  div.news-sp ul li.news__content a.link {
    width: auto;
  }
}

div.news-sp ul li.news__content a.link p {
  width: auto;
  border: none;
  font-size: 1.4rem;
  letter-spacing: 2px;
  padding: 0 0 10px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  div.news-sp ul li.news__content a.link p {
    width: auto;
  }
}

div.news-sp ul li.news__content a.link div.text__content {
  width: auto;
}

@media screen and (max-width: 768px) {
  div.news-sp ul li.news__content a.link div.text__content {
    width: auto;
  }
}

div.news-sp ul li.news__content a.link div.text__content h3 {
  width: auto;
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  div.news-sp ul li.news__content a.link div.text__content h3 {
    width: auto;
  }
}

ul.slicks {
  width: auto;
  background: #F3EDE7;
  padding: 80px 0 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  ul.slicks {
    width: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

ul.slicks li {
  position: relative;
  margin: 0 20px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  background: #fff;
  border-radius: 10px;
  border: solid #A67E59 10px;
}

@media screen and (max-width: 768px) {
  ul.slicks li {
    margin: 0 5px;
    border: solid #A67E59 2px;
  }
}

ul.slicks li div.content {
  width: 50%;
  padding: 40px 10px 10px;
}

@media screen and (max-width: 768px) {
  ul.slicks li div.content {
    width: calc(100% - 100px);
    padding: 30px 10px 10px 0;
  }
}

ul.slicks li div.content img.new {
  width: 100px;
  position: absolute;
  top: -10px;
  left: -10px;
}

@media screen and (max-width: 768px) {
  ul.slicks li div.content img.new {
    width: 60px;
    top: -15px;
    left: 0;
  }
}

ul.slicks li div.content h2 {
  width: auto;
  font-size: 2rem;
  letter-spacing: 2px;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  ul.slicks li div.content h2 {
    width: auto;
    font-size: 1.4rem;
    letter-spacing: 0;
    padding-left: 20px;
  }
}

ul.slicks li div.content p {
  width: auto;
  padding-left: 20px;
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 1.4;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  ul.slicks li div.content p {
    width: auto;
    padding-top: 10px;
    font-size: 11px;
    padding-left: 10px;
  }
}

ul.slicks li div.content div {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  ul.slicks li div.content div {
    width: auto;
  }
}

ul.slicks li div.content div p {
  width: auto;
  padding-right: 10px;
  font-weight: 300;
  padding-top: 0;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  ul.slicks li div.content div p {
    font-size: 12px;
  }
}

ul.slicks li div.content div span {
  width: auto;
  font-size: 6rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  ul.slicks li div.content div span {
    width: auto;
    font-size: 3.6rem;
  }
}

ul.slicks li div.content div span small {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  ul.slicks li div.content div span small {
    width: auto;
    font-size: 10px;
  }
}

ul.slicks li div.img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  ul.slicks li div.img {
    width: 100px;
  }
}

ul.slicks li div.img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*============================
#about
============================*/
article#about {
  width: auto;
  background: #F3EDE7;
}

@media screen and (max-width: 768px) {
  article#about {
    width: auto;
  }
}

article#about section {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  article#about section {
    width: auto;
  }
}

article#about section header {
  width: 80px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  article#about section header {
    width: auto;
    opacity: 0.2;
    position: absolute;
    left: -20px;
  }
}

article#about section header h2 {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#about section header h2 {
    width: auto;
  }
}

article#about section div.img_content {
  width: 50%;
}

@media screen and (max-width: 768px) {
  article#about section div.img_content {
    width: auto;
  }
}

article#about section div.img_content img {
  width: auto;
  border-radius: 150px 100px 150px 100px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
}

@media screen and (max-width: 768px) {
  article#about section div.img_content img {
    width: auto;
  }
}

article#about section div.text_content {
  width: 50%;
  padding: 40px 40px 0 10px;
}

@media screen and (max-width: 768px) {
  article#about section div.text_content {
    width: auto;
    padding: 0 0 0 40px;
  }
}

article#about section div.text_content div.wrap {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#about section div.text_content div.wrap {
    width: auto;
  }
}

article#about section div.text_content div.wrap h3 {
  color: #d49494;
  font-size: 2.4rem;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  article#about section div.text_content div.wrap h3 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2rem;
    padding-bottom: 40px;
  }
}

article#about section div.text_content div.wrap img {
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 100px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
}

article#about section div.text_content div.wrap p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 2;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  article#about section div.text_content div.wrap p {
    width: auto;
  }
}

article#about section div.text_content div.wrap div.btn_wrap {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#about section div.text_content div.wrap div.btn_wrap {
    width: auto;
  }
}

article#about section div.text_content div.wrap div.btn_wrap a {
  color: #755554;
  letter-spacing: 2px;
  position: relative;
  border: solid 2px #d49494;
  padding: 15px 0px;
  width: 240px;
  display: block;
  text-align: center;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  article#about section div.text_content div.wrap div.btn_wrap a {
    width: auto;
  }
}

article#about section div.text_content div.wrap div.btn_wrap a:after {
  content: "";
  background: rgba(212, 148, 148, 0.2);
  position: absolute;
  width: 240px;
  height: 100%;
  left: 8px;
  top: 8px;
  border-radius: 8px;
  z-index: -2;
}

@media screen and (max-width: 768px) {
  article#about section div.text_content div.wrap div.btn_wrap a:after {
    width: 100%;
  }
}

/*============================
#studios
============================*/
article#studios {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#studios {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  article#studios header {
    width: auto;
    position: absolute;
    right: -20px;
    opacity: 0.2;
  }
}

article#studios section {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  article#studios section {
    width: auto;
  }
}

article#studios section div.wrap {
  width: 50%;
  padding: 40px 10px 0 40px;
}

@media screen and (max-width: 768px) {
  article#studios section div.wrap {
    width: auto;
    padding: 0 40px 0 0;
  }
}

article#studios section div.wrap h3 {
  color: #d49494;
  font-size: 2.4rem;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  article#studios section div.wrap h3 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2rem;
    padding-bottom: 40px;
  }
}

article#studios section div.wrap p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 2;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  article#studios section div.wrap p {
    width: auto;
  }
}

article#studios section div.wrap img.sp {
  max-height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px 50px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
}

@media screen and (max-width: 768px) {
  article#studios section div.wrap img.sp {
    width: auto;
  }
}

article#studios section div.wrap div.btn_wrap {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#studios section div.wrap div.btn_wrap {
    width: auto;
  }
}

article#studios section div.wrap div.btn_wrap a {
  color: #755554;
  letter-spacing: 2px;
  position: relative;
  border: solid 2px #d49494;
  padding: 15px 0px;
  width: 240px;
  display: block;
  text-align: center;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  article#studios section div.wrap div.btn_wrap a {
    width: auto;
  }
}

article#studios section div.wrap div.btn_wrap a:after {
  content: "";
  background: rgba(212, 148, 148, 0.2);
  position: absolute;
  width: 240px;
  height: 100%;
  left: 8px;
  top: 8px;
  border-radius: 8px;
  z-index: -2;
}

@media screen and (max-width: 768px) {
  article#studios section div.wrap div.btn_wrap a:after {
    width: 100%;
  }
}

article#studios section div.img_wrap.pc {
  width: 50%;
}

@media screen and (max-width: 768px) {
  article#studios section div.img_wrap.pc {
    width: auto;
  }
}

article#studios section div.img_wrap.pc img {
  border-radius: 100px 150px 100px 150px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
}

@media screen and (max-width: 768px) {
  article#studios section div.img_wrap.pc img {
    width: auto;
  }
}

/*============================
#menu
============================*/
article#menu {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#menu {
    width: auto;
  }
}

article#menu section {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  article#menu section {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  article#menu section header {
    width: auto;
    position: absolute;
    left: -20px;
    opacity: 0.2;
  }
}

article#menu section div.wrap {
  width: 60%;
  padding: 40px 40px 0 10px;
}

@media screen and (max-width: 768px) {
  article#menu section div.wrap {
    padding: 0 0 0 40px;
    width: 100%;
  }
}

article#menu section div.wrap h3 {
  color: #d49494;
  font-size: 2.4rem;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  article#menu section div.wrap h3 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2rem;
    padding-bottom: 40px;
  }
}

article#menu section div.wrap p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 2;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  article#menu section div.wrap p {
    width: auto;
  }
}

article#menu section div.wrap img.sp {
  max-height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 100px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
}

@media screen and (max-width: 768px) {
  article#menu section div.wrap img.sp {
    width: auto;
  }
}

article#menu section div.wrap div.btn_wrap {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#menu section div.wrap div.btn_wrap {
    width: auto;
  }
}

article#menu section div.wrap div.btn_wrap a {
  color: #755554;
  letter-spacing: 2px;
  position: relative;
  border: solid 2px #d49494;
  padding: 15px 0px;
  width: 240px;
  display: block;
  text-align: center;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  article#menu section div.wrap div.btn_wrap a {
    width: auto;
  }
}

article#menu section div.wrap div.btn_wrap a:after {
  content: "";
  background: rgba(212, 148, 148, 0.2);
  position: absolute;
  width: 240px;
  height: 100%;
  left: 8px;
  top: 8px;
  border-radius: 8px;
  z-index: -2;
}

@media screen and (max-width: 768px) {
  article#menu section div.wrap div.btn_wrap a:after {
    width: 100%;
  }
}

article#menu section div.img_wrap.pc {
  width: 40%;
}

@media screen and (max-width: 768px) {
  article#menu section div.img_wrap.pc {
    width: auto;
  }
}

article#menu section div.img_wrap.pc img {
  border-radius: 150px 100px 150px 100px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
}

@media screen and (max-width: 768px) {
  article#menu section div.img_wrap.pc img {
    width: auto;
  }
}

/*============================
#trial
============================*/
article#trial {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#trial {
    width: auto;
  }
}

article#trial:after {
  content: "";
  position: absolute;
  right: 0;
  width: 80%;
  height: calc(100% + 360px);
  top: 0;
  background-color: #F3EDE7;
  z-index: -1;
}

article#trial section {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  article#trial section {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  article#trial section header {
    position: absolute;
    right: -20px;
    opacity: 0.2;
  }
}

article#trial section div.wrap {
  width: 60%;
  padding: 40px 10px 0 40px;
}

@media screen and (max-width: 768px) {
  article#trial section div.wrap {
    width: auto;
    padding: 0 40px 0 0;
  }
}

article#trial section div.wrap h3 {
  color: #d49494;
  font-size: 2.4rem;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  article#trial section div.wrap h3 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2rem;
    padding-bottom: 40px;
  }
}

article#trial section div.wrap p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 2;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  article#trial section div.wrap p {
    width: auto;
  }
}

article#trial section div.wrap img.sp {
  max-height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px 50px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
}

@media screen and (max-width: 768px) {
  article#trial section div.wrap img.sp {
    width: auto;
  }
}

article#trial section div.wrap div.btn_wrap {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  article#trial section div.wrap div.btn_wrap {
    width: auto;
  }
}

article#trial section div.wrap div.btn_wrap a {
  color: #755554;
  letter-spacing: 2px;
  position: relative;
  border: solid 2px #d49494;
  padding: 15px 0px;
  width: 240px;
  display: block;
  text-align: center;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  article#trial section div.wrap div.btn_wrap a {
    width: auto;
  }
}

article#trial section div.wrap div.btn_wrap a:after {
  content: "";
  background: rgba(212, 148, 148, 0.2);
  position: absolute;
  width: 240px;
  height: 100%;
  left: 8px;
  top: 8px;
  border-radius: 8px;
  z-index: -10;
}

@media screen and (max-width: 768px) {
  article#trial section div.wrap div.btn_wrap a:after {
    width: 100%;
  }
}

article#trial section div.img_wrap.pc {
  width: 40%;
}

@media screen and (max-width: 768px) {
  article#trial section div.img_wrap.pc {
    width: auto;
  }
}

article#trial section div.img_wrap.pc img {
  border-radius: 100px 150px 100px 150px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
}

@media screen and (max-width: 768px) {
  article#trial section div.img_wrap.pc img {
    width: auto;
  }
}

/*============================
#price
============================*/
article#price {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#price {
    width: auto;
  }
}

article#price section {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  article#price section {
    width: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  article#price section header {
    width: auto;
    position: absolute;
    left: -20px;
    opacity: 0.2;
  }
}

article#price section div.title {
  width: 40%;
  padding-top: 40px;
  line-height: 1.4;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  article#price section div.title {
    width: 100%;
    padding: 0 0 0 40px;
  }
}

article#price section div.title h3 {
  color: #d49494;
  font-size: 2.4rem;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  article#price section div.title h3 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2rem;
  }
}

article#price section div.content {
  width: 60%;
}

@media screen and (max-width: 768px) {
  article#price section div.content {
    width: auto;
  }
}

article#price section div.content p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 2;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  article#price section div.content p {
    width: auto;
    padding: 40px 0 40px 40px;
  }
}

article#price section div.content div.btn_wrap {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#price section div.content div.btn_wrap {
    width: auto;
  }
}

article#price section div.content div.btn_wrap a {
  color: #755554;
  letter-spacing: 2px;
  position: relative;
  border: solid 2px #d49494;
  padding: 15px 0px;
  width: 240px;
  display: block;
  text-align: center;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  article#price section div.content div.btn_wrap a {
    width: auto;
    margin-left: 40px;
  }
}

article#price section div.content div.btn_wrap a:after {
  content: "";
  background: rgba(212, 148, 148, 0.2);
  position: absolute;
  width: 240px;
  height: 100%;
  left: 8px;
  top: 8px;
  border-radius: 8px;
  z-index: -2;
}

@media screen and (max-width: 768px) {
  article#price section div.content div.btn_wrap a:after {
    width: 100%;
  }
}

/*============================
#instagram
============================*/
article#instagram {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#instagram {
    width: auto;
  }
}

article#instagram section {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  article#instagram section {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  article#instagram section header h2 {
    position: absolute;
    right: -135px;
    top: 160px;
  }
}

article#instagram section div.message {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  article#instagram section div.message {
    width: auto;
  }
}

article#instagram section div.message div.img {
  width: auto;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  article#instagram section div.message div.img {
    padding-right: 10px;
  }
}

article#instagram section div.message div.img img {
  width: 30px;
}

@media screen and (max-width: 768px) {
  article#instagram section div.message div.img img {
    width: 48px;
  }
}

article#instagram section div.message p {
  width: auto;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  article#instagram section div.message p {
    width: auto;
    line-height: 1.6;
  }
}

article#instagram .wrap {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  article#instagram .wrap {
    padding: 0 20px;
  }
}

article#instagram .wrap #sb_instagram {
  padding-bottom: 80px !important;
  max-width: 1120px;
  margin: 0;
  width: 100%;
  padding-right: 80px;
}

@media screen and (max-width: 768px) {
  article#instagram .wrap #sb_instagram {
    padding-right: 30px !important;
  }
}

article#instagram .wrap #sb_instagram .sb_instagram_header {
  display: none;
}

article#instagram .wrap #sb_instagram #sbi_load {
  display: none;
}

article#instagram .wrap #sb_instagram #sbi_images {
  padding: 0 !important;
}

article#instagram .wrap #sb_instagram #sbi_images .sbi_item:nth-child(2n + 1) {
  padding-left: 0 !important;
}

article#instagram .wrap #sb_instagram #sbi_images .sbi_item:nth-child(2n) {
  padding-right: 0 !important;
}

/*============================
#campaign
============================*/
article#campaign {
  width: auto;
  background: #e0c6bf;
  color: #333;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  article#campaign {
    width: auto;
    padding: 40px 0;
    margin-top: 0;
  }
}

article#campaign .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 600px;
  margin: auto;
  display: block;
}

article#campaign section.full {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  article#campaign section.full {
    padding: 0 20px;
  }
}

article#campaign section.full .content .title {
  text-align: center;
  margin-bottom: 40px;
}

article#campaign section.full .content .title h2 {
  font-size: 3.6rem;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .title h2 {
    font-size: 2.4rem;
  }
}

article#campaign section.full .content .title .period {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .title .period {
    font-size: 1.4rem;
  }
}

article#campaign section.full .content .features {
  margin-bottom: 40px;
}

article#campaign section.full .content .features ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

article#campaign section.full .content .features ul li {
  font-size: 1.8rem;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .features ul li {
    font-size: 1.4rem;
    padding: 8px 20px;
  }
}

article#campaign section.full .content .benefits ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .benefits ul {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 15px;
  }
}

article#campaign section.full .content .benefits ul li {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  padding: 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

article#campaign section.full .content .benefits ul li .label {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .benefits ul li .label {
    font-size: 1.4rem;
  }
}

article#campaign section.full .content .benefits ul li .price {
  font-size: 3.2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .benefits ul li .price {
    font-size: 2.4rem;
  }
}

article#campaign section.full .content .benefits ul li .price small {
  font-size: 1.6rem;
  margin-left: 2px;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .benefits ul li .price small {
    font-size: 1.4rem;
  }
}

article#campaign section.full .content .cta {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .cta {
    margin-top: 40px;
  }
}

article#campaign section.full .content .cta a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #06c755;
  color: #fff;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .cta a {
    padding: 5px 30px;
    font-size: 1.6rem;
  }
}

article#campaign section.full .content .cta a:hover {
  opacity: 0.8;
}

article#campaign section.full .content .cta a img {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  article#campaign section.full .content .cta a img {
    width: 48px;
    height: 48px;
  }
}
/*# sourceMappingURL=common.css.map */