@charset "UTF-8";
body {
  color: #333333;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
  letter-spacing: -0.1px;
  font-weight: 200;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* リキッドレイアウト対応のための設定 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5384615385vw;
  }
}
@media (min-width: 1040px) {
  html {
    font-size: 16px;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a:hover {
  opacity: 0.8;
}

/*インナー幅用の基本CSS*/
.inner {
  width: 100%;
  max-width: 37.5rem;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1140px;
    padding-right: 50px;
    padding-left: 50px;
  }
}

/* ================================================
   cssここから書く
================================================ */
/*------------------------------------------------
   フォントファミリー
------------------------------------------------*/
.en-font {
  font-family: "Abel", sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.heading-font {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/*------------------------------------------------
   共通パーツ
------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title__primary {
  font-size: 1.5rem;
  font-family: "Oswald", sans-serif;
  line-height: 1.3333333333;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .section-title__primary {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.molmena-color {
  color: #EEE93A;
}

.section-title__sub {
  margin-top: 0.625rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .section-title__sub {
    font-size: 1.125rem;
    line-height: 2;
  }
}

/*------------------------------------------------
   ヘッダー 
------------------------------------------------*/
/*常に画面上部に固定で追従する状態*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 3.125rem;
  z-index: 9999;
  /*絶対一番手前に*/
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

/*ヘッダーの高さを中身に引き継ぐ（中身の高さを揃える）*/
/*headerの中に入ってる要素のセレクタを一括で↓*/
.header__inner,
.header__inner nav,
.header__nav,
.header__nav-item,
.header__nav-item a {
  height: inherit;
}

/*ロゴとメニューの並び方*/
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*ロゴの大きさ*/
.header__logo {
  max-width: 7.8125rem;
  /*SP*/
  width: 100%;
  /*max-widthの時セットで記述*/
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 10.5rem;
    /*PC*/
  }
}

/*ホバー時のロゴの変化の仕方*/
.header__logo a {
  -webkit-transition: all 0.8s 0s ease;
  transition: all 0.8s 0s ease;
}

/*メニューの並び方(PC-only)*/
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}

/*メニューaタグをブロック要素にして中央に寄せる(PC-only)*/
.header__nav-item a {
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-block: auto;
  color: #333333;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  /*ホバーの時の変化*/
}

.header__nav-item a:hover {
  padding-bottom: 10px;
  opacity: 1;
}

/*----------------　ヘッダースクロール時の変化　----------------*/
/*jQueryで「画面をスクロールした時に100pxを超えたらヘッダー背景色が変わるcssのクラスが付く」という指定を書いている。
/*背景色の変化*/
.change-color {
  /*このクラス名はscript.jsにあり。jQueryでつけ外しをしている*/
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  /*背景の色をふわっと変える transitionが使える*/
}

/*----------------　スマホメニュー　----------------*/
.sp-nav {
  background-color: rgb(190, 188, 190);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  /* positionの記述とセット */
  left: 0;
  /* positionの記述とセット */
  z-index: 9998;
  /* 重なり順が上になるように。ハンバーガーメニュー9999の一つ下くらいでOK */
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  /* クリックしたら現れるので、普段はSP-navごと寄せて画面から出しておく。Xは横位置の指定 */
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  /* ふわっと */
  overflow-y: auto;
  /*もし画面の高さが短い時にスクロールできるようになる*/
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}

/*SPロゴ*/
.sp-nav__items {
  position: absolute;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.5625rem;
  padding-block: 6.25rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sp-nav__item a {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  color: #FFFFFF;
  display: block;
  /*いらない？*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*ハンバーガーボタンをクリックしたら右に隠したsp-navが出てくる*/
.is-openSP {
  /*jsの為に作ったクラス。jQueryで指定あり*/
  -webkit-transform: translateX(0);
  /*transformはブラウザによって対応していない場合もあるので必ずベンダープレフィクスをつけるようにする #5参照*/
  transform: translateX(0);
  /*画面から出していたのを画面内に戻す*/
}

@media screen and (min-width: 768px) {
  .header__drawer {
    display: none;
  }
}

/*----------------　ハンバーガーメニュー　----------------*/
.hamburger {
  z-index: 9999;
  width: 1.4375rem;
  /*下の.hamburger spanで指定してるからどちらか1つでいいのでは？*/
  padding: 0;
}

.hamburger span {
  background-color: #333333;
  display: block;
  /*spanはインラインなので、高さの指定をするためにブロック要素に変える*/
  height: 0.125rem;
  /*線の太さ*/
  position: relative;
  /*線の開閉など、動きが出てくるのでrelativeにして動かせるようにしておく*/
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  /* 動きのアニメーションの指定 */
  width: 1.4375rem;
  /*線の横幅*/
}

.hamburger span:nth-child(2) {
  /*そのままだと3本重なっているので、真ん中のspanタグに余白をつけて3本線にする*/
  margin-top: 0.5625rem;
  margin-bottom: 0.5625rem;
}

/* ×の時の動かし方（CSSで作ったクラスをjQueryでつけ外しする) */
.hamburger.is-openSP span:nth-child(1) {
  /* .is-openSP(js用に作ったクラス)がついた時の1番目のspan*/
  top: 0.4375rem;
  /*交差した時×になるように調整。検証ツール見ながら微調整*/
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-openSP span:nth-child(2) {
  /*2つ目は見えなくする*/
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -0.9375rem;
  /*交差した時×になるように調整。検証ツール見ながら微調整*/
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  /*マイナスにすることで、反対方向に傾く*/
}

/*ハンバーガーメニューの背景固定。
ハンバーガーメニューの裏側でスクロールしなくなる。bodyに「js-fixed」クラスが付いたら背景が固定できるというスタイルを指定する。*/
body.js-fixed {
  /*js-fixedはjsにあり*/
  width: 100%;
  height: 100%;
  position: fixed;
}

/*------------------------------------------------
   fv　（スライダー）
------------------------------------------------*/
/*ファーストビューのロゴの配置・大きさ*/
.fv {
  position: relative;
}

/*spとpcでは画像の見え方が変わるので縦横比を指定しておく。
splideのクラスに直接指定するのではなく、新しくfv__imageというクラスをつけて指定する*/
.fv__image {
  aspect-ratio: 375/812;
  /*カンプのspの幅と高さ*/
  max-height: 50.75rem;
}
@media screen and (min-width: 768px) {
  .fv__image {
    aspect-ratio: 1440/768;
  }
}

.fv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/*ロゴの中央寄せはgridで書く方法もある。動画で解説あり32:40'~*/
/*------------------------------------------------
   ABOUT molmena
------------------------------------------------*/
.about__inner {
  padding-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-top: 9.375rem;
  }
}

.about-text__content,
.eyewear-text__content {
  margin-bottom: 6.25rem;
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .about-text__content,
  .eyewear-text__content {
    margin-bottom: 9.375rem;
    gap: 1.25rem;
    line-height: 2.25;
  }
}

.eyewear__image {
  margin-inline: calc(50% - 50vi);
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .eyewear__image {
    margin-inline: calc(50% - 50vi) auto;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .about-eyewear__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 9.375rem;
  }
}

.align-left {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .about-eyewear__text-wrapper {
    min-width: 28.125rem;
    max-width: 32.5rem;
    width: 100%;
  }
}

/*----------------　キャッチフレーズ　----------------*/
.catch-title {
  font-size: 1.125rem;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 768px) {
  .catch-title {
    font-size: 2.5rem;
  }
}

.catch__image {
  margin-inline: calc(50% - 50vi);
}
@media screen and (min-width: 768px) {
  .catch__image {
    margin-inline: 0;
    max-width: 45rem;
    width: 100%;
  }
}

.catch__image img {
  aspect-ratio: 720/400;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .catch__text {
    min-width: 25rem;
    max-width: 31.25rem;
    background: rgba(255, 255, 255, 0.8);
    margin-left: -15%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 60%;
    padding: 1.25rem;
    line-height: 2.25;
  }
}

@media screen and (min-width: 768px) {
  .catch__text2 {
    min-width: 25rem;
    max-width: 31.25rem;
    background: rgba(255, 255, 255, 0.8);
    margin-right: -15%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 60%;
    padding: 1.25rem;
    z-index: 2;
    line-height: 2.25;
  }
}

.catch__content {
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .catch__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    margin-top: 5.3125rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.catch__content:last-child {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .catch__content:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 5.3125rem;
  }
}

/*------------------------------------------------
   qualities 3つ　（タブ切り替え）
------------------------------------------------*/
.qualities__inner {
  margin-block: 9.375rem 5rem;
}
.qualities-tab__container {
  max-width: 800px;
  margin-inline: auto;
}

/*タブの並び方 grid*/
.qualities-tab__items {
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .qualities-tab__items {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

/*個々のタブの設定*/
.qualities-tab__item {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  padding-block: 0.8125rem;
  padding-inline: 0.3125rem;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  background: #FFFFFF;
  border-radius: 5px 5px 0px 0px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 768px) {
  .qualities-tab__item {
    padding-block: 1.75rem;
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

.qualities-tab__item span {
  display: block;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 1px;
}

/*active中のタブの設定*/
.qualities-tab__item.active {
  background-color: #F4F4F4;
}

/*パネルエリア*/
.qualities-panel__item {
  display: none;
  /*パネルは見えないようにする。jsで「選択中のパネルにはactiveというクラスが付き中身が表示される」という指定あり*/
  text-align: center;
  padding: 1.25rem 1.25rem;
}
/*active中のパネルの設定*/
.qualities-panel__item.active {
  display: block;
  border: 0.5px solid #333333;
  border-radius: 0px 0px 5px 5px;
}

/*パネルの中身をグリッドで並べる →今回はflexにした*/
@media screen and (min-width: 768px) {
  .qualities-panel__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}

/*パネル内の見出し部分*/
.qualities-panel__heading {
  font-family: "Abel", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .qualities-panel__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

/*パネル内の画像部分*/
@media screen and (min-width: 768px) {
  .qualities-panel__image {
    margin-top: 0;
    min-width: 18.75rem;
    max-width: 25rem;
  }
}

.qualities-panel__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/*パネル内の説明部分*/
.qualities-panel__text {
  margin-block: 3.125rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qualities-panel__text {
    margin-top: 1.5rem;
    line-height: 2.25;
  }
}

/*----------------山岡金型製作所----------------*/
.manufacture {
  margin-top: 6.25rem;
}

.manufacture-image {
  margin-inline: calc(50% - 50vi);
}
@media screen and (min-width: 768px) {
  .manufacture-image {
    margin-inline: auto;
    aspect-ratio: 1040/400;
  }
}

@media screen and (min-width: 768px) {
  .manufacture-image img {
    max-width: 65rem;
    width: 100%;
  }
}

.manufacture-title {
  font-size: 1rem;
  text-align: center;
  margin-block: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .manufacture-title {
    margin-block: 0 1.25rem;
  }
}

.manufacture__text:last-child {
  margin-top: 0.625rem;
}

.manufacture__pc-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.manufacture__pc-wrapper .manufacture-image {
  width: 50%;
  padding-top: 3.9583333333%;
}

.manufacture__pc-wrapper img {
  width: 100%;
  max-width: 50rem;
}

@media screen and (min-width: 768px) {
  .manufacture__text-wrapper {
    line-height: 2.25;
    padding: 1.25rem 2.5rem;
    margin-top: -5.5555555556%;
    width: 50%;
    background: rgba(255, 255, 255, 0.8);
  }
}

/*------------------------------------------------
   LOOK BOOK　（スライダー）
------------------------------------------------*/
.lookbook {
  background-color: #F4F4F4;
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .lookbook {
    padding-block: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .lookbook__inner {
    max-width: 67.5rem;
    padding-inline: 0;
  }
}

.lookbook-slider {
  margin-top: 2.5rem;
}

.lookbook-slider__container {
  position: relative;
  /*矢印の位置を決める為*/
}

.lookbook-slider__arrows {
  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;
  width: 100%;
  /*横幅いっぱいに広げる。これにより矢印が両サイドに表示される*/
  position: absolute;
  /*矢印の位置を決める為*/
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.lookbook-slide__arrows .splide__arrow {
  padding: 0;
}

.lookbook-slider__arrows button img {
  width: 1.875rem;
  height: 1.875rem;
}

/*カード表示エリア.lookbook-slider__listsの幅について
SP：画面幅375pxの時240px
PC：カード300pxが3枚、間の余白32pxが2箇所なので、カード3枚の横幅は964px　*/
/*.lookbook-slider__listsのPC表示の時のmax-widthがrrem(985)になる理由
影を表示させるために、.lookbook__item１枚に対してpaddingの左方向に7px(rrem(7))ずつ 追加されました。
そのため.lookbook-slider__lists全体の大きさも、その分大きくしないと.lookbook__item1枚の大きさが7px小さくなってしまいます。
なので「964 + 7 + 7 + 7」で.lookbook-slider__listsのPC表示の全体の大きさを985としています。*/
/* %という値は親要素を基準として算出される相対値です。
今回の場合lookbook-slider__lists を包括している要素にはinner があります。
innerには左右のpaddingに$padding-sp（20pxが代入されている）が指定されています。
そのためデザイン比率を保って、lookbook-slider__lists の横幅を算出するためには
SPデザイン時の220pxという幅を375pxから20px＋20pxを引いて、出た値に100%を掛けることで算出できます。*/
.lookbook-slider__lists {
  margin-inline: auto;
  width: 65.671641791%;
  /*計算の根拠上記にあり*/
  min-width: 14.1875rem;
}
@media screen and (min-width: 768px) {
  .lookbook-slider__lists {
    width: 100%;
    max-width: 61.5625rem;
    /*rrem(985)になる理由上記にあり*/
  }
}

.lookbook__item {
  -webkit-filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.25));
  color: #333333;
  padding-right: 0.4375rem;
  padding-bottom: 0.4375rem;
}

/*----------------　PCの表示　----------------*/
.lookbook__items--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 65rem;
  width: 100%;
  gap: 2.0833333333%;
  margin-inline: auto;
}

.lookbook__item--pc {
  color: #333333;
}

/*----------------　ホバーしたらズームする動き　----------------*/
.lookbook__image {
  /*画像の縦横比設定は133行目に指定有り*/
  overflow: hidden;
  aspect-ratio: 1/1;
}

.lookbook__image img {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  /*allを入れるとスムーズじゃ無くなるのはなぜ？*/
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  /*無くても崩れないのでは？*/
}

.lookbook__image img:hover {
  /*@media (any-hover: hover)の記述をする意味は？*/
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

/*カードの下の説明部分*/
.lookbook__body {
  background-color: #FFFFFF;
  padding: 1.125rem 0 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .lookbook__body {
    padding: 1rem;
  }
}

.lookbook__body time {
  font-size: 0.875rem;
  line-height: 1.1428571429;
}

.lookbook__title {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

/*----------------　ONLINE STOREへのリンク　----------------*/
.lookbook__btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .lookbook__btn {
    font-size: 1.25rem;
    margin-top: 5rem;
  }
}

.lookbook__btn a {
  color: #333333;
  text-decoration: underline;
}

/*------------------------------------------------
　SHOP
------------------------------------------------*/
.shop__inner {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .shop__inner {
    padding-top: 9.375rem;
  }
}

.shop__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3333333333vw;
  margin-top: 25px;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .shop__image {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .shop__layout picture {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .shop__map-image {
    max-width: 32.5rem;
  }
}

.shop__map-link a {
  text-decoration: underline;
  color: #333333;
}

/*------------------------------------------------
　CONTACT
------------------------------------------------*/
.contact__inner {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-top: 9.375rem;
  }
}

.contact__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10.1333333333vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__icons {
    gap: 4.1666666667vw;
  }
}

.contact__icons img {
  width: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .contact__icons img {
    width: 3.75rem;
  }
}

/*------------------------------------------------
　フッター
------------------------------------------------*/
.footer {
  width: 100%;
  overflow: hidden;
}
.footer .footer-img {
  width: 100%;
  height: auto;
  display: block;
}

.section-footer {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .section-footer {
    margin-top: 11.25rem;
  }
}

.footer__ul {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6666666667vw;
  font-size: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__ul {
    font-size: 1rem;
  }
}

.footer__li {
  padding-right: 2.6666666667vw;
  border-right: 0.0625rem solid #FFF;
}

.footer__li:last-child {
  padding-right: 0;
  border-right: none;
}

.footer__li a {
  text-decoration: none;
  color: #FFFFFF;
}

.footer__inner {
  position: relative;
}

.footer__container {
  background-color: #333333;
  padding: 5px;
}

/*------------------------------------------------
　フローティングバナー
------------------------------------------------*/
.floating {
  position: fixed;
  bottom: 0;
  z-index: 10;
  /*spは下に固定*/
  width: 95%;
  /*カンプを見ながら調節*/
}
@media screen and (min-width: 768px) {
  .floating {
    width: 6.25rem;
    /*PCは右に固定*/
    bottom: 9.375rem;
    right: 0;
  }
}

.floating__link {
  text-align: center;
  height: 4.375rem;
  border-bottom: 10px solid #F4F4F4;
  background-color: #FFFFFF;
  border-radius: 0px 20px 0px 0px;
  color: #F4F4F4;
  font-size: 1.25rem;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
@media screen and (min-width: 768px) {
  .floating__link {
    position: relative;
    margin-left: auto;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    /*右から左だりへ並べる。縦書きの時*/
    color: #FFFFFF;
    border-bottom: none;
    border-right: 5px solid #B9A69E;
    background: linear-gradient(184.53deg, #FDAC61 0.6%, #C4491B 99.38%);
    -webkit-box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px 0px 0px 20px;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    letter-spacing: 0.2em;
    width: 6.25rem;
    height: 21rem;
    z-index: 10;
  }
}

.floating__link:hover {
  opacity: 1;
}

/*----------------　ボタンhover後の背景色　----------------*/
@media screen and (min-width: 768px) {
  .floating__link::before {
    background: linear-gradient(184.53deg, #A48F87 0.6%, #3F322E 99.38%);
    border-right: 5px solid #B9A69E;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    border-radius: 20px 0px 0px 20px;
    width: 6.25rem;
    height: 21rem;
    z-index: -1;
  }
}

/*疑似要素のメールアイコン*/
.floating__link span {
  position: relative;
  padding-left: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .floating__link span {
    padding-left: 0;
    padding-top: 3.5rem;
  }
}

.floating__link span::before {
  content: "";
  position: absolute;
  background-image: url(../images/mail-icon-brown.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.1875rem;
  height: 2.1875rem;
  top: 40%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .floating__link span::before {
    background-image: url(../images/mail-icon-white.svg);
    width: 3rem;
    height: 3rem;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/*ホバーした時の動き*/
@media screen and (min-width: 768px) {
  .floating__link:hover::before {
    opacity: 0;
  }
}

/*------------------------------------------------
　トップへ戻る
------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 2.5rem;
  right: 1.25rem;
  z-index: 99;
  -webkit-transition: -webkit-transform 0.3s 0s ease;
  transition: -webkit-transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease, -webkit-transform 0.3s 0s ease;
}
@media screen and (min-width: 768px) {
  .pagetop {
    bottom: 3.75rem;
  }
}

.pagetop__link {
  font-size: 10px;
  text-decoration: none;
  color: #333333;
  font-family: "Oswald", sans-serif;
}

.pagetop__link::after {
  content: "";
  position: absolute;
  height: 0;
  left: 50%;
  bottom: 6px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 20px solid #000;
  border-top: 0;
}

/*------------------------------------------------
　ローディング画面
------------------------------------------------*/
/*最初に読み込んだ時の指定*/
.opening {
  background: #FFFFFF;
  /*読み込みの最初は背景白*/
  position: fixed;
  /*固定*/
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  /*重なりは一番上になるように*/
}

/*オープニングのロゴ
　画面の真ん中に来るように*/
.opening__logo {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  /*最初は見えないように。時間差で出てくるようにjsで指定する*/
  z-index: 9999;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .opening__logo {
    width: 100%;
    max-width: 18.75rem;
  }
}

/*==================================
ふわっ 
===================================*/
.box { /*ずらして表示させる時の設定*/
  opacity: 0;
}

/*下から上に*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/*# sourceMappingURL=styles.css.map */