@charset "UTF-8";
:root {
  --font-primary: "Noto Sans JP", sans-serif, ヒラギノ角ゴシック Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, Verdana, Arial, sans-serif;
  --color-link: #36C;
  --color-text: #333;
  --color-primary: #178CD6;
  --color-white: #FFF;
  --color-black: #000;
}

/* stylelint-disable */
/* ******************************************************************

    --common.css--

    0. BoxModel change

    1. Common setting
        1-1. Reset styles
        1-2. Font styles
        1-3. General styles

****************************************************************** */
/*==================================================================
    0. BoxModel change
===================================================================*/
/*==================================================================
    1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
    1-1. Reset styles
-------------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

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

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

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

fieldset,
img {
  border: none;
}

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

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

caption,
th {
  text-align: left;
}

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

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

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

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

object,
embed {
  height: 100%;
}

img {
  -ms-interpolation-mode: bicubic;
}

/* Font styles
-------------------------------------------------------------------*/
select,
input,
button,
textarea,
button {
  font-size: inherit;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/* General styles
-------------------------------------------------------------------*/
table {
  empty-cells: show;
}

input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

label {
  margin-right: 5px;
}

legend {
  display: none;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  padding: 3px 4px 0 3px;
  border: 1px solid #999;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  font-size: 1.3rem;
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  overflow-x: hidden;
  background: #FFF;
  font-size: 10px;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

/**
 * Basic styles for links
 */
a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  color: var(--color-link);
  text-decoration: underline;
}

body {
  color: var(--color-text);
  font-weight: 200;
  font-size: 1.3rem;
  line-height: 1.231;
  font-family: var(--font-primary);
}

/**
 * Helpers class for general use
 */
.sp-display {
  display: none !important;
}

@media only screen and (max-width: 815px) {
  .pc-display {
    display: none !important;
  }
  .sp-display {
    display: block !important;
  }
}
/* ------------------------------------------------------------------
    1-2. VisualFormattingModel styles
-------------------------------------------------------------------*/
.noDisplay {
  display: none;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

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

.clear {
  clear: both !important;
}

a.hover:hover,
input.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/* ------------------------------------------------------------------
    1-3. BoxModel styles
-------------------------------------------------------------------*/
.auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt0,
.mv0,
.ma0 {
  margin-top: 0 !important;
}

.mr0,
.mh0,
.ma0 {
  margin-right: 0 !important;
}

.mb0,
.mv0,
.ma0 {
  margin-bottom: 0 !important;
}

.ml0,
.mh0,
.ma0 {
  margin-left: 0 !important;
}

.pt0,
.pv0,
.pa0 {
  padding-top: 0 !important;
}

.pr0,
.ph0,
.pa0 {
  padding-right: 0 !important;
}

.pb0,
.pv0,
.pa0 {
  padding-bottom: 0 !important;
}

.pl0,
.ph0,
.pa0 {
  padding-left: 0 !important;
}

.mt5,
.mv5,
.ma5 {
  margin-top: 5px !important;
}

.mr5,
.mh5,
.ma5 {
  margin-right: 5px !important;
}

.mb5,
.mv5,
.ma5 {
  margin-bottom: 5px !important;
}

.ml5,
.mh5,
.ma5 {
  margin-left: 5px !important;
}

.pt5,
.pv5,
.pa5 {
  padding-top: 5px !important;
}

.pr5,
.ph5,
.pa5 {
  padding-right: 5px !important;
}

.pb5,
.pv5,
.pa5 {
  padding-bottom: 5px !important;
}

.pl5,
.ph5,
.pa5 {
  padding-left: 5px !important;
}

.mt10,
.mv10,
.ma10 {
  margin-top: 10px !important;
}

.mr10,
.mh10,
.ma10 {
  margin-right: 10px !important;
}

.mb10,
.mv10,
.ma10 {
  margin-bottom: 10px !important;
}

.ml10,
.mh10,
.ma10 {
  margin-left: 10px !important;
}

.pt10,
.pv10,
.pa10 {
  padding-top: 10px !important;
}

.pr10,
.ph10,
.pa10 {
  padding-right: 10px !important;
}

.pb10,
.pv10,
.pa10 {
  padding-bottom: 10px !important;
}

.pl10,
.ph10,
.pa10 {
  padding-left: 10px !important;
}

.mt20,
.mv20,
.ma20 {
  margin-top: 20px !important;
}

.mr20,
.mh20,
.ma20 {
  margin-right: 20px !important;
}

.mb20,
.mv20,
.ma20 {
  margin-bottom: 20px !important;
}

.ml20,
.mh20,
.ma20 {
  margin-left: 20px !important;
}

.pt20,
.pv20,
.pa20 {
  padding-top: 20px !important;
}

.pr20,
.ph20,
.pa20 {
  padding-right: 20px !important;
}

.pb20,
.pv20,
.pa20 {
  padding-bottom: 20px !important;
}

.pl20,
.ph20,
.pa20 {
  padding-left: 20px !important;
}

.mt30,
.mv30,
.ma30 {
  margin-top: 30px !important;
}

.mr30,
.mh30,
.ma30 {
  margin-right: 30px !important;
}

.mb30,
.mv30,
.ma30 {
  margin-bottom: 30px !important;
}

.ml30,
.mh30,
.ma30 {
  margin-left: 30px !important;
}

.pt30,
.pv30,
.pa30 {
  padding-top: 30px !important;
}

.pr30,
.ph30,
.pa30 {
  padding-right: 30px !important;
}

.pb30,
.pv30,
.pa30 {
  padding-bottom: 30px !important;
}

.pl30,
.ph30,
.pa30 {
  padding-left: 30px !important;
}

.mt40,
.mv40,
.ma40 {
  margin-top: 40px !important;
}

.mr40,
.mh40,
.ma40 {
  margin-right: 40px !important;
}

.mb40,
.mv40,
.ma40 {
  margin-bottom: 40px !important;
}

.ml40,
.mh40,
.ma40 {
  margin-left: 40px !important;
}

.pt40,
.pv40,
.pa40 {
  padding-top: 40px !important;
}

.pr40,
.ph40,
.pa40 {
  padding-right: 40px !important;
}

.pb40,
.pv40,
.pa40 {
  padding-bottom: 40px !important;
}

.pl40,
.ph40,
.pa40 {
  padding-left: 40px !important;
}

.bt0,
.ba0 {
  border-top: none !important;
}

.br0,
.ba0 {
  border-right: none !important;
}

.bb0,
.ba0 {
  border-bottom: none !important;
}

.bl0,
.ba0 {
  border-left: none !important;
}

/* ------------------------------------------------------------------
    1-4. Text styles
-------------------------------------------------------------------*/
strong,
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.note {
  margin-left: 1em;
  text-indent: -1em;
}

.f10 {
  font-size: 77%;
}

.f11 {
  font-size: 85%;
}

.f12 {
  font-size: 93%;
}

.f14 {
  font-size: 108%;
}

.f15 {
  font-size: 116%;
}

.f16 {
  font-size: 123.1%;
}

.f17 {
  font-size: 131%;
}

.f18 {
  font-size: 138.5%;
}

.f19 {
  font-size: 146.5%;
}

.f20 {
  font-size: 153.9%;
}

.f21 {
  font-size: 161.6%;
}

.f22 {
  font-size: 167%;
}

.f23 {
  font-size: 174%;
}

.f24 {
  font-size: 182%;
}

.f25 {
  font-size: 189%;
}

.f26 {
  font-size: 197%;
}

.red {
  color: #C00;
}

.white {
  color: #FFF;
}

.grayC {
  color: #CCC;
}

.gray9 {
  color: #999;
}

.gray6 {
  color: #666;
}

.gray3 {
  color: #333;
}

.black {
  color: #000;
}

.middle {
  vertical-align: middle !important;
}

.center {
  text-align: center !important;
}

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

.right {
  text-align: right !important;
}

.underline {
  text-decoration: underline !important;
}

/* ------------------------------------------------------------------
    1-5. List styles
-------------------------------------------------------------------*/
.disc {
  padding-left: 2em;
  list-style: disc;
}

.circle {
  padding-left: 2em;
  list-style: circle;
}

.decimal {
  padding-left: 2.4em;
  list-style: decimal;
}

/* ------------------------------------------------------------------
    1-6. CSS3 common styles
-------------------------------------------------------------------*/
.boxShadow {
  box-shadow: 0 0 5px #DDD;
}

.textShadowW {
  text-shadow: 0 1px 0 #E7E7E7;
}

.textShadowB {
  text-shadow: 0 1px 0 #111;
}

.radius5 {
  border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
}

[data-aos=fade-up] {
  transform: translate3d(0, 25px, 0);
}

.pt-100 {
  padding-top: 100px !important;
}

.fw-400 {
  font-weight: 400;
}

.pointer-events-none {
  pointer-events: none;
}

.line, .menu-icon::after, .menu-icon::before, .menu-icon span {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: translateX(0);
  transition-duration: 0.5s;
}

.logo-left {
  display: inline-block;
}
.logo-left img {
  height: 19px;
  width: auto;
}

.left-content {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  place-content: center;
  flex: 1;
  padding: 0 20px;
  height: 100vh;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #131417;
  position: relative;
  padding: 30px 20px;
  z-index: 3;
}
.header--logo {
  display: block;
}
.header .menu-icon {
  position: relative;
  top: auto;
  right: auto;
}

@media only screen and (min-width: 815.1px) {
  .logo,
  .logo-left {
    transition: opacity 0.25s;
  }
  .logo:hover,
  .logo-left:hover {
    opacity: 0.75;
  }
}
@media only screen and (max-width: 815px) {
  .left-content {
    display: none;
  }
}
.nav {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.nav a {
  display: inline-block;
  text-align: center;
  transition: opacity 0.25s;
}
.nav a picture {
  display: block;
  font-size: 0;
}
.nav a picture img {
  height: 19px;
  max-width: var(--max-width);
  width: auto;
}
.nav a:not(:last-child) {
  margin-bottom: 45px;
}
@media only screen and (min-width: 815.1px) {
  .nav a:hover {
    opacity: 0.6;
  }
}
@media only screen and (max-width: 815px) {
  .nav a picture img {
    height: auto;
  }
}

.menu-icon {
  display: none;
  position: fixed;
  width: 38px;
  height: 38px;
  margin: 0;
  right: 20px;
  top: 24px;
  z-index: 100;
}
.menu-icon span {
  height: 1px;
  top: 15px;
}
.menu-icon::before {
  height: 1px;
  top: 0;
}
.menu-icon::after {
  height: 1px;
  top: 32px;
}
.menu-icon.open span {
  transition-duration: 0.5s;
  background: transparent;
}
.menu-icon.open:before {
  transform: rotateZ(45deg) translate(13px, 13px);
}
.menu-icon.open:after {
  transform: rotateZ(-45deg) translate(9px, -9px);
}
.menu-content {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  flex: 1;
  height: 100vh;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
  transition: opacity 0.3s linear, visibility 0.3s linear;
}
.menu-content.active {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 815px) {
  .menu {
    z-index: 100;
  }
  .menu-icon {
    display: block;
  }
  .menu-content {
    background: url(../img/common/bg_content.jpg) no-repeat center right;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s linear, visibility 0.3s linear;
  }
  .menu-content.active {
    opacity: 1;
    visibility: visible;
  }
  .nav a:not(:last-child) {
    margin-bottom: 52px;
  }
}
@media only screen and (max-height: 450px) {
  .nav a:not(:last-child) {
    margin-bottom: 28px;
  }
}
.inner {
  padding-left: 10px;
  padding-right: 10px;
}

.contents {
  position: relative;
  display: flex;
  align-items: flex-start;
  z-index: 1;
}
.contents::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/common/bg_content.jpg") no-repeat center;
  background-size: cover;
  z-index: 0;
}

.main {
  position: relative;
  max-width: 570px;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3), 10px -7px 15px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  z-index: 3;
}
@media only screen and (max-width: 1160px) {
  .main {
    max-width: 410px;
  }
}

.bg {
  background: url("../img/common/bg_main.jpg") repeat-y 0 0/100%;
}

@media only screen and (max-width: 815px) {
  .main {
    max-width: 100%;
    z-index: initial;
  }
}
.btn--stores {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-height: 80px;
  margin: 65px auto 0;
  font-size: 2.4rem;
  line-height: 1.2;
  background-color: rgba(206, 194, 185, 0.6);
}
.btn--stores::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border: 1px solid rgba(26, 26, 26, 0.6);
  transform: translate(-50%, -50%);
}
.btn--bg, .btn--link, .btn--bg-icon {
  align-items: center;
  background-color: #5a5a5a;
  color: #989898;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  height: 90px;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.btn--bg:not(:last-child), .btn--link:not(:last-child), .btn--bg-icon:not(:last-child) {
  margin-bottom: 20px;
}
.btn--bg-icon:after {
  background: url("../img/common/icon_arrow_down.svg") no-repeat center center/100%;
  content: "";
  display: inline-block;
  height: 20px;
  margin-left: 20px;
  width: 19px;
}
.btn--link {
  flex-direction: column;
  background-color: #AAAAAA;
  color: #1A1A1A;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 1px;
  padding: 10px;
}
.btn--link span {
  font-weight: bold;
  font-size: 1.8rem;
}
@media only screen and (min-width: 815.1px) {
  .btn--stores {
    transition: opacity 0.25s;
  }
  .btn--stores:hover {
    cursor: pointer;
    opacity: 0.75;
  }
  .btn--bg, .btn--bg-icon, .btn--link {
    transition: opacity 0.25s;
  }
  .btn--bg:hover, .btn--bg-icon:hover, .btn--link:hover {
    cursor: pointer;
    opacity: 0.75;
  }
  .btn--link:hover {
    color: #1A1A1A;
    text-decoration: none;
  }
}
@media only screen and (max-width: 815px) {
  .btn--stores {
    min-height: 74px;
    margin-top: 94px;
  }
  .btn--stores img {
    max-width: 160px;
  }
}

.mb .pc-display {
  display: block !important;
}

.sp-display {
  display: none !important;
}

@media only screen and (max-width: 815px) {
  .pc-display {
    display: none !important;
  }
  .sp-display {
    display: block !important;
  }
}
.headline {
  padding-bottom: 70px;
  color: #CEC2B9;
  line-height: 1.7;
  font-size: 2.6rem;
  text-align: center;
  font-family: "Noto Sans CJK JP", sans-serif;
  letter-spacing: 3px;
}
.headline__img {
  display: block;
}
.headline--primary {
  margin-bottom: 25px;
  text-align: center;
}
.headline--primary img {
  height: 50px;
  width: auto;
}
.headline--primary img.h23 {
  height: 23px;
}
.headline--primary img.h24 {
  height: 24px;
}
.headline--primary img.h38sp28 {
  height: 38px;
}
.headline--primary img.h41sp28 {
  height: 41px;
}
.headline--primary img.h95sp65 {
  height: 95px;
}
.headline--primary .small-txt {
  display: block;
  padding-top: 10px;
  color: #CEC2B9;
  font-size: 16px;
  font-weight: 500;
}
.headline--border {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 11px;
  padding-left: 10px;
}
.headline--border span {
  border: 1px solid #e0e0e0;
  color: #e0e0e0;
  display: inline-block;
  font-size: 2.3rem;
  padding: 6px 6px 8px 11px;
  position: relative;
}
.headline--border span::before {
  background: url("../img/common/icon_feature.svg") no-repeat 0 0/100%;
  content: "";
  display: inline-block;
  height: 17px;
  left: -1px;
  position: absolute;
  translate: 0 -100%;
  top: 0;
  width: 65px;
}
.headline__line {
  position: relative;
  padding-bottom: 70px;
  text-align: center;
  font-family: "Noto Sans CJK JP", sans-serif;
  z-index: 3;
}
.headline__line::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  bottom: -50px;
  left: 50%;
  background-color: #CEC2B9;
  transform: translateX(-50%);
  will-change: transform;
}
.headline__line--txt {
  display: block;
  color: #CEC2B9;
  line-height: 1.7;
  font-size: 2.6rem;
}
.headline--white {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 815px) {
  .headline {
    padding-bottom: 55px;
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .headline::before {
    height: 68px;
    bottom: -17px;
  }
  .headline__img {
    margin-bottom: 20px;
  }
  .headline--primary {
    margin-bottom: 15px;
  }
  .headline--primary img {
    height: 34px;
  }
  .headline--primary img.h38sp28 {
    height: 28px;
  }
  .headline--primary img.h41sp28 {
    height: 28px;
  }
  .headline--primary img.h95sp65 {
    height: 65px;
  }
  .headline--primary .small-txt {
    padding-top: 5px;
    font-size: 14px;
  }
  .headline--border {
    padding-left: 5px;
  }
  .headline--border span {
    padding: 5px 8px 5px 11px;
  }
  .headline--white {
    font-size: 2.6rem;
  }
}

.keyv {
  position: relative;
}
.keyv__img {
  width: 100%;
  vertical-align: middle;
}
.keyv__ttl {
  bottom: 220px;
  position: absolute;
  right: 86px;
}
.keyv__ttl img {
  height: auto;
  width: 45px;
}
.keyv__logo {
  display: inline-block;
  left: 44px;
  position: absolute;
  top: 55px;
}
.keyv__logo img {
  height: 19px;
  width: auto;
}
.keyv__content {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
}
.keyv__content--title {
  margin-bottom: 5px;
  height: 40px;
  vertical-align: middle;
}
.keyv__content--txt {
  height: 24px;
  padding-left: 25px;
  display: block;
}
@media only screen and (max-width: 1200px) {
  .keyv__ttl {
    bottom: 200px;
    right: 40px;
  }
}
@media only screen and (max-width: 815px) {
  .keyv__logo {
    left: 29px;
    position: fixed;
    top: 36px;
    z-index: 1;
    transition: transform 0.3s;
  }
  .keyv__logo img {
    height: 13px;
  }
  .keyv__ttl {
    bottom: 153px;
    right: 59px;
  }
  .keyv__ttl img {
    width: 30px;
  }
}

.gallery {
  padding-top: 131px;
  padding-bottom: 47px;
}
.gallery__item {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
  width: 100%;
}
.gallery__item picture {
  display: block;
  padding-top: 72.7272727273%;
  position: relative;
  width: 100%;
}
.gallery__item img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.gallery__avatar {
  margin-bottom: 8px;
}
.gallery__thumb .splide__track {
  padding-left: 10px !important;
  padding-right: 10px !important;
  padding-bottom: 14px;
}
.gallery__thumb .splide__slide {
  border-width: 0 !important;
}
.gallery__thumb .splide__slide.is-active .gallery__item::after {
  border-color: rgba(224, 224, 224, 0.283);
}
.gallery__thumb .gallery__item {
  height: 75px;
  margin-bottom: 0;
  position: relative;
  width: 75px;
}
.gallery__thumb .gallery__item::after {
  border: 2px solid transparent;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: border-color 0.25s;
  width: 100%;
}
@media only screen and (max-width: 815px) {
  .gallery {
    padding-bottom: 0;
  }
  .gallery__avatar {
    margin-bottom: 4px;
  }
  .gallery__item {
    margin-bottom: 20px;
  }
  .gallery__item picture {
    padding-top: 108.1081081081%;
  }
}

.special {
  padding-top: 80px;
}
.special__box {
  margin-top: -5px;
  padding-left: 25px;
  padding-right: 25px;
}
.special__img {
  display: block;
  font-size: 0;
  margin-bottom: 19px;
}
.special__img img {
  height: auto;
  width: 100%;
}
.special__txt {
  color: #e0e0e0;
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 48px;
}
.special__wrap {
  margin-bottom: 50px;
}
.special__ttl {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-bottom: 29px;
  text-align: center;
}
.special__sns {
  align-items: center;
  -moz-column-gap: 44px;
       column-gap: 44px;
  display: flex;
  justify-content: flex-start;
  margin: 30px 0 45px 0;
}
.special__sns a {
  display: inline-block;
  font-size: 0;
}
.special__sns img {
  height: 24px;
  width: auto;
}
.special__copyright {
  font-size: 1.2rem;
  text-align: center;
  color: #e0e0e0;
  padding-bottom: 50px;
}
.special-contact {
  display: flex;
  flex-direction: column;
  color: #e0e0e0;
}
.special-contact__en {
  font-size: 2.9rem;
  margin-bottom: 50px;
}
.special-contact__tel {
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.special-contact__tel span {
  margin-bottom: 10px;
  display: block;
}
.special-contact__phone {
  pointer-events: none;
  font-size: 3rem;
  font-weight: 400;
  color: #e0e0e0;
}
.special-contact__txt {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.75;
}
.special-contact__txt--mb35 {
  margin-bottom: 35px;
}
.special-contact__ttl {
  font-size: 2.1rem;
  margin-bottom: 8px;
}
.special-contact__link {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-white);
  margin-bottom: 30px;
  transition: opacity 0.25s;
}
.special-contact__link:hover {
  color: #e0e0e0;
  text-decoration: none;
}
.special-contact__link:hover span {
  color: #e0e0e0;
}
.special-contact__link span {
  font-size: 1.8rem;
  color: #e0e0e0;
  padding: 0 20px;
}
.special-contact__link::before {
  position: absolute;
  top: 50%;
  right: 1.4em;
  width: 0.6em;
  height: 0.6em;
  transform: rotate(45deg) translateY(-50%);
  border: 1px solid #fff;
  border-bottom: none;
  border-left: none;
  content: "";
  transition: all 0.5s;
}
.btn-note {
	text-align: center;
	padding: 0 10px;
	font-size: 1.6rem;
}
.special__list {
  line-height: 1.8;
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 50px;
}
.special__list li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.special__list a {
  color: #e0e0e0;
  text-decoration: underline;
  font-weight: 500;
}
.special__inner {
  padding: 50px 35px 0;
}
@media only screen and (min-width: 815.1px) {
  .special__sns a {
    transition: 0.25s;
  }
  .special__sns a:hover {
    opacity: 0.75;
  }
  .special-contact__link:hover {
    text-decoration: none;
    opacity: 0.75;
  }
}
@media only screen and (max-width: 815px) {
  .special {
    padding-top: 50px;
  }
  .special__box {
    padding-left: 0;
    padding-right: 0;
  }
  .special__img {
    margin-bottom: 30px;
  }
  .special__txt {
    margin-bottom: 20px;
    padding-left: 10px;
  }
  .special__copyright {
    font-size: 1.1rem;
  }
  .special-contact__en {
    font-size: 2rem;
    margin-bottom: 35px;
  }
  .special-contact__tel {
    font-size: 1.5rem;
    margin-bottom: 17px;
  }
  .special-contact__tel span {
    margin-bottom: 8px;
  }
  .special-contact__phone {
    pointer-events: all;
    font-size: 2.9rem;
  }
  .special-contact__txt {
    font-size: 1.5rem;
    margin-bottom: 36px;
  }
  .special-contact__txt--mb35 {
    margin-bottom: 26px;
  }
  .special-contact__ttl {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
  .special-contact__link {
    min-height: 50px;
    margin-bottom: 36px;
  }
  .special-contact__link span {
    font-size: 1.5rem;
    padding: 0 10px;
  }
  .special__list {
    font-size: 1.2rem;
    margin-bottom: 38px;
  }
  .special__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sec {
  padding-top: 80px;
}
.sec .headline--primary.mb-85 {
  margin-bottom: 85px;
}
.sec--family {
  margin-bottom: 43px;
}
.sec-img img {
  vertical-align: bottom;
  width: 100%;
}
.sec-img--w335 {
  max-width: 335px;
}
.sec-img--w350 {
  max-width: 350px;
}
.sec-img.mb-10 {
  margin-bottom: 10px;
}
.sec-img.mb-15 {
  margin-bottom: 15px;
}
.sec-img.mb-20 {
  margin-bottom: 20px;
}
.sec-img.mb-25 {
  margin-bottom: 25px;
}
.sec-img.mb-40 {
  margin-bottom: 40px;
}
.sec-img.mb-100 {
  margin-bottom: 100px;
}
.sec-title {
  padding-left: 10px;
}
.sec-title.mb-70 {
  margin-bottom: 70px;
}
.sec-des {
  padding-left: 10px;
}
.sec-des.mb-10 {
  margin-bottom: 10px;
}
.sec-box {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  background-color: #131417;
  padding: 50px 15px;
}
.sec-box .sec-txt {
  padding: 0;
  letter-spacing: 2px;
  line-height: 2.6;
}
.sec-wrap {
  padding: 50px 20px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  gap: 78px;
}
.sec-wrap__bg {
  background: url("../img/home/bg_lineup.jpg") no-repeat center/100% 100%;
}
.sec-wrap--row {
  justify-content: center;
  flex-direction: row;
  gap: 58px;
  padding: 30px 20px 20px;
  border-radius: 15px;
}
.sec-block {
  display: flex;
  flex-direction: column;
  width: calc(100% - 86px);
}
.sec-pen {
  display: flex;
  flex-direction: column;
  max-width: 364px;
}
.sec-pen--row {
  flex-direction: row;
  max-width: 340px;
}
.sec-pen--row .sec-img {
  width: 58px;
  margin: 0 26px 0 10px;
}
.sec-pen .txt-bold {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  margin: 7px 0 21px;
}
.sec-pen .txt {
  align-self: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 13px;
}
.sec-pen .txt--border {
  font-size: 11px;
  padding: 4px 5px 0;
  text-align: center;
  border-top: 1px solid rgba(224, 224, 224, 0.283);
  margin-bottom: 0;
}
.sec-pen .txt--border span {
  font-weight: 400;
}
.sec-pen .type {
  align-self: flex-start;
  margin-bottom: 26px;
}
.sec-pen__inner {
  padding-left: 12px;
}
.sec-pen__inner--space {
  padding-left: 18px;
}
.sec-pen .button-link {
  max-width: 200px;
  margin: 0 auto;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(224, 224, 224, 0.283);
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
.sec-pen .button-link img {
  transition: transform 0.3s;
}
.sec-pen .button-link span {
  font-size: 16px;
  margin-right: 15px;
}
.sec-pen .button-link:hover {
  text-decoration: none;
}
.sec-pen .btn-list {
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.sec-pen .btn-list li {
  width: calc((100% - 10px) / 2);
}
.sec-pen .btn-list li .button-link {
  max-width: 150px;
}
.sec-pen .btn-list li .button-link span {
  margin-right: 10px;
}
.sec--another .sec-wrap {
  padding: 45px 20px 64px;
}
.sec--another .button-link {
  margin: 0;
}
.sec-txt {
  text-align: justify;
  color: #F0E6DC;
  font-size: 1.6rem;
  line-height: 1.75;
}
.sec-txt__note {
  margin-top: 15px;
  color: #F0E6DC;
  font-size: 1.4rem;
  line-height: 1.6;
}
.sec-txt__small {
  margin-top: 7px;
  color: #F0E6DC;
  font-size: 1.3rem;
  line-height: 1.6;
}
.sec-txt__pig {
  color: #F0E6DC;
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
}
.sec-txt__pig span {
  display: inline-block;
}
.sec-txt--bg {
  margin-bottom: 40px;
  padding: 10px 25px;
}
.sec-txt--spacing {
  letter-spacing: 3px;
}
.sec-txt.mb-50 {
  margin-bottom: 50px;
}
.sec-txt.mb-100 {
  margin-bottom: 100px;
}
.sec-feature {
  padding-top: 150px;
}
.sec-perfect {
  padding-top: 165px;
}
.sec-lineup {
  padding-top: 150px;
}
.sec-lineup .headline {
  padding-bottom: 15px;
}
.sec-lineup .sec-img {
  margin-bottom: 3px;
  text-align: center;
}
.sec-lineup .sec-img img {
  width: 45px;
}
.sec-spec {
  padding-top: 180px;
}
.sec-spec .headline {
  padding-bottom: 18px;
}
.sec-spec .sec-title {
  margin-bottom: 20px;
}
.sec-spec .b-spec {
  padding: 32px 25px 18px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.2392156863);
}
.sec-spec .b-spec__top {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 27px;
  padding-right: 50px;
  border-bottom: 1px solid rgba(224, 224, 224, 0.283);
}
.sec-spec .b-spec__top--info {
  position: absolute;
  top: -6px;
  left: 0;
}
.sec-spec .b-spec__top--info li {
  color: #E0E0E0;
  font-size: 1.8rem;
  line-height: 1.4;
}
.sec-spec .b-spec__top-img img {
  vertical-align: middle;
}
.sec-spec .b-spec__image {
  width: 86%;
}
.sec-spec .b-spec__bottom {
  color: #e0e0e0;
  padding-top: 15px;
  padding-left: 45px;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
}
.sec-spec .b-spec--title {
  font-size: 22px;
  margin-bottom: 20px;
}
.sec-spec .b-spec--title span {
  display: block;
  margin-top: 2px;
  font-size: 1.4rem;
  line-height: 1.4;
}
.sec-spec .b-spec__price {
  font-size: 2.5rem;
  font-weight: 500;
}
.sec-spec .b-spec__price--info {
  font-size: 11px;
  color: #E0E0E0;
  font-weight: 300;
  margin-right: 10px;
}
.sec-spec .b-spec__price--note {
  font-size: 16px;
  color: #E0E0E0;
  font-weight: 300;
}
.sec-spec .b-spec__price--num {
  font-family: "游ゴシック", YuGothic;
  font-weight: 600;
  letter-spacing: 1px;
}
.sec-spec .b-spec--bg {
  background: url("../img/home/bg_spec.jpg") no-repeat center/100% 100%;
}
@media only screen and (max-width: 1160px) {
  .sec-wrap--row {
    gap: 20px;
  }
}
@media only screen and (min-width: 815.1px) {
  .sec-pen .button-link:hover {
    text-decoration: none;
    opacity: 0.5;
  }
  .sec-pen .button-link:hover img {
    transform: translateX(10px);
  }
}
@media only screen and (max-width: 815px) {
  .sec--another {
    padding-top: 52px;
  }
  .sec--another .sec-wrap {
    padding: 40px 19px 45px;
  }
  .sec--another .sec-block .txt {
    font-size: 13px;
  }
  .sec--family {
    margin-bottom: 47px;
  }
  .sec-img.mb-100 {
    margin-bottom: 50px;
  }
  .sec-box {
    display: block;
  }
  .sec-txt {
    padding: 12px 7px 12px 7px;
    margin-bottom: 50px;
  }
  .sec-txt__note {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .sec-spec {
    padding-top: 147px;
  }
  .sec-spec .headline {
    padding-bottom: 11px;
  }
  .sec-spec .headline .headline__img {
    margin-bottom: 0;
  }
  .sec-spec .sec-title {
    margin-bottom: 20px;
  }
  .sec-spec .b-spec {
    padding: 48px 16px 20px 27px;
  }
  .sec-spec .b-spec__top {
    padding-bottom: 12px;
    padding-right: 0;
  }
  .sec-spec .b-spec__top--info {
    top: -20px;
    left: -11px;
  }
  .sec-spec .b-spec__top-img {
    max-width: 270px;
  }
  .sec-spec .b-spec__top-img img {
    vertical-align: middle;
  }
  .sec-spec .b-spec__bottom {
    padding-top: 15px;
    padding-left: 25px;
    width: 100%;
  }
  .sec-spec .b-spec__price--note {
    font-size: 14px;
  }
  .sec-wrap {
    padding: 50px 10px 45px;
    gap: 65px;
  }
  .sec-wrap--row {
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    border-radius: 10px;
  }
  .sec-lineup {
    padding-top: 105px;
  }
  .sec-lineup .headline {
    padding-bottom: 10px;
  }
  .sec-feature {
    padding-top: 127px;
  }
  .sec-perfect {
    padding-top: 200px;
  }
  .sec-perfect .headline__line {
    padding-bottom: 43px;
  }
  .sec-perfect .headline__line::before {
    bottom: -34px;
  }
  .sec__inner {
    padding-left: 5px;
  }
  .sec__inner--space {
    padding-left: 5px;
  }
  .sec--row .sec-img {
    width: 58px;
    margin: 0 26px 0 5px;
  }
}
@media only screen and (max-width: 375px) {
  .sec-spec .b-spec {
    padding-left: 16px;
  }
  .sec-spec .b-spec__bottom {
    padding-left: 12px;
  }
  .sec-spec .b-spec__image {
    width: 80%;
    margin: 0 auto;
  }
  .sec-spec .b-spec__top--info {
    top: -30px;
    left: 0px;
  }
  .sec-spec .b-spec__top--info li {
    font-size: 1.4rem;
  }
  .sec-spec .b-spec__price {
    font-size: 3rem;
  }
  .sec-spec .b-spec__price--info {
    margin-right: 10px;
  }
  .sec-spec .b-spec__price--note {
    font-size: 12px;
  }
}

#page-interview {
  color: #E0E0E0;
}
#page-interview #main {
  background-color: #131417;
}
#page-interview .inner {
  padding: 0 15px;
}
@media only screen and (max-width: 815px) {
  #page-interview .inner {
    padding: 0 10px;
  }
}

.interview__header {
  height: 160px;
}
.interview__keyv img {
  width: 100%;
}
.interview__logo {
  z-index: 3;
  position: fixed;
  top: 77px;
  left: 15px;
}
.interview__logo a {
  display: block;
}
.interview__logo a img {
  transition: width 0.3s, transform 0.3s;
  width: 292px;
}
.interview__logo.scroll a img {
  width: 233.6px;
  transform: translateY(-50px);
}
.interview__concept {
  padding: 30px 20px 30px 30px;
  background-color: #44403F;
}
.interview__concept .txt {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.1;
  margin-bottom: 78px;
}
.interview__concept--txt {
  background-color: transparent;
  padding-bottom: 0;
}
.interview__concept--mb {
  margin-bottom: 30px;
}
.interview__banner {
  padding: 0 30px;
}
.interview__banner p {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.interview__banner p::before {
  content: "―― ";
}
.interview__block {
  padding: 30px 0 5px;
}
.interview__block--mb {
  margin-bottom: 110px;
}
.interview__avatar {
  display: flex;
  align-items: flex-end;
  gap: 19px;
  position: relative;
  overflow: hidden;
  padding-bottom: 36px;
  margin-bottom: 20px;
}
.interview__avatar img {
  margin-left: 15px;
}
.interview__avatar p {
  font-size: 2rem;
  line-height: 1.6;
}
.interview__avatar::before {
  z-index: 2;
  position: absolute;
  content: "";
  background: url("../img/interview/img_border.svg") no-repeat;
  width: 100%;
  height: 18px;
  bottom: 0;
  left: 0;
}
.interview__avatar::after {
  z-index: 1;
  position: absolute;
  content: "";
  width: 100%;
  height: 18px;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #808080;
}
.interview__avatar--reserve {
  flex-direction: row-reverse;
  align-self: flex-end;
}
.interview__avatar--reserve img {
  margin-left: 0;
  margin-right: 15px;
}
.interview__avatar--reserve::before {
  transform: scaleX(-1);
}
.interview__content {
  padding-left: 10px;
  padding-right: 15px;
  font-size: 2.4rem;
  line-height: 1.8;
}
.interview__content--mb {
  margin-bottom: 50px;
}
.interview__img {
  margin-bottom: 10px;
}
.interview__img img {
  width: 100%;
}
@media only screen and (max-width: 815px) {
  .interview__concept {
    padding: 20px;
  }
  .interview__concept .txt {
    font-size: 1.6rem;
    margin-bottom: 54px;
  }
  .interview__concept--txt {
    padding-bottom: 0;
  }
  .interview__concept--mb {
    margin-bottom: 20px;
  }
  .interview__banner {
    padding: 0 20px;
  }
  .interview__banner p {
    font-size: 1.6rem;
  }
  .interview__block {
    padding: 20px 0 5px;
  }
  .interview__block--mb {
    margin-bottom: 60px;
  }
  .interview__avatar {
    gap: 12px;
    padding-bottom: 26px;
    margin-bottom: 15px;
  }
  .interview__avatar img {
    margin-left: 5px;
    width: 55px;
  }
  .interview__avatar p {
    font-size: 1.4rem;
  }
  .interview__avatar::before {
    height: 12px;
    transform: translateX(-20px);
  }
  .interview__avatar--reserve img {
    margin-right: 5px;
    margin-left: 0;
  }
  .interview__avatar--reserve::before {
    transform: scaleX(-1) translateX(-20px);
  }
  .interview__content {
    padding-left: 5px;
    padding-right: 0;
    font-size: 1.6rem;
  }
  .interview__content--mb {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 390px) {
  .interview__header {
    height: 110px;
  }
  .interview__logo {
    top: 52px;
    height: 20px;
  }
  .interview__logo a img {
    width: 200px;
  }
  .interview__logo.scroll a img {
    width: 160px;
    transform: translateY(-20px);
  }
}

.txt-cmn {
  font-size: 2rem;
}

.icon-annotation {
  font-size: 0.85rem;
  vertical-align: middle;
}

sup.icon-annotation {
  font-size: 0.85rem;
  vertical-align: super;
}

.b-introduce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding-top: 63px;
  padding-left: 35px;
  letter-spacing: 3px;
}
.b-introduce__text {
  padding-bottom: 73px;
  color: #CEC2B9;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Noto Sans CJK JP", sans-serif;
  line-height: 2.85;
}
.b-introduce__image {
  width: 98px;
}
@media only screen and (max-width: 815px) {
  .b-introduce {
    flex-direction: column-reverse;
    gap: 15px;
    padding-left: 0;
    padding-top: 55px;
  }
  .b-introduce__text {
    font-size: 1.6rem;
    padding-bottom: 0;
    line-height: 2.7;
    text-align: center;
  }
  .b-introduce__image {
    width: 85px;
  }
}

.product {
  margin-bottom: 85px;
}
.product.mb-55 {
  margin-bottom: 55px;
}
.product.mb-105 {
  margin-bottom: 105px;
}
.product__head {
  position: relative;
}
.product__head--pt5 {
  padding-top: 5px;
}
.product__ttl {
  position: relative;
  transform: translateY(50%);
  z-index: 2;
}
.product__ttl--pl {
  padding-left: 35px;
}
.product__ttl--aluminum {
  padding-left: 6px;
  transform: translateY(40%);
}
.product__content {
  margin-top: 25px;
  padding: 0 25px;
}
.product .card__image img {
  width: 100%;
}
.product__txt {
  text-align: justify;
  color: #F0E6DC;
  font-size: 1.6rem;
  line-height: 1.75;
}
.product__txt--pig {
  color: #F0E6DC;
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
}
@media only screen and (max-width: 815px) {
  .product {
    margin: 0 auto 95px;
  }
  .product.mb-55 {
    margin-bottom: 105px;
  }
  .product.mb-105 {
    margin-bottom: 87px;
  }
  .product__ttl--pl {
    padding-left: 24px;
  }
  .product__ttl--aluminum {
    padding-left: 6px;
    transform: translateY(40%);
  }
  .product__txt--pig {
    margin-bottom: 14px;
    font-size: 1.8rem;
    line-height: 1.9;
  }
  .product__content {
    margin-top: 20px;
    padding: 0 15px 0 10px;
  }
}

.b-wood {
  margin-top: 37px;
}
.b-aluminum {
  margin-top: 105px;
}
@media only screen and (max-width: 815px) {
  .b-wood {
    margin-top: 11px;
  }
  .b-aluminum {
    margin-top: 57px;
  }
}/*# sourceMappingURL=style.min.css.map */