@charset "UTF-8";
/*====================================
　早見表
  画面幅サイズ別
  $conts-width-◎　◎＝l , m , s

  サイトカラー
  $color-◎　◎＝pink , blue , orange , green , border , lightgray

  フォントカラー・フォントファミリー
  $font-color-black
  $font-family-gothic  $font-family-mincho

  full-width＝親要素を超えて子要素がフル画面幅
  flex-column＝端寄せ均等幅  flex-center＝上下左右中央揃え
  media(320px ＝ xs   480px ＝ s   768px ＝ m   1000px ＝ l)

  可変px指定clamp
  auto-px(○,□,△) ○＝最大pxサイズ　□＝最小pxサイズ　△＝最小画面サイズ

====================================*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP|Fredericka+the+Great|Source+Sans+Pro:400,700");
@import url("https://fonts.cdnfonts.com/css/kollektif");
@font-face {
  font-family: 'Kollektif';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Kollektif.woff") format("woff");
  font-display: swap; }
@font-face {
  font-family: 'Kollektif';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Kollektif-Bold.woff") format("woff");
  font-display: swap; }
/*====================================

/*----------------------------------
  Structure
----------------------------------
1. トップ
  1.1	メインイメージ
  1.2 トップナビ
2. 
3. 

====================================*/
.morphing {
  position: relative;
  overflow: hidden;
  font-family: 'Kollektif', Quicksand, "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-weight: 900;
  background-color: #000;
  color: #fff;
  min-height: 300px;
  filter: contrast(25) blur(1px); }

.word {
  font-size: clamp(70px, 14.583vw, 120px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: word 16s infinite ease-in-out;
  line-height: 1.4; }
  .word span {
    font-size: clamp(18px, 3.75vw, 36px);
    display: block; }
  .word:nth-child(1) {
    animation-delay: -16s; }
  .word:nth-child(2) {
    animation-delay: -14s; }
  .word:nth-child(3) {
    animation-delay: -12s; }
  .word:nth-child(4) {
    animation-delay: -10s; }
  .word:nth-child(5) {
    animation-delay: -8s; }
  .word:nth-child(6) {
    animation-delay: -6s; }
  .word:nth-child(7) {
    animation-delay: -4s; }
@keyframes word {
  0%, 5%, 100% {
    filter: blur(0px);
    opacity: 1; }
  20%, 80% {
    filter: blur(1em);
    opacity: 0; } }
.gradation {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 400px;
  background-color: #fdead5; }
  .gradation .item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    /* 回転アニメーション */
    transform-origin: 0 0;
    animation-name: rotate-item;
    animation-timing-function: linear;
    animation-iteration-count: infinite; }
    .gradation .item.item-01 {
      z-index: 3;
      animation-duration: 15s; }
    .gradation .item.item-02 {
      z-index: 2;
      left: 45%;
      animation-duration: 50s;
      animation-direction: reverse; }
    .gradation .item.item-03 {
      z-index: 4;
      left: 40%;
      animation-duration: 8s; }
    .gradation .item.item-04 {
      z-index: 1;
      animation-duration: 10s; }
    .gradation .item .round {
      position: relative;
      border-radius: 50%; }
      .gradation .item .round.round-01 {
        z-index: 3;
        top: 0%;
        width: 18vw;
        height: 18vw;
        background: #f75f5f;
        filter: blur(50px);
        animation: flash 5s linear infinite; }
        @media (max-width: 480px) {
          .gradation .item .round.round-01 {
            width: 28vw;
            height: 34vw;
            background: #ffa2a2;
            filter: blur(26px); } }
      .gradation .item .round.round-02 {
        top: -20%;
        width: 30vw;
        height: 30vw;
        background-color: #e0ff95;
        filter: blur(80px);
        animation: flash 8s linear infinite; }
        @media (max-width: 480px) {
          .gradation .item .round.round-02 {
            width: 48vw;
            height: 46vw;
            background-color: #e0ff95;
            filter: blur(46px); } }
      .gradation .item .round.round-03 {
        top: 60%;
        width: 3vw;
        height: 3vw;
        background-color: #adff548c;
        filter: blur(20px);
        animation: flash 8s linear infinite; }
        @media (max-width: 480px) {
          .gradation .item .round.round-03 {
            width: 21vw;
            height: 25vw;
            background-color: #ffe4548c;
            filter: blur(28px); } }
      .gradation .item .round.round-04 {
        top: -70%;
        left: -60%;
        width: 40vw;
        height: 40vw;
        background-color: #eee6ff30;
        filter: blur(150px);
        animation: flash 10s linear infinite; }
        @media (max-width: 480px) {
          .gradation .item .round.round-04 {
            width: 50vw;
            height: 50vw;
            background-color: #59ffcb5e;
            filter: blur(30px); } }

/* 回転アニメーション */
@keyframes rotate-item {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* 点滅アニメーション */
@keyframes flash {
  0%,
	100% {
    opacity: 0.8; }
  50% {
    opacity: 0.5; } }
.font-lite {
  font-weight: 400;
  font-size: clamp(11px, 1.432vw, 14px);
  font-style: normal; }

.cstm-curved-edge-top {
  --c: 78px;
  mask: radial-gradient(60% var(--c) at top, #0000 calc(100% - 1px), #000); }
  @media (max-width: 1023px) {
    .cstm-curved-edge-top {
      --c: 58px; } }
  @media (max-width: 1023px) and (max-height: 500px) {
    .cstm-curved-edge-top {
      --c: 33px; } }

  @media (max-width: 480px) {
    .cstm-curved-edge-top {
      --c: 33px; } }

mark {
  font-style: normal;
  background-color: aliceblue !important; }

p {
  margin-bottom: 0; }

a {
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #d48238; }

a:hover {
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #9b8568; }

.futidori {
  text-shadow: 1px 1px 0.5px rgba(0, 0, 0, 0.6), -1px -1px 0.5px rgba(0, 0, 0, 0.6), -1px 1px 0.5px rgba(0, 0, 0, 0.6), 1px -1px 0.5px rgba(0, 0, 0, 0.6), 1px 0px 0.5px rgba(0, 0, 0, 0.6), -1px 0px 0.5px rgba(0, 0, 0, 0.6), 0px 1px 0.5px rgba(0, 0, 0, 0.6), 0px -1px 0.5px rgba(0, 0, 0, 0.6);
  color: #f6f4f5; }
  .futidori.shiro {
    color: #fff; }

.bg-trans {
  background-color: #ffffff54; }

.btn-style01 {
  display: inline-block;
  width: 250px;
  margin: auto;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #3a3a3a;
  background-color: #fff;
  position: relative;
  border: 1px solid #3a3a3a;
  border-radius: 3px;
  transition: color 0.5s ease; }
  .btn-style01:hover {
    color: #fff;
    text-decoration: none; }
    .btn-style01:hover:before {
      transform: scaleY(1); }
  .btn-style01:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #3a3a3a;
    transform: scaleX(0);
    transition: all 0.5s ease;
    transition-property: transform; }
  .btn-style01 .text {
    position: relative; }

#wrapper {
  position: relative;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center; }

.pg-title__wrap {
  padding: 5%;
  margin-bottom: 30px; }
  @media (max-width: 576px) {
    .pg-title__wrap {
      padding: 40px 5% 0; } }
  .pg-title__wrap h1 {
    margin-bottom: 10px; }
    .pg-title__wrap h1 span {
      font-size: clamp(24px, 3.125vw, 64px);
      display: flex;
      justify-content: flex-start;
      align-items: center;
      font-family: 'Kollektif', sans-serif; }
      .pg-title__wrap h1 span:before {
        content: '● ';
        color: #999999;
        margin-right: clamp(10px, 1.302vw, 20px);
        font-size: 16px; }
  .pg-title__wrap p {
    font-size: clamp(16px, 3.333vw, 18px) !important;
    font-weight: 500;
    margin-bottom: 0px !important; }

.btn-area {
  max-width: 600px;
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center; }
  @media screen and (max-width: 600px) {
    .btn-area {
      display: block; } }
  .btn-area .textlink {
    border: 2px solid #000;
    padding: 18px 0;
    border-radius: 10px;
    width: 280px;
    margin: auto; }
    .btn-area .textlink:hover {
      border-color: #5e5e5e; }
    .btn-area .textlink a {
      font-size: clamp(13px, 1.693vw, 16px);
      color: #000;
      text-decoration: none;
      font-weight: 600;
      display: block; }
      .btn-area .textlink a:hover {
        color: #5e5e5e; }
      .btn-area .textlink a[target=_blank] {
        color: #000;
        padding-right: 20px;
        background-image: url(https://yogastudio-majora.com/assets/img/icon-link__bk.svg);
        background-size: 16px;
        background-repeat: no-repeat;
        background-position: 90% center;
        text-align: center; }
        .btn-area .textlink a[target=_blank]:hover {
          color: #5e5e5e;
          background-image: url(https://yogastudio-majora.com/assets/img/icon-link__gry.svg); }
    @media screen and (max-width: 996px) {
      .btn-area .textlink:nth-child(1) {
        margin-bottom: 30px; } }

.box-dl {
  margin-bottom: 6rem; }
  .box-dl dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
    .box-dl dl dt,
    .box-dl dl dd {
      box-sizing: border-box;
      padding: 20px;
      border-bottom: 1px solid #707070; }
    .box-dl dl dt {
      flex: 0 0 20%; }
    .box-dl dl dd {
      flex: 0 0 80%; }
    @media screen and (max-width: 559px) {
      .box-dl dl {
        display: block; }
        .box-dl dl dt,
        .box-dl dl dd {
          width: 100%;
          padding: 10px 20px; }
        .box-dl dl dt {
          background-color: #f9f9f9; } }

/*----------------------------------
	1. トップ
------------------------------------*/
/* sec__01::イントロ */
.top-sec__01 {
  width: 96%;
  margin: 80px auto; }
  @media (max-width: 576px) {
    .top-sec__01 {
      margin: 40px auto; } }
  .top-sec__01 .eye {
    width: clamp(180px, 37.5vw, 240px);
    margin-bottom: 20px; }
  .top-sec__01 h2 {
    font-size: clamp(45px, 5.859vw, 68px);
    font-weight: 600;
    font-family: "Kollektif";
    line-height: 1;
    letter-spacing: 0.8px; }
  .top-sec__01 .sub-ttl {
    font-size: clamp(45px, 5.859vw, 68px);
    font-weight: 600;
    margin-bottom: 10px; }
  .top-sec__01 .mv {
    margin-bottom: clamp(20px, 2.604vw, 40px);
    line-height: 0; }
    .top-sec__01 .mv img {
      width: 100%; }
      @media screen and (max-width: 768px) {
        .top-sec__01 .mv img.pc {
          display: none; } }
      .top-sec__01 .mv img.sp {
        display: none; }
        @media screen and (max-width: 768px) {
          .top-sec__01 .mv img.sp {
            display: block; } }
  .top-sec__01 .swiper .swiper-slide {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important; }
    .top-sec__01 .swiper .swiper-slide img, .top-sec__01 .swiper .swiper-slide picture {
      width: 100%;
      height: auto; }
      @media screen and (max-width: 768px) {
        .top-sec__01 .swiper .swiper-slide img.pc, .top-sec__01 .swiper .swiper-slide picture.pc {
          display: none; } }
      .top-sec__01 .swiper .swiper-slide img.sp, .top-sec__01 .swiper .swiper-slide picture.sp {
        display: block; }
        @media screen and (min-width: 769px) {
          .top-sec__01 .swiper .swiper-slide img.sp, .top-sec__01 .swiper .swiper-slide picture.sp {
            display: none; } }
  .top-sec__01 .my-swiper {
    width: 100%;
    position: relative; }
    .top-sec__01 .my-swiper .swiper-slide picture,
    .top-sec__01 .my-swiper .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%; }
  .top-sec__01 .swiper-lazy-preloader {
    width: 40px;
    height: 40px;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  @media (max-width: 768px) {
    .top-sec__01 .conts__cell--t80 {
      padding-top: 30px; } }
  .top-sec__01 .conts__cell--t80 .lead {
    max-width: 1000px;
    margin: 0 auto clamp(40px, 5.208vw, 80px); }
    .top-sec__01 .conts__cell--t80 .lead h3 {
      font-size: clamp(18px, 2.344vw, 24px);
      margin-bottom: clamp(10px, 1.302vw, 20px);
      line-height: 1.6; }
    .top-sec__01 .conts__cell--t80 .lead p {
      font-size: clamp(13px, 1.693vw, 16px);
      line-height: 1.8; }
  .top-sec__01 .conts__cell--t80 .img-box {
    padding: 0 2% clamp(60px, 7.813vw, 80px);
    margin: 0 auto clamp(40px, 5.208vw, 80px); }
    @media screen and (max-width: 768px) {
      .top-sec__01 .conts__cell--t80 .img-box {
        text-align: center; } }
    .top-sec__01 .conts__cell--t80 .img-box .img-box__left {
      line-height: 0; }
      @media screen and (max-width: 768px) {
        .top-sec__01 .conts__cell--t80 .img-box .img-box__left {
          margin-bottom: 0px; } }
    .top-sec__01 .conts__cell--t80 .img-box .img-box__right {
      line-height: 0;
      position: relative; }
      .top-sec__01 .conts__cell--t80 .img-box .img-box__right .img {
        position: relative;
        top: clamp(60px, 7.813vw, 80px);
        z-index: 0;
        width: 90%; }
        @media screen and (max-width: 768px) {
          .top-sec__01 .conts__cell--t80 .img-box .img-box__right .img {
            width: 80%; } }
      .top-sec__01 .conts__cell--t80 .img-box .img-box__right .spin_img {
        position: absolute;
        right: 0;
        top: 0px;
        z-index: 1; }
        @media screen and (max-width: 768px) {
          .top-sec__01 .conts__cell--t80 .img-box .img-box__right .spin_img {
            width: 150px; } }

/* sec__02::リンクボックス */
.top-sec__02 .link-box div {
  width: calc(100%/3);
  overflow: hidden;
  line-height: 0; }
  @media screen and (max-width: 768px) {
    .top-sec__02 .link-box div {
      width: calc(100%/1); } }
  .top-sec__02 .link-box div a img {
    width: 100%; }
    .top-sec__02 .link-box div a img:hover {
      transform: scale(1.2);
      transition: 0.3s;
      opacity: 0.9; }

/* sec__03::新着記事 */
.top-sec__03 h3 {
  font-family: "bargemo";
  font-weight: 500;
  font-size: clamp(20px, 4.167vw, 26px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px;
  color: #fff;
  margin-bottom: 20px; }
  .top-sec__03 h3 span {
    font-size: clamp(12px, 2.5vw, 15px);
    font-weight: 400;
    font-family: "Kollektif", Quicksand, "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; }

.blog-box.blog-box__column .ir-img {
  width: clamp(30px, 6.25vw, 60px);
  height: clamp(30px, 6.25vw, 60px);
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px; }
  @media screen and (max-width: 480px) {
    .blog-box.blog-box__column .ir-img {
      margin-bottom: 10px; } }
  .blog-box.blog-box__column .ir-img img {
    width: clamp(30px, 6.25vw, 60px);
    height: auto;
    vertical-align: top; }
.blog-box.blog-box__column .date {
  width: 20%;
  min-width: inherit; }
  @media screen and (max-width: 480px) {
    .blog-box.blog-box__column .date {
      width: inherit;
      margin-right: 10px;
      font-size: 10px; } }
.blog-box.blog-box__column li a {
  display: flex;
  color: #000;
  justify-content: space-between;
  width: 65%;
  height: 60px;
  align-items: center; }
  @media screen and (max-width: 768px) {
    .blog-box.blog-box__column li a {
      width: 70%; } }
  @media screen and (max-width: 360px) {
    .blog-box.blog-box__column li a {
      width: 65%; } }
.blog-box.blog-box__news .date {
  width: 18%;
  min-width: inherit; }
  @media screen and (max-width: 480px) {
    .blog-box.blog-box__news .date {
      width: inherit;
      font-size: 10px; } }
.blog-box.blog-box__news li a {
  display: flex;
  color: #000;
  justify-content: space-between;
  width: 80%;
  align-items: center; }
  @media screen and (max-width: 480px) {
    .blog-box.blog-box__news li a {
      width: 100%; } }
.blog-box li {
  padding-bottom: 10px;
  border-bottom: .5px solid #000;
  align-items: center;
  margin-bottom: 10px;
  line-height: 60px;
  justify-content: flex-start; }
  @media screen and (max-width: 480px) {
    .blog-box li {
      line-height: inherit; } }
  .blog-box li a .ttl {
    font-size: clamp(14px, 2.917vw, 16px);
    line-height: 1.4; }
  .blog-box li a .more {
    font-size: clamp(10px, 2.083vw, 12px); }
    .blog-box li a .more i {
      margin-left: 10px; }

/* sec__04::インスタグラムボックス */
.top-sec__04 {
  background-color: #dfdfdf;
  overflow: hidden; }
  .top-sec__04 .scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
    height: 60px;
    align-items: center; }
  .top-sec__04 .scroll-infinity__list--left {
    animation: infinity-scroll-left 60s infinite linear 0.5s both; }
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%); } }
  .top-sec__04 .scroll-infinity__list--right {
    animation: infinity-scroll-right 60s infinite linear 0.5s both; }
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(0%); } }
  .top-sec__04 .scroll-infinity__item {
    padding: 0 15px 0 0; }
    @media screen and (max-width: 1400px) {
      .top-sec__04 .scroll-infinity__item:not(:first-child) {
        display: none; } }
    .top-sec__04 .scroll-infinity__item img {
      width: 2000px;
      max-width: 2000px; }

/* sec__05::リンクボックス */
.top-sec__05 .in {
  position: relative;
  z-index: 5; }
  .top-sec__05 .in .column-box .column-box__4col a {
    display: block;
    line-height: 0; }
    .top-sec__05 .in .column-box .column-box__4col a img {
      width: 100%;
      object-fit: contain;
      transition: 0.3s; }
    .top-sec__05 .in .column-box .column-box__4col a:hover img {
      filter: brightness(120%); }
  @media screen and (max-width: 980px) {
    .top-sec__05 .in .column-box .column-box__4col {
      width: 48%;
      margin-bottom: 30px; } }
  @media screen and (max-width: 480px) {
    .top-sec__05 .in .column-box .column-box__4col {
      width: 100%; }
      .top-sec__05 .in .column-box .column-box__4col:not(:last-child) {
        margin-bottom: 30px; } }

/*----------------------------------
	pg::aboutus
------------------------------------*/
#aboutus {
  background: url("../images/bg-aboutus.jpg") no-repeat center;
  background-size: cover; }

.questions {
  background-color: #707070;
  padding: 20px 10px;
  margin: 0 0 20px !important;
  width: 100%; }
  .questions .questions_wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto; }
    .questions .questions_wrapper .questions_content {
      background-color: #fff;
      padding: 20px 40px 0px 10px;
      border-radius: 10px;
      font-weight: bold;
      margin: 0;
      width: 100%; }
      .questions .questions_wrapper .questions_content .question {
        color: #333;
        position: relative;
        font-size: clamp(15px, 3vw, 24px); }
        .questions .questions_wrapper .questions_content .question::before {
          text-decoration: none;
          display: inline-block; }
        .questions .questions_wrapper .questions_content .question::after {
          content: "";
          position: absolute;
          right: -25px;
          top: 15%;
          transition: all 0.2s ease-in-out;
          display: block;
          width: 12px;
          height: 12px;
          border-top: solid 3px #333;
          border-right: solid 3px #333;
          transform: rotate(135deg); }
        .questions .questions_wrapper .questions_content .question:hover {
          text-decoration: underline;
          cursor: pointer; }
      .questions .questions_wrapper .questions_content .answer {
        padding-left: 1em; }
        .questions .questions_wrapper .questions_content .answer::before {
          text-decoration: none;
          display: inline-block; }
        .questions .questions_wrapper .questions_content .answer.open::after {
          transform: rotate(-45deg);
          top: 45%; }
        .questions .questions_wrapper .questions_content .answer h3.ttl {
          font-size: clamp(16px, 3vw, 30px); }
        .questions .questions_wrapper .questions_content .answer .sec {
          margin-bottom: 40px;
          width: 100%; }
          .questions .questions_wrapper .questions_content .answer .sec p {
            font-size: clamp(13px, 3vw, 16px); }
          .questions .questions_wrapper .questions_content .answer .sec label input {
            width: 20px;
            height: 20px; }
          .questions .questions_wrapper .questions_content .answer .sec label span {
            font-size: 16px;
            font-weight: 600;
            color: #eb4103; }

.qa-container {
  text-align: justify;
  margin-bottom: 0.5rem; }
  .qa-container input {
    display: none; }
    .qa-container input:checked ~ p {
      height: 100px;
      opacity: 1;
      transition: opacity 0.3s 0.2s ease-in-out, height 0.3s ease-in-out;
      margin: 1rem 2rem; }
    .qa-container input:checked ~ label::after {
      transform: rotate(-135deg) translate(-100%, -100%);
      margin-top: 0.75rem; }
  .qa-container label {
    display: block !important;
    position: relative;
    background: #fff;
    padding: 2rem 2.5rem 2rem 1.5rem;
    cursor: pointer;
    margin-left: 0;
    font-size: clamp(16px, 3vw, 18px); }
    .qa-container label::after {
      content: '';
      display: block;
      width: 1rem;
      height: 1rem;
      border-right: solid 2px #ccc;
      border-bottom: solid 2px #ccc;
      transform: rotate(45deg) translate(100%, 100%);
      position: absolute;
      top: 0;
      right: 0;
      margin-top: 1rem;
      margin-right: 2rem; }
  .qa-container p {
    height: 0px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, height 0.5s ease-in-out, margin 0.5s ease-in-out;
    margin: 0 0.5rem;
    font-size: clamp(16px, 3vw, 18px); }

@media (max-width: 600px) {
  .container {
    margin: 0;
    padding: 2rem 1rem; }

  .qa-container input:checked ~ p {
    height: 150px; } }
/*----------------------------------
	pg::COMMON
------------------------------------*/
.bnr {
  background-color: #ffb88d;
  padding: 2rem 0;
  line-height: 0; }
  .bnr .in {
    width: 96%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
    .bnr .in div:first-child {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .bnr .in div:first-child img {
        line-height: 0;
        max-width: 300px;
        width: 96%;
        margin-right: 30px; }
        @media (max-width: 768px) {
          .bnr .in div:first-child img {
            margin-right: 0px; } }
        @media (max-width: 480px) {
          .bnr .in div:first-child img {
            max-width: 200px; } }
        @media (max-width: 380px) {
          .bnr .in div:first-child img {
            max-width: 160px; } }
      .bnr .in div:first-child span {
        font-size: clamp(18px, 3vw, 24px);
        font-weight: 600; }
        @media (max-width: 400px) {
          .bnr .in div:first-child span {
            font-size: 16px; } }
    @media (max-width: 768px) {
      .bnr .in div:last-child {
        margin-top: 30px; } }
    .bnr .in img {
      line-height: 0;
      max-width: 600px;
      width: 96%; }
    @media (max-width: 768px) {
      .bnr .in {
        display: block;
        text-align: center; } }
    .bnr .in a img {
      max-width: 160px; }
      @media (max-width: 768px) {
        .bnr .in a img {
          max-width: 140px; } }
      @media (max-width: 480px) {
        .bnr .in a img {
          max-width: 120px; } }

.pg-btm__contact {
  background-color: #e1e1e1; }

.contact-box {
  align-items: center; }
  .contact-box div {
    padding: 20px 0;
    text-align: center;
    font-size: clamp(18px, 2.344vw, 20px); }
    .contact-box div.mail {
      background: url("../images/icon-mail.svg") no-repeat 30px center;
      background-size: 36px;
      background-color: #000000; }
    .contact-box div.tel {
      background: url("../images/icon-tel.svg") no-repeat 30px center;
      background-size: 22px;
      background-color: #000000; }
    .contact-box div span {
      display: block;
      font-size: clamp(11px, 1.432vw, 13px); }
    .contact-box div a {
      color: #ffffff; }
      .contact-box div a:not([href]):not([tabindex]) {
        color: #ffffff;
        text-decoration: none; }

.spin_img {
  width: 200px;
  height: 200px;
  animation: 20s linear infinite rotation; }

@keyframes rotation {
  0% {
    transform: rotateZ(0); }
  100% {
    transform: rotateZ(360deg); } }
.bg-marble {
  background: url("../images/bg-marble.png") repeat center;
  background-size: cover; }

.bg-lightgray {
  background-color: #f1f1f1; }

/*----------------------------------
	pg::Privacy + Terms of Use
------------------------------------*/
.privacy-policy p, #terms-of-use p {
  font-size: clamp(12px, 2.083vw, 14px); }
.privacy-policy h4, #terms-of-use h4 {
  font-size: clamp(16px, 2.778vw, 18px); }

/*----------------------------------
	page::contact
------------------------------------*/
.contact-box p.tel-num {
  font-size: clamp(18px, 2.344vw, 26px);
  margin-bottom: 40px; }

.contact__text-inner {
  max-width: 1000px;
  margin: auto;
  width: 92%; }
  .contact__text-inner p {
    letter-spacing: -.8px; }

.contact-tel {
  font-size: clamp(36px, 4.688vw, 40px);
  font-weight: 700;
  text-align: center;
  padding: 1em 0; }

.accept-btn .wpcf7-list-item {
  margin: 0; }

.wpcf7-spinner {
  display: none; }

.form-in {
  background-color: rgba(102, 204, 153, 0.2);
  padding: 30px;
  border-radius: 10px; }

.cf7__list {
  display: flex;
  flex-wrap: wrap; }
  .cf7__list dt {
    width: 35%; }
    .cf7__list dt p {
      margin-bottom: 0;
      text-align: left; }
  .cf7__list dd {
    width: 65%;
    font-size: clamp(14px, 2.917vw, 16px); }
    .cf7__list dd input[type="text"], .cf7__list dd input[type="email"], .cf7__list dd input[type="tel"], .cf7__list dd input[type="url"], .cf7__list dd textarea {
      width: 100%;
      padding: 10px;
      background: #fff; }
    .cf7__list dd input[name="your-post1"], .cf7__list dd input[name="your-post2"] {
      width: inherit;
      padding: 10px;
      background: #fff; }
  .cf7__list dt:nth-of-type(n + 2) {
    margin-top: 30px; }
  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 30px; }

/* 必須・任意 */
.cf7__required,
.cf7__optional {
  margin-left: 15px;
  padding: 4px 7px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  display: inline-block !important; }

.cf7__required {
  background: #BE1D1D; }

.cf7__optional {
  background: #878D8E; }

/* input・textarea */
.wpcf7-text,
.wpcf7-textarea {
  font-size: clamp(14px, 1.823vw, 16px); }

/* ドロップダウンメニュー */
.cf7__select {
  position: relative; }

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: ''; }

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #F4F4F4;
  color: #a5a5a5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px; }

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0; }

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px; }

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer; }

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  background-color: #fff;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000; }

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: ''; }

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%; }

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: ''; }

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
  font-size: clamp(14px, 1.823vw, 16px); }

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
  font-size: clamp(14px, 1.823vw, 16px); }

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
  font-size: clamp(14px, 1.823vw, 16px); }

/* 送信ボタン */
.cf7__button {
  text-align: center; }

input[type="submit"] {
  min-width: 150px;
  background: #000;
  color: #fff;
  padding: .8em;
  transition: opacity .6s;
  font-size: clamp(14px, 1.823vw, 16px); }

input[type="submit"]:hover {
  opacity: .6; }

input[type="button"] {
  min-width: 150px;
  padding: .8em;
  transition: opacity .6s;
  font-size: clamp(14px, 1.823vw, 16px); }

input[type="button"]:hover {
  opacity: .6; }

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle; }

@media screen and (max-width: 767px) {
  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0; }

  .cf7__list dd {
    width: 100%; }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0; }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0; }

  /* 送信ボタン */
  input[type="submit"],
  input[type="button"] {
    width: 180px;
    height: 56px; } }
/*----------------------------------
	pg::YOGA
------------------------------------*/
#yoga_class .class-cat {
  max-width: 1000px;
  margin: 0 auto 4rem;
  width: 90%; }
  @media (max-width: 768px) {
    #yoga_class .class-cat {
      margin: 0 auto 40px; } }
  #yoga_class .class-cat h2 {
    font-size: clamp(50px, 1.5vw, 60px);
    font-weight: 600;
    text-align: center;
    color: #000;
    font-family: 'Kollektif', sans-serif;
    padding: 6rem 0 4rem;
    margin-bottom: 0; }
    #yoga_class .class-cat h2 + p {
      text-align: center;
      margin-bottom: 3rem; }
  #yoga_class .class-cat ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    #yoga_class .class-cat ul li {
      width: 23%;
      text-align: center;
      margin-bottom: 20px; }
      @media (max-width: 768px) {
        #yoga_class .class-cat ul li {
          width: 48%;
          margin-bottom: 2rem; } }
      #yoga_class .class-cat ul li a {
        display: block;
        padding: 10px 0;
        color: #fff;
        background-color: #333333;
        border-radius: 100vh;
        font-weight: 600;
        font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
        font-size: clamp(11px, 3vw, 13px); }
        #yoga_class .class-cat ul li a:hover {
          color: #fff;
          background: #4e4e4e; }
#yoga_class .item-list .item {
  margin-bottom: 4rem; }
  #yoga_class .item-list .item h4 + p {
    font-weight: 600;
    color: #b74747;
    font-size: 12px; }
    @media (max-width: 480px) {
      #yoga_class .item-list .item h4 + p {
        font-size: 10px; } }

.ir-wrap {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000; }
  .ir-wrap.bt-none {
    border-top: none; }
  .ir-wrap .ir-box {
    padding-left: 2%; }
    @media (max-width: 768px) {
      .ir-wrap .ir-box {
        width: 100%;
        padding: 0 2%;
        border-bottom: 1px solid #000; } }
    .ir-wrap .ir-box.br-on {
      padding-left: 0%;
      padding-right: 2%; }
      @media (max-width: 768px) {
        .ir-wrap .ir-box.br-on {
          padding: 0 2%;
          border-bottom: none; } }
    .ir-wrap .ir-box.one-column {
      border-right: 1px solid #000;
      width: calc(50% + 1px); }
      @media (max-width: 768px) {
        .ir-wrap .ir-box.one-column {
          border-right: none;
          width: 100%; } }
    .ir-wrap .ir-box__column {
      border-left: 1px solid #000;
      padding: 20px 0; }
      .ir-wrap .ir-box__column.br-on {
        border-right: 1px solid #000; }
      @media (max-width: 768px) {
        .ir-wrap .ir-box__column {
          border-right: 1px solid #000; } }
      @media (max-width: 480px) {
        .ir-wrap .ir-box__column {
          padding: 4%; } }
    .ir-wrap .ir-box__img {
      padding-left: 3%;
      height: 220px;
      /*width: 240px;*/ }
      @media (max-width: 480px) {
        .ir-wrap .ir-box__img {
          padding-left: 0%;
          width: 100%;
          margin-bottom: 10px; } }
      .ir-wrap .ir-box__img img {
        width: 100%;
        object-fit: cover;
        height: 100%; }
    .ir-wrap .ir-box__conts {
      position: relative;
      padding-right: 3%; }
      @media (max-width: 480px) {
        .ir-wrap .ir-box__conts {
          width: 100%;
          padding-right: 0%; } }
      .ir-wrap .ir-box__conts .sub {
        font-size: 12px;
        font-weight: 700; }
      .ir-wrap .ir-box__conts .name {
        display: flex;
        align-items: center; }
        .ir-wrap .ir-box__conts .name h2 {
          font-family: 'Kollektif', sans-serif;
          font-weight: 700;
          font-size: clamp(20px, 4.167vw, 26px);
          margin-bottom: 10px; }
        .ir-wrap .ir-box__conts .name p {
          margin-bottom: 0; }
      .ir-wrap .ir-box__conts .class {
        display: flex;
        align-items: center;
        margin-bottom: 10px; }
        .ir-wrap .ir-box__conts .class h3 {
          border: 1px solid #000;
          padding: 2px 3px;
          font-size: clamp(11px, 2.292vw, 12px);
          margin: 0 10px 0 0; }
        .ir-wrap .ir-box__conts .class p {
          margin-bottom: 0; }
      .ir-wrap .ir-box__conts .message p {
        font-size: clamp(12px, 1.563vw, 14px);
        margin-bottom: 10px; }
        @media (max-width: 480px) {
          .ir-wrap .ir-box__conts .message p {
            line-height: 1.8; } }
      .ir-wrap .ir-box__conts .column {
        position: absolute;
        bottom: 0; }
        @media (max-width: 480px) {
          .ir-wrap .ir-box__conts .column {
            position: inherit; } }

.recommend-wrap {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000; }
  .recommend-wrap.bt-none {
    border-top: none; }
  .recommend-wrap ul {
    width: 96%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    list-style: none;
    padding: 0; }
    .recommend-wrap ul li {
      width: 33.33%;
      border-right: 1px solid #000; }
      .recommend-wrap ul li:nth-child(1) {
        border-left: 1px solid #000; }
      .recommend-wrap ul li a {
        color: #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 10px;
        font-size: clamp(12px, 2.5vw, 22px);
        font-weight: 300;
        transition: 0.3s ease-in-out; }
        .recommend-wrap ul li a:hover {
          background: #eee;
          text-decoration: none; }
        .recommend-wrap ul li a P {
          margin-bottom: 0; }

.yoga-list-wrapper {
  width: 96%;
  margin: auto;
  padding: 60px 0; }
  .yoga-list-wrapper .food-section {
    max-width: 100%;
    margin: -80px auto 0;
    padding-top: 80px; }
    @media (max-width: 768px) {
      .yoga-list-wrapper .food-section {
        margin: -50px auto 0;
        padding-top: 50px; } }
    .yoga-list-wrapper .food-section h3.ttl-style03 {
      margin: 0 auto 60px;
      font-family: 'Kollektif', sans-serif;
      font-weight: 700;
      font-size: clamp(32px, 4.167vw, 50px);
      text-shadow: 1px 1px 0px #000, -1px -1px 0px #000, -1px 1px 0px #000, 1px -1px 0px #000, 1px 0px 0px #000, -1px 0px 0px #000, 0px 1px 0px #000, 0px -1px 0px #000;
      color: white;
      letter-spacing: 1px; }
      @media (max-width: 768px) {
        .yoga-list-wrapper .food-section h3.ttl-style03 {
          margin-bottom: 10px; } }

.class__easy {
  white-space: pre; }

/*.class__easy:after {
  content: "【体験希望の方へおすすめラインナップ！】初心者の方にも安心して受講していただける強度に設定しております。\Aまずはこのクラスからお試しください。";
  display: block;
  text-shadow: none;
  color: #ff00aa;
  font-size: 12px;
  padding-bottom: 1em;
  line-height: 1.6;
  font-weight: 500;
}*/
.scroll_content {
  /* リスト全体のスタイル */
  display: flex;
  max-width: 1200px;
  margin: 0 auto 100px;
  overflow-x: auto; }
  .scroll_content li {
    /* 各リストのスタイル */
    width: 90%;
    padding: 8px;
    margin: 3px;
    flex-shrink: 0;
    list-style: none; }
    @media screen and (min-width: 450px) {
      .scroll_content li {
        width: 45%; } }
  .scroll_content img {
    /* 画像のスタイル */
    width: 100%;
    object-fit: cover;
    max-height: 400px; }
  .scroll_content::-webkit-scrollbar {
    height: 12px;
    /* スクロールバーの高さ */ }
  .scroll_content::-webkit-scrollbar-thumb {
    background: #aaa;
    /* ツマミの色 */
    border-radius: 6px;
    /* ツマミ両端の丸み */ }
  .scroll_content::-webkit-scrollbar-track {
    background: #ddd;
    /* トラックの色 */
    border-radius: 6px;
    /* トラック両端の丸み */ }

.scroll-hint-text {
  margin-top: 0px !important; }

.button-more {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 30px;
  margin: 10px auto;
  color: #000;
  cursor: pointer;
  transition: .3s ease;
  background-image: url(https://yogastudio-majora.com/assets/img/plus.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
  font-family: 'Kollektif', sans-serif;
  font-size: clamp(14px, 2.917vw, 18px) !important; }

.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2); }

.instluctor .img-box img {
  width: 100%;
  height: 280px;
  object-fit: cover; }

.license {
  font-size: clamp(10px, 3vw, 12px); }
  .license h4 {
    font-size: 14px; }

.pg-yoga-ss {
  background-color: #e2c3ad;
  border-radius: 40px;
  padding: 80px 0;
  margin-top: 80px; }
  @media screen and (max-width: 768px) {
    .pg-yoga-ss {
      border-radius: 30px; } }
  .pg-yoga-ss .in {
    max-width: 1260px;
    margin: 0 auto; }
    .pg-yoga-ss .in .adjust {
      max-width: 1000px;
      margin: 0 auto 80px;
      width: 80%; }
      .pg-yoga-ss .in .adjust h2 {
        font-size: clamp(27px, 1.5vw, 57px);
        text-align: center;
        color: #000;
        font-weight: 400;
        margin-bottom: 50px; }
        .pg-yoga-ss .in .adjust h2 span {
          font-size: clamp(30px, 1.5vw, 60px);
          font-family: 'Kollektif', sans-serif;
          font-weight: bold; }
      .pg-yoga-ss .in .adjust p {
        font-size: clamp(14px, 1.5vw, 18px);
        margin-bottom: 0; }
    .pg-yoga-ss .in .column-box {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      flex-direction: row-reverse;
      margin-bottom: 80px; }
      .pg-yoga-ss .in .column-box .column-box__60 {
        width: 60%; }
        @media screen and (max-width: 768px) {
          .pg-yoga-ss .in .column-box .column-box__60 {
            width: 100%;
            text-align: center; } }
      .pg-yoga-ss .in .column-box .column-box__30 {
        width: 30%; }
        @media screen and (max-width: 768px) {
          .pg-yoga-ss .in .column-box .column-box__30 {
            width: 100%;
            text-align: center;
            margin-bottom: 40px; }
            .pg-yoga-ss .in .column-box .column-box__30 img {
              width: 60%; } }

#price ul li {
  margin-bottom: 15px !important;
  color: #000;
  font-size: 16px;
  line-height: 1.6; }

#faq {
  /*padding: 60px 0;*/ }
  #faq #faq-list {
    padding: 0;
    list-style: none; }
    #faq #faq-list li {
      border-bottom: 1px solid #ddd;
      padding: 10px 0; }
      #faq #faq-list li a {
        padding: 18px 0;
        display: block;
        position: relative;
        font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
        font-size: 22px;
        line-height: 1;
        font-weight: bold;
        padding-right: 20px;
        color: #f38f92; }
        @media (max-width: 768px) {
          #faq #faq-list li a {
            font-size: 18px; } }
        #faq #faq-list li a.collapse {
          color: #1dc8cd; }
        #faq #faq-list li a.collapsed {
          color: #303030; }
    #faq #faq-list i {
      font-size: 24px;
      position: absolute;
      right: 0;
      top: 16px; }
      @media (max-width: 768px) {
        #faq #faq-list i {
          top: 13px; } }
  @media (max-width: 480px) {
    #faq #faq-list a, #faq #faq-list p {
      font-size: 13px; } }
  #faq #faq-list a.collapsed i::before {
    content: "\f2c7" !important; }
  #faq p {
    margin-bottom: 15px !important;
    color: #000;
    font-size: 16px;
    line-height: 1.6; }

#about-yoga p {
  margin-bottom: 15px !important;
  color: #000;
  font-size: 16px;
  line-height: 1.6; }

.heading {
  font-size: clamp(28px, 3.646vw, 38px);
  font-weight: 700;
  color: #000;
  margin-bottom: clamp(16px, 2.083vw, 24px); }

.sub-heading {
  font-size: clamp(13px, 1.693vw, 15px);
  margin-bottom: clamp(10px, 1.302vw, 20px); }

#services {
  background: url(../img/background/bg-1.jpg) fixed no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative; }

.menus {
  padding: 0;
  margin: 0; }

.menus li {
  padding: 0;
  margin: 0 0 10px;
  list-style: none;
  display: block;
  position: relative; }
  .menus li .image, .menus li .text {
    display: table-cell;
    vertical-align: top; }
  .menus li .image {
    width: 80px; }
    .menus li .image img {
      max-width: 100%;
      border-radius: 50%; }
  .menus li .text h3 {
    margin: 15px 0 0;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff; }
  .menus li .text .price {
    position: absolute;
    top: 15px;
    right: 0;
    font-size: 20px;
    color: #fffd9d; }

@media screen and (max-width: 768px) {
  .probootstrap-footer-social.right {
    text-align: left; }

  .menus li .text h3 {
    margin-top: 0; }
  .menus li .text .price {
    top: 0;
    position: relative;
    display: block;
    margin-bottom: 0; } }
.ticket-wrap table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  width: 960px;
  table-layout: fixed; }
.ticket-wrap table tr {
  background-color: #fff;
  padding: .35em;
  border: 2px solid #eee; }
.ticket-wrap table tr:last-child {
  border: none; }
.ticket-wrap table th {
  padding: 2em;
  border-right: 2px solid #fff; }
.ticket-wrap table td {
  padding: 2em .5em;
  border-right: 2px solid #eee;
  text-align: center;
  font-weight: bold; }
.ticket-wrap table th {
  font-size: 16px;
  text-align: center; }
  .ticket-wrap table th span {
    display: block;
    font-weight: 400; }
.ticket-wrap table thead tr {
  background-color: #888;
  color: #fff; }
.ticket-wrap table tbody th {
  border-right: 2px solid #eee; }
.ticket-wrap table th.non {
  border-right: none; }
.ticket-wrap .txt {
  text-align: left;
  font-size: .85em; }
.ticket-wrap .price {
  color: #000;
  font-weight: bold;
  font-size: 24px; }
  .ticket-wrap .price span {
    font-size: .6em; }
    .ticket-wrap .price span.value {
      display: block;
      color: #ff7f50; }
@media screen and (max-width: 960px) {
  .ticket-wrap {
    overflow-x: scroll; } }

.pg-yoga-intro .in {
  max-width: 1200px;
  width: 94%;
  margin: auto; }
.pg-yoga-intro h2 {
  font-size: clamp(50px, 1.5vw, 60px);
  font-weight: 600;
  text-align: center;
  color: #000;
  font-family: 'Kollektif', sans-serif;
  padding: 0 0 2rem;
  margin-bottom: 0; }
  .pg-yoga-intro h2 span {
    font-size: clamp(22px, 1.5vw, 30px);
    /*font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;*/
    font-weight: 400;
    display: block;
    line-height: 2; }
.pg-yoga-intro p {
  font-size: clamp(14px, 1.5vw, 16px);
  text-align: center;
  /*font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;*/
  margin-bottom: 2rem; }
.pg-yoga-intro .name {
  width: 260px;
  margin: 0 auto 4rem; }

.instluctor_license {
  margin-bottom: 10px; }

.instluctor_insta a img {
  height: 22px;
  line-height: 0; }

.infinite-slider .swiper-wrapper {
  transition-timing-function: linear; }

.infinite-slider .swiper-slide {
  height: 200px !important;
  width: auto !important; }

.infinite-slider .swiper-slide img {
  width: auto;
  height: 100%; }

#colorlib-about {
  padding: 10em 0;
  clear: both;
  position: relative; }
  @media screen and (max-width: 768px) {
    #colorlib-about {
      padding: 5em 0; } }

#colorlib-services,
#colorlib-services2 {
  position: relative; }

.rotate {
  position: absolute;
  top: .4em;
  left: -50px; }

.rotate .heading {
  font-family: "Karla", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1em;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: left top 0;
  -moz-transform-origin: left top 0;
  -ms-transform-origin: left top 0;
  -o-transform-origin: left top 0;
  transform-origin: left top 0;
  position: relative; }
  .rotate .heading:after {
    position: absolute;
    top: 8px;
    right: -40px;
    content: '';
    background: #000;
    width: 40px;
    height: 1px; }

.about-desc {
  padding-top: 3em; }
  .about-desc h2 {
    line-height: 1.3; }
    .about-desc h2 span {
      display: block;
      margin-bottom: 0;
      color: #000;
      font-size: 50px;
      font-family: "Playfair Display", Georgia, serif; }
  .about-desc .desc {
    padding-left: 6em;
    position: relative; }
  .about-desc .rotate {
    position: absolute;
    top: 7px;
    left: 30px; }
    .about-desc .rotate .heading {
      font-family: "Karla", Arial, sans-serif;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1em;
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      -o-transform: rotate(90deg);
      transform: rotate(90deg);
      -webkit-transform-origin: left top 0;
      -ms-transform-origin: left top 0;
      transform-origin: left top 0;
      position: relative; }
      .about-desc .rotate .heading:after {
        position: absolute;
        top: 8px;
        right: -40px;
        content: '';
        background: #000;
        width: 40px;
        height: 1px; }

.bold {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 250px;
  color: #f0f0f0;
  font-weight: 700; }

@media screen and (max-width: 768px) {
  .bold {
    font-size: 60px; } }
.intro-heading {
  margin-bottom: 3em; }
  @media screen and (max-width: 480px) {
    .intro-heading {
      margin-bottom: 2em; } }
  .intro-heading h2 {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1.5em;
    color: #000;
    position: relative; }
  .intro-heading span {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 600; }

.services-img,
.work-img,
.gallery {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }

.services-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  width: 100%; }

.services-flex .one-third {
  width: 55%;
  padding: 3em 2em 3em 0; }

.services-flex .one-forth {
  width: 45%; }

.services-flex .one-forth .one-third, .services-flex .one-forth .one-forth {
  display: inline-block; }

@media screen and (max-width: 768px) {
  .services-flex .one-forth .one-third, .services-flex .one-forth .one-forth {
    height: 400px; }

  .services-flex .one-third {
    padding: 0; } }
.services-flex .one-third, .services-flex .one-forth {
  display: inline-block; }

@media screen and (max-width: 768px) {
  .services-flex .one-third, .services-flex .one-forth {
    width: 100%;
    display: block; } }
.services h3 {
  font-family: "Karla", Arial, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 700; }

@media screen and (max-width: 480px) {
  .services h3 {
    font-size: 24px; } }
.services ul li {
  list-style: none;
  margin-bottom: 10px; }

.services ul li::before {
  content: '\2022';
  color: #000;
  display: inline-block;
  width: 1em;
  margin-left: -1em; }

.accordion .btn-block {
  position: relative;
  border-bottom: 1px solid #e6e6e6; }

.accordion .btn-block .icon {
  position: absolute;
  right: 30px;
  height: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px; }

.accordion .btn-block .icon:before {
  font-family: ionicons;
  position: absolute; }

.accordion .btn-block[aria-expanded=true] {
  color: #ff8036; }

.accordion .btn-block[aria-expanded=true] .icon:before {
  content: ""; }

.accordion .btn-block[aria-expanded=false] {
  color: #000; }

.accordion .btn-block[aria-expanded=false] .icon:before {
  content: ""; }

/* menu */
.site-tab-nav {
  display: block;
  text-align: center;
  margin-bottom: 80px !important; }
  @media (max-width: 480px) {
    .site-tab-nav {
      margin-bottom: 30px !important; } }
  .site-tab-nav li {
    float: none;
    display: inline-block;
    *display: inline;
    zoom: 1; }
    @media (max-width: 480px) {
      .site-tab-nav li {
        width: 32%;
        margin: auto; }
        .site-tab-nav li::not(:last-child) {
          margin-bottom: 30px; } }
    .site-tab-nav li a {
      background: none;
      color: gray;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: .2em;
      border-bottom: 2px solid transparent;
      padding-left: 0;
      padding-right: 0;
      margin: 0px 20px;
      font-weight: 600;
      border-bottom: 2px solid #e6e6e6; }
      .site-tab-nav li a.active {
        color: black;
        color: #ff7a5c;
        background: none;
        border-bottom: 2px solid #ff7a5c; }

.site-tab-nav, .nav-pills {
  text-align: center; }

.menu-food-item {
  border-bottom: 1px dotted #ccc;
  float: left;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 30px; }
  .menu-food-item .text {
    width: calc(100%); }
    @media (min-width: 768px) {
      .menu-food-item .text {
        width: calc(100% - 70px); } }
    .menu-food-item .text img {
      width: 300px;
      margin-bottom: 20px;
      border-radius: 7px;
      float: left;
      margin-right: 30px; }
      @media (max-width: 991.98px) {
        .menu-food-item .text img {
          float: none; } }
  .menu-food-item .price {
    text-align: left; }
    @media (min-width: 768px) {
      .menu-food-item .price {
        width: 70px;
        text-align: right; } }
    .menu-food-item .price span {
      display: block;
      font-size: 12px; }
  .menu-food-item h3 {
    font-size: 22px; }
    .menu-food-item h3 a {
      color: #000;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
      .menu-food-item h3 a:hover {
        color: gray; }

.yoga-class {
  border-bottom: none;
  margin-bottom: 30px;
  padding: 30px;
  background-color: #e8e8e8;
  border-radius: 10px; }
  @media (max-width: 480px) {
    .yoga-class {
      width: 98%;
      padding-right: 2%; } }
  .yoga-class .price {
    width: 70px;
    text-align: center; }
    @media (max-width: 480px) {
      .yoga-class .price {
        padding-top: 3%; } }
    .yoga-class .price strong {
      color: #ff7a5c;
      font-size: 20px; }
      @media (max-width: 480px) {
        .yoga-class .price strong {
          font-size: 14px; } }
    .yoga-class .price .beginner {
      width: 30px; }
      @media (max-width: 480px) {
        .yoga-class .price .beginner {
          width: 20px; } }
  .yoga-class .text .class-level span {
    display: inline-block;
    vertical-align: sub; }
  .yoga-class .text .class-level img {
    width: 60px;
    margin-bottom: 0px;
    border-radius: 0px;
    float: none;
    margin-right: 6px; }

h4.ir {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  font-size: 15px; }

h4.ir:before, h4.ir:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg); }

h4.ir:before {
  left: 0; }

h4.ir:after {
  right: 0; }

@media (max-width: 480px) {
  h4.ir {
    font-size: 15px; } }
.yoga-class__title {
  font-size: 26px;
  line-height: 2;
  font-weight: normal; }
  .yoga-class__title::before {
    content: attr(data-en);
    display: block;
    color: #e4007f;
    font-size: 18px;
    line-height: 2;
    font-weight: bold;
    letter-spacing: 2px; }
  .yoga-class__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #e4007f; }

.ir-box {
  display: flex;
  flex-direction: row; }
  .ir-box .ir-img {
    width: 60px;
    height: 60px;
    margin-right: 2%;
    border-radius: 50%;
    color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid transparent;
    outline-color: #878787;
    text-shadow: none;
    transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
    outline: 1px solid white;
    outline-offset: -13px;
    text-align: center;
    line-height: 60px; }
    .ir-box .ir-img:hover {
      border-color: #FFF;
      box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
      outline-color: transparent;
      outline-offset: 12px;
      text-shadow: 2px 2px 3px #000;
      cursor: pointer; }

.ir-box .ir-img.ir-img__kei {
  background: url(../img/class/ir-img__kei.jpg) no-repeat;
  background-size: contain; }

.ir-box .ir-img.ir-img__aki {
  background: url(../img/class/ir-img__aki.jpg) no-repeat;
  background-size: contain; }

.ir-box .ir-img.ir-img__hiromi {
  background: url(../img/class/ir-img__hiromi.jpg) no-repeat;
  background-size: contain; }

.ir-box .ir-img.ir-img__ayako {
  background: url(../img/class/ir-img__ayako.jpg) no-repeat;
  background-size: contain; }

@media (max-width: 480px) {
  .ir-box .ir-img {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 12px; } }
.menu-food-item p:last-child {
  margin-bottom: 0; }

@media (max-width: 480px) {
  .menu-food-item p {
    font-size: 13px; } }
.feature-icon .icon {
  text-align: center;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-bottom: 30px; }
  .feature-icon .icon > span {
    color: #000;
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .feature-icon .icon h3 {
    margin-bottom: 20px; }

.price-box .inner {
  background-color: #8b8b8b;
  color: #fff; }
.price-box h3 {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  font-size: 24px; }
.price-box small {
  font-size: 1.4rem; }
.price-box .price {
  margin-bottom: 10px;
  font-size: clamp(70px, 9.115vw, 80px);
  font-weight: 500; }
  .price-box .price span {
    font-size: clamp(14px, 1.823vw, 20px);
    padding-left: 6px; }
.price-box .description {
  font-size: 13px;
  font-weight: 600; }

.frame_set {
  background: #fcd87a;
  border-radius: 5px;
  padding: 10px; }

/*----------------------------------
	pg::COMMON
------------------------------------*/
.text_line {
  width: 100%;
  background: #FFFFFF;
  padding: 60px 0; }
  .text_line img {
    max-width: 100%;
    height: auto; }
  @media only screen and (max-width: 991px) {
    .text_line {
      padding-top: 40px; } }

.text_line_content {
  padding-top: 60px; }
  .text_line_content h1 {
    margin-bottom: 40px; }
  .text_line_content p {
    margin-bottom: 41px; }

.text_line_button:hover {
  background: #452b78; }
  .text_line_button:hover a {
    color: #FFFFFF; }

.row-height {
  display: flex;
  flex-wrap: wrap; }

.card-img-bottom {
  height: 300px;
  object-fit: fill; }

.sec-title {
  font-size: clamp(60px, 3vw, 70px);
  font-weight: 700;
  text-align: center; }

.card {
  max-width: 350px;
  height: 310px;
  margin: 20px;
  position: relative;
  overflow: hidden; }

.card-v2 {
  max-width: 350px;
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 480px) {
    .card-v2 {
      max-width: 100%; } }

.card-image {
  height: 310px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.card-meta {
  font-size: 0.6875em;
  text-transform: uppercase;
  letter-spacing: 1px; }
  .card-meta:before {
    content: '';
    height: 3px;
    width: 30px;
    background-color: #000;
    position: relative;
    display: block;
    margin-bottom: 6px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 1; }

.card-text {
  width: 100%;
  color: #000;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  padding: 20px;
  z-index: 10;
  height: 100%;
  display: grid;
  flex-wrap: wrap;
  align-content: flex-end;
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.card-title {
  margin: 3px 0;
  font-weight: 300;
  font-size: 16px; }

/*----------------------------------
	post::single
------------------------------------*/
.blog-box__text p {
  font-family: "Kollektif", Quicksand, "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important; }

.single .blog-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 0 0 40px 0;
  width: 92%;
  margin: auto; }
  .single .blog-box .title-wrap {
    margin-bottom: 40px; }
    .single .blog-box .title-wrap h2 {
      font-size: clamp(18px, 2.344vw, 26px);
      line-height: 1.8; }
    .single .blog-box .title-wrap .date {
      font-size: clamp(11px, 2.292vw, 13px);
      margin-bottom: 10px; }
  .single .blog-box .entry-content, .single .blog-box .post-inner {
    padding-top: 0px; }

.author-info {
  margin: 60px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px; }
  @media (max-width: 480px) {
    .author-info {
      padding: 20px 5%; } }
  .author-info .column-box {
    max-width: 800px;
    width: 100%;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    margin: 0 auto;
    justify-content: flex-start; }
    @media (max-width: 480px) {
      .author-info .column-box {
        display: block; } }
    @media (max-width: 480px) {
      .author-info .column-box div:nth-child(1) {
        text-align: center; } }
  .author-info h2 {
    font-size: clamp(20px, 2.604vw, 24px);
    font-family: "bargemo";
    font-weight: 500;
    margin-bottom: 20px; }
  .author-info h3 {
    font-size: clamp(16px, 2.083vw, 18px);
    margin-bottom: 10px;
    font-weight: 500px;
    font-family: 'Kollektif', sans-serif; }
  .author-info p {
    margin-bottom: 0px !important;
    font-size: clamp(12px, 1.563vw, 14px); }
  .author-info img {
    max-width: 160px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 100%; }
    @media (max-width: 480px) {
      .author-info img {
        max-width: 100%;
        margin-bottom: 20px; } }

/* ------ PREV NEXT ------- */
#prev_next {
  width: 100%;
  margin: 100px 0 24px;
  padding: 0;
  display: table;
  min-height: 100px;
  /* 一時的 */ }

#prev_next #prev, #prev_next #next {
  width: 50%;
  padding: 30px 10px 10px;
  border-top: #000 0.7px solid;
  border-bottom: #000 0.7px solid;
  display: table-cell;
  position: relative;
  text-decoration: none;
  color: #707070; }

#prev_next.ver2 #prev, #prev_next.ver2 #next {
  height: 80px; }

#prev_next p > .category {
  border-radius: 100vh;
  padding: .1em 2em;
  font-size: 1.2rem;
  color: #fff;
  display: block;
  width: fit-content;
  margin-bottom: .8em; }

@media only screen and (max-width: 1000px) {
  #prev_next p > .category {
    font-size: calc(1.1rem + ((1vw - 0.769rem) * (0.2164502165))); } }
@media only screen and (max-width: 768px) {
  #prev_next p > .category {
    font-size: calc(1.05rem + ((1vw - 0.481rem) * (0.1742160279))); } }
@media only screen and (max-width: 480px) {
  #prev_next p > .category {
    font-size: calc(1rem + ((1vw - 0.321rem) * (0.3144654088))); } }
@media only screen and (max-width: 320px) {
  #prev_next p > .category {
    font-size: 1rem; } }
#prev_next #prev p, #prev_next #next p {
  font-size: clamp(11px, 2.292vw, 13px);
  position: absolute;
  top: 50%;
  display: initial; }

#prev_next #prev:hover, #prev_next #next:hover {
  background-color: #dcd7ca30; }

#prev_next #prev {
  border-right: #000 1px solid; }

#prev_next #prev_title, #prev_next #next_title {
  font-size: clamp(11px, 2.292vw, 13px);
  top: -1em;
  position: absolute;
  border: #000 0.7px solid;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  padding: 3px;
  color: #000; }

#prev_next #next_title {
  right: 10px; }

#prev_next #prev img, #prev_next #next img {
  margin: 0 auto; }

#prev_next #prev_no, #prev_next #next_no {
  width: 50%;
  height: 140px;
  padding: 0 10px;
  display: table-cell; }

#prev_next.ver2 #prev_no, #prev_next.ver2 #next_no {
  height: 80px; }

#prev_next #prev_no {
  border-right: #ccc 1px solid; }

#prev_next_home {
  margin: 0 auto;
  background-color: #39f;
  border: solid 9px #fff;
  width: 100px;
  height: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  box-shadow: 0 0 0 3px #39f;
  -webkit-box-shadow: 0 0 0 3px #39f;
  -moz-box-shadow: 0 0 0 3px #39f;
  text-align: center; }

#prev_next_home:hover {
  background-color: rgba(0, 0, 255, 0.7); }

#prev_next_home i {
  color: #FFF;
  margin: 10px auto;
  font-size: 60px; }

/*-- ここまで --*/
/*ホーム表示ブロック*/
#prev_next_home {
  display: none; }

#prev_next_home:hover {
  display: none; }

#prev_next_home i {
  display: none; }

/*-- ここまで --*/
/*media Queries タブレットサイズ
----------------------------------------------------*/
@media only screen and (max-width: 780px) {
  #prev_next #prev, #prev_next #next {
    text-align: center; }

  #prev_next #prev p,
  #prev_next #next p {
    position: relative;
    display: block;
    line-height: 1.5;
    font-size: 100%;
    text-align: left;
    top: 0; }

  #prev_next #prev img, #prev_next #next img {
    margin-bottom: .8em;
    /*display: none;*/ } }
/*media Queries タブレットサイズ
----------------------------------------------------*/
/*media Queries PCサイズ
----------------------------------------------------*/
@media only screen and (min-width: 780px) {
  /*-- ここから --*/
  /*--------------------------------------
  768px PREV NEXT
  --------------------------------------*/
  #prev_next #prev, #prev_next #prev::before, #prev_next #prev::after,
  #prev_next #next, #prev_next #next::before, #prev_next #next::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s; }

  #prev_next #prev_title, #prev_next #next_title {
    padding: 3px 10px; }

  #prev_next #next_title {
    right: 10px; }

  #prev_next #prev img {
    float: left;
    margin-right: 10px;
    /*display: none;*/ }

  #prev_next #next img {
    float: right;
    margin-left: 10px; } }
/*----------------------------------
	post::archive
------------------------------------*/
.archive-box h1 {
  margin-bottom: 40px; }
  .archive-box h1 img {
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none; }
.archive-box article {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #999;
  padding: 20px 0; }
  .archive-box article .post-thumbnail {
    max-width: 160px;
    height: auto;
    display: flex; }
    @media screen and (max-width: 480px) {
      .archive-box article .post-thumbnail {
        max-width: 120px;
        padding-left: 20px;
        height: 80px; } }
    .archive-box article .post-thumbnail img {
      width: 160px;
      object-fit: cover;
      height: 160px; }
      @media screen and (max-width: 480px) {
        .archive-box article .post-thumbnail img {
          width: 120px;
          padding-left: 20px;
          height: 100%; } }
  .archive-box article header time {
    display: block;
    font-size: clamp(11px, 2.292vw, 13px);
    font-weight: 500;
    margin-bottom: 6px; }
    @media screen and (max-width: 480px) {
      .archive-box article header time {
        margin-bottom: 0px; } }
  .archive-box article header h2 {
    font-weight: 500;
    font-size: clamp(16px, 3.333vw, 24px); }
    .archive-box article header h2 a {
      color: #000;
      display: block;
      transition: transform 0.3s ease; }
      .archive-box article header h2 a:hover {
        transform: translateX(15px); }

.pagination__item--current, .pagination__item a, .pagination__btn--prev, .pagination__btn--next, .pagination__btn--first, .pagination__btn--last {
  box-sizing: border-box;
  display: block;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  background: #6E6E6E;
  border: 1px solid #6E6E6E;
  min-width: 3em;
  transition: all .2s;
  margin: 0 1px 0 0;
  padding: calc(1em - 1px) 1em; }
  .pagination__item--current:hover, .pagination__item a:hover, .pagination__btn--prev:hover, .pagination__btn--next:hover, .pagination__btn--first:hover, .pagination__btn--last:hover {
    color: #6E6E6E;
    background: #FFF; }

.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  color: #FFF;
  line-height: 1;
  margin: 0;
  padding: 60px 0 0; }
  .pagination__list {
    display: none; }
  .pagination__item {
    margin: 0; }
    .pagination__item--current {
      background: #FFF;
      color: #6E6E6E;
      font-weight: bold;
      border-color: #6E6E6E;
      margin: 0 1px 0 0; }
  .pagination__pos {
    position: absolute;
    top: 1.5em;
    left: 50%;
    transform: translate(-50%, 0);
    color: #6E6E6E;
    font-size: clamp(11px, 3.056vw, 13px); }
  .pagination__btn--prev {
    order: 2; }
  .pagination__btn--next {
    order: 4; }
  .pagination__btn--first {
    order: 1; }
  .pagination__btn--last {
    order: 5; }
  @media (min-width: 520px) {
    .pagination__list {
      order: 3;
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0; }
    .pagination__pos {
      display: none; } }

/*----------------------------------
	pg::reserve
------------------------------------*/
.reserve-sub {
  font-size: clamp(16px, 2.778vw, 18px); }

.how-to-reserve {
  margin: 50px 0; }
  .how-to-reserve:last-child {
    margin-bottom: 0px; }
  .how-to-reserve h2 {
    color: #ff00aa;
    font-size: clamp(20px, 3.472vw, 24px);
    font-weight: 500; }
    @media (min-width: 576px) {
      .how-to-reserve h2 span {
        display: inline-block;
        padding-right: 10px; } }
    @media (max-width: 576px) {
      .how-to-reserve h2 span {
        display: block;
        margin-bottom: 10px;
        font-size: 16px;
        background: #ff00aa;
        color: #fff;
        padding: 3px 0 3px 7px; } }
  .how-to-reserve p {
    font-size: clamp(16px, 2.778vw, 18px); }

/*----------------------------------
	tutor CSS
------------------------------------*/
main {
  margin-top: 0px !important; }

#mypage main {
  margin-top: 80px !important; }

.tutor-login-wrap, .archive main, .single main, .wp-singular main {
  margin-top: 80px !important; }
  @media (max-width: 576px) {
    .tutor-login-wrap, .archive main, .single main, .wp-singular main {
      margin-top: 40px !important; } }

.home main, .tutor-wrap {
  margin-top: 80px !important; }
  @media (max-width: 576px) {
    .home main, .tutor-wrap {
      margin-top: 80px !important; } }

.tutor-page-wrap, .tutor-wrap, #tutor-registration-wrap {
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; }
  @media (max-width: 576px) {
    .tutor-page-wrap, .tutor-wrap, #tutor-registration-wrap {
      width: 94%;
      margin: auto; } }

.archive .tutor-page-wrap, .archive .tutor-wrap, .tutor-page-wrap, .tutor-course-single-content-wrapper, #tutor-registration-wrap {
  padding: 80px 0; }
  @media (max-width: 576px) {
    .archive .tutor-page-wrap, .archive .tutor-wrap, .tutor-page-wrap, .tutor-course-single-content-wrapper, #tutor-registration-wrap {
      padding: 40px 0; } }

.tutor-wrap .tutor-course-list .tutor-card .tutor-card-body h3 {
  font-size: clamp(16px, 2.083vw, 20px);
  font-weight: 600;
  position: relative; }
  .tutor-wrap .tutor-course-list .tutor-card .tutor-card-body h3:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 6px solid transparent;
    border-right: 0 solid transparent;
    border-left: 9px solid #3e3e3e;
    border-bottom: 6px solid transparent;
    box-sizing: border-box; }

.tutor-container header h1 {
  font-family: 'Kollektif', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.208vw, 50px); }
.tutor-container header .tutor-course-details-top {
  margin-top: 0px; }
.tutor-container .tutor-row main {
  margin-top: 0px !important; }
  .tutor-container .tutor-row main .tutor-tab .tutor-course-details-content h2 {
    font-family: 'Kollektif', 'Yu Gothic', 'Kollektif', Quicksand, "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.344vw, 24px);
    padding: 0 0.5em;
    border-left: solid 6px #858484;
    background: transparent; }
  .tutor-container .tutor-row main .tutor-tab .tutor-course-content-title {
    font-family: 'Kollektif', 'Yu Gothic', 'Kollektif', Quicksand, "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.344vw, 24px);
    padding: 0 0.5em;
    border-left: solid 6px #858484;
    background: transparent; }
  .tutor-container .tutor-row main .tutor-tab .tutor-accordion-item h4 {
    font-weight: 600; }
  .tutor-container .tutor-row main .tutor-tab .tutor-accordion-item .tutor-course-content-list-item {
    align-items: center; }
    .tutor-container .tutor-row main .tutor-tab .tutor-accordion-item .tutor-course-content-list-item .tutor-course-content-list-item-duration {
      font-size: clamp(11px, 1.432vw, 12px); }
.tutor-container .tutor-single-course-sidebar h3 {
  font-family: 'Kollektif', 'Yu Gothic', 'Kollektif', Quicksand, "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.344vw, 24px);
  padding: 0 0.5em;
  border-left: solid 6px #858484;
  background: transparent; }
.tutor-container .tutor-single-course-sidebar ul li {
  font-size: clamp(12px, 2.083vw, 14px); }
.tutor-container .tutor-single-course-sidebar .tutor-course-details-instructors h3 {
  font-size: clamp(13px, 2.257vw, 16px);
  padding: 0.5em;
  background: #a0a0a0;
  color: #fff;
  margin-bottom: 24px;
  border-radius: 3px;
  font-weight: 500;
  text-align: center;
  border-left: none; }
.tutor-container .tutor-single-course-sidebar .tutor-course-details-instructors a {
  font-size: clamp(15px, 2.604vw, 18px); }
.tutor-container .tutor-color-secondary,
.tutor-container .tutor-course-single-sidebar-title,
.tutor-container .tutor-course-topic-single-header-title {
  font-size: clamp(15px, 2.604vw, 18px); }
.tutor-container .tutor-card .tutor-color-muted span {
  font-size: clamp(12px, 2.083vw, 14px); }
.tutor-container .tutor-card .tutor-courses-instructors h2 {
  font-size: clamp(13px, 2.257vw, 16px);
  padding: 0.5em;
  background: #a0a0a0;
  color: #fff;
  margin-bottom: 0;
  border-radius: 3px;
  font-weight: 500;
  text-align: center; }
.tutor-container .tutor-card .tutor-courses-instructors a {
  font-size: clamp(15px, 2.604vw, 18px); }
.tutor-container .tutor-card .tutor-course-details-tab h2 {
  font-size: clamp(13px, 2.257vw, 16px);
  padding: 0.5em;
  background: #a0a0a0;
  color: #fff;
  border-radius: 3px;
  font-weight: 500;
  text-align: center; }
.tutor-container .tutor-card .tutor-course-details-tab .tutor-bundle-courses-wrapper h2 {
  font-size: clamp(14px, 2.431vw, 18px);
  font-weight: 500;
  background-color: transparent;
  padding: 0;
  color: #3e3e3e;
  text-align: left; }
.tutor-container .tutor-card .tutor-course-details-tab .tutor-tab-item ul li {
  font-size: clamp(13px, 2.257vw, 16px); }

#tutor-course-details-tab-info .tutor-course-details-widget h3 {
  font-family: 'Kollektif', 'Yu Gothic', 'Kollektif', Quicksand, "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.344vw, 24px);
  padding: 0 0.5em;
  border-left: solid 6px #858484;
  background: transparent; }
#tutor-course-details-tab-info .tutor-course-details-widget .tutor-course-details-widget-list li {
  font-size: clamp(12px, 2.083vw, 14px); }

.tutor-dashboard-content .tutor-row span {
  font-size: clamp(15px, 2.604vw, 18px); }

.tutor-dashboard-profile-data .tutor-row main {
  margin-top: 0px !important; }
.tutor-dashboard-profile-data .tutor-row aside {
  font-size: clamp(20px, 3.472vw, 24px); }
  .tutor-dashboard-profile-data .tutor-row aside .tutor-course-progress-wrapper h3 {
    font-size: clamp(20px, 3.472vw, 24px); }
  .tutor-dashboard-profile-data .tutor-row aside .tutor-color-muted span {
    font-size: clamp(15px, 2.604vw, 18px); }
  .tutor-dashboard-profile-data .tutor-row aside .tutor-course-details-instructors h3 {
    font-size: clamp(16px, 2.778vw, 20px); }
  .tutor-dashboard-profile-data .tutor-row aside .tutor-color-secondary {
    font-size: clamp(14px, 2.431vw, 16px); }

.tutor-course-topic-item-title {
  font-size: clamp(16px, 2.778vw, 18px); }

.tutor-tab h2, .tutor-tab h3 {
  font-size: clamp(22px, 3.819vw, 28px);
  margin-bottom: 20px; }
.tutor-tab .tutor-color-secondary h3 {
  font-size: clamp(16px, 2.778vw, 20px);
  margin-bottom: 20px;
  font-weight: 600; }
  .tutor-tab .tutor-color-secondary h3:before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 2px;
    background-color: #41454F;
    vertical-align: middle; }
.tutor-tab .tutor-color-secondary p, .tutor-tab .tutor-color-secondary ul li {
  font-size: clamp(13px, 2.257vw, 16px);
  line-height: 1.6;
  margin-bottom: 10px; }

#registration main {
  padding: 100px 0;
  margin: 0; }
  @media (max-width: 576px) {
    #registration main {
      padding: 40px 0; } }
  #registration main h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: clamp(42px, 5.469vw, 48px);
    font-family: 'Kollektif', sans-serif; }

#tutor-page-wrap,
.tutor-container,
.tutor-container-fluid,
.tutor-container-xxl,
.tutor-container-xl,
.tutor-container-lg,
.tutor-container-md,
.tutor-container-sm {
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 94%; }
