@charset "UTF-8";
/* ===================================================================
 CSS Document

 file name  : base.css
 style info : Initial Style
=================================================================== */

/* ====================
reset.css
======================= */
html {
  overflow-y: scroll;
}

body, div, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul li, ol li {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, section, nav, article, aside, hgroup, header, address, figure, figcaption {
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

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

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

object, embed {
  vertical-align: top;
}

legend {
  display: none;
}

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

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

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

a, button, input, textarea {
  outline: none;
}

img {
  box-shadow: #000 0 0 0;
}

x:-moz-any-link, x:default {
  box-shadow: #000 0 0 0;
}

a {
  color: #1d1d1d;
  text-decoration: none;
  transition: opacity .3s ease;
}

* {
  box-sizing: border-box;
}

html {
  font: 62.5%/1.231 "ヒラギノ角ゴシック Pro", sans-serif, "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  font-size: 1.0rem;
  letter-spacing: -0.001em;
  -webkit-text-size-adjust: 100%;
}

select, input, button, textarea, table {
  font: 1rem "ヒラギノ角ゴシック Pro", sans-serif, "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

pre, code, kbd, samp, tt {
  font-family: "ヒラギノ角ゴシック Pro", sans-serif, "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
}

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

/* ====================
common
======================= */
body {
  /* overflow: hidden; */
  font-size: 1.4rem;
  line-height: 1.7;
  color: #222222;
  font-family: "ヒラギノ角ゴシック Pro", sans-serif, "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: #FCFCFC;
  min-width: 320px;
  letter-spacing: .05em;
}

/* ====================
アニメーション
======================= */
.js-fadeup {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.5s, transform 1.5s;
}

.js-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeup-row-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.5s, transform 1.5s;
}

.js-fadeup-row.is-visible .js-fadeup-row-child {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
共通パーツ　
===============================================*/

/* セクション */
.section {
  padding: 80px 0;
}

/* インナー */
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4%;
  box-sizing: content-box;
}

/* 見出し */
.ttl-01 {
  font-size: 3.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.ttl-02 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.5;
  border-bottom: solid 1px #ccc;
  padding-bottom: 10px;
}

/* カード */
.card-01 {
  position: relative;
  margin-bottom: 50px;
  max-width: 350px !important;
  width: 31.5%;
}

.card-01__img {
  margin: 0 auto 10px;
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border: solid 1px #dbdbdb;
}

.card-01__img img {
  transition: all .5s ease;
  width: 100%;
  height: 100%;
  display: block;
  zoom:1;transform: scale(1, 1) translateZ(0);
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1
}

.card-01__cat {
  position: absolute;
  z-index: 1;
  background: rgb(0 0 0 / 80%);
  color: #fff;
  padding: 0 10px;
  font-size: 1.2rem;
  font-family: "Jost",sans-serif;
  letter-spacing: .1em
}

.card-01__ttl {
  transition: color .5s ease;
  line-height: 1.5
}

/* ボタン */
.btn-01 {
  display: inline-block;
  background: #000000;
  padding: 10px 40px;
  border-radius: 30px;
  color: #FFF;
  min-width: 140px;
  text-align: center;
}

/* テキスト */
.txt-center {
  text-align: center;
}

/* ====================
header
======================= */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  padding: 10px 4%;
  height: 56px;
  background: #f9f9f8;
}

.header__logo {
  line-height: 1
}

.header__logo a {
  display: inline-block
}

.header__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center
}

.header__list-item {
  display: flex;
  flex-wrap: wrap
}

.header__list-link {
  position: relative;
  letter-spacing: .15em;
  transition: color .5s ease;
}

.header__list-link.is-current {
  color: #fff
}

.header__list-link.is-current::after {
  opacity: 1;
  bottom: -10px
}

.header__list-link:hover {
  opacity: 1;
  color: #bfb6ac
}


.header__list-link i {
  display: flex;
  align-items: center
}

/* ====================
hamburger
======================= */
.hamburger {
  width: 60px;
  height: 52px;
  display: block;
  position: absolute;
  top: 52%;
  right: 3px;
  z-index: 201;
  cursor: pointer;
  transition: all .3s ease;
  transform: translateY(-50%)
}

.hamburger i {
  display: none
}

.hamburger span {
  width: 28px;
  height: 1px;
  display: block;
  background: #000;
  position: absolute;
  left: 16px;
  top: 60%;
  transition: all .3s
}

.hamburger span:nth-of-type(1) {
  transform: translateY(-10px) scale(1)
}

.hamburger.is-open span:nth-of-type(1) {
  transform: rotate(45deg)
}

.hamburger.is-open span:nth-of-type(2) {
  transform: rotate(-45deg)
}

/* ====================
footer
======================= */
footer {
  padding: 20px 4%;
  text-align: center;
  background: #000000;
  position: relative;
}

.footer__copy {
  color: #FFF;
}

/* ====================
page-top
======================= */
.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 50;
  display: none;
}

.page-top.is-absolute {
  position: absolute;
  bottom: 30px;
}

.page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #281e1b;
  position: relative;
  height: 100%;
  transition: all .5s ease;
  border-radius: 50%;
  color: #FFF;
  padding: 15px 0px 0;
  font-size: 1rem;
}

.page-top a:before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: #FFF 2px solid;
  border-left: #FFF 2px solid;
  transform: rotate(45deg);
  position: absolute;
  top: 31%;
  left: 44%;
}

/*-------------------------------------------
PCのみ適用
-------------------------------------------*/
@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
    opacity: .7
  }

  a[href^=tel]:hover {
    opacity: 1
  }

  .pc-none {
    display: none;
  }

  /* ====================
  header
  ======================= */
  .header {
    height: 100px;
  }
  .header__nav {
    display: block !important;
  }
  .header__list-item {
    margin-left: 20px;
    align-items: center;
  }
  /* ====================
  共通パーツ
  ======================= */
  .card-01:hover .card-01__img img {
    transform: scale(1.1);
  }
}
/*-------------------------------------------
SPのみ適用
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
  body {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ====================
  共通パーツ
  ======================= */
  .section {
    padding: 40px 0;
  }
  
  .ttl-01 {
    font-size: 2.8rem;
  }
  .ttl-02 {
    font-size: 2.2rem;
  }
  .card-01 {
    width: 49%;
    margin-bottom: 20px;
  }
  .card-01__ttl {
    font-size: 1.2rem;
  }
  .card-01__img {
    margin-bottom: 5px;
  }

  /* ====================
  header
  ======================= */
  .header__logo {
    width: 120px
  }

  .header__nav {
    position: fixed;
    background: #ffffff;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
  }

  .header__list-item {
    justify-content: center;
    width: 100%;
    margin: 0 0 40px;
  }

/* ====================
page-top
======================= */
  .page-top {
    right: 10px;
    width: 45px;
    height: 45px;
  }
  .page-top a {
    padding: 10px 0px 0;
  }
  .page-top a:before {
    top: 28%;
    left: 42%;
  }
}


/* ====================
マージン
======================= */
.mt0 {
  margin-top: 0px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mt100 {
  margin-top: 100px !important;
}


.mb0 {
  margin-bottom: 0px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}

@media (max-width: 767px) {
  .mt10 {
    margin-top: 5px !important;
  }
  .mt20 {
    margin-top: 10px !important;
  }
  .mt30 {
    margin-top: 15px !important;
  }
  .mt40 {
    margin-top: 20px !important;
  }
  .mt50 {
    margin-top: 25px !important;
  }
  .mt60 {
    margin-top: 30px !important;
  }
  .mt70 {
    margin-top: 35px !important;
  }
  .mt80 {
    margin-top: 40px !important;
  }
  .mt90 {
    margin-top: 45px !important;
  }
  .mt100 {
      margin-top: 50px !important;
  }

  .mb10 {
    margin-bottom: 5px !important;
  }
  .mb20 {
    margin-bottom: 10px !important;
  }
  .mb30 {
    margin-bottom: 15px !important;
  }
  .mb40 {
    margin-bottom: 20px !important;
  }
  .mb50 {
    margin-bottom: 25px !important;
  }
  .mb60 {
    margin-bottom: 30px !important;
  }
  .mb70 {
    margin-bottom: 35px !important;
  }
  .mb80 {
    margin-bottom: 40px !important;
  }
  .mb90 {
    margin-bottom: 45px !important;
  }
  .mb100 {
      margin-bottom: 50px !important;
  }
}