@charset "UTF-8";
/* ----------------------------------------
@import "base/reset";
---------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  margin: 0;
}

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

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

a {
  text-decoration: none;
  cursor: pointer;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

area {
  border: none;
  outline: none;
}

/* ----------------------------------------
【レイアウト】@import "base/layout";
---------------------------------------- */
/* インナー幅
------------------------------ */
.inner-l {
  max-width: 1260px;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  .inner-l {
    max-width: calc(1260px + 20px * 2);
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .inner-l {
    padding: 0 calc(40 / 750 * 100vw);
  }
}

.inner-m {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  .inner-m {
    max-width: calc(1000px + 20px * 2);
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .inner-m {
    padding: 0 calc(40 / 750 * 100vw);
  }
}

.inner-s {
  max-width: 830px;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  .inner-s {
    max-width: calc(830px + 20px * 2);
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .inner-s {
    padding: 0 calc(40 / 750 * 100vw);
  }
}

main {
  padding: 80.19px 0 0;
}

@media screen and (max-width: 1024px) {
  main {
    padding: calc(100 / 750 * 100vw) 0 0;
  }
}

/* 表示・非表示切り替え
------------------------------ */
@media (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  .sptb-only {
    display: block !important;
  }
  .sp-only_inline {
    display: inline-block !important;
  }
  .sptb-hidden {
    display: none !important;
  }
  .tbpc-hidden {
    display: block !important;
  }
  .sp-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .tb-none {
    display: none !important;
  }
  .tb-only {
    display: block !important;
  }
  .tb-only_inline {
    display: inline-block !important;
  }
  .sp-only {
    display: none !important;
  }
  .sptb-only {
    display: block !important;
  }
  .sp-only_inline {
    display: none !important;
  }
  .sptb-hidden {
    display: none !important;
  }
  .tbpc-hidden {
    display: none !important;
  }
  .sp-hidden {
    display: block !important;
  }
}

@media (min-width: 1025px) {
  .pc-none {
    display: none !important;
  }
  .pc-only {
    display: block !important;
  }
  .sptb-only {
    display: none !important;
  }
  .pc-only_inline {
    display: inline-block !important;
  }
  .sp-only {
    display: none !important;
  }
  .sp-only_inline {
    display: none !important;
  }
  .sptb-hidden {
    display: block !important;
  }
  .tbpc-hidden {
    display: none !important;
  }
  .sp-hidden {
    display: block !important;
  }
}

/* ----------------------------------------
@import "base/typography";
---------------------------------------- */
@font-face {
  /*フォントの名前*/
  font-family: "mincho";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../fonts/HannariMincho-Regular.woff") format("woff"), url("../fonts/HannariMincho-Regular.otf") format("opentype"), url("../fonts/sawarabi-mincho-medium.woff") format("woff"), url("../fonts/sawarabi-mincho-medium.otf") format("opentype");
}

/* Typography
------------------------------ */
html {
  font-size: 62.5%;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.6667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
  font-size: 1.4rem;
  color: #4B4547;
  line-height: 2;
  /* IE対応（游書体は上にズレるため他書体を適応） */
}

@media screen and (max-width: 1024px) {
  body {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.76;
  }
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  }
}

/* PCでは電話番号クリック不可 */
@media screen and (min-width: 1025px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* マウスオーバー時 */
a:hover {
  opacity: .7;
}

/* ----------------------------------------
【アニメーション】@import "base/animate";
---------------------------------------- */
/* ----------------------------------------
【ヘッダー】@import "page/common/header";
---------------------------------------- */
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}

.header__logo {
  width: 200px;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    width: calc(243 / 750 * 100vw);
  }
}

.header__container {
  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;
  padding: 17px 0 14px;
}

@media screen and (max-width: 1024px) {
  .header__container {
    padding: calc(20 / 750 * 100vw) 0;
  }
}

@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item {
  font-size: 1.3rem;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  letter-spacing: .15em;
}

.header__nav-item:not(:first-child) {
  margin: 0 0 0 34px;
}

.header__nav-item-text {
  color: #221F20;
}

/* ドロワーメニュー
------------------------------ */
/* ハンバーガーボタン */
.hamburger {
  display: none;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    height: calc(40 / 750 * 100vw);
    position: absolute;
    right: calc(40 / 750 * 100vw);
    top: calc(30 / 750 * 100vw);
    width: calc(66 / 750 * 100vw);
    z-index: 99;
  }
}

.hamburger:hover {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}

.hamburger__line {
  display: block;
  height: calc(5 / 750 * 100vw);
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .hamburger__line--top {
    background: #EC1E29;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
}

.hamburger__line--top.active {
  -webkit-transform: rotate(-15deg) skewX(-15deg) translateY(3px);
          transform: rotate(-15deg) skewX(-15deg) translateY(3px);
}

@media screen and (max-width: 1024px) {
  .hamburger__line--bottom {
    background: #221F20;
    top: calc(13 / 750 * 100vw);
  }
}

.hamburger__line--bottom.active {
  bottom: 10px;
  opacity: 0;
}

.hamburger__line.on {
  background: #fff;
}

.hamburger__name {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #221F20;
  font-size: calc(13 / 750 * 100vw);
  font-family: "Lato", sans-serif;
  line-height: 1;
  text-align: center;
}

.hamburger__name--menu {
  display: block;
}

.hamburger__name--menu.active {
  display: none;
}

.hamburger__name--close {
  display: none;
}

.hamburger__name--close.active {
  display: block;
}

/* グローバルナビゲーション */
.gnav {
  position: fixed;
  z-index: 98;
  top: 0;
  display: none;
  height: 100%;
  width: 100%;
  background-color: #fff;
}

.gnav__wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  width: 100%;
}

.gnav__menu {
  position: absolute;
  width: 100%;
  text-align: center;
}

.gnav__menu-item {
  text-align: center;
  line-height: 1;
}

.gnav__menu-item:not(:last-child) {
  margin-bottom: 10vh;
}

@media screen and (max-width: 1024px) {
  .gnav__menu-item:not(:last-child) {
    margin-bottom: calc(147 / 750 * 100vw);
  }
}

.gnav__menu-item a {
  color: #221F20;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  white-space: nowrap;
  font-size: 3rem;
}

@media screen and (max-width: 1024px) {
  .gnav__menu-item a {
    font-size: calc(30 / 750 * 100vw);
  }
}

.gnav__menu-item.btn-designed01--header a {
  color: #EC1E29;
}

.gnav__menu-item a:hover {
  opacity: .6;
}

/* ----------------------------------------
【フッター】@import "page/common/footer";
---------------------------------------- */
.footer {
  position: relative;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 63px 0 42px;
}

@media screen and (max-width: 1024px) {
  .footer__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: calc(63 / 750 * 100vw) 0 0;
  }
}

.footer__left {
  width: 34%;
  padding-top: 26.3px;
  border-right: 1px solid #221F20;
}

@media screen and (max-width: 1024px) {
  .footer__left {
    width: 100%;
    padding: 0;
    border-right: none;
  }
}

.footer__left-wrapper {
  width: 71%;
}

@media screen and (max-width: 1024px) {
  .footer__left-wrapper {
    width: 100%;
  }
}

.footer__logo {
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .footer__logo img {
    width: calc(403 / 750 * 100vw);
    margin: 0 auto;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15.3px 0 0;
}

@media screen and (max-width: 1024px) {
  .footer__sns {
    margin: calc(40 / 750 * 100vw) 0 0;
  }
}

.footer__sns-btn {
  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;
  width: 45px;
  height: 45px;
  background-color: #F0F0F0;
  border-radius: 50%;
}

@media screen and (max-width: 1024px) {
  .footer__sns-btn {
    width: calc(98 / 750 * 100vw);
    height: calc(98 / 750 * 100vw);
  }
}

.footer__sns-btn:not(:first-of-type) {
  margin: 0 0 0 10px;
}

@media screen and (max-width: 1024px) {
  .footer__sns-btn:not(:first-of-type) {
    margin: 0 0 0 calc(40 / 750 * 100vw);
  }
}

@media screen and (max-width: 1024px) {
  .footer__sns-btn img {
    width: calc(35 / 750 * 100vw);
    height: calc(35 / 750 * 100vw);
  }
}

.footer__right {
  width: 66%;
  padding: 0 0 0 17%;
}

@media screen and (max-width: 1024px) {
  .footer__right {
    width: 100%;
    padding: 0;
  }
}

.footer__right-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .footer__right-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: calc(58 / 750 * 100vw) 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .footer__menu-left {
    width: 100%;
  }
}

.footer__menu-left .footer__menu-item:not(.footer__menu-item--head) {
  content: "";
  position: relative;
  padding-left: 1em;
}

.footer__menu-left .footer__menu-item:not(.footer__menu-item--head):before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 11px;
  margin-left: -1em;
  background-image: url("../img/icon_arrow-right_pc.svg");
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .footer__menu-left .footer__menu-item:not(.footer__menu-item--head):before {
    width: calc(6 / 750 * 100vw);
    height: calc(18 / 750 * 100vw);
    background-image: url("../img/icon_arrow-right_sp.svg");
    background-repeat: no-repeat;
  }
}

.footer__menu-item:not(.footer__menu-item--head) {
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .footer__menu-item:not(.footer__menu-item--head) {
    margin-top: calc(20 / 750 * 100vw);
  }
}

.footer__menu-item a {
  color: #4B4547;
}

.footer__menu-right {
  margin-left: 23%;
}

@media screen and (max-width: 1024px) {
  .footer__menu-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: calc(30 / 750 * 100vw) calc(50% - 50vw) 0;
    width: 100vw;
  }
}

@media screen and (max-width: 1024px) {
  .footer__menu-right .footer__menu-item {
    width: 50%;
    margin: 0;
    padding: calc(30 / 750 * 100vw) 0;
    text-align: center;
  }
  .footer__menu-right .footer__menu-item:nth-child(1) {
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
  }
  .footer__menu-right .footer__menu-item:nth-child(2) {
    border-top: 1px solid #707070;
  }
  .footer__menu-right .footer__menu-item:nth-child(3) {
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    border-bottom: 1px solid #707070;
  }
  .footer__menu-right .footer__menu-item:nth-child(4) {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
  }
}

.footer__copyright {
  padding: 30px 0;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .footer__copyright {
    padding: calc(35 / 750 * 100vw) 0;
  }
}

.footer__copyright-text {
  font-size: 1.2rem;
  color: #221F20;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .footer__copyright-text {
    font-size: calc(22 / 750 * 100vw);
  }
}

/* ----------------------------------------
【パーツ】@import "page/common/parts";
---------------------------------------- */
/* 上下カッコボタン
------------------------------ */
.btn-designed01 {
  position: relative;
  display: inline-block;
  padding: 13px 30px;
  font-size: 1.3rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif, sans-serif;
  color: #EC1E29;
  line-height: 1;
  border: 2px solid #EC1E29;
  border-radius: 50px;
  text-align: center;
}

@media all and (-ms-high-contrast: none) {
  .btn-designed01 {
    padding: 11px 30px 15px;
  }
}

@supports (-ms-ime-align: auto) {
  .btn-designed01 {
    padding: 11px 30px 15px;
  }
}

@media screen and (max-width: 1024px) {
  .btn-designed01 {
    padding: calc(26 / 750 * 100vw) calc(60 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
    border: calc(4 / 750 * 100vw) solid #EC1E29;
  }
  @supports (-ms-ime-align: auto) {
    .btn-designed01 {
      padding: calc(22 / 750 * 100vw) calc(60 / 750 * 100vw) calc(30 / 750 * 100vw);
    }
  }
}

.btn-designed01--header {
  padding: 13px 22px;
}

@media all and (-ms-high-contrast: none) {
  .btn-designed01--header {
    padding: 11px 22px 15px;
  }
}

@supports (-ms-ime-align: auto) {
  .btn-designed01--header {
    padding: 11px 22px 15px;
  }
}

@media screen and (max-width: 1024px) {
  .btn-designed01--header {
    padding: calc(26 / 750 * 100vw) calc(55 / 750 * 100vw);
  }
  @supports (-ms-ime-align: auto) {
    .btn-designed01--header {
      padding: calc(22 / 750 * 100vw) calc(55 / 750 * 100vw) calc(30 / 750 * 100vw);
    }
  }
}

@media screen and (max-width: 1024px) {
  .btn-designed01--side-short {
    padding: calc(26 / 750 * 100vw) calc(50 / 750 * 100vw);
  }
  @supports (-ms-ime-align: auto) {
    .btn-designed01--side-short {
      padding: calc(22 / 750 * 100vw) calc(50 / 750 * 100vw) calc(30 / 750 * 100vw);
    }
  }
}

.btn-designed01--side-long {
  padding: 13px 50px;
}

@media all and (-ms-high-contrast: none) {
  .btn-designed01--side-long {
    padding: 11px 50px 15px;
  }
}

@supports (-ms-ime-align: auto) {
  .btn-designed01--side-long {
    padding: 11px 50px 15px;
  }
}

@media screen and (max-width: 1024px) {
  .btn-designed01--side-long {
    padding: calc(26 / 750 * 100vw) calc(50 / 750 * 100vw);
  }
  @supports (-ms-ime-align: auto) {
    .btn-designed01--side-long {
      padding: calc(22 / 750 * 100vw) calc(50 / 750 * 100vw) calc(30 / 750 * 100vw);
    }
  }
}

.btn-designed01:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .btn-designed01:before {
    left: calc(-12 / 750 * 100vw);
    width: calc(20 / 750 * 100vw);
    height: calc(17 / 750 * 100vw);
  }
}

.btn-designed01:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .btn-designed01:after {
    right: calc(-12 / 750 * 100vw);
    width: calc(20 / 750 * 100vw);
    height: calc(17 / 750 * 100vw);
  }
}

/* トップページ固定スクロールインジケーター
------------------------------ */
.Quick-navigation {
  position: fixed;
  z-index: 1;
  margin: 0;
  bottom: 0;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 124px;
  background-color: #221F20;
}

@media screen and (max-width: 1024px) {
  .Quick-navigation {
    display: none;
  }
}

.Quick-navigation-wrapper {
  position: relative;
  height: 100%;
}

.Quick-navigation-wrapper:before {
  position: relative;
  content: "SCROLL";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: block;
  top: -50%;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  letter-spacing: .15em;
}

.Quick-navigation-item {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 7px;
  height: 7px;
  background-color: transparent;
}

.Quick-navigation-item:nth-child(1) {
  top: 0;
}

.Quick-navigation-item:nth-child(2) {
  top: 33%;
}

.Quick-navigation-item:nth-child(3) {
  top: 67%;
}

.Quick-navigation-item:nth-child(4) {
  top: 100%;
}

.Quick-navigation-item:hover,
.Quick-navigation-item.current {
  background-color: #221F20;
}

/* 見出し01
------------------------------ */
.heading01 {
  display: block;
  text-align: center;
  line-height: 1;
}

.heading01--left {
  display: inline-block;
  text-align: left;
}

.heading01__title {
  display: inline-block;
  font-size: 3.2rem;
  font-family: "Lato", sans-serif;
  letter-spacing: .3em;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .heading01__title {
    font-size: calc(51 / 750 * 100vw);
  }
}

.heading__deco-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 55px;
  margin: 20px auto 0;
}

@media screen and (max-width: 1024px) {
  .heading__deco-bars {
    width: calc(100 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) auto 0;
  }
}

.heading__deco-bars--left {
  margin: 20px auto 0 0;
}

@media screen and (max-width: 1024px) {
  .heading__deco-bars--left {
    margin: calc(25 / 750 * 100vw) auto 0 0;
  }
}

.heading__deco-bar {
  width: 25px;
  height: 1px;
}

@media screen and (max-width: 1024px) {
  .heading__deco-bar {
    width: calc(45 / 750 * 100vw);
  }
}

.heading__deco-bar--left {
  background-color: #EC1E29;
}

.heading__deco-bar--right {
  background-color: #221F20;
}

.heading__sub-title {
  margin: 25px 0 0;
  font-family: "mincho", serif;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .heading__sub-title {
    margin: calc(25 / 750 * 100vw) 0 0;
  }
}

#pagetop {
  display: inline-block;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.pagetop {
  width: 89px;
}

@media screen and (max-width: 1024px) {
  .pagetop {
    width: calc(110 / 750 * 100vw);
  }
}

.pagetop__img {
  text-align: center;
}

.pagetop__arrow {
  display: block;
  margin: 0 auto;
}

.lower-mv {
  position: relative;
  height: 380px;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .lower-mv {
    height: calc(208 / 750 * 100vw);
  }
}

.lower-mv--01 {
  background-image: url(../img/mv01.jpg);
	background-position: center;
}

.lower-mv--02 {
  background-image: url(../img/mv02.jpg);
	background-position: center bottom;
}

.lower-mv__box {
  position: absolute;
  top: 309px;
  left: 0;
  width: 507px;
  padding: 46px 0 20px 85px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .lower-mv__box {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: calc(92 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}

.lower-mv__title {
  position: relative;
  font-size: 2.4rem;
  letter-spacing: .15em;
  line-height: 1.5;
  font-family: "mincho", serif;
}

@media screen and (max-width: 1024px) {
  .lower-mv__title {
    font-size: calc(43 / 750 * 100vw);
  }
}

.lower-mv__title::before {
  content: "";
  position: absolute;
  top: -16px;
  width: 25px;
  height: 1px;
  background-color: #EC1E29;
}

@media screen and (max-width: 1024px) {
  .lower-mv__title::before {
    top: calc(-20 / 750 * 100vw);
    width: calc(68 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
  }
}

.lower-mv__breadcrumb-container {
  margin-top: 30px;
  font-size: 1rem;
}

@media screen and (max-width: 1024px) {
  .lower-mv__breadcrumb-container {
    margin-top: calc(15 / 750 * 100vw);
    font-size: calc(18 / 750 * 100vw);
  }
}

.lower-mv__breadcrumb-link {
  color: #221F20;
  text-decoration: underline;
}

.lower-mv__breadcrumb-item {
  letter-spacing: .15em;
  color: #221F20;
  line-height: 1.5;
}

.lower-mv__breadcrumb-item:not(:first-child) {
  margin-left: 15px;
}

@media screen and (max-width: 1024px) {
  .lower-mv__breadcrumb-item:not(:first-child) {
    margin-left: calc(20 / 750 * 100vw);
  }
}

.see-more-text {
  position: relative;
  padding-right: 60px;
  font-size: 1.3rem;
  text-align: right;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .see-more-text {
    padding-right: calc(85 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
  }
}

.see-more-text:before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 7px;
  width: 30px;
  height: 1px;
  background-color: #221F20;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.see-more-text:before:hover {
  right: 2px;
}

@media screen and (max-width: 1024px) {
  .see-more-text:before {
    right: calc(16 / 750 * 100vw);
    width: calc(57 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
    bottom: calc(8 / 750 * 100vw);
  }
}

.see-more-text:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 0;
  height: 0;
  border-left: 7px solid #221F20;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media screen and (max-width: 1024px) {
  .see-more-text:after {
    right: calc(5 / 750 * 100vw);
    bottom: calc(0 / 750 * 100vw);
    border-left: calc(14 / 750 * 100vw) solid #221F20;
    border-top: calc(9 / 750 * 100vw) solid transparent;
    border-bottom: calc(9 / 750 * 100vw) solid transparent;
  }
}

@media screen and (min-width: 1025px) {
  a:hover .see-more-text:before {
    right: 2px;
  }
  a:hover .see-more-text:after {
    right: -5px;
  }
}

/* 表組み
------------------------------ */
.table-layout dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.table-layout dt {
  width: 17%;
  padding: 26px 0 16px;
  font-size: 1.4rem;
  font-family: "mincho", serif;
  line-height: 1.76;
  letter-spacing: .15em;
  border-bottom: 1px solid #707070;
}

@media all and (-ms-high-contrast: none) {
  .table-layout dt {
    padding: 21px 0 25px;
  }
}

@supports (-ms-ime-align: auto) {
  .table-layout dt {
    padding: 21px 0 25px;
  }
}

@media screen and (max-width: 1024px) {
  .table-layout dt {
    width: calc(150 / 750 * 100vw);
    padding: calc(54 / 750 * 100vw) 0 calc(30 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
    border-bottom: calc(4 / 750 * 100vw) solid #707070;
  }
  @supports (-ms-ime-align: auto) {
    .table-layout dt {
      padding: calc(50 / 750 * 100vw) 0 calc(34 / 750 * 100vw);
    }
  }
}

.table-layout dd {
  width: 78%;
  padding: 26px 0 20px;
  font-size: 1.2rem;
  border-bottom: 1px solid #C3C3C3;
}

@media screen and (max-width: 1024px) {
  .table-layout dd {
    width: calc(496 / 750 * 100vw);
    padding: calc(54 / 750 * 100vw) 0 calc(30 / 750 * 100vw);
    font-size: calc(22 / 750 * 100vw);
    line-height: 2;
    border-bottom: calc(2 / 750 * 100vw) solid #C3C3C3;
  }
}

/* フォーム
------------------------------ */
/* ラベル */
.label {
  padding: 2px 8px;
  color: #fff;
  line-height: 1;
  font-size: 1rem;
  border-radius: 2px;
}

@media screen and (max-width: 1024px) {
  .label {
    padding: calc(4 / 750 * 100vw) calc(16 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}

.label--required {
  background-color: #EC1E29;
  margin: 0 0 0 15px;
}

/* 区切り線
------------------------------ */
.devide {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #C3C3C3;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* ----------------------------------------
【トップ｜メインビジュアル 】@import "page/top/mv";
---------------------------------------- */
.mv__container {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 80px;
}

@media screen and (max-width: 767px) {
  .mv__container {
    padding: 0 calc(40 / 750 * 100vw);
  }
}

.mv__catchcopy {
  position: absolute;
  top: 11.3%;
  left: calc(6.25% + 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 11.71%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .mv__catchcopy {
    top: calc(47 / 750 * 100vw);
    left: calc(76 / 750 * 100vw);
    width: auto;
  }
}

.mv__catchcopy img {
  width: 43.75%;
}

@media screen and (max-width: 767px) {
  .mv__catchcopy img {
    width: calc(88 / 750 * 100vw);
  }
}

.mv__catchcopy .catchcopy01 {
  margin: 0 0 0 20px;
}

@media screen and (max-width: 767px) {
  .mv__catchcopy .catchcopy01 {
    margin: 0 0 0 calc(25 / 750 * 100vw);
  }
}

/* MV四隅カット
------------------------------ */
.mv__slider {
  position: relative;
  background: transparent;
}

.mv__slider:before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #fff;
  border-right: 25px solid #fff;
  z-index: 1;
}

.mv__slider:after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 25px solid transparent;
  border-left: 25px solid #fff;
  border-right: 25px solid #fff;
}

/* スライドインジケーター
------------------------------ */
.mv__slider .slick-dots {
  bottom: 2.6%;
  right: 5.3%;
  display: inline-block !important;
  width: auto;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .mv__slider .slick-dots {
    bottom: 4%;
    right: 8%;
  }
}

@media screen and (max-width: 767px) {
  .mv__slider .slick-dots {
    bottom: calc(44 / 750 * 100vw);
    right: calc(77 / 750 * 100vw);
    width: calc(100 / 750 * 100vw);
  }
}

.mv__slider .slick-dots:before {
  content: "01";
  position: absolute;
  bottom: -5px;
  left: -1.5em;
  font-family: "Lato", sans-serif;
  line-height: 1;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .mv__slider .slick-dots:before {
    bottom: calc(-8 / 750 * 100vw);
    left: calc(-31.5 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}

.mv__slider .slick-dots:after {
  content: "04";
  position: absolute;
  bottom: -5px;
  right: -1.5em;
  font-family: "Lato", sans-serif;
  line-height: 1;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .mv__slider .slick-dots:after {
    bottom: calc(-8 / 750 * 100vw);
    right: calc(-31.5 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}

.mv__slider .slick-dots li {
  width: 25px;
  height: 1px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .mv__slider .slick-dots li {
    width: calc(25 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
  }
}

.mv__slider .slick-dots li button {
  width: 25px;
  height: 1px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .mv__slider .slick-dots li button {
    width: calc(25 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
  }
}

.mv__slider .slick-dots li button:before {
  content: "";
  background-color: #221F20;
  opacity: 1;
  width: 25px;
  height: 1px;
}

@media screen and (max-width: 767px) {
  .mv__slider .slick-dots li button:before {
    width: calc(25 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
  }
}

.mv__slider .slick-dots li.slick-active button:before {
  background-color: #EC1E29;
  opacity: 1;
}

.mv__slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .mv__slider .slick-slide {
    height: 90vh;
  }
}

@media screen and (max-width: 767px) {
  .mv__slider .slick-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    width: auto;
    height: 100%;
  }
}

/* ----------------------------------------
【トップ｜PRODUCT 】@import "page/top/product";
---------------------------------------- */
.top-product {
  padding: 70px 0 100px;
}

@media screen and (max-width: 1024px) {
  .top-product {
    padding: calc(100 / 750 * 100vw) 0 0;
  }
}

.top-product__container {
  position: relative;
  margin: 62px 0 0;
}

@media screen and (max-width: 1024px) {
  .top-product__container {
    margin: calc(65 / 750 * 100vw) 0 0;
  }
}

.top-product__container::before {
  content: "";
  position: absolute;
  top: 24%;
  left: 50%;
  margin-left: -355px;
  width: 709px;
  height: 475px;
  background-image: url(../img/bg_top_product.png);
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .top-product__container::before {
    display: none;
  }
}

.top-product__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .top-product__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-product__item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .top-product__item:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-product__item:nth-child(odd) .top-product__body {
  margin: 0 0 0 95px;
}

@media screen and (max-width: 1024px) {
  .top-product__item:nth-child(odd) .top-product__body {
    margin: 0;
  }
}

.top-product__body {
  width: calc(500px - 95px);
  margin: 0 95px 0 0;
  padding: 4.56% 0 0;
}

@media screen and (max-width: 1024px) {
  .top-product__body {
    width: 100%;
    padding: calc(70 / 750 * 100vw) calc(40 / 750 * 100vw) calc(80 / 750 * 100vw);
    text-align: center;
  }
}

.top-product__body .btn-designed01 {
  margin: 15% 0 0;
}

@media screen and (max-width: 1024px) {
  .top-product__body .btn-designed01 {
    margin: calc(50 / 750 * 100vw) 0 0;
  }
}

.top-product__title {
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .top-product__title {
    font-size: calc(43 / 750 * 100vw);
    text-align: left;
  }
}

.top-product__description {
  margin: 5% 0 0;
}

@media screen and (max-width: 1024px) {
  .top-product__description {
    text-align: left;
    margin: calc(17 / 750 * 100vw) 0 0;
  }
}

.top-product__img {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .top-product__img {
    width: 100%;
  }
}

/* ----------------------------------------
【トップ｜NEWS 】@import "page/top/news";
---------------------------------------- */
@media screen and (max-width: 1024px) {
  .top-news {
    margin: 0 0 calc(100 / 750 * 100vw) 0;
  }
}

.top-news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: calc((100vw - 1000px) / 2);
  background-color: #F0F0F0;
  padding: 80px;
}

@media screen and (max-width: 1024px) {
  .top-news__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: calc(40 / 750 * 100vw);
    padding: calc(100 / 750 * 100vw) calc(40 / 750 * 100vw) calc(100 / 750 * 100vw) calc(60 / 750 * 100vw);
  }
}

.top-news__list {
  max-width: 696px;
  width: 100%;
  margin-left: 100px;
  padding: 50px 0 0;
}

@media screen and (max-width: 1024px) {
  .top-news__list {
    margin-left: 0;
    padding: calc(26 / 750 * 100vw) 0 0;
  }
}

.top-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 23px 0;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 1024px) {
  .top-news__item {
    display: block;
    padding: calc(26 / 750 * 100vw) 0;
    border-bottom: calc(2 / 750 * 100vw) solid #fff;
  }
}

.top-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #4B4547;
}

@media screen and (max-width: 1024px) {
  .top-news__link {
    display: block;
  }
}

.top-news__date {
  font-family: "Lato", sans-serif;
  letter-spacing: .05em;
}

.top-news__title {
  margin-left: 40px;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .top-news__title {
    margin: calc(10 / 750 * 100vw) 0 0;
    font-size: calc(26 / 750 * 100vw);
  }
}

/* ----------------------------------------
【トップ｜ABOUT US 】@import "page/top/about";
---------------------------------------- */
.top-about {
  padding: 80px 0 90px;
  background-image: url(../img/bg_top_about.jpg);
  background-size: cover;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .top-about {
    padding: calc(100 / 750 * 100vw) 0 calc(117 / 750 * 100vw);
    background-image: url(../img/bg_top_about_sp.jpg);
  }
}

.top-about__container {
  max-width: 864px;
  margin: 55px auto 0;
}

@media screen and (max-width: 1024px) {
  .top-about__container {
    max-width: calc(864px + calc(40 / 750 * 100vw) * 2);
    margin: calc(67 / 750 * 100vw) auto 0;
    padding: 0 calc(40 / 750 * 100vw);
  }
}

/* ----------------------------------------  
2025/6/27 ABOUTUS部分の表示崩れ解消のためコメントアウト
.top-about__text:not(:first-of-type) {
  margin-top: 2em;
}
---------------------------------------- */

/* ----------------------------------------
【ブランド（カテゴリ）】@import "page/brand/product-list";
---------------------------------------- */
.product-list {
  padding: 73px 0 36px;
}

@media screen and (max-width: 1024px) {
  .product-list {
    padding: 0;
  }
}

.product-list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 48px 0 0;
}

@media screen and (max-width: 1024px) {
  .product-list__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: calc(62 / 750 * 100vw) 0 0;
  }
}

.product-list__item {
  width: calc(33.3% - 1px * 2 / 3);
}

@media screen and (max-width: 1024px) {
  .product-list__item {
    width: 47.8%;
  }
}

@media screen and (min-width: 1025px) {
  .product-list__item:not(:nth-child(3n + 1)) {
    margin-left: 1px;
  }
}

.product-list__body {
  padding: 16px 10px 46px;
  color: #221F20;
}

@media screen and (max-width: 1024px) {
  .product-list__body {
    padding: calc(27 / 750 * 100vw) 0 calc(100 / 750 * 100vw);
  }
}

.product-list__title {
  font-size: 1.8rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 1024px) {
  .product-list__title {
    font-size: calc(30 / 750 * 100vw);
    line-height: 1.2;
  }
}

.product-list__description {
  margin: 10px 0 0;
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .product-list__description {
    margin: calc(12 / 750 * 100vw) 0 0;
    font-size: calc(22 / 750 * 100vw);
    line-height: 2;
  }
}

.product-list__see-more {
  margin: 28px 0 0;
}

@media screen and (max-width: 1024px) {
  .product-list__see-more {
    margin: calc(17 / 750 * 100vw) 0 0;
  }
}

/* ----------------------------------------
【ブランド（カテゴリ）】@import "page/brand/banner";
---------------------------------------- */
.banner {
  padding: 60px 0;
  background-color: #F0F0F0;
}

@media screen and (max-width: 1024px) {
  .banner {
    padding: calc(80 / 750 * 100vw) 0;
  }
}

.banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .banner__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.banner__img {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .banner__img {
    width: 100%;
  }
}

.banner__body {
  position: relative;
  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;
  width: 50%;
  padding: 24px 26px;
  background-color: #fff;
  color: #221F20;
}

@media screen and (max-width: 1024px) {
  .banner__body {
    display: block;
    width: 100%;
    padding: calc(68 / 750 * 100vw) calc(40 / 750 * 100vw) calc(52 / 750 * 100vw);
  }
}

.banner__description {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .banner__description {
    font-size: calc(32 / 750 * 100vw);
    line-height: 1.2;
  }
}

.banner__see-more {
  position: absolute;
  bottom: 24px;
  right: 26px;
}

@media screen and (max-width: 1024px) {
  .banner__see-more {
    position: relative;
    bottom: auto;
    right: auto;
    height: calc(24 / 750 * 100vw);
    margin: calc(30 / 750 * 100vw) 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .banner__see-more .see-more-text {
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

/* ----------------------------------------
【商品詳細】@import "page/brand/detail/buy";
---------------------------------------- */
.buy {
  padding: 80px 0 0;
}

@media screen and (max-width: 1024px) {
  .buy {
    padding: 0;
  }
}

.buy__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .buy__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.buy__img {
  width: 58%;
}

@media screen and (max-width: 1024px) {
  .buy__img {
    width: 100%;
  }
}

.buy__body {
  width: 42%;
  padding: 67px 0 70px 90px;
  font-family: "mincho", serif;
}

@media screen and (max-width: 1024px) {
  .buy__body {
    width: 100%;
    padding: calc(57 / 750 * 100vw) 0 calc(100 / 750 * 100vw);
  }
}

.buy__lead {
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 1024px) {
  .buy__lead {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.7;
  }
}

.buy__title {
  margin: 36px 0 0;
  font-size: 2.4rem;
  letter-spacing: .15em;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .buy__title {
    margin: calc(36 / 750 * 100vw) 0 0;
    font-size: calc(43 / 750 * 100vw);
  }
}

.buy__price {
  margin: 32px 0 0;
  font-size: 1.8rem;
  letter-spacing: .15em;
  line-height: 1.7;
}

@media screen and (max-width: 1024px) {
  .buy__price {
    margin: calc(36 / 750 * 100vw) 0 0;
    font-size: calc(28 / 750 * 100vw);
  }
}

.buy__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 50px 0 0;
}

@media screen and (max-width: 1024px) {
  .buy__cta {
    margin: calc(50 / 750 * 100vw) 0 0;
  }
}

.buy__cta .btn-designed01 {
  width: 48%;
}

/* ----------------------------------------
【商品詳細】@import "page/brand/detail/feature";
---------------------------------------- */
.feature {
  padding: 100px 0 0;
}

@media screen and (max-width: 1024px) {
  .feature {
    padding: 0;
  }
}

.feature__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .feature__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.feature__item:not(:first-child) {
  margin: 120px 0 0;
}

@media screen and (max-width: 1024px) {
  .feature__item:not(:first-child) {
    margin: 0;
  }
}

.feature__item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .feature__item:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.feature__item:nth-child(odd):before {
  left: -183px;
}

@media screen and (max-width: 1365px) {
  .feature__item:nth-child(odd):before {
    left: 0;
  }
}

.feature__item:nth-child(odd) .feature__body {
  padding: 0 0 45px 85px;
}

@media screen and (max-width: 1024px) {
  .feature__item:nth-child(odd) .feature__body {
    padding: calc(70 / 750 * 100vw) 0;
  }
}

@media screen and (max-width: 1024px) {
  .feature__item:nth-child(odd) .feature__img {
    margin: 0 calc(50% - 50vw);
    width: 83vw;
    margin-right: auto;
  }
}

@media screen and (max-width: 1024px) {
  .feature__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.feature__item:nth-child(even):before {
  right: -183px;
}

@media screen and (max-width: 1365px) {
  .feature__item:nth-child(even):before {
    right: 0;
  }
}

.feature__item:nth-child(even) .feature__body {
  padding: 0 85px 45px 0;
}

@media screen and (max-width: 1024px) {
  .feature__item:nth-child(even) .feature__body {
    padding: calc(70 / 750 * 100vw) 0;
  }
}

@media screen and (max-width: 1024px) {
  .feature__item:nth-child(even) .feature__img {
    margin: 0 calc(50% - 50vw);
    width: 83vw;
    margin-left: auto;
  }
}

.feature__item:before {
  content: "";
  position: absolute;
  top: 140px;
  z-index: -1;
  width: 640px;
  height: 224px;
  background-image: url(../img/bg_feature.png);
}

@media screen and (max-width: 1024px) {
  .feature__item:before {
    display: none;
  }
}

.feature__img {
  width: 40%;
}

.feature__body {
  width: 60%;
  font-family: "mincho", serif;
}

@media screen and (max-width: 1024px) {
  .feature__body {
    width: 100%;
  }
}

.feature__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: .15em;
}

@media screen and (max-width: 1024px) {
  .feature__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.feature__heading {
  display: inline-block;
  padding: 20px 36px 14px 0;
  border-right: 1px solid #707070;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .feature__heading {
    width: calc(120 / 750 * 100vw);
    padding: calc(18 / 750 * 100vw) calc(46 / 750 * 100vw) calc(18 / 750 * 100vw) calc(20 / 750 * 100vw);
    font-size: calc(22 / 750 * 100vw);
  }
}

.feature__name {
  display: block;
  line-height: 1;
}

.feature__number {
  display: block;
  margin: 10px 0 0 0;
  font-size: 2.2rem;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .feature__number {
    font-size: calc(40 / 750 * 100vw);
  }
}

.feature__heading-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 23px;
  font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .feature__heading-text {
    width: calc(537 / 750 * 100vw);
    padding-left: calc(40 / 750 * 100vw);
    font-size: calc(35 / 750 * 100vw);
  }
}

.feature__description {
  margin: 43.5px 0 0;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .feature__description {
    margin: calc(30 / 750 * 100vw) 0 0;
    font-size: calc(22 / 750 * 100vw);
  }
}

/* ----------------------------------------
【商品詳細】@import "page/brand/detail/component";
---------------------------------------- */
.component {
  margin: 120px 0 0;
  padding: 0 0 80px;
}

@media screen and (max-width: 1024px) {
  .component {
    margin: 0;
    padding: 0 0 calc(100 / 750 * 100vw);
  }
}

.component__container {
  padding: 26px 65px 60px;
  background-color: #F0F0F0;
}

@media screen and (max-width: 1024px) {
  .component__container {
    margin: 0 calc(50% - 50vw);
    padding: calc(40 / 750 * 100vw) calc(40 / 750 * 100vw) calc(100 / 750 * 100vw);
    width: 100vw;
  }
}

.component__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 364px;
  margin: 60px auto 0;
}

@media screen and (max-width: 1024px) {
  .component__cta {
    width: 100%;
    margin: calc(60 / 750 * 100vw) 0 0;
  }
}

/* ----------------------------------------
【商品詳細】@import "page/brand/detail/lineup";
---------------------------------------- */
/* .product-listと同じスタイルを使用 */
.lineup {
  position: relative;
  padding: 0 0 38px;
}

@media screen and (max-width: 1024px) {
  .lineup {
    padding: 0;
  }
}

.lineup:before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 365px;
  background-color: #F0F0F0;
}

@media screen and (max-width: 1024px) {
  .lineup:before {
    height: calc(704 / 750 * 100vw);
  }
}

.lineup__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .lineup__container {
    padding: calc(62 / 750 * 100vw) 0 0;
  }
}

.lineup__item {
  width: calc(33.3% - 1px * 2 / 3);
}

@media screen and (max-width: 1024px) {
  .lineup__item {
    width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  .lineup__item:not(:nth-child(3n + 1)) {
    margin-left: 1px;
  }
}

@media screen and (max-width: 1024px) {
  .lineup__item {
    margin-left: 0;
  }
}

.lineup__body {
  padding: 16px 10px 46px;
  color: #221F20;
}

@media screen and (max-width: 1024px) {
  .lineup__body {
    padding: calc(45 / 750 * 100vw) 0 calc(104 / 750 * 100vw);
  }
}

.lineup__title {
  font-size: 1.8rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 1024px) {
  .lineup__title {
    font-size: calc(35 / 750 * 100vw);
    line-height: 1.2;
  }
}

.lineup__description {
  margin: 10px 0 0;
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .lineup__description {
    margin: calc(18 / 750 * 100vw) 0 0;
    font-size: calc(22 / 750 * 100vw);
    line-height: 2;
  }
}

.lineup__see-more {
  margin: 28px 0 0;
}

@media screen and (max-width: 1024px) {
  .lineup__see-more {
    margin: calc(40 / 750 * 100vw) 0 0;
  }
}

.lineup .slide-arrow {
  position: absolute;
  top: 26%;
  z-index: 1;
  width: calc(48 / 750 * 100vw);
}

.lineup .next-arrow {
  right: calc(-24 / 750 * 100vw);
}

.lineup .prev-arrow {
  left: calc(-24 / 750 * 100vw);
}

/* ----------------------------------------
【会社概要】@import "page/company/outline";
---------------------------------------- */
.company {
  padding: 0 0 110px;
}

@media screen and (max-width: 1024px) {
  .company {
    padding: 0 0 calc(100 / 750 * 120vw);
  }
}

.company__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 70px 0 0;
}

@media screen and (max-width: 1024px) {
  .company__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.company__img {
  width: 32%;
}

@media screen and (max-width: 1024px) {
  .company__img {
    width: 100%;
  }
}

.company__outline {
  width: 59.5%;
  margin-left: 8.5%;
}

.company__outline > dl:first-of-type dt {
  padding: 5px 0 16px;
}

.company__outline > dl:first-of-type dd {
  padding: 7px 0 18px;
}

@media screen and (max-width: 1024px) {
  .company__outline {
    width: 100%;
    margin: 0 0 calc(76 / 750 * 100vw) 0;
  }
}


/* ----------------------------------------
【特定商取引法に基づく表示】@import "page/commerce/commerce-info";
---------------------------------------- */
.commerce {
  padding: 0 0 117px;
}

@media screen and (max-width: 1024px) {
  .commerce {
    padding: 0 0 calc(100 / 750 * 120vw);
  }
}

.commerce__container {
  margin: 70px 0 0;
}

@media screen and (max-width: 1024px) {
  .commerce__container {
    margin: 0;
  }
}

.commerce__container dd .card {
  padding-left: 20px;
}
.commerce__container dd .card img {
  display: inline-block;
  height: 20px;
  vertical-align: bottom;
}

@media screen and (max-width: 1024px) {
  .commerce__container dd .card {
    padding: 10px 0 0;
  }
  .commerce__container dd .card img {
    display: inline-block;
    height: 20px;
    vertical-align: bottom;
  }
  }

/* ----------------------------------------
【プライバシーポリシー｜プライバシーポリシー】@import "page/policy/privacy-policy";
---------------------------------------- */
.privacy-policy {
  padding: 100px 0 80px;
  font-size: 1.2rem;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .privacy-policy {
    padding: 0 0 calc(100 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
  }
}

.privacy-policy__lead {
  margin: 12px 0 18px;
}

@media screen and (max-width: 1024px) {
  .privacy-policy__lead {
    margin: calc(24 / 750 * 100vw) 0 calc(36 / 750 * 100vw);
  }
}

.privacy-policy__heading {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 5px;
}

@media screen and (max-width: 1024px) {
  .privacy-policy__heading {
    font-size: calc(24 / 750 * 100vw);
  }
}

.privacy-policy__info {
  margin: 24px 0 0;
  /* text-align: right; */
}

@media screen and (max-width: 1024px) {
  .privacy-policy__info {
    margin: calc(24 / 750 * 100vw) 0 0;
    font-size: calc(24 / 750 * 100vw);
  }
}

.privacy-policy__contact {
  margin: 24px 0 0;
  /* text-align: right; */
}

.privacy-policy ul, .privacy-policy li {
  padding-left: 1em;
  font-size: 1.2rem;
}

.privacy-policy li {
  text-indent: -1em;
  padding-left: 1em;
}

/* ----------------------------------------
【プライバシーポリシー｜個人情報の取扱いについて】@import "page/policy/handling";
---------------------------------------- */
.handling {
  padding: 100px 0 200px;
}

@media screen and (max-width: 1024px) {
  .handling {
    padding: calc(120 / 750 * 100vw) 0;
  }
}

.handling__heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .handling__heading {
    margin-top: calc(24 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
    line-height: 2;
  }
}

.handling__content {
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .handling__content {
    font-size: calc(24 / 750 * 100vw);
    line-height: 2;
  }
}

.handling .list {
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .handling .list {
    font-size: calc(24 / 750 * 100vw);
  }
}

.handling ul, .handling li {
  padding-left: 1em;
  font-size: 1.2rem;
}

.handling li {
  text-indent: 0;
}

.handling .note {
  margin-top: 40px;
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .handling .note {
    margin-top: calc(30 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
  }
}

.handling__contact, .handling__hou-to-get {
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .handling__contact, .handling__hou-to-get {
    margin-top: calc(50 / 750 * 100vw);
  }
}

/* ----------------------------------------
【お問い合わせ｜お問合せ（フォーム）】@import "page/contact/contact";
---------------------------------------- */
.contact {
  padding: 0 0 140px;
}

@media screen and (max-width: 1024px) {
  .contact {
    padding: 0 0 calc(100 / 750 * 100vw);
  }
}

.contact__lead {
		padding: 73px 0 53px;
}
.contact__lead02 {
	padding: 73px 0 15px;
}
.contact__lead02 + ul {
	margin-bottom: 40px;
}
.contact__lead02 + ul li {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 0.9em;
}

@media screen and (max-width: 1024px) {
	.contact__lead02 {
		padding: calc(50 / 750 * 100vw) 0 calc(50 / 750 * 100vw);
	}
	.contact__lead02 {
		padding: calc(50 / 750 * 100vw) 0 calc(10 / 750 * 100vw);
	}
	.contact__lead02 + ul {
		margin-bottom: calc(30 / 750 * 100vw);
	}
	}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
	align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .contact__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.contact__item:not(:first-child) {
  margin: 20px 0 0;
}

@media screen and (max-width: 1024px) {
  .contact__item:not(:first-child) {
    margin: calc(20 / 750 * 100vw) 0 0;
  }
}

.contact__heading {
  width: 235px;
  padding: 20px 0;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .contact__heading {
    width: 100%;
    margin: calc(20 / 750 * 100vw) 0 0;
    padding: calc(25 / 750 * 100vw) 0;
  }
}

.contact__answer {
  width: calc(100% - 235px);
}

@media screen and (max-width: 1024px) {
  .contact__answer {
    width: 100%;
  }
}

.contact__answer textarea {
  min-height: 118px;
}

@media screen and (max-width: 1024px) {
  .contact__answer textarea {
    min-height: calc(240 / 750 * 100vw);
  }
}

.contact__policy {
  padding: 60px 0;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .contact__policy {
    padding: calc(80 / 750 * 100vw) 0;
  }
}

.contact__policy-link {
  text-decoration: underline;
  color: #4B4547;
}

/* フォーム要素
------------------------------ */
input[type="text"], textarea {
  width: 100%;
  height: 100%;
}

select {
  height: 100%;
}

input, textarea, select {
  padding: 15px 20px;
  background-color: #F0F0F0;
  border: none;
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  input, textarea, select {
    padding: calc(30 / 750 * 100vw) calc(40 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
  }
}

label,
input[type="checkbox"],
select,
button {
  cursor: pointer;
}

.button {
  text-align: center;
}

.button button {
  background-color: transparent;
}

::-webkit-input-placeholder {
  color: #B9B9B9;
  font-size: 1.2rem;
}

:-ms-input-placeholder {
  color: #B9B9B9;
  font-size: 1.2rem;
}

::-ms-input-placeholder {
  color: #B9B9B9;
  font-size: 1.2rem;
}

::placeholder {
  color: #B9B9B9;
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  ::-webkit-input-placeholder {
    font-size: calc(24 / 750 * 100vw);
  }
  :-ms-input-placeholder {
    font-size: calc(24 / 750 * 100vw);
  }
  ::-ms-input-placeholder {
    font-size: calc(24 / 750 * 100vw);
  }
  ::placeholder {
    font-size: calc(24 / 750 * 100vw);
  }
}

/* 送信ボタン
------------------------------ */
button.btn-designed01[disabled] {
  color: #C3C3C3;
  border-color: #C3C3C3;
}

button.btn-designed01[disabled]:hover {
  cursor: auto;
  opacity: 1;
}

button.btn-designed01:hover {
  opacity: .7;
}

/* チェックボックスカスタマイズ
------------------------------ */
/* 元々のチェックボックス（非表示） */
input[type="checkbox"] {
  display: none;
}

/* チェックボックスの代わりを成すラベル */
input[type="checkbox"] + label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 18px;
  padding-right: 10px;
}

@media screen and (max-width: 1024px) {
  input[type="checkbox"] + label {
    padding-left: calc(36 / 750 * 100vw);
    padding-right: calc(20 / 750 * 100vw);
  }
}

@media screen and (max-width: 1024px) {
  input[type="checkbox"] + label:not(.checkbox-privacy) {
    display: inline-block;
    margin: 0 0 calc(20 / 750 * 100vw) 0;
  }
}

/* ラベルの左に表示させる正方形のボックス□ */
input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  left: 0;
  top: 50%;
  border: 1px solid;
  border-color: #707070;
  /* 枠の色 */
  border-radius: 2px;
  background-color: transparent;
  /* 背景の色 */
}

@media screen and (max-width: 1024px) {
  input[type="checkbox"] + label::before {
    width: calc(28 / 750 * 100vw);
    height: calc(28 / 750 * 100vw);
  }
}

/* チェックが入った時のレ点 */
input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 8px;
  height: 4px;
  margin-top: -3px;
  top: 50%;
  left: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-color: #EC1E29;
  /* チェックマークの色 */
}

@media screen and (max-width: 1024px) {
  input[type="checkbox"]:checked + label::after {
    left: calc(6 / 750 * 100vw);
    width: calc(16 / 750 * 100vw);
    height: calc(8 / 750 * 100vw);
    margin-top: calc(-4 / 750 * 100vw);
  }
}

/* プルダウンカスタマイズ
------------------------------ */
.select-custom {
  position: relative;
  display: inline-block;
  width: auto;
  margin-right: auto;
}

.contact__answer select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact__answer select::-ms-expand {
  display: none;
}

.contact__answer .select-custom::before {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #221F20;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .contact__answer .select-custom::before {
    right: calc(25 / 750 * 100vw);
    border-left: calc(10 / 750 * 100vw) solid transparent;
    border-right: calc(10 / 750 * 100vw) solid transparent;
    border-top: calc(14 / 750 * 100vw) solid #221F20;
  }
}

.contact__answer select {
  padding-right: 38px;
  color: black;
}

@media screen and (max-width: 1024px) {
  .contact__answer select {
    padding-right: calc(80 / 750 * 100vw);
  }
}

/* ----------------------------------------
【お問い合わせ｜お問い合わせ（確認）】@import "page/contact/confirm/confirm";
---------------------------------------- */
.contact-confirm {
  padding: 0 0 195px;
}

@media screen and (max-width: 1024px) {
  .contact-confirm {
    padding: 0 0 calc(100 / 750 * 120vw);
  }
}

.contact-confirm__lead {
  padding: 80px 0 30px;
}

@media screen and (max-width: 1024px) {
  .contact-confirm__lead {
    padding: calc(50 / 750 * 100vw) 0 calc(50 / 750 * 100vw);
  }
}

.contact-confirm .button {
  margin-top: 32px;
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .contact-confirm .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: calc(80 / 750 * 100vw);
  }
}

.contact-confirm .button button[type="submit"] {
  width: 178px;
}

@media screen and (max-width: 1024px) {
  .contact-confirm .button button[type="submit"] {
    width: calc(310 / 750 * 100vw);
    padding-left: 0;
    padding-right: 0;
  }
}

.contact-confirm .button button[type="submit"]:not(:first-child) {
  margin-left: 20px;
}

@media screen and (max-width: 1024px) {
  .contact-confirm .button button[type="submit"]:not(:first-child) {
    margin-left: 0;
  }
}

/* ----------------------------------------
【お問い合わせ｜お問い合わせ（完了）】@import "page/contact/thanks/thanks";
---------------------------------------- */
.contact-thanks {
  padding: 0 0 120px;
}

@media screen and (max-width: 1024px) {
  .contact-thanks {
    padding: 0 0 calc(100 / 750 * 100vw);
  }
}

.contact-thanks__lead {
  padding: 80px 0 60px;
}

@media screen and (max-width: 1024px) {
  .contact-thanks__lead {
    padding: calc(50 / 750 * 100vw) 0 calc(50 / 750 * 100vw);
  }
}

.contact-thanks__btn {
  text-align: center;
}

/* ----------------------------------------
【404エラー】@import "page/error404/error404";
---------------------------------------- */

.top-about__container {
  display: flex;
  flex-wrap: wrap;
}

.top-about__column {
  display: flex;
  width: 100%;
  align-items: center;
}

.top-about__image {
  flex: 1;
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.top-about__image img {
  width: 100%;
  height: auto;
  display: block;
}

.top-about__text {
  flex: 1;
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .top-about__column {
    flex-direction: column;
  }
  
  .top-about__image,
  .top-about__text {
    width: 100%;
  }
}

.top-calendar__container {
  display: flex;
  align-items: center; /* 垂直方向に中央揃え */
}

.top-calendar__column {
  display: flex; /* flexを追加 */
  width: 100%; /* 幅を100%に */
}

.top-calendar__image,
.top-calendar__text {
  width: 50%; /* それぞれ50%の幅に */
  padding: 15px; /* パディングを調整 */
  box-sizing: border-box;
  display: flex; /* flexを追加 */
  justify-content: center; /* 水平方向中央揃え */
  align-items: center; /* 垂直方向中央揃え */
}

.top-calendar__image img {
  width: 80%; /* 画像のサイズを80%に */
  height: auto;
  display: block;
  margin: 0 auto; /* 中央揃え */
}

.top-calendar__text {
  text-align: center; /* テキストを中央揃え */
  font-size: 1.75rem;
}

.top-calendar__text {
  text-align: center; /* テキストを中央揃え */
  font-size: 1.75rem;
}

.top-calendar__text a {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .top-calendar__column {
    flex-direction: column; /* モバイルでは縦並びに */
  }

  .top-calendar__image,
  .top-calendar__text {
    width: 100%; /* モバイルでは幅を100%に */
  }

  .top-calendar__image img {
    width: 100%; /* 画像のサイズを80%に */
  }

  .top-calendar__text {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }


}
