@charset "UTF-8";
/*
=======================================
Reset CSS
=======================================
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, main, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 62.5%;
}

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

ul, ol {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, input, select, textarea {
  vertical-align: bottom;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
  color: #036;
}

/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*
=========================================
animation
=========================================
*/
/*----------------------------
画像ズーム
----------------------------*/
.zoom-1 img {
  width: 100%;
  height: auto;
  -webkit-animation: animationZoom1 2s ease-in-out forwards;
          animation: animationZoom1 2s ease-in-out forwards;
}

.zoom {
  width: 100%;
  overflow: hidden;
}

@-webkit-keyframes animationZoom1 {
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes animationZoom1 {
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/*----------------------------
遅延表示
----------------------------*/
.late {
  opacity: 0;
  -webkit-animation: appeare 0s ease 1.3s 1 normal forwards running;
          animation: appeare 0s ease 1.3s 1 normal forwards running;
}

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

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

/*----------------------------
画像カーテンで開く
----------------------------*/
.scroll_layer {
  position: relative;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.scroll_layer.on {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.scroll_layer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #036;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.scroll_layer.on::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1.0;
}

.timing02 {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.timing03 {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.timing04 {
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}

.timing05 {
  -webkit-transition-delay: .8s;
          transition-delay: .8s;
}

/*----------------------------
slick設定
----------------------------*/
.slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next:before {
  background: url(../images/icon_arrow-next.png) !important;
  background-size: contain !important;
  color: #036 !important;
}

.slick-prev:before {
  background: url(../images/icon_arrow-prev.png) !important;
  background-size: contain !important;
  color: #036 !important;
}

.slick-arrow {
  z-index: 2 !important;
  width: 24px !important;
  height: 24px !important;
}

.slick-next {
  right: -20px !important;
}

.slick-prev {
  left: -20px !important;
}

/*----------------------------
テキスト下から出現
----------------------------*/
/*全共通*/
.slide-in {
  overflow: hidden;
}

.slide-in_inner {
  display: inline-block;
}

/* 上下のアニメーション*/
.downAnime {
  opacity: 0;
  /* 事前に透過0にして消しておく*/
}

.slideAnimeDownUp {
  -webkit-animation-name: slideTextY100;
          animation-name: slideTextY100;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeUpDown {
  -webkit-animation-name: slideTextY-100;
          animation-name: slideTextY-100;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

/*
=========================================
Base Layout
=========================================
*/
article {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #E8EEF4;
  font-family: 'YakuHanMP_Noto', 'Times New Roman', 'Shippori Mincho', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #036;
  letter-spacing: -.03em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.8;
}

/*container*/
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

::-moz-selection {
  background: #036;
  color: #FCFCFC;
}

::selection {
  background: #036;
  color: #FCFCFC;
}

.txt-just {
  text-align: justify;
  text-justify: inter-ideograph;
}

.line-bl {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #D3DDE7));
  background-image: linear-gradient(transparent 60%, #D3DDE7 60%);
}

.line-wh {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FCFCFC));
  background-image: linear-gradient(transparent 60%, #FCFCFC 60%);
}

.heading {
  display: block;
  line-height: 1.4;
  overflow: hidden;
  font-family: 'YakuHanMP_Noto', 'Oranienbaum', 'Shippori Mincho', serif;
  font-weight: 500;
}

.heading-2 {
  text-align: center;
  font-size: clamp(22px, 6.875vw, 40px);
}

.heading-2--no {
  padding-right: 12px;
  font-size: clamp(16px, 5vw, 24px);
}

.heading-3 {
  font-size: clamp(36px, 11.25vw, 56px);
  text-align: center;
}

.heading-4 {
  font-size: clamp(22px, 6.875vw, 24px);
  text-align: center;
}

.heading-4--before {
  display: block;
  text-align: center;
  font-size: clamp(15px, 5.6vw, 18px);
  letter-spacing: .03em;
}

.heading-5 {
  font-size: clamp(18px, 2.34vw, 20px);
  text-align: center;
  line-height: 1.6;
}

.heading-sub {
  font-size: clamp(22px, 2.86vw, 26px);
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.heading-btn {
  min-width: 280px;
  margin: 0 auto;
  font-size: clamp(26px, 8.125vw, 28px);
  line-height: 1;
  text-align: center;
  border-bottom: 1px solid #036;
  padding: 16px 0;
}

.heading-btn--no {
  padding-right: 8px;
  font-size: 1.6rem;
}

.heading-btn--current {
  background: #D3DDE7;
}

.heading-btn--gray {
  color: #878787;
}

.heading-btn--before::before {
  display: block;
  padding-bottom: 8px;
  content: "- coming soon -";
  font-size: 1.4rem;
  letter-spacing: .05em;
}

.heading-btn a:hover {
  background: #D3DDE7;
  -webkit-transition: .5s;
  transition: .5s;
}

.hd-none {
  display: none;
}

.pc {
  display: none;
}

.en {
  font-family: 'Oranienbaum', serif;
}

/* PC */
@media screen and (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
  article {
    padding-top: 40px;
    font-weight: 400;
  }
  .heading-btn {
    display: inline-block;
    padding: 12px 0;
  }
  .heading-btn--before::before {
    padding-bottom: 10px;
  }
  .heading-sub {
    text-align: left;
  }
  .heading-5 {
    text-align: left;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}

/*
=========================================
Modules（Block）
=========================================
*/
/*KeyVisual
--------------------*/
.kv-grid {
  display: block;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.kv-grid__img {
  position: relative;
}

.kv-grid__ttl {
  display: block;
  position: absolute;
  bottom: 5%;
  left: 0;
  z-index: 10;
  text-align: center;
  line-height: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  .kv-grid {
    padding: 0 40px;
  }
}

/*lead-grid
--------------------*/
.lead-grid {
  padding: 4rem 1.2rem 0;
}

.lead-grid__txt {
  width: 100%;
  max-width: 880px;
  padding-top: 4rem;
  line-height: 2;
}

/*section-grid
--------------------*/
.section-grid {
  margin: 2.4rem auto 0;
  padding-top: 5.6rem;
  padding-bottom: 4rem;
}

.section-grid__body {
  margin-top: 4rem;
}

.section-grid__body--case {
  padding: 1.6rem;
}

.section-grid__img {
  position: relative;
  text-align: center;
  vertical-align: bottom;
}

.section-grid__txt--s {
  font-size: 1.4rem;
  line-height: 1.8;
}

.section-grid__txt--name {
  display: block;
  font-weight: 500;
  font-size: 1.6rem;
}

.section-grid__txt--link {
  text-decoration: underline;
}

.section-grid__txt--box {
  background: #ececec;
  border-radius: 10px;
  padding: 16px 24px 24px;
  margin-top: 16px;
}

.section-grid__credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6px;
  padding: 6px 0;
  border-bottom: 1px solid #036;
  font-family: 'Oranienbaum', serif;
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.4;
}

.section-grid__credit--price {
  display: block;
  font-size: 1.2rem;
}

.section-grid__credit--tax {
  margin-left: 4px;
  font-size: 1.2rem;
}

.section-grid__credit--brand {
  display: inline-block;
  font-size: 1.2rem;
}

.section-grid__credit--btn {
  display: inline;
  margin-left: 8px;
  padding: 4px;
  background: #036;
  border: 1px solid #036;
  text-align: center;
  color: #FCFCFC;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: .1em;
  cursor: pointer;
}

.section-grid__credit--btn:hover {
  background: #FCFCFC;
  border: 1px solid #036;
  color: #036;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.profile-grid {
  margin: 6.4rem auto;
}

.profile-grid__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2.4rem;
}

.profile-grid__item {
  width: 100%;
  background-color: #FCFCFC;
  border: 1px solid #036;
}

.profile-grid__icon {
  text-align: center;
}

.profile-grid__txt {
  padding: 1rem 1.6rem 1.6rem;
  font-size: 1.3rem;
}

.profile-grid__txt--link {
  display: inline;
  text-align: center;
}

.profile-grid__img {
  border-radius: 120px 120px 0 0;
}

.sub-grid {
  border: 1px solid #036;
  margin: 6.4rem auto 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.color-wh {
  background: #FCFCFC;
}

.border-bl {
  border: 1px solid #036;
}

.fa-house {
  padding-right: 8px;
  font-size: 1.5rem;
}

.fa-instagram {
  vertical-align: -2px;
  font-size: 1.8rem;
}

/* PC */
@media screen and (min-width: 768px) {
  .section-grid {
    margin: 4rem auto 0;
    padding-top: 6.4rem;
    padding-bottom: 5.6rem;
  }
  .section-grid__body {
    margin-top: 6.4rem;
  }
  .section-grid__body--case {
    padding: 4rem;
  }
  .section-grid__img--border {
    border: 6px solid #d7dbdb;
  }
  .section-grid__txt--s {
    font-size: 1.8rem;
  }
  .section-grid__txt--box {
    margin-top: 0;
    padding: 24px 24px 32px;
  }
  .section-grid__btn {
    font-size: 1.6rem;
  }
  .sub-grid {
    margin: 6.4rem 1.4rem 0;
  }
  .profile-grid {
    margin: 8rem auto;
  }
  .profile-grid__body {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .profile-grid__item {
    width: 32%;
  }
  .profile-grid__txt {
    padding: 1.6rem 2.4rem 2rem;
    font-size: 1.3rem;
  }
  __credit {
    font-size: 1.8rem;
  }
}

/*TOPへ
--------------------*/
#page-top {
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 99;
}

#page-top a {
  display: block;
  color: #036;
  text-align: center;
  opacity: 0.9;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #036;
  vertical-align: middle;
  text-decoration: none;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.arrow-top::before {
  left: 0;
  width: 16px;
  height: 16px;
  border-top: 1px solid #036;
  border-right: 1px solid #036;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* PC */
@media screen and (min-width: 768px) {
  #page-top {
    bottom: 24px;
    right: 32px;
  }
  .arrow-top::before {
    left: 0;
    width: 24px;
    height: 24px;
  }
}

/*
=========================================
Utilities
=========================================
*/
/* padding, margin. width
--------------------*/
.pt-16 {
  padding-top: 1.6rem;
}

.mt-16 {
  margin-top: 1.6rem;
}

.mt-24 {
  margin-top: 2.4rem;
}

.mt-40 {
  margin-top: 4rem;
}

.mt-64 {
  margin-top: 4rem;
}

.mt-80 {
  margin-top: 4rem;
}

.w-70 {
  width: 80%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.margin-20 {
  margin: 0 auto;
}

.t-align-c {
  text-align: center;
}

/* PC */
@media screen and (min-width: 768px) {
  .mt-24 {
    margin-top: 0;
  }
  .mt-64 {
    margin-top: 6.4rem;
  }
  .mt-80 {
    margin-top: 8rem;
  }
  .w-80 {
    width: 100%;
  }
}

/* flexbox
--------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-main, .flex-sub {
  width: 100%;
}

.flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-item:after {
  content: "";
  display: block;
  width: 46%;
  height: 0;
}

.flex-col-2 {
  width: 100%;
}

.flex-col-3 {
  width: 100%;
}

.flex-col-4 {
  width: 48%;
}

/* PC */
@media screen and (min-width: 768px) {
  .flex-main {
    width: 60%;
  }
  .flex-sub {
    width: 34%;
  }
  .flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .flex-2 {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .flex-3 {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  .flex-rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flex-col-2 {
    width: 47%;
  }
  .flex-col-3 {
    width: 31%;
  }
  .flex-col-4 {
    width: 22%;
  }
}
/*# sourceMappingURL=style.css.map */