@charset "UTF-8";
/*===============================
 
    基本
 
================================*/
* {
  box-sizing: border-box; }

body,
html {
  margin: 0;
  padding: 0; }

html {
  font-size: 62.5%;
  overflow-x: hidden; }

body {
  font-size: 1.4rem;
  font-family: "lato", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  -webkit-text-size-adjust: 100%;
  overflow: hidden;
  line-height: 1.8;
  color: #333333;
  position: relative;
  letter-spacing: .1em;
  box-sizing: border-box; }
  @media (min-width: 992px) {
    body {
      font-size: 1.6rem; } }

p {
  margin: 0;
  padding: 0; }

img {
  width: 100%;
  height: auto;
  line-height: 0;
  margin: 0;
  padding: 0;
  vertical-align: bottom; }

.sp {
  display: block; }
  @media (min-width: 992px) {
    .sp {
      display: none; } }

.pc {
  display: none; }

.inner {
  margin: 0 auto 10px;
  width: 90%; }

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

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  font-weight: normal; }

/*===============================
 
    装飾
 
================================*/
.en01 {
  font-family: 'Reem Kufi', sans-serif;
  font-weight: normal; }

.fb {
  font-weight: bold; }

.y-line {
  background: linear-gradient(transparent 50%, #ffff00 50%); }

.cl-purple {
  color: #b962af; }

.cl-pink {
  color: #f2a2c5; }

.cl-red {
  color: #ee6873; }

.cl-or {
  color: #f2926a; }

.mts {
  margin: 1.0em 0 0; }

.mtm {
  margin: 2.0em 0 0; }
  @media (min-width: 992px) {
    .mtm {
      margin: 4.0em 0 0; } }

.mbs {
  margin: 0 0 1.0em; }

.mbm {
  margin: 0 0 2.0em; }

.mtl {
  margin: 3.0em 0 0; }

.mtll {
  margin: 5.0em 0 0; }

.indent {
  padding: 0 0 0 1.0em;
  text-indent: -1.0em; }

.reg-btn {
  text-align: center; }
  .reg-btn a {
    box-sizing: border-box;
    color: #333;
    text-decoration: none;
    padding: 1.0em;
    border: 1px solid #333;
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 0 auto; }
    .reg-btn a .arrow {
      position: relative;
      display: inline-block;
      padding: 0 2.0em 0 0; }
      .reg-btn a .arrow:after {
        content: "";
        display: block;
        position: absolute;
        top: calc(50% - 5px);
        right: 0;
        width: 20px;
        height: 5px;
        border: none;
        border-right: 2px solid #333;
        border-bottom: 1px solid #333;
        transform: skew(45deg);
        transition: .3s; }
    .reg-btn a:hover .arrow:after {
      right: -10px;
      width: 30px; }

.more-btn {
  margin: 1.0em 0 0;
  text-align: right;
  font-size: 1.4rem;
  letter-spacing: .2em;
  font-weight: bold; }
  @media (min-width: 992px) {
    .more-btn {
      font-size: 1.8rem; } }
  .more-btn a {
    text-decoration: none;
    color: #333;
    border: 2px solid #333;
    padding: 1.0em 1.5em;
    border-radius: 30px; }
    .more-btn a .arrow {
      display: inline-block;
      position: relative;
      padding: 0 0 0 30px; }
      .more-btn a .arrow:before {
        content: "";
        display: block;
        position: absolute;
        top: calc(50% - 5px);
        left: 0;
        width: 20px;
        height: 5px;
        border: none;
        border-right: 2px solid #333;
        border-bottom: 1px solid #333;
        transform: skew(45deg);
        transition: .3s; }

/*===============================
 
    アニメーション
 
================================*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 1%;
  left: 6%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite; }

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%; }
  50% {
    bottom: 3%; }
  100% {
    bottom: 1%; } }
/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #000;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl; }

/* 矢印の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -4px;
  /*矢印の形状*/
  width: 1px;
  height: 12px;
  background: #000;
  transform: skewX(-31deg); }

.scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: #000; }

/*===============================
 
    ヘッダー
 
================================*/
header {
  background: linear-gradient(90deg, #f2f2f2 0%, #f2f2f2 30%, #fff 30%, #fff 100%);
  padding: 0 0 30px; }
  header .inner {
    padding: 20px 0;
    position: relative; }
  header .logo {
    max-width: 150px;
    margin: 0 10px 0 0; }
    header .logo a {
      display: block; }
  header .top-copy {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 0.5em; }
  header .main-visual-wrap {
    position: relative; }
  header .main-visual-reveal {
    bottom: 10%;
    right: 0;
    position: absolute;
    text-align: right; }
  header .reveal-text,
  header .reveal-text::after {
    animation-delay: var(--animation-delay, 2s);
    animation-iteration-count: var(--iterations, 1);
    animation-duration: var(--duration, 800ms);
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
  header .reveal-text {
    --animation-delay: var(--delay, 0);
    --animation-duration: var(--duration, 800ms);
    --animation-iterations: var(--iterations, 1);
    position: relative;
    font-size: 2.0rem;
    font-weight: bold;
    animation-name: clip-text;
    color: #FFF;
    white-space: nowrap;
    cursor: default;
    letter-spacing: .2em;
    display: block;
    margin: 0 0 .5em; }
    @media (min-width: 992px) {
      header .reveal-text {
        font-size: 4.0rem; } }
    header .reveal-text span {
      background: #000;
      padding: 0 .5em;
      display: inline-block; }
    header .reveal-text::after {
      content: "";
      position: absolute;
      z-index: 999;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #8c3d81;
      transform: scaleX(0);
      transform-origin: 0 50%;
      pointer-events: none;
      animation-name: text-revealer; }
    header .reveal-text:last-child {
      margin: 0; }
@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0); }
  to {
    clip-path: inset(0 0 0 0); } }
@keyframes text-revealer {
  0%,
        50% {
    transform-origin: 0 50%; }
  60%,
        100% {
    transform-origin: 100% 50%; }
  60% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }
  header .main-visual {
    width: 90%;
    margin: 0 0 0 10%;
    position: relative; }
    header .main-visual img {
      min-height: 300px;
      max-height: 600px;
      object-fit: cover; }

.main-top-info {
  display: flex;
  justify-content: flex-end; }
  @media (min-width: 992px) {
    .main-top-info {
      padding: 0 10%; } }
  .main-top-info p {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #666;
    font-size: 1.4rem;
    line-height: 2.4;
    letter-spacing: .2em; }
    @media (min-width: 992px) {
      .main-top-info p {
        font-size: 2.0rem; } }
    .main-top-info p:last-child {
      color: #333;
      font-size: 1.8rem;
      letter-spacing: .3em;
      margin: 0 0 0 1.5em; }
      @media (min-width: 992px) {
        .main-top-info p:last-child {
          font-size: 2.4rem; } }

/*===============================
 
    ナビゲーション
 
================================*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: rgba(175, 114, 166, 0.95);
  transition: all 0.6s; }
  @media (min-width: 992px) {
    #g-nav {
      position: static;
      background: none;
      top: 0;
      left: auto;
      right: 0;
      height: auto; } }

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 0; }

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; }
  @media (min-width: 992px) {
    #g-nav ul {
      position: absolute;
      top: 42%;
      left: auto;
      right: 0;
      transform: none;
      width: auto; } }

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center; }
  @media (min-width: 992px) {
    #g-nav li {
      text-align: left;
      display: inline-block; } }

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition: .6s;
  font-size: 1.8rem; }
  @media (min-width: 992px) {
    #g-nav li a:hover {
      color: #8c3d81; } }
  @media (min-width: 992px) {
    #g-nav li a {
      display: inline-block;
      padding: 0 0 0 1.25em;
      margin: 0 0 0 1.5em;
      font-size: 1.4rem;
      color: #333;
      position: relative; }
      #g-nav li a:before {
        content: "";
        position: absolute;
        width: 6px;
        height: 6px;
        border-top: 3px solid #ccc;
        border-right: 3px solid #ccc;
        transform: rotate(45deg);
        top: 30%;
        left: 0; } }

.openbtn {
  position: fixed;
  z-index: 9999;
  background: #8c3d81;
  /*ボタンを最前面に*/
  left: 0;
  bottom: 0;
  cursor: pointer;
  width: 50px;
  height: 50px; }
  @media (min-width: 992px) {
    .openbtn {
      display: none; } }

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%; }

.openbtn span:nth-of-type(1) {
  top: 15px; }

.openbtn span:nth-of-type(2) {
  top: 23px; }

.openbtn span:nth-of-type(3) {
  top: 31px; }

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%; }

.openbtn.active span:nth-of-type(2) {
  opacity: 0; }

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%; }

/*===============================
 
    フッター
 
================================*/
.footer-nav {
  background: #999;
  padding: 0.5em 0;
  text-align: right; }
  .footer-nav ul {
    margin: 0 5% 0 0; }
    .footer-nav ul li {
      display: inline-block;
      font-size: 1.2rem;
      margin: 0 0 0 1.0em; }
      .footer-nav ul li:first-child {
        margin: 0; }
      @media (min-width: 992px) {
        .footer-nav ul li {
          font-size: 1.4rem; } }
      .footer-nav ul li a {
        text-decoration: none;
        color: #fff;
        display: flex;
        align-items: center; }
        .footer-nav ul li a:before {
          content: "";
          display: block;
          width: 6px;
          height: 6px;
          border-right: 1px solid #666;
          border-bottom: 1px solid #666;
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
          margin: 0 6px 0 0; }

footer .copyright {
  background: #f2f2f2;
  text-align: center; }
  footer .copyright a {
    color: #333;
    display: inline-block;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1.0em 0; }

/*===============================
 
    メールフォーム
 
================================*/
form {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

.reg-form {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px; }
  @media (min-width: 992px) {
    .reg-form {
      letter-spacing: -.5em; } }
  .reg-form dt,
  .reg-form dd {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.6rem; }
    @media (min-width: 992px) {
      .reg-form dt,
      .reg-form dd {
        vertical-align: middle;
        letter-spacing: normal;
        display: inline-block; } }
  .reg-form dt {
    margin: 0 0 .25em; }
    @media (min-width: 992px) {
      .reg-form dt {
        width: 30%;
        text-align: center; } }
  .reg-form dd {
    margin: 0 0 1.5em; }
    @media (min-width: 992px) {
      .reg-form dd {
        width: 70%; } }
    .reg-form dd .ex-txt {
      font-size: 1.2rem;
      padding: 0 0 0 1.5em;
      margin: 4px 0 0;
      color: #999;
      display: block; }
  .reg-form input[type="text"],
  .reg-form input[type="email"],
  .reg-form input[type="tel"],
  .reg-form textarea {
    box-sizing: border-box;
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    padding: 1.0em;
    border-radius: 0;
    background: #f2f2f2;
    border: 0;
    border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Noto Sans Japanese', sans-serif; }
  .reg-form .must,
  .reg-form .optional {
    color: #fff;
    border-radius: 3px;
    font-size: 10px;
    margin-left: 10px;
    padding: .25em 0.5em;
    letter-spacing: .1em;
    vertical-align: middle; }
  .reg-form .must {
    background: #FF1A00; }
  .reg-form .optional {
    background: #999; }
  .reg-form .mini {
    font-size: 1.2rem;
    display: block; }
  .reg-form .wpcf7-list-item {
    margin: 0 0 1.0em;
    padding: 0 0 0 2.0em;
    display: block;
    position: relative; }
    @media (min-width: 992px) {
      .reg-form .wpcf7-list-item {
        margin: 0 0 0.5em; } }
    .reg-form .wpcf7-list-item input[type="checkbox"] {
      position: absolute;
      left: 0;
      top: 0.4em;
      margin: 0;
      padding: 0;
      width: 20px;
      height: 20px; }

.wpcf7 .ajax-loader {
  display: block !important; }

.form-btn {
  margin: 2.0em 0 0; }
  .form-btn input[type="submit"] {
    display: block;
    line-height: 1.0;
    box-sizing: border-box;
    background: none;
    border: 2px solid #333;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 1.0em;
    font-size: 1.8rem;
    color: #333;
    letter-spacing: .1em;
    font-family: 'Noto Sans Japanese', sans-serif;
    cursor: pointer; }
    @media (min-width: 992px) {
      .form-btn input[type="submit"] {
        padding: 1.5em 0; } }

/*===============================
 
    ニュース エリア
 
================================*/
#news-block {
  padding: 30px 0 0; }
  @media (min-width: 992px) {
    #news-block {
      padding: 60px 0 0; } }
  #news-block .reg-title {
    text-align: center;
    margin: 0 0 0.25em; }
    #news-block .reg-title .mini {
      padding: 0; }
  @media (min-width: 992px) {
    #news-block .blog-card {
      padding: 2.0em 0 0;
      flex-wrap: wrap;
      display: flex;
      justify-content: space-between; } }
  #news-block .blog-card li {
    box-sizing: border-box;
    padding: 0.5em; }
    @media (min-width: 992px) {
      #news-block .blog-card li {
        width: 18%;
        padding: 0; } }
    #news-block .blog-card li a {
      color: #333;
      text-decoration: none; }
      #news-block .blog-card li a img {
        height: 150px;
        object-fit: cover; }
    #news-block .blog-card li .pic a {
      display: block; }
    #news-block .blog-card li .day {
      font-size: 1.2rem; }
    #news-block .blog-card li h3 {
      font-size: 1.8rem;
      line-height: 1.5; }

/*# sourceMappingURL=base.css.map */
