@charset "UTF-8";
/* ==========================================================================//
//
// Foundation
//
// ========================================================================== */
/*
* foundation/settings.css
*/
/*
// @desc - ブレイクポイントを管理するためのmapです。
// @type {Map}
// @prop {String} keys - ブレイクポイントのキーワードです。
// @prop {String} values - メディアクエリの条件です。
*/
/* ボタンコンポーネントなどの角丸に使用します。 */
/*
* foundation/base.css
*/
/**
 * ボックスモデルを`border-box`にリセットします。
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  height: 100%;
  font-size: 62.5%;
  /* iOSとAndroidでのリンクをタップ時のハイライトをリセットする。 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  min-width: 1000px;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  color: #231815;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 16px;
  font-size: 1.6rem;
}

h1, h2, h3, h4, h5, h6, div, p, ul, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
  word-break: break-all;
  font-weight: normal;
  line-height: 1.5;
}

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

a {
  display: block;
  word-break: break-all;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:not(.is-opacity-none):hover {
  opacity: .7;
}

tbody {
  display: table-row-group;
  vertical-align: middle;
}

tr {
  display: table-row;
  position: relative;
  vertical-align: middle;
}

td, th {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}

img {
  display: inline-block;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  -webkit-touch-callout: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 画面タップ時のちらつき対策 */
.TapHelper {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.font_ja {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font_en, .l-header__links li a, .l-header__link-title, .p-section__pagetitle, .p-section__title, #p-section-news .p-news__label, #p-section-news .p-news__item > dt, #p-section-products .p-products__comingsoon .p-products__item_bg p, #p-section-products .p-products__title, #p-section-about_profile .p-profile__box .p-profile__left figcaption, #p-section-about_profile .p-profile__box .p-profile__right small, .u-tab__label, .u-lineup__btn_title {
  font-family: Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
  font-weight: bold;
  color: #231815;
  letter-spacing: .1em;
}

/* ==========================================================================//
//
// Layout
//
// ========================================================================== */
.l-header {
  width: 100%;
  min-width: 1200px;
  position: fixed;
  z-index: 299;
  background: #fff;
}

.l-header::after {
  position: absolute;
  background-color: #231815;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  bottom: 0;
  width: 100%;
}

.l-header__inner {
  width: 1000px;
  margin: auto;
  padding: 25px 0 30px;
  position: relative;
  z-index: 1;
  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;
}

.l-header__logo {
  width: 100px;
  margin-right: 25px;
}

.l-header__logo a {
  display: block;
}

.l-header__links {
  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;
}

.l-header__links > li {
  margin: 0 15px;
  position: relative;
}

.l-header__links a,
.l-header__link-title {
  display: inline-block;
  padding: 0 2px;
  position: relative;
  cursor: pointer;
}

.l-header__links a::after,
.l-header__link-title::after {
  background-color: #3B312F;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  -webkit-transition: .5s all;
  transition: .5s all;
  width: 0;
}

.l-header__links a:hover::after,
.l-header__link-title:hover::after {
  width: 100%;
}

.l-header__links .is-active > a::after,
.l-header__links .is-active > .l-header__link-title::after {
  width: 100%;
}

.l-header__sub-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 20px;
  white-space: nowrap;
  font-size: 1.2rem;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .l-header__sub-links li {
    opacity: 0;
  }
  .l-header__links > li:hover .l-header__sub-links {
    display: block;
  }
  .l-header__links > li:hover .l-header__sub-links li:nth-child(1) {
    -webkit-animation: fadein 0.4s ease 0.1s 1 forwards;
    animation: fadein 0.4s ease 0.1s 1 forwards;
  }
  .l-header__links > li:hover .l-header__sub-links li:nth-child(2) {
    -webkit-animation: fadein 0.4s ease 0.2s 1 forwards;
    animation: fadein 0.4s ease 0.2s 1 forwards;
  }
  .l-header__links > li:hover .l-header__sub-links li:nth-child(3) {
    -webkit-animation: fadein 0.4s ease 0.3s 1 forwards;
    animation: fadein 0.4s ease 0.3s 1 forwards;
  }
  .l-header__links > li:hover .l-header__sub-links li:nth-child(4) {
    -webkit-animation: fadein 0.4s ease 0.4s 1 forwards;
    animation: fadein 0.4s ease 0.4s 1 forwards;
  }
}

.l-header__sub-links > li:not(:first-child) {
  margin-top: 10px;
}

.l-header__btn-link a {
  background: #fff;
  border: solid 1px #231815;
  padding: 7px 18px;
}

.l-header__btn-link a:hover {
  background: #F5F5F5;
}

.l-header__btn-link a::after {
  display: none;
}

.l-header__banner img {
  width: 100%;
  height: auto;
}

.l-header__banner--primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 26%;
  max-width: 200px;
  z-index: 1;
}

.l-header__banner--secondary {
  display: none;
}

.l-header__menu_btn {
  display: none;
}

.l-header.fixed_header .l-header__logo a {
  width: 100px;
}

#top .l-header::after {
  display: none;
}

.l-main {
  padding-top: 104px;
  padding-bottom: 60px;
}

.l-main__inner {
  overflow: hidden;
}

#top .l-main {
  padding-top: 0;
}

.l-footer {
  width: 100%;
  background-color: #F5F5F5;
  color: #000000;
  line-height: 2.2;
  height: auto;
}

.l-footer__inner {
  width: 1000px;
  margin: auto;
  padding: 40px 0;
}

.l-footer__logo {
  width: 75px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 40px;
}

.l-footer__address {
  font-size: 12px;
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
}

.l-footer__address li {
  line-height: 2.2;
}

.l-footer__address li a {
  color: #ffffff;
  display: inline-block;
}

.l-footer__address li span {
  margin-right: 0.5rem;
}

.l-footer__address li span:last-child {
  margin-right: 0;
}

.l-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-footer__links li {
  margin: 0 15px;
}

.l-footer__links li a {
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
  display: block;
  padding: 0 2px 4px;
  position: relative;
}

.l-footer__links li a img {
  height: 13px;
}

.l-footer__links li a img.logo_fusion {
  height: 20px;
}

.l-footer__copyright {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2.2;
  text-align: center;
  border-top: 1px solid #fff;
  padding: 40px 0;
}

/* ==========================================================================//
//
// Object
//
// ========================================================================== */
/* Component
---------------------------------------------------------- */
/* default */
/**
 * #Button
 */
/**
 * ベーシックなボタンオブジェクトです。
 * `<a>`, `<button>`, `<input>`要素のスタイルをリセットしています。
 * サイズやスタイルの変更はモディファイアクラスを指定します。
 * [DEMO](https://jsfiddle.net/manabuyasuda/yoLg0g9h/2)
 *
 * <div class="l-page-content">
 *   <a href="#" class="c-button [c-button--full]">First Button</a>
 *   <button class="c-button [c-button--full]">Second Button</button>
 *   <input type="button" value="Button" class="c-button [c-button--full]" />
 * </div>
 */
.c-button {
  display: inline-block;
  margin: 0;
  padding: 0.75em;
  border: none;
  border-radius: 3px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-button:hover, .c-button:active, .c-button:focus {
  text-decoration: none;
}

.c-button[disabled], .c-button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.c-button--full {
  width: 100%;
}

.c-button--circle {
  border-radius: 50%;
}

/**
 * カプセル状の錠剤のような形をしたボタンコンポーネントです。
 */
.c-button--pill {
  border-radius: 3em;
}

.c-button--pill-right {
  border-radius: 0 3em 3em 0;
}

.c-button--pill-center {
  border-radius: 0;
}

.c-button--pill-left {
  border-radius: 3em 0 0 3em;
}

/**
 * #Embed
 */
/**
 * YouTubeなどのエンベディットコンテンツを埋め込むオブジェクトです。
 * `.c-embed--16to9`などと指定してアスペクト比を固定します。
 *
 * <div class="c-embed c-embed--16to9">
 *     <iframe></iframe>
 * </div>
 */
.c-embed {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
  margin: 0;
  padding: 0;
}

.c-embed iframe,
.c-embed embed,
.c-embed object,
.c-embed video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.c-embed--16to9 {
  padding-bottom: 56.25% !important;
}

.c-embed--4to3 {
  padding-bottom: 75% !important;
}

/**
 * #Card
 */
.c-card {
  background: #F5F5F5;
  display: block;
  color: inherit;
  position: relative;
}

.c-card--arrow::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  border-top: 1px solid #231815;
  border-right: 1px solid #231815;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  transition: all 0.5s;
}
.c-card--arrow:hover::before {
  transform: translateX(-50%) rotate(315deg);
}

.c-card__img {
  display: block;
  width: 100%;
  height: auto;
}

.c-card__body {
  display: block;
  font-size: 2.1rem;
  padding: 30px 20px;
}
@media screen and (max-width: 768px) {
  .c-card--arrow::before {
    width: 9px;
    height: 9px;
    bottom: 15px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .c-card__body {
    font-size: 1.4rem;
    padding: 10px 10px 30px;
  }
}

/**
 * #Modal
 */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 999;
  display: none;
}
.c-modal.is-show {
  display: block;
}

.c-modal__inner {
  position: absolute;
  max-width: 100%;
  padding: 0 30px;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 2;
}

.c-modal__close {
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: absolute;
  top: -20px;
  right: 30px;
  transform: translateY(-100%);
}

.c-modal__close::before,
.c-modal__close::after {
  content: '';
  display: block;
  width: 130%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal__overlay {
  background: rgba(255, 255, 255, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal__video {
  width: 650px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-modal__inner {
    right: 0;
    transform: translateY(-50%);
  }
  .c-modal__close::before,
  .c-modal__close::after {
    width: 50%;
    height: 1px;
  }
  .c-modal__video {
    width: 100%;
  }
}

/* Project
---------------------------------------------------------- */
/* default */
/*
 * project/_wrapper.scss
 */

footer,
.l-footer {
  margin-top: auto;
}

/*
 * project/_kv.scss
 */
.p-kv {
  padding-top: 107px;
}

.p-kv__item {
  position: relative;
  width: 100%;
  height: calc( 100vh - 148px );
}

.p-kv__item a {
  display: block;
  width: 100%;
  height: 100%;
}

/* .p-kv__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.p-kv__wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .p-kv__img-wrap {
    position: relative;
    height: 700px;
    overflow: hidden;
  }

  .p-kv__img-wrap .p-kv__img {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

#top .p-kv__img {
  width: 100%;
  height: 100%;
}

.p-kv__img.kv-img-01 {
  background: url('/resources/img/rikiwatanabe/kv05.jpg') center/cover;
}

.p-kv__img.kv-img-02 {
  background: url('/resources/img/rikiwatanabe/kv07.jpg') center/cover;
}

.p-kv__img.kv-img-03 {
  background: url('/resources/img/rikiwatanabe/kv06.jpg') center/cover;
}

.p-kv__img.kv-img-04 {
  background: url('/resources/img/rikiwatanabe/kv08.jpg') center/cover;
}

.p-kv__wrap img {
  width: 100%;
}

.p-kv__cover {
  position: absolute;
  left: 100px;
  bottom: 60px;
  z-index: 2;
}

.p-kv__text {
  font-size: 40px;
  font-size: calc(1.5rem + ((1vw - 0.5rem) * 2.5));
  letter-spacing: .25em;
  line-height: 1.5;
  color: #ffffff;
  text-align: left;
  font-feature-settings: "palt";
}

@media screen and (min-width: 1980px) {
.p-kv__text {
  font-size: 70px;
  letter-spacing: .25em;
  line-height: 1.5;
  color: #ffffff;
  text-align: left;
  font-feature-settings: "palt";
}
}

.p-kv__text.color-black {
  color: #231815;
}

.p-kv__text-spacer-left{
  margin-left: -18px;
}

.p-kv__text-spacer-right{
  margin-right: -22px;
  margin-left: -5px;
}
/*
 * project/_section.scss
 */

.p-section--separate {
  border-top: solid 1px #BFC0C1;
}

.p-section--separate + .p-section--separate {
  margin-top: 60px;
}

.p-section__inner {
  width: 1000px;
  margin: 0 auto;
}

.p-section__inner.full {
  width: 100%;
}

.p-section__inner.wide {
  width: 100%;
  max-width: 1300px;
}

.p-section__pagetitle {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
  padding: 55px 0 45px;
  letter-spacing: .15em;
}

.p-section__title {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
  padding: 70px 0;
}

.p-section__title--02 {
  font-size: 26px;
  font-size: 2.6rem;
  padding: 100px 0 80px;
}

.p-section__title--03 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
  padding: 50px 0;
}

.p-section__text {
  text-align: center;
  line-height: 2.75;
}

#p-section {
  /*
	&-movie {
		min-height: $movie_min_height;
		// background: url(/assets/img/bg_img_01.jpg) left top no-repeat;
	}
	&-feature {
		padding-top: 100px;
		& .p-section {
			&__inner {
				border-top: 1px solid #e5e5e5;
				padding-top: 100px;
			}
		}
	}
	&-message {
		min-height: 667px;
		// background: url(/assets/img/bg_img_02.jpg) right top no-repeat;
		& .p-section {
			&__inner {
				border-top: 1px solid #e5e5e5;
				padding-top: 100px;
			}
		}
	}
*/
}

#p-section-news .p-section__title {
  padding: 54px 0 60px;
}

#p-section-news .p-news__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 45px auto 90px;
}

#p-section-news .p-news__label {
  font-weight: normal;
  margin: 0 25px;
  padding: 0 2px;
  position: relative;
}

#p-section-news .p-news__label::after {
  background-color: #000;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: .5s all;
  transition: .5s all;
  width: 0;
}

#p-section-news .p-news__label:hover {
  opacity: .7;
  cursor: pointer;
}

#p-section-news .p-news__label:hover::after {
  width: 100%;
}

#p-section-news .p-news__label.active::after {
  width: 100%;
}

#p-section-news .p-news__list {
  width: 800px;
  margin: auto;
}

#p-section-news .p-news__list li {
  margin-bottom: 20px;
}

#p-section-news .p-news__list li a {
  display: inline-block;
  color: #392F2C;
}

#p-section-news .p-news__list li a dl {
  position: relative;
}

#p-section-news .p-news__list li a dl::after {
  background-color: #000000;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: .5s all;
  transition: .5s all;
  width: 0;
}

#p-section-news .p-news__list li a:hover dl::after {
  width: 100%;
}

#p-section-news .p-news__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#p-section-news .p-news__item > dt {
  width: 85px;
  margin-right: 35px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: normal;
  letter-spacing: normal;
}

#p-section-news .p-news__item > dt::after {
  background-color: #FFFFFF;
  bottom: 0;
  right: -2em;
  content: '';
  display: block;
  width: 2em;
  height: 1px;
  position: absolute;
  z-index: 2;
}

#p-section-news .p-news__item.ellipsis > dd {
  width: 680px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#p-section-news .p-news__more {
  text-align: center;
  margin-top: 60px;
}
#p-section-news .p-news__more-link {
  display: inline-block;
  color: #3B312F;
  font-size: 16px;
  font-size: 1.6rem;
  padding-bottom: 22px;
  letter-spacing: .1em;
  position: relative;
  cursor: pointer;
}

#p-section-news .p-news__more-link::before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-top: solid 1px #3B312F;
  border-right: solid 1px #3B312F;
  -webkit-transform: translateX(50%) rotate(135deg);
  transform: translateX(50%) rotate(135deg);
  transition: transform 0.5s ease;
  bottom: 0;
  right: 50%;
}

#p-section-news .p-news__more-link.is-show::before {
  -webkit-transform: translateX(50%) rotate(-45deg);
  transform: translateX(50%) rotate(-45deg);
}

#p-section-products {
  padding-top: 25px;
  padding-bottom: 60px;
}

#p-section-products .p-products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#p-section-products .p-products__item {
  text-align: center;
  margin-left: 50px;
  position: relative;
  width: 33.33%;
}

#p-section-products .p-products__item:first-child {
  margin-left: 0;
}

#p-section-products .p-products__item a {
  position: relative;
  color: #231815;
  font-size: 18px;
  font-size: 1.8rem;
}

#p-section-products .p-products__item a > img {
  width: 100%;
  -webkit-transition: .5s all;
  transition: .5s all;
}

#p-section-products .p-products__item a .p-products__item_bg {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: .5s all;
  transition: .5s all;
}

#p-section-products .p-products__item a .p-products__item_bg img {
  width: 100%;
}

#p-section-products .p-products__item a .p-products__item_bg p {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  /* left: 50%; */
  /* -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);

  font-weight: 600;
}

#p-section-products .p-products__item a::after {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-top: solid 1px #3B312F;
  border-right: solid 1px #3B312F;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: -36px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: .5s all;
  transition: .5s all;
}

#p-section-products .p-products__item a:hover > img {
  opacity: 0;
}

#p-section-products .p-products__item a:hover .p-products__item_bg {
  opacity: 1;
}

#p-section-products .p-products__item a:hover::after {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

#p-section-products .p-products__comingsoon {
  position: relative;
}

#p-section-products .p-products__comingsoon .p-products__item_bg {
  opacity: 1;
}

#p-section-products .p-products__comingsoon .p-products__item_bg p {
  font-size: 18px;
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 600;
}

#p-section-products .p-products__comingsoon .p-products__item_bg::after {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-top: solid 1px #3B312F;
  border-right: solid 1px #3B312F;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: -36px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: .5s all;
  transition: .5s all;
}

#p-section-products .p-products__title {
  font-size: 22px;
  font-size: 2.2rem;
  position: relative;
  margin-bottom: 30px;
}

#p-section-products .p-products__title::after {
  position: absolute;
  background-color: #000000;
  width: 10px;
  height: 1px;
  bottom: -12px;
  content: '';
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}

#p-section-instagram {
  margin-top: 115px;
}

#p-section-instagram a {
  width: 40px;
  margin: auto;
  -webkit-transition: .5s all;
  transition: .5s all;
}

#p-section-profile {
  margin-top: 100px;
}

#p-section-works {
  margin-top: 100px;
}

#p-section-about_philosophy {
  margin-top: 85px;
  overflow: hidden;
  text-align: center;
}

#p-section-story {
  margin-top: 0;
}

#p-section-story .p-story__title {
  text-align: center;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
  padding: 56px 0 39px;
  letter-spacing: .05em;
}

#p-section-story .p-story__text {
  width: 940px;
  margin: 0 auto;
  line-height: 2;
}
#p-section-story .p-story__text_notice {
  color: #818181;
  margin-bottom: 20px;
}

#p-section-lineup {
  margin-top: 100px;
  border-top: 1px solid #F5F5F5;
}

#p-section-lineup .p-section__title {
  font-size: 26px;
  font-size: 2.6rem;
}

#p-section-lineup01 {
  margin-top: 70px;
  border-top: 1px solid #F5F5F5;
}

#p-section-lineup01 .p-section__title {
  font-size: 26px;
  font-size: 2.6rem;
  padding: 60px 0 80px;
}

#p-section-lineup02 {
  margin-top: 70px;
  border-top: 1px solid #F5F5F5;
}

#p-section-lineup03 {
  margin-top: 70px;
  border-top: 1px solid #F5F5F5;
}

#p-section-lineup02 .p-section__title {
  font-size: 26px;
  font-size: 2.6rem;
  padding: 60px 0 80px;
}
#p-section-lineup03 {
  margin-top: 70px;
  border-top: 1px solid #F5F5F5;
}

#p-section-lineup03 .p-section__title {
  font-size: 26px;
  font-size: 2.6rem;
  padding: 60px 0 80px;
}
#p-section-lineup04 {
  margin-top: 70px;
  border-top: 1px solid #F5F5F5;
}

#p-section-lineup04 .p-section__title {
  font-size: 26px;
  font-size: 2.6rem;
  padding: 60px 0 80px;
}
#p-section-lineup05 {
  margin-top: 70px;
  border-top: 1px solid #F5F5F5;
}

#p-section-lineup05 .p-section__title {
  font-size: 26px;
  font-size: 2.6rem;
  padding: 60px 0 80px;
}

#p-section-feature .p-feature__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 880px;
  margin: auto;
}

#p-section-feature .p-feature__left {
  margin: 0 50px 0 0;
  width: 310px;
}

#p-section-feature .p-feature__right {
  width: 520px;
}

#p-section-feature .p-feature__title {
  font-size: 21px;
  font-size: 2.1rem;
  margin-top: 10px;
}

#p-section-feature .p-feature__title small {
  font-size: 15px;
  font-size: 1.5rem;
  margin-left: 22px;
}

#p-section-feature .p-feature__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 15px;
}

#top #p-section-news {
  background-color: #F5F5F5;
  padding-bottom: 50px;
  margin-top: 100px;
}

#top #p-section-news .p-news__item > dt::after {
  background-color: #F5F5F5;
}

#top #p-section-products {
  padding-bottom: 38px;
}

/*
 * project/_main-box.scss
 */
.p-main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-main-box__left {
  width: 470px;
}

.p-main-box__right {
  width: 530px;
  text-align: center;
}

.p-main-box__heading {
  color: #5507a8;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  padding-top: 8px;
  text-align: center;
}

.p-main-box__heading img {
  height: 28px;
}

.p-main-box__title {
  margin-top: 40px;
}

.p-main-box__text {
  width: 470px;
  margin-top: 32px;
}

.p-main-box__text p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  word-break: normal;
  margin-bottom: 1em;
}

.p-main-box__text p:last-child {
  margin-bottom: 0;
}

.p-main-box__list {
  margin-top: 20px;
  padding-left: 20px;
  list-style: disc outside;
  word-break: normal;
}

.p-main-box__image {
  text-align: center;
}

.p-main-box-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

/*
 * project/_video-box.scss
 */
.p-video-box {
  width: 520px;
  float: right;
}

.p-video-box__caption {
  word-break: normal;
  margin-bottom: 40px;
}

/*
 * project/_message.scss
 */
.p-message {
  text-align: center;
}

.p-message__item {
  margin-top: 140px;
}

.p-message__item:first-child {
  margin-top: 90px;
}

.p-message__image {
  width: 190px;
  margin: auto;
}

.p-message__text {
  background: url(/assets/img/bg_img_03.png) left top no-repeat;
  padding-top: 80px;
  font-size: 20px;
  font-size: 2rem;
  word-break: normal;
}

.p-message__author {
  font-size: 14px;
  font-size: 1.4rem;
  word-break: normal;
  margin-top: 40px;
}

/*
 * project/_video-box.scss
 */
.p-button, .p-button-01, .p-button-02 {
  background-color: #ff3300;
  border: 3px solid #ff3300;
  color: #ffffff;
  width: 50%;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 12px;
}

.p-button__wrap {
  width: 470px;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-button-01 {
  margin-right: 3px;
}

.p-button-02 {
  background-color: #ffffff;
  color: #ff3300;
  margin-left: 3px;
}

#p-section-message .p-button__wrap {
  width: 900px;
  margin: 150px auto 0;
}

#p-section-message .p-button-01 {
  margin-right: 5px;
  padding: 25px 12px;
}

#p-section-message .p-button-02 {
  margin-left: 5px;
  padding: 25px 12px;
}

/*
 * project/_icon.scss
 */
.p-icon__instagram {
  text-align: center;
}

.p-icon__instagram img {
  height: 40px;
}

/*
 * project/_js.scss
 */
/*
 * project/_slick.scss
 */
.slick-next, .slick-prev {
  top: 34%;
}

.slick-prev {
  left: -35px;
}

.slick-next {
  right: -35px;
}

.slick-next:before, .slick-prev:before {
  color: #000;
  opacity: 1;
}

.slick-next:before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-top: solid 1px #3B312F;
  border-right: solid 1px #3B312F;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.slick-prev:before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-top: solid 1px #3B312F;
  border-right: solid 1px #3B312F;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.slick-dots li button::before {
  content: '○';
  font-size: 14px;
  color: #000000;
  opacity: 1;
}

.slick-dots li.slick-active button::before {
  color: #000000;
  opacity: 1;
  content: '●';
}

/* page */
/*
 * project/_about.scss
 */
.p-about_works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-about_works__item {
  margin: 0 20px;
  width: 25%;
}

.p-about_works__item:nth-child(1) .p-about_works__title {
  line-height: 52px;
}

.p-about_works__item:nth-child(2) .p-about_works__title {
  line-height: 52px;
}

.p-about_works__title {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  margin: 22px auto 20px;
}

.p-about_works__text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
}

#p-section-about_profile {
  margin-top: 55px;
}

#p-section-about_profile .p-profile__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 830px;
  margin: auto;
}

#p-section-about_profile .p-profile__box .p-profile__left {
  margin: 0 30px 0 0;
  width: 210px;
}

#p-section-about_profile .p-profile__box .p-profile__left figcaption {
  font-size: 10px;
  font-size: 1.0rem;
  margin-top: 5px;
}

#p-section-about_profile .p-profile__box .p-profile__right {
  width: 590px;
}

#p-section-about_profile .p-profile__box .p-profile__right small {
  font-size: 10px;
  font-size: 1.0rem;
}

#p-section-about_profile .p-profile__box .p-profile__right .p-profile__name {
  font-size: 22px;
  font-size: 2.2rem;
}

#p-section-about_profile .p-profile__box .p-profile__right .p-profile__name small {
  font-size: 15px;
  font-size: 1.5rem;
  margin-left: 22px;
}

#p-section-about_profile .p-profile__box .p-profile__right .p-profile__text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
  margin-top: 15px;
}

#p-section-about_works {
  margin-top: 20px;
}

#p-section-about_story {
  margin-top: 45px;
}

#p-section-about_story .p-section__inner {
  width: 100%;
}

#p-section-about_philosophy {
  margin-top: 40px;
}

.p-about_story__item.u-show-pc {
  display: block;
}

.p-about_story__item:nth-child(1) .p-about_story__bg {
  top: 50%;
  right: -250px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.p-about_story__item:nth-child(2) {
  text-align: right;
  margin-top: 100px;
}

.p-about_story__item:nth-child(3) {
  margin-top: -100px;
}

.p-about_story__item:nth-child(3) .p-about_story__bg {
  bottom: -145px;
  right: -250px;
}

.p-about_story__item:nth-child(4) {
  text-align: center;
  margin-top: 200px;
}

.p-about_story__img {
  width: 70%;
  position: relative;
  display: inline-block;
}

.p-about_story__img img {
  width: 100%;
}

.p-about_story__bg {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  width: 410px;
  position: absolute;
  z-index: 3;
}

.p-about_story__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.66;
  margin: 0 0 20px;
}

.p-about_story__text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
}

@media screen and (max-width: 1150px) {
  .p-about_story__item {
    position: relative;
  }
  .p-about_story__item .p-about_story__img {
    position: initial;
  }
  .p-about_story__item:nth-child(1) .p-about_story__bg {
    right: 0;
  }
  .p-about_story__item:nth-child(3) .p-about_story__bg {
    right: 0;
  }
}

/*
 * project/p-design-story-list
 */
.p-design-story-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 70px;
}
.p-design-story-list__item {
  width: 46.5%;
}
.p-design-story-list__item:nth-child(2n) {
  margin-left: 7%;
}
.p-design-story-list__item:nth-child(n+3) {
  margin-top: 7%;
}
.p-design-story-list .c-card__body {
  text-align: center;
  height: 170px;
  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;
}
@media screen and (max-width: 768px) {
  .p-design-story-list {
    display: block;
    padding: 0 35px;
  }
  .p-design-story-list__item {
    width: 100%;
  }
  .p-design-story-list__item:nth-child(2n) {
    margin-left: 0;
  }
  .p-design-story-list__item:not(:first-child) {
    margin-top: 35px;
  }
  .p-design-story-list .c-card__body {
    height: auto;
    min-height: 110px;
  }
}

/*
 * project/p-20thspecial
 */
/* video */
.p-20thspecial-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-top: 43px;
}
.p-20thspecial-video__poster {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.p-20thspecial-video__poster:hover {
  opacity: .7;
}
.p-20thspecial-video__item {
  width: 47.5%;
}
.p-20thspecial-video__item:nth-child(2n) {
  margin-left: 5%;
}
@media screen and (max-width: 768px) {
  .p-20thspecial-video {
    display: block;
    margin-top: 30px;
    font-size: 1.2rem;
  }
  .p-20thspecial-video__poster {
    margin-bottom: 15px;
  }
  .p-20thspecial-video__item {
    width: 100%;
  }
  .p-20thspecial-video__item:not(:first-child) {
    margin-top: 30px;
  }
  .p-20thspecial-video__item:nth-child(2n) {
    margin-left: 0;
  }
}

/* intro */
.p-20thspecial-intro {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 120px;
}
.p-20thspecial-intro__logo {
  margin-bottom: 57px;
}
.p-20thspecial-intro__text {
  line-height: 2.75;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .p-20thspecial-intro {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .p-20thspecial-intro__logo {
    width: 75px;
    margin: 0 auto 30px;
  }
  .p-20thspecial-intro__text {
    line-height: 2.8;
    margin-top: 30px;
    font-size: 1.2rem;
  }
}
/* catch */
.p-20thspecial-catch-wrap {
  margin-bottom: 127px;
}
.p-20thspecial-catch {
  position: relative;
  overflow: hidden;
}
.p-20thspecial-catch--2 {
  padding-top: 12%;
}
.p-20thspecial-catch--3 {
  padding-top: 3.5%;
}
.p-20thspecial-catch__img {
  display: block;
  height: auto;
}
.p-20thspecial-catch__img--1-1 {
  width: 92%;
}
.p-20thspecial-catch__img--2-1 {
  width: 31%;
  margin-left: 55%;
  margin-top: -8%;
  position: relative;
  z-index: 1;
}
.p-20thspecial-catch__img--2-2 {
  width: 52%;
  margin-left: 16%;
  margin-top: -15%;
}
.p-20thspecial-catch__img--3-1 {
  width: 92%;
  margin-left: 8%;
}
.p-20thspecial-catch__img--3-2 {
  width: 29%;
  margin-left: 27.5%;
  margin-top: 6.5%;
  position: relative;
  z-index: 1;
}
.p-20thspecial-catch__img--3-3 {
  width: 51%;
  margin-left: 49%;
  margin-top: -18%;
}
.p-20thspecial-catch__img--3-4 {
  width: 58%;
  margin-left: 6.5%;
  margin-top: -4%;
}
.p-20thspecial-catch__text {
  position: absolute;
  font-size: 2.8rem;
  line-height: 1;
  color: #8C5D33;
}
.p-20thspecial-catch__text--1-1 {
  top: 12.5%;
  left: 8%;
}
.p-20thspecial-catch__text--2-1 {
  bottom: 6%;
  left: 54%;
  text-align: right;
}
.p-20thspecial-catch__text--3-1 {
  top: 37.8%;
  left: 12%;
  z-index: 1;
}
.p-20thspecial-catch__text--3-2 {
  bottom: 2%;
  left: 58%;
  text-align: right;
}
.p-20thspecial-catch__text span {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.4em 23px;
  display: inline-block;
}
_:-ms-input-placeholder, :root .p-20thspecial-catch__text span {
  padding-top: 0.6em;
  padding-bottom: 0.2em;
}
.p-20thspecial-catch__text span:not(:last-child) {
  margin-bottom: 0.4em;
}
@media screen and (max-width: 768px) {
  .p-20thspecial-catch-wrap {
    margin-bottom: 50px;
  }
  .p-20thspecial-catch__text {
    font-size: 1.1rem;
  }
  .p-20thspecial-catch__text--1-1 {
    top: 8%;
    left: 4%;
  }
  .p-20thspecial-catch__text--3-1 {
    top: 34%;
    left: 10%;
  }
  .p-20thspecial-catch__text span {
    padding: 0.4em 9px;
  }
  .p-20thspecial .p-section__pagetitle {
    padding-top: 62px;
  }
}

/* Utility
---------------------------------------------------------- */
/*
 * object/utility/_underline.scss
 */
.u-underline span {
  position: relative;
  display: inline-block;
}

.u-underline span:after {
  position: absolute;
  background-color: #3B312F;
  width: 10px;
  height: 1px;
  bottom: -14px;
  content: '';
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .u-underline span {
    position: relative;
  }
  .u-underline span:after {
    bottom: -12px;
  }
}

/*
 * object/utility/_titleline.scss
 */
.u-titleline {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  padding: 45px 0;
}

.u-titleline:before {
  content: '';
  display: block;
  width: 52%;
  height: 1px;
  margin: auto;
  position: absolute;
  top: 49%;
  left: 0;
  right: 0;
  z-index: -1;
  background: #231815;
}

.u-titleline span {
  position: relative;
}

.u-titleline span:before {
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  right: -20px;
  left: -20px;
  margin: auto;
  z-index: -1;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .u-titleline {
    padding: 55px 0;
  }
}

/*
 * object/utility/_tab.scss
 */
.u-tab__wrap {
  width: 800px;
  margin: 0 auto;
}

.u-tab__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-tab__label {
  font-weight: normal;
  margin: 0 20px;
  position: relative;
}

.u-tab__label::after {
  background-color: #000;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  -webkit-transition: .5s all;
  transition: .5s all;
  width: 0;
}

.u-tab__label:hover {
  opacity: .7;
  cursor: pointer;
}

.u-tab__label:hover::after {
  width: 100%;
}

.u-tab__label.active::after {
  width: 100%;
}

.u-tab__panel_wrap {
  padding-top: 80px;
}

.u-tab__panel_body {
  display: none;
}

.u-tab__panel_body.active {
  display: block;
  -webkit-animation: tab_fade ease 1.0s forwards;
  animation: tab_fade ease 1.0s forwards;
}

/*
 * object/utility/_align.scss
 */
.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-justify {
  text-justify: inter-character;
  text-justify: inter-ideograph;
  text-align: justify;
}

/*
 * object/utility/_list.scss
 */
.u-list__item {
  margin-top: 100px;
  position: relative;
}

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

.u-list__item-left .u-list__bg {
  top: 50%;
  right: -250px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.u-list__item-right {
  text-align: right;
}

.u-list__item-right .u-list__bg {
  top: 50%;
  left: -250px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.u-list__item-center {
  text-align: center;
}

.u-list__item .u-item__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.66;
  margin: 0 0 20px;
}

.u-list__item .u-item__text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
}

.u-list__item:nth-child(1):before {
  background-color: #F5F5F5;
  width: 596px;
  height: 740px;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 102px;
}

.u-list__item:nth-child(2):before {
  background-color: #F5F5F5;
  width: 596px;
  height: 740px;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 46px;
}

.u-list__item:nth-child(3):before {
  background-color: #F5F5F5;
  width: 740px;
  height: 1240px;
  content: '';
  display: block;
  position: absolute;
  left: 272px;
  top: 346px;
}

.p-tradition__item.u-list__item:nth-child(3):before{
  display: none;
}

.u-list__img {
  width: 70%;
  position: relative;
  display: inline-block;
}

.u-list__img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .u-list__img.u-list__img-full {
    width: 0;
    margin: 0 calc( 50% - 50vw );
    width: 100vw;
  }
}

.u-list__bg {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  width: 410px;
  position: absolute;
  z-index: 3;
  text-align: left;
}

.u-list__wrap {
  width: 70%;
  margin: 70px auto 0;
  text-align: left;
}

.u-list__wrap2 {
  width: 51%;
  margin: 70px 23% 0;
  text-align: left;
}
/*
 * object/utility/_lineup.scss
 */
.u-lineup {
  display: block;
}

.u-lineup__item {
  position: relative;
  text-align: center;
  width: 25%;
  margin-bottom: 30px;
  float: left;
  letter-spacing: .1em;
}
.u-lineup__item2 {
  width: 20%;
}

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

.u-lineup__item-left .u-list__bg {
  top: 50%;
  right: -250px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.u-lineup__item-right {
  text-align: right;
}

.u-lineup__item-right .u-list__bg {
  top: 50%;
  left: -250px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.u-lineup__item-center {
  text-align: center;
}

.u-lineup__item .u-item__title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.66;
  margin: 25px 0 5px;
  font-size: 16px;
  font-size: 1.6rem;
}

.u-lineup__item .u-item__price {
  font-size: 16px;
  font-size: 1.6rem;
}

.u-lineup__item .u-item__detail {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: .8em;
  padding: 0 1em;
}

@media screen and (max-width: 768px) {
  #standard_design_story .u-lineup__item .u-item__detail {
    width: 60vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.u-lineup__item .u-item__detail span.u-item__detail-name {
  font-weight: bold;
  display: inline-block;
  padding-bottom: 1em;
  white-space: nowrap;
}

.u-lineup__item .u-item__detail span.u-item__detail-ruby {
  position: relative;
}
.u-lineup__item .u-item__detail span.u-item__detail-ruby::after {
  content: attr(data-ruby);
  position: absolute;
  top: 2.2em;
  left: -1em;
  margin: auto;
  font-size: 0.72rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .u-lineup__item .u-item__detail span.u-item__detail-ruby::after {
    left: -0.7em;
  }
}

.u-lineup__item .u-item__text {
  font-size: 10px;
  font-size: 1.0rem;
  line-height: 2;
}

.u-lineup__img {
  position: relative;
  display: inline-block;
}

.u-lineup__bg {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  width: 410px;
  position: absolute;
  z-index: 3;
  text-align: left;
}

.u-lineup__wrap {
  width: 70%;
  margin: 70px auto 0;
  text-align: left;
}

.u-lineup__wrap_text {
  width: 260px;
  background-color: #F5F5F5;
  text-align: center;
  padding: 45px 0;
  position: relative;
}

.u-lineup__wrap_text::after {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-top: solid 1px #3B312F;
  border-right: solid 1px #3B312F;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 16px;
  left: 50%;
  -webkit-transition: .5s all;
  transition: .5s all;
}

.u-lineup__btn {
  margin-top: 50px;
  text-align: center;
}

.u-lineup__btn:first-of-type{
  margin-bottom: 50px;
}

.u-lineup__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
}

.u-lineup__btn a:hover .u-lineup__wrap_text::after {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.u-lineup__btn img {
  width: 260px;
  height: 160px;
}

.u-lineup__btn_title {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1;
  border-bottom: 1px solid #000;
  display: inline-block;
}

.u-lineup__btn_text {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 24px;
}

/*
 * object/utility/_clearfix.scss
 */
.u-cf:before,
.u-cf:after {
  content: "";
  display: table;
}

.u-cf:after {
  clear: both;
}

.u-cf {
  *zoom: 1;
}

.u-clear {
  clear: both;
}

/*
 * object/utility/_show.scss
 */
.u-show-pc {
  display: inline-block;
}

.u-show-sp {
  display: none;
}

.u-show-sp-min {
  display: none;
}

@media screen and (max-width: 640px) {
  .u-show-pc {
    display: none;
  }
  .u-show-sp {
    display: inline-block;
  }
}

@media screen and (max-width: 320px) {
  .u-show-sp-min {
    display: inline-block;
  }
}

/*
 * object/utility/_hidden.scss
 */
.u-hidden {
  display: none;
}

.u-hidden-pc {
  display: none;
}

.u-hidden-sp {
  display: inline-block;
}

@media screen and (max-width: 640px) {
  .u-hidden-pc {
    display: inline-block;
  }
  .u-hidden-sp {
    display: none;
  }
}

/* Animation
---------------------------------------------------------- */
/*
 * project/_animation.scss
 */
.l-header__logo,
.l-header::after,
.l-header__navigation,
.l-header__menu_btn,
.l-header__banner,
.p-section,
.slick-list,
.p-kv__cover,
.slick-dots,
.l-footer,
.p-top-modal-firstview .c-modal__inner,
.p-top-modal-firstview .c-modal__close{
  opacity: 0;
}

.loaded .l-header__logo {
  -webkit-animation: fadein 0.5s ease 0.5s 1 forwards;
  animation: fadein 0.5s ease 0.5s 1 forwards;
}

@media screen and (min-width: 769px) {
  .loaded .l-header__navigation {
    -webkit-animation: fadein 0.5s ease 1s 1 forwards;
    animation: fadein 0.5s ease 1s 1 forwards;
  }
  .loaded .l-header::after {
    -webkit-animation: fadein 0.5s ease 1.5s 1 forwards;
    animation: fadein 0.5s ease 1.5s 1 forwards;
  }
}

@media screen and (max-width: 768px) {
  .loaded .l-header__menu_btn {
    -webkit-animation: fadein 0.5s ease 1s 1 forwards;
    animation: fadein 0.5s ease 1s 1 forwards;
  }
}

.loaded .p-section {
  -webkit-animation: fadein 0.5s ease 1.5s 1 forwards;
  animation: fadein 0.5s ease 1.5s 1 forwards;
}

.loaded .l-header__banner {
  -webkit-animation: fadein 0.5s ease 2s 1 forwards;
  animation: fadein 0.5s ease 2s 1 forwards;
}

.loaded #p-section-lineup .slick-list,
.loaded #p-section-lineup .slick-dots,
.loaded #p-section-lineup01 .slick-list,
.loaded #p-section-lineup02 .slick-dots,
.loaded #p-section-lineup01 .slick-list,
.loaded #p-section-lineup02 .slick-dots,
.loaded .p-kv__wrap .p-kv__cover,
.loaded .l-footer {
  -webkit-animation: fadein 0.5s ease 2s 1 forwards;
  animation: fadein 0.5s ease 2s 1 forwards;
}

#top.loaded .slick-list {
  -webkit-animation: fadein 0.5s ease 1.5s 1 forwards !important;
  animation: fadein 0.5s ease 1.5s 1 forwards !important;
}

#top.loaded .p-kv__cover {
  -webkit-animation: fadein 0.5s ease 2s 1 forwards !important;
  animation: fadein 0.5s ease 2s 1 forwards !important;
}

#top.loaded .slick-dots {
  -webkit-animation: fadein 0.5s ease 2.5s 1 forwards !important;
  animation: fadein 0.5s ease 2.5s 1 forwards !important;
}

#top.loaded .p-section {
  -webkit-animation: fadein 0.5s ease 2.5s 1 forwards !important;
  animation: fadein 0.5s ease 2.5s 1 forwards !important;
}

#top.loaded .l-footer {
  -webkit-animation: fadein 0.5s ease 3s 1 forwards !important;
  animation: fadein 0.5s ease 3s 1 forwards !important;
}
#top.loaded .l-header__banner {
  -webkit-animation: fadein 0.5s ease 3s 1 forwards;
  animation: fadein 0.5s ease 3s 1 forwards;
}
.loaded .p-top-modal-firstview .c-modal__inner {
  -webkit-animation: fadein 0.5s ease 0.5s 1 forwards !important;
  animation: fadein 0.5s ease 0.5s 1 forwards !important;
}
.loaded .p-top-modal-firstview .c-modal__close {
  -webkit-animation: fadein 0.5s ease 1s 1 forwards !important;
  animation: fadein 0.5s ease 1s 1 forwards !important;
}

/* ========== */
.p-about_works__list li {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}

.p-about_works__list li.fadein_up:nth-child(1) {
  -webkit-animation: fadein_up 0.6s ease 0.3s 1 forwards;
  animation: fadein_up 0.6s ease 0.3s 1 forwards;
}

.p-about_works__list li.fadein_up:nth-child(2) {
  -webkit-animation: fadein_up 0.6s ease 0.6s 1 forwards;
  animation: fadein_up 0.6s ease 0.6s 1 forwards;
}

.p-about_works__list li.fadein_up:nth-child(3) {
  -webkit-animation: fadein_up 0.6s ease 0.9s 1 forwards;
  animation: fadein_up 0.6s ease 0.9s 1 forwards;
}

.p-about_works__list li.fadein_up:nth-child(4) {
  -webkit-animation: fadein_up 0.6s ease 1.2s 1 forwards;
  animation: fadein_up 0.6s ease 1.2s 1 forwards;
}

@media screen and (max-width: 768px) {
  .p-about_works__list li.fadein_up:nth-child(1) {
    -webkit-animation: fadein_up 0.6s ease 0.3s 1 forwards;
    animation: fadein_up 0.6s ease 0.3s 1 forwards;
  }
  .p-about_works__list li.fadein_up:nth-child(2) {
    -webkit-animation: fadein_up 0.6s ease 0.3s 1 forwards;
    animation: fadein_up 0.6s ease 0.3s 1 forwards;
  }
  .p-about_works__list li.fadein_up:nth-child(3) {
    -webkit-animation: fadein_up 0.6s ease 0.3s 1 forwards;
    animation: fadein_up 0.6s ease 0.3s 1 forwards;
  }
  .p-about_works__list li.fadein_up:nth-child(4) {
    -webkit-animation: fadein_up 0.6s ease 0.3s 1 forwards;
    animation: fadein_up 0.6s ease 0.3s 1 forwards;
  }
}

/* ========== */
.p-about_story__img > img {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}

.p-about_story__img > .p-about_story__bg {
  opacity: 0;
}

.p-about_story__img.fadein > img {
  -webkit-animation: fadein_up 0.5s ease 0.5s 1 forwards;
  animation: fadein_up 0.5s ease 0.5s 1 forwards;
}

.p-about_story__img.fadein > .p-about_story__bg {
  -webkit-animation: fadein 0.5s ease 1s 1 forwards;
  animation: fadein 0.5s ease 1s 1 forwards;
}

/* ========== */
.u-list__item::before,
.u-list__item .u-list__img img,
.u-list__item .u-list__wrap {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}

.u-list__item .u-list__img .u-list__bg {
  opacity: 0;
}

.u-list__item.fadein::before,
.u-list__item-center.fadein .u-list__img img {
  -webkit-animation: fadein_up 0.5s ease 0s 1 forwards;
  animation: fadein_up 0.5s ease 0s 1 forwards;
}

.u-list__item-left.fadein .u-list__img img,
.u-list__item-right.fadein .u-list__img img {
  -webkit-animation: fadein_up 0.5s ease 0.5s 1 forwards;
  animation: fadein_up 0.5s ease 0.5s 1 forwards;
}

.u-list__item-center.fadein .u-list__wrap {
  -webkit-animation: fadein 0.5s ease 0.5s 1 forwards;
  animation: fadein 0.5s ease 0.5s 1 forwards;
}

.u-list__item.fadein .u-list__img .u-list__bg {
  -webkit-animation: fadein 0.5s ease 1s 1 forwards;
  animation: fadein 0.5s ease 1s 1 forwards;
}

/* ========== */
.p-about_philosophy__img {
  width: 460px;
  margin: 0 auto;
}

.p-about_philosophy__img > div {
  position: relative;
}

.p-about_philosophy__img > div > img {
  width: 100%;
}

.p-about_philosophy__img > div::before {
  background: #fff;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  position: absolute;
  content: '';
  display: block;
  z-index: 2;
}

.p-about_philosophy__img.cover .line01::before {
  -webkit-animation: cover 0.6s linear 0.3s 1 forwards;
  animation: cover 0.6s linear 0.3s 1 forwards;
}

.p-about_philosophy__img.cover .line02::before {
  -webkit-animation: cover 0.6s linear 0.9s 1 forwards;
  animation: cover 0.6s linear 0.9s 1 forwards;
}

.p-about_philosophy__img.cover .line03::before {
  -webkit-animation: cover 0.6s linear 1.5s 1 forwards;
  animation: cover 0.6s linear 1.5s 1 forwards;
}

.p-about_philosophy__img.cover .line04::before {
  -webkit-animation: cover 0.6s linear 2.1s 1 forwards;
  animation: cover 0.6s linear 2.1s 1 forwards;
}

.p-about_philosophy__img.cover .line05::before {
  -webkit-animation: cover 0.6s linear 2.7s 1 forwards;
  animation: cover 0.6s linear 2.7s 1 forwards;
}

.p-about_philosophy__img.cover .line06::before {
  -webkit-animation: cover 0.6s linear 3.3s 1 forwards;
  animation: cover 0.6s linear 3.3s 1 forwards;
}

.p-about_philosophy__img.cover .line07::before {
  -webkit-animation: cover 0.6s linear 3.9s 1 forwards;
  animation: cover 0.6s linear 3.9s 1 forwards;
}

.p-about_philosophy__img.cover .line08::before {
  -webkit-animation: cover 0.6s linear 4.5s 1 forwards;
  animation: cover 0.6s linear 4.5s 1 forwards;
}

/* ========== */
.js-20thspecial-fadein {
  opacity: 0;
}
.js-20thspecial-fadein.fadein {
  -webkit-animation: fadein 0.5s ease 0.5s 1 forwards;
  animation: fadein 0.5s ease 0.5s 1 forwards;
}
.js-20thspecial-fadein.fadein.p-20thspecial-catch__text--1-1 {
  -webkit-animation: fadein 0.5s ease 1s 1 forwards;
  animation: fadein 0.5s ease 1s 1 forwards;
}
.js-20thspecial-fadein.fadein.p-20thspecial-catch__img--2-2 {
  -webkit-animation: fadein 0.5s ease 0.8s 1 forwards;
  animation: fadein 0.5s ease 0.8s 1 forwards;
}
.js-20thspecial-fadein.fadein.p-20thspecial-catch__img--3-3 {
  -webkit-animation: fadein 0.5s ease 0.8s 1 forwards;
  animation: fadein 0.5s ease 0.8s 1 forwards;
}

/* ========== */
@-webkit-keyframes fadein {
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadein_up {
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes fadein_up {
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes cover {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes cover {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

/* Responsive
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
    font-size: 15px;
    font-size: 1.5rem;
  }
  body.open {
    overflow: hidden;
  }
  .l-header {
    z-index: 299;
    background-color: #fff;
    border-bottom: none;
    position: fixed;
    top: 0;
    min-width: auto;
  }
  .l-header__inner {
    padding: 30px 0 25px;
    width: 100%;
  }
  .l-header__logo {
    width: 78.125%;
    margin: 0 auto;
    position: relative;
    top: 0 !important;
    padding-top: 0;
    text-align: center;
  }
  .l-header__logo a {
    display: inline-block;
    width: auto;
  }
  .l-header__logo a img {
    width: auto;
    height: 35px;
  }
  .l-header__navigation {
    position: fixed;
    top: 70px;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all .6s;
    transition: all .6s;
    background-color: #ffffff;
    z-index: -1;
    visibility: hidden;
    overflow: auto;
    padding-bottom: 100px;
  }
  .l-header__navigation.open {
    opacity: 1;
    z-index: 298;
    visibility: visible;
    top: 90px;
  }
  .l-header__navigation.open .l-header__links > li {
    margin-top: 35px;
    opacity: 1;
  }
  .l-header__links {
    display: block;
    font-size: 1.6rem;
  }
  .l-header__links > li {
    text-align: center;
    margin: 20px 6.25% 0;
    opacity: .3;
  }
  .l-header__links > li:nth-child(1) {
    -webkit-transition: all .7s;
    transition: all .7s;
  }
  .l-header__links > li:nth-child(2) {
    -webkit-transition: all .8s;
    transition: all .8s;
  }
  .l-header__links > li:nth-child(3) {
    -webkit-transition: all .9s;
    transition: all .9s;
  }
  .l-header__links > li:nth-child(4) {
    -webkit-transition: all 1.0s;
    transition: all 1.0s;
  }
  .l-header__links > li:nth-child(5) {
    -webkit-transition: all 1.1s;
    transition: all 1.1s;
  }
  .open .l-header__banner--primary {
    display: none;
  }
  .l-header__banner--secondary {
    display: block;
    width: 53px;
    margin: 25px auto 0;
  }
  .l-header__sub-links {
    display: none;
    position: static;
    transform: translateX(0);
    padding: 30px 0 0;
    white-space: normal;
    text-align: center;
  }
  .l-header__sub-links > li:not(:first-child) {
    margin-top: 22px;
  }
  .l-header__btn-link a {
    margin-top: 0;
  }
  .l-header__menu_btn {
    display: block;
    position: absolute;
    right: 6.25%;
    top: 16px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .l-header__menu_btn .in {
    position: absolute;
    top: 16px;
    left: 8px;
  }
  .l-header__menu_btn .in span {
    background: #000000;
    border: none;
    height: 1px;
    width: 22px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .6s;
    transition: all .6s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
  }
  .l-header__menu_btn .in span:nth-child(2) {
    top: 6px;
  }
  .l-header__menu_btn.open .in span:nth-child(1) {
    -webkit-transform: translateY(3px) rotate(225deg);
    transform: translateY(3px) rotate(225deg);
  }
  .l-header__menu_btn.open .in span:nth-child(2) {
    -webkit-transform: translateY(-3px) rotate(135deg);
    transform: translateY(-3px) rotate(135deg);
  }
  .l-header.fixed_header {
    position: fixed;
  }
  .l-header.fixed_header .l-header__logo::after {
    display: none;
  }
  .l-header.fixed_header .l-header__navigation {
    padding-top: 0;
  }
  .l-header.fixed_header + .p-kv {
    margin-top: 50px;
  }
  .l-main {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .l-main__inner {
    padding: 0;
  }
  .l-footer__inner {
    width: 100%;
    padding: 40px 6.25%;
  }
  .l-footer__links {
    display: block;
  }
  .l-footer__links li {
    margin: 30px 0 0;
    text-align: center;
  }
  .l-footer__links li:first-child {
    margin-top: 0;
  }
  .l-footer__links li a {
    display: inline-block;
  }
  .l-footer__logo {
    vertical-align: top;
    margin-right: 25px;
  }
  .l-footer__address {
    font-size: 9px;
    font-size: 0.9rem;
  }
  .l-footer__address li {
    line-height: 1.5;
  }
  .l-footer__address li span:first-child {
    display: block;
  }
  .l-footer__copyright {
    padding: 30px 0;
  }
  .p-kv {
    padding-top: 0;
  }
  .p-kv__cover {
    left: 6.4%;
    bottom: 4%;
  }
  .p-kv__text {
    font-size: 17px;
    font-size: calc(2rem + ((1vw - 0.5rem) * 2.4));
  }
  #top .p-kv__cover {
    bottom: 2.5vh;
  }
  #top .p-kv__text {
    font-size: 3vh;
  }
  .p-section--separate + .p-section--separate {
    margin-top: 20px;
  }
  .p-section__inner {
    width: 100%;
    padding: 0 6.25%;
  }
  .p-section__inner.wide {
    width: 100%;
    padding: 0;
  }
  .p-section__inner.full {
    width: 100%;
    padding: 0;
  }
  .p-section__pagetitle {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 30px 0 24px;
  }
  .p-section__title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .p-section__title--02 {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 40px 0;
  }
  .p-section__title + .p-section__text {
    margin-top: 15px;
  }
  .p-section__text {
    text-align: left;
  }
  #p-section-news {
    background-color: transparent;
  }
  #p-section-news .p-section__title {
    padding: 45px 0 30px;
  }
  #p-section-news .p-news__tab {
    display: none;
    margin-bottom: 40px;
  }
  #p-section-news .p-news__label {
    margin: 0 15px;
  }
  #p-section-news .p-news__label:first-child {
    margin-left: 10px;
  }
  #p-section-news .p-news__label:last-child {
    margin-right: 10px;
  }
  #p-section-news .p-news__list {
    width: 100%;
    font-size: 1.2rem;
  }
  #p-section-news .p-news__item {
    display: block;
  }
  #p-section-news .p-news__item::after {
    display: none !important;
  }
  #p-section-news .p-news__item > dt::after {
    display: none !important;
  }
  #p-section-news .p-news__item.ellipsis > dd {
    width: 100%;
    white-space: unset;
  }
  #p-section-news .p-news__more {
    margin-top: 40px;
  }
  #p-section-news .p-news__more span::after {
    display: none !important;
  }
  #p-section-news .p-news__more-link {
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 12px;
  }
  #p-section-products .p-products__list {
    display: block;
  }
  #p-section-products .p-products__item {
    margin: 95px 0 0;
    width: 100%;
  }
  #p-section-products .p-products__item:first-child {
    margin-top: 0;
  }
  #p-section-products .p-products__item a {
    display: inline-block;
  }
  #p-section-products .p-products__item a > img {
    -webkit-transition: unset;
    transition: unset;
  }
  #p-section-products .p-products__item a::after {
    -webkit-transition: unset;
    transition: unset;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  #p-section-products .p-products__item a:hover {
    opacity: 1;
  }
  #p-section-products .p-products__item a:hover > img {
    opacity: 1;
  }
  #p-section-products .p-products__item a:hover::after {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  #p-section-products .p-products__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
  #p-section-products .p-products__title::after {
    bottom: -15px;
  }
  #p-section-instagram .p-section__inner {
    padding-bottom: 0;
  }
  #p-section-about .p-section__inner {
    padding: 0 6%;
  }
  #p-section-about .p-section__text {
    text-align: center;
    line-height: 2.833;
  }
  #p-section-about_profile {
    margin-top: 0;
  }
  #p-section-about_profile .p-profile__box {
    width: 100%;
    display: block;
  }
  #p-section-about_profile .p-profile__box .p-profile__left {
    width: 70%;
    margin: 0 auto;
  }
  #p-section-about_profile .p-profile__box .p-profile__left figcaption {
    margin-top: 8px;
    line-height: 1.75;
  }
  #p-section-about_profile .p-profile__box .p-profile__right {
    width: 100%;
    margin-top: 35px;
  }
  #p-section-about_profile .p-profile__box .p-profile__right .p-profile__name {
    text-align: center;
  }
  #p-section-about_profile .p-profile__box .p-profile__right .p-profile__name small {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.75;
    margin: 10px 0 0;
  }
  #p-section-about_profile .p-profile__box .p-profile__right small {
    text-align: center;
    display: block;
    font-size: 10px;
    font-size: 1.0rem;
    line-height: 1.75;
    margin: 10px 0 0;
  }
  #p-section-about_profile .p-profile__box .p-profile__right .p-profile__text {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.33;
  }
  #p-section-about_works {
    margin-top: 0;
  }
  #p-section-about_works .p-about_works__list {
    display: block;
  }
  #p-section-about_works .p-about_works__item {
    margin: 60px 0 0;
    width: 100%;
  }
  #p-section-about_works .p-about_works__item:first-child {
    margin-top: 0;
  }
  #p-section-about_works .p-about_works__title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.75;
    margin: 30px auto;
  }
  #p-section-about_works .p-about_works__text {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.33;
  }
  #p-section-about_story {
    margin-top: 0;
  }
  #p-section-about_story .p-section__inner {
    width: 100%;
  }
  #p-section-about_story .p-section__inner.wide {
    padding: 0 6.25%;
  }
  #p-section-about_story .p-section__inner.full {
    padding: 0 6.25%;
  }
  #p-section-about_story .p-about_story__item {
    margin-top: 35px;
  }
  #p-section-about_story .p-about_story__item:first-child {
    margin-top: 0;
  }
  #p-section-about_story .p-about_story__item:nth-child(1) .p-about_story__img img {
    position: relative;
    right: -7%;
  }
  #p-section-about_story .p-about_story__item:nth-child(3) {
    margin: 35px -7% 0;
  }
  #p-section-about_story .p-about_story__item:nth-child(3) .p-about_story__bg {
    padding: 0 6.25%;
  }
  #p-section-about_story .p-about_story__item.u-show-pc {
    display: none;
  }
  #p-section-about_story .p-about_story__img {
    width: 100%;
  }
  #p-section-about_story .p-about_story__bg {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    -webkit-transform: initial;
    transform: initial;
    position: relative;
    padding: 0;
    background: transparent;
    margin-top: 25px;
    width: 100%;
  }
  #p-section-about_story .p-about_story__title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  #p-section-about_story .p-about_story__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
  #p-section-about_philosophy {
    margin-top: 0;
  }
  #p-section-about_philosophy .p-about_philosophy__img {
    width: 100%;
  }
  #p-section-standard .p-section__inner {
    padding-bottom: 0;
  }
  #p-section-story .p-section__inner {
    width: 100%;
    padding: 0 6.25%;
  }
  #p-section-story .p-story__title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.75;
    padding: 35px 0 24px;
  }
  #p-section-story .p-story__text {
    width: 100%;
    line-height: 2.33;
  }
  #p-section-feature .p-feature__box {
    width: 100%;
    display: block;
  }
  #p-section-feature .p-feature__left {
    width: 100%;
  }
  #p-section-feature .p-feature__right {
    width: 100%;
  }
  #p-section-feature .p-feature__title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 25px;
    text-align: center;
  }
  #p-section-feature .p-feature__text {
    font-size: 13px;
    font-size: 1.3rem;
  }
  #p-section-lineup {
    margin-top: 50px;
  }
  #p-section-lineup .p-section__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
  #p-section-lineup01 {
    margin-top: 50px;
  }
  #p-section-lineup01 .p-section__title {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 50px 0 55px;
  }
  #p-section-lineup02 {
    margin-top: 50px;
  }
  #p-section-lineup02 .p-section__title {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 50px 0 55px;
  }
  #p-section-lineup03 {
    margin-top: 50px;
  }
  #p-section-lineup03 .p-section__title {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 50px 0 55px;
  }
  #p-section-lineup04 {
    margin-top: 50px;
  }
  #p-section-lineup04 .p-section__title {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 50px 0 55px;
  }
  #p-section-lineup05 {
    margin-top: 50px;
  }
  #p-section-lineup05 .p-section__title {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 50px 0 55px;
  }
  .p-main-box {
    display: block;
  }
  .p-main-box__left {
    width: 100%;
  }
  .p-main-box__right {
    width: 100%;
  }
  .p-main-box__heading {
    text-align: center;
    padding-top: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-main-box__title {
    text-align: center;
    margin-top: 24px;
  }
  .p-main-box__image {
    margin-top: 15px;
  }
  .p-main-box__text {
    width: 100%;
    margin-top: 0;
  }
  .p-main-box__text p {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .p-button, .p-button-01, .p-button-02 {
    display: block;
    width: 100%;
    margin: 0;
    padding: 20px 12px;
    border-width: 2px;
  }
  .p-button__wrap {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
  .p-button-01 {
    margin: 0;
    padding: 20px 12px;
    border-width: 2px;
    border-radius: 4px;
  }
  .p-button-02 {
    margin: 10px 0 0;
    padding: 20px 12px;
    border-width: 2px;
    border-radius: 4px;
  }
  .u-titleline {
    width: 100%;
  }
  .u-titleline:before {
    left: -10%;
    right: -10%;
    width: 120%;
  }
  .u-lineup {
    display: block;
  }
  .u-lineup__item {
    width: 100%;
    float: none;
  }
  .u-lineup__item--sp-2col {
    width: 50%;
    float: left;
  }
  .u-lineup__wrap_text {
    padding: 40px 0 45px;
  }
  .u-lineup__wrap_text::after {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .u-lineup__btn a {
    display: inline-block;
  }
  .u-lineup__btn a:hover .u-lineup__wrap_text::after {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  #standard_design_story #p-section-lineup {
    padding: 0 12%;
  }
  #standard_design_story .u-lineup .slick-slide img {
    width: 60%;
    margin: auto;
  }
  #standard_design_story .u-lineup .u-lineup__item {
    text-align: center;
  }
  .u-list__item {
    margin-top: 30px;
  }
  .u-list__item-left .u-list__img img {
    margin-left: -7%;
  }
  .u-list__item-left .u-list__bg {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    -webkit-transform: initial;
    transform: initial;
    position: relative;
    padding: 0;
    background: transparent;
    margin-top: 25px;
    width: 100%;
  }
  .u-list__item-right .u-list__img img {
    margin-right: -7%;
  }
  .u-list__item-right .u-list__bg {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    -webkit-transform: initial;
    transform: initial;
    position: relative;
    padding: 0;
    background: transparent;
    margin-top: 25px;
    width: 100%;
  }
  .u-list__item .u-item__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .u-list__item:nth-child(1)::before {
    background-color: #F5F5F5;
    width: 76%;
    height: 300px;
    content: '';
    display: block;
    position: absolute;
    left: auto;
    right: -7%;
    top: 110px;
  }
  .u-list__item:nth-child(2)::before {
    display: none;
  }
  .u-list__item:nth-child(3)::before {
    background-color: #F5F5F5;
    width: 76%;
    height: 285px;
    content: '';
    display: block;
    position: absolute;
    left: auto;
    right: -7%;
    top: -165px;
  }
  .u-list__item:nth-child(4)::before {
    background-color: #F5F5F5;
    width: 76%;
    height: 320px;
    content: '';
    display: block;
    position: absolute;
    right: auto;
    left: -7%;
    top: -40px;
  }
  .u-list__img {
    width: 100%;
  }
  .u-list__wrap {
    width: 100%;
    margin-top: 40px;
  }
  .u-list__wrap2 {
    width: 100%;
    margin: 40px 0;
  }
  #top .p-kv {
    margin-top: 100px;
    margin-bottom: 70px;
  }
  #top .p-kv__item {
    height: calc( 100vh - 160px );
  }
  #top .p-kv__img.kv-img-01 {
    background: url('/resources/img/rikiwatanabe/kv05_sp.jpg') center center/cover;
  }
  #top .p-kv__img.kv-img-02 {
    background: url('/resources/img/rikiwatanabe/kv07_sp.jpg') center center/cover;
  }
  #top .p-kv__img.kv-img-03 {
    background: url('/resources/img/rikiwatanabe/kv06_sp.jpg') center center/cover;
  }
  #top .p-kv__img.kv-img-04 {
    background: url('/resources/img/rikiwatanabe/kv08_sp.jpg') center center/cover;
  }
  #top .l-main {
    padding-top: 0;
  }
  #top .p-news__item > dt {
    margin-right: 0;
    width: 100%;
  }
  #top .p-news__item > dt::after {
    background-color: #ffffff !important;
  }
  #top .p-section__inner {
    padding-bottom: 0;
  }
  #top .p-section__title {
    font-size: 22px;
    font-size: 2.2rem;
    padding: 50px 0;
  }
  #top #p-section-design-story {
    border-top: 1px solid #231815;
  }
  #top #p-section-news {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
  }
  #top #p-section-news .p-section__inner {
    padding-bottom: 50px;
  }
  #top #p-section-news .p-section__title {
    padding: 45px 0 30px;
  }
  #top #p-section-products {
    border-top: 1px solid #231815;
    padding: 0;
  }
  #top #p-section-products .p-section__inner {
    padding-bottom: 34px;
  }
  #top #p-section-instagram {
    margin-top: 70px;
  }
}

@media screen and (max-width: 330px) {
  #p-section-news .p-news__label {
    margin: 0 10px;
  }
  #p-section-about .p-section__inner {
    padding: 0 5%;
  }
  .l-footer__logo {
    margin-right: 15px;
  }
  .l-footer__address li:nth-child(2) span:nth-child(2) {
    display: block;
  }
}

.align-center {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .align-center {
    display: block;
  }
}

.u-color-grey{
  color: grey;
  margin-bottom: 1rem;
}