@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;
}
html.prevent-scroll {
  overflow: hidden;
}

/**
 * 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;
}
body.prevent-scroll {
  overflow: hidden;
}

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

body {
  background-color: #f7f4f0;
  color: var(--color-text);
  font-weight: normal;
  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: 768px) {
  .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;
}

#header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 0 140px 0 180px;
  background-color: #f7f4f0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s;
}
#header #logo {
  display: inline-block;
  margin-top: 16px;
}
#header.out {
  transform: translateY(-100%);
}

.h-menu {
  position: absolute;
  top: 45px;
  right: 48px;
  display: block;
  width: 30px;
  height: 40px;
  z-index: 999;
}
.h-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #756B60;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.h-menu span:nth-child(1) {
  top: 0;
}
.h-menu span:nth-child(2), .h-menu span:nth-child(3) {
  top: 14px;
}
.h-menu span:nth-child(4) {
  top: 28px;
}
.h-menu.active span:nth-child(1), .h-menu.active span:nth-child(4) {
  top: 25px;
  width: 0;
  left: 50%;
}
.h-menu.active span:nth-child(2) {
  height: 1px;
  transform: rotate(45deg) scale(1.5);
}
.h-menu.active span:nth-child(3) {
  height: 1px;
  transform: rotate(-45deg) scale(1.5);
}

.nav-menu {
  min-width: 225px;
  margin-top: 10px;
  padding: 0 18px;
  max-width: calc(100% - 145px);
}
.nav-menu > li {
  border-bottom: 1px dashed #d3d0cd;
}
.nav-menu > li:first-child a {
  padding-bottom: 15px;
}
.nav-menu > li .menu-child {
  margin: -18px 0 40px;
}
.nav-menu > li .menu-child li a {
  align-items: center;
  display: flex;
  padding: 7px 15px 8px;
  color: #756b60 !important;
  font-size: 2rem;
}
.nav-menu > li .menu-child li a span {
  color: #9C9B9A;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  padding-left: 10px;
}
.nav-menu > li a {
  text-decoration: none;
}
.nav-menu > li a.no-event {
  pointer-events: none;
}
.nav-menu__item {
  display: block;
  padding: 21px 0 23px;
  font-size: 2rem;
  color: #756b60 !important;
  transition: all 0.3s;
}
@media only screen and (min-width: 1025px) {
  .nav-menu > li a:hover {
    opacity: 0.7;
  }
}

.b-menu {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 1025px;
  width: 100%;
  height: 100%;
  padding: 72px 0 100px 68px;
  background-color: #f7f4f0;
  opacity: 0;
  transition: opacity 0.3s;
  visibility: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.b-menu__inner {
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  justify-content: space-between;
  max-height: calc(100vh - 140px);
  padding-right: 86px;
  padding-bottom: 20px;
}
.b-menu.show {
  opacity: 1;
  visibility: visible;
}
.b-menu .logo-child {
  display: inline-block;
  width: 271px;
}
.b-menu__logo {
  width: 100%;
}
.b-menu__close {
  display: none;
}

.nav-social {
  display: flex;
  margin-top: auto;
  gap: 40px;
  align-items: center;
  margin-bottom: -3px;
}

@media only screen and (max-width: 768px) {
  #header {
    min-height: 55px;
    padding: 0 48px;
  }
  #header #logo {
    max-width: 175px;
  }
  .h-menu {
    position: absolute;
    top: 15px;
    right: 18px;
    display: block;
    width: 25px;
    height: 28px;
  }
  .h-menu span {
    width: 25px;
    height: 1px;
  }
  .h-menu span:nth-child(1) {
    top: 0;
  }
  .h-menu span:nth-child(2), .h-menu span:nth-child(3) {
    top: 12px;
  }
  .h-menu span:nth-child(4) {
    top: 25px;
  }
  .h-menu.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .h-menu.active span:nth-child(1), .h-menu.active span:nth-child(4) {
    top: 12px;
  }
  .nav-menu {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    padding: 2px 0 0;
  }
  .nav-menu > li {
    border-bottom-style: solid;
  }
  .nav-menu > li:first-child a {
    padding-bottom: 20px;
  }
  .nav-menu > li .menu-child {
    width: -moz-max-content;
    width: max-content;
    margin: -10px auto 20px;
    padding-left: 10px;
  }
  .nav-menu > li .menu-child li a {
    font-size: 1.8rem;
    padding: 8px 0;
    text-align: left;
  }
  .nav-menu > li .menu-child li a span {
    font-size: 1.3rem;
    padding-left: 5px;
    padding-top: 1px;
  }
  .nav-menu__item {
    padding: 20px 0;
    font-size: 2.4rem;
    text-align: center;
  }
  .b-menu {
    width: 100%;
    right: 0;
    padding: 0 0 30px 15px;
    text-align: center;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.16);
  }
  .b-menu__inner {
    max-height: calc(100% - 53px);
    padding-right: 15px;
  }
  .b-menu__logo {
    display: none;
  }
  .b-menu__close {
    display: inline-block;
    margin: 27px auto 0;
    width: 30px;
  }
  .nav-social {
    margin: 50px auto 0;
    gap: 36px;
  }
  .nav-social li a {
    display: block;
    width: 30px;
  }
  .nav-social li:first-child a {
    width: 27px;
  }
}
@media only screen and (max-height: 700px) {
  .nav-menu__item {
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .nav-social {
    margin-top: 30px;
  }
  .b-menu__close {
    margin-top: 15px;
  }
}
.inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .inner {
    padding: 0 15px;
  }
}

.wrapper {
  padding-top: 120px;
}

#side {
  width: 25%;
  min-width: 220px;
  background-color: green;
  background-image: url("/assets/img/common/blank.png");
}
@media only screen and (max-width: 768px) {
  #side {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .wrapper {
    padding-top: 55px;
  }
  #side {
    width: 100%;
  }
}
.headline--primary {
  margin-bottom: 44px;
  text-align: center;
}
.headline--primary img {
  height: 23px;
}
@media only screen and (max-width: 768px) {
  .headline--primary {
    margin-bottom: 20px;
  }
  .headline--primary img {
    height: 19px;
  }
}

.sec-cmn {
  position: relative;
  min-height: 100vh;
}

.sec-product {
  background: rgba(214, 211, 207, 0.3);
  height: 100vh;
  position: relative;
}
.sec-product__container {
  align-items: center;
  display: flex;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: translateY(50%);
  transition: none;
  top: 0;
  width: 100%;
  z-index: 1;
}
.sec-product__container.show {
  z-index: 2;
}
.sec-product__bg {
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.sec-product__bg li {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s;
  top: 0;
  width: 100%;
}
.sec-product__bg li:first-child {
  opacity: 0.5;
}
.sec-product__bg li.show {
  opacity: 1 !important;
}
.sec-product__bg img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .sec-product {
    height: auto;
    min-height: 0;
    overflow: visible;
    z-index: 1;
  }
  .sec-product__bg {
    display: none;
  }
  .sec-product__container {
    display: block;
    height: auto !important;
    max-height: inherit !important;
    opacity: 1;
    position: relative;
    transform: translateY(0);
    top: 0;
    will-change: transform;
    z-index: 2;
  }
}

.b-product {
  position: sticky;
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  gap: 55px;
  padding-left: 15px;
  padding-right: 15px;
}
.b-product .jsFadeUpBlock {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.5s, transform 1.5s;
}
.b-product .jsFadeUp {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.5s, transform 1.5s;
}
.b-product .jsFadeIn {
  opacity: 0;
  transition: opacity 1.5s;
}
.b-product .jsFadeIn.show {
  opacity: 1;
}
.b-product .js-fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.5s, transform 1.5s;
}
.b-product .js-fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (min-width: 1024px) {
  .b-product {
    gap: 85px;
  }
}
.b-product__title {
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 5px rgba(59, 59, 59, 0.6);
}
.b-product__title span {
  display: inline-block;
}
.b-product__text {
  margin-bottom: 18px;
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(59, 59, 59, 0.6);
}
.b-product__text--small {
  font-size: 1.4rem;
}
.b-product__text--big {
  display: block;
  margin-top: 14px;
  margin-right: 20px;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 1.6;
}
.b-product__text--spacing {
  margin-right: 18px;
  letter-spacing: 2px;
}
.b-product__box {
  position: relative;
  display: flex;
  margin-top: 26px;
  margin-bottom: 13px;
  gap: 30px;
  border-radius: 5px;
  padding: 21px 23px;
  background: rgba(18, 16, 8, 0.28);
}
.b-product__box--text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2;
}
.b-product__box--right {
  padding-top: 10px;
  flex: 1;
}
.b-product__image {
  max-width: 220px;
  border-radius: 5px;
  font-size: 0;
  overflow: hidden;
}
.b-product__image img {
  vertical-align: middle;
}
.b-product__content {
  width: 100%;
}
.b-product__link {
  display: inline-block;
  padding-bottom: 6px;
  padding-right: 25px;
  color: #fff;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: bottom 0px right 5px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.b-product__link:hover {
  color: #fff;
  text-decoration: none;
}
@media only screen and (min-width: 1024px) {
  .b-product__link:hover {
    background-position: bottom 0px right 0;
  }
}
@media only screen and (max-width: 960px) {
  .b-product__title {
    font-size: 2.6rem;
  }
  .b-product__text {
    font-size: 1.4rem;
    line-height: 2;
  }
  .b-product__text--big {
    margin-right: 10px;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .b-product__box {
    margin-top: 20px;
    gap: 20px;
    padding: 15px 20px;
  }
  .b-product__image {
    max-width: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .b-product {
    gap: 0;
    height: auto;
    overflow: visible;
    padding: 0 10px;
    top: 0;
  }
  .b-product__title {
    margin-bottom: 20px;
    font-size: 2.2rem;
    line-height: 1.45;
  }
  .b-product__text {
    margin-bottom: 8px;
    font-size: 1.3rem;
    line-height: 1.85;
  }
  .b-product__text--spacing {
    margin-right: 6px;
    letter-spacing: 3px;
  }
  .b-product__text--small {
    font-size: 1rem;
  }
  .b-product__link {
    margin-top: 22px;
    font-size: 1rem;
    padding-bottom: 5px;
  }
  .b-product__image {
    max-width: 100%;
    width: 64%;
    margin: 0 auto;
  }
  .b-product__box {
    background-color: #f7f4f0;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
    padding: 50px 15px 60px;
    transition: opacity 0.3s, transform 0.3s;
    width: 100%;
  }
  .b-product__box--text {
    font-size: 1.3rem;
    color: #756b60;
    line-height: 2.2;
  }
  .b-product__box .b-product__text {
    margin-bottom: 15px;
    color: #756b60;
  }
  .b-product__box .b-product__text--big {
    display: inline-block;
  }
  .b-product__box .b-product__text--big-2 {
    display: inline-block;
    margin-right: 6px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
  }
  .b-product__box .b-product__text--no-shadow {
    text-shadow: none;
  }
  .b-product__box .b-product__text--spfs-14 {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
@media only screen and (max-width: 576px) {
  .b-product {
    align-items: center;
    height: 100vh;
    padding-left: 19px;
    overflow: hidden;
    position: relative;
  }
}
@media only screen and (max-height: 650px) {
  .b-product__text {
    line-height: 1.6;
  }
  .b-product__title {
    line-height: 1.2;
  }
}

body .sec-product__container {
  padding-top: 120px;
  transition: padding-top 0.3s;
}
body.down .sec-product__container {
  padding-top: 0;
}
@media only screen and (max-width: 576px) {
  body .sec-product__container {
    padding-top: 0;
  }
}

.fade-in-01 {
  animation-name: fade-in-01;
  animation-delay: 1s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(-50px);
  opacity: 0;
}

@keyframes fade-in-01 {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-02 {
  animation-name: fade-in-02;
  animation-delay: 1500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}

@keyframes fade-in-02 {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-03 {
  animation-name: fade-in-03;
  animation-delay: 500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateX(50px);
  opacity: 0;
}

@keyframes fade-in-03 {
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-04 {
  animation-name: fade-in-04;
  animation-delay: 2s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateX(-50px);
  opacity: 0;
}

@keyframes fade-in-04 {
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-05 {
  animation-name: fade-in-05;
  animation-delay: 2500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateX(50px);
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .fade-in-05 {
    animation-name: fade-in-01;
    animation-delay: 500ms;
    transform: translateY(-50px);
  }
}

@keyframes fade-in-05 {
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.keyv {
  display: flex;
  width: 100%;
  height: calc(100vh - 120px);
  overflow: hidden;
}
.keyv__left {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.keyv__right {
  display: flex;
  width: 50%;
  padding-left: 12px;
}
.keyv__row-1 {
  display: flex;
  justify-content: space-between;
  height: 50%;
  padding-bottom: 12px;
}
.keyv__row-2 {
  display: flex;
  justify-content: space-between;
  height: 50%;
}
.keyv__item-1 {
  width: 66%;
}
.keyv__item-2 {
  width: calc(34% - 12px);
}
.keyv__item-3 {
  width: calc(34% - 12px);
}
.keyv__item-4 {
  width: 66%;
}
.keyv__item-5 {
  width: 100%;
  height: 100%;
}
.keyv img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .keyv {
    background-color: #f7f4f0;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    position: relative;
    z-index: 100;
  }
  .keyv__left {
    width: 100%;
    height: 50%;
    order: 2;
  }
  .keyv__right {
    width: 100%;
    padding-left: 0;
    height: 50%;
    order: 1;
  }
  .keyv__row-1 {
    padding-bottom: 6px;
  }
  .keyv__item-2 {
    width: calc(34% - 6px);
  }
  .keyv__item-3 {
    width: calc(34% - 6px);
  }
  .keyv__item-5 {
    padding-bottom: 6px;
  }
  .keyv img {
    -o-object-position: left;
       object-position: left;
  }
}

.comfort {
  padding: 80px 0 90px;
  background-color: #f7f4f0;
  text-align: center;
}
.comfort__ttl {
  margin-bottom: 25px;
  color: #756b60;
  font-size: 3rem;
  font-weight: 500;
}
.comfort__image-head {
  display: block;
  margin-bottom: 105px;
  text-align: center;
}
.comfort__image-head img {
  height: 289px;
}
.comfort__image {
  margin-bottom: 45px;
}
.comfort__txt {
  color: #756b60;
  font-size: 1.8rem;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .comfort {
    padding: 40px 0;
    position: relative;
    z-index: 100;
  }
  .comfort__ttl {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }
  .comfort__image-head {
    margin-bottom: 40px;
  }
  .comfort__image-head img {
    height: 334px;
  }
  .comfort__image {
    margin-bottom: 20px;
  }
  .comfort__image img {
    width: 248px;
  }
  .comfort__txt {
    font-size: 1.4rem;
    line-height: 2.5;
  }
}

.concept {
  position: relative;
  margin-top: 100px;
  padding: 0 0 150px;
}
.concept__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
}
.concept__inner--col {
  width: 50%;
}
.concept__inner--col:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 47%;
  margin: 0 0 -40px -20px;
  padding: 12px 40px 12px 115px;
}
.concept__inner--img {
  position: relative;
  margin-right: calc((100vw - 1240px) / -2 - 20px);
}
.concept__inner--img img {
  max-width: 50vw;
  width: 45.45vw;
  margin-left: 100px;
}
.concept__inner--ttl {
  margin-left: -53%;
  padding-bottom: 125px;
}
.concept__inner--ttl img {
  width: 29.6vw;
  height: auto;
}
.concept__inner--box {
  padding-bottom: 140px;
}
.concept__inner--txt01 {
  position: relative;
  padding-bottom: 60px;
}
.concept__inner--txt01 img {
  width: 26.9vw;
  height: auto;
}
.concept__inner--txt01::before {
  position: absolute;
  left: -110px;
  top: -93px;
  content: "";
  width: 145px;
  height: 156px;
  background-image: url(../img/home/icon_line.svg);
}
.concept__inner--txt img {
  width: 20.5vw;
  height: auto;
}
.concept__inner--txt02 img {
  width: 34.6vw;
  height: auto;
}

@media screen and (max-width: 1025px) {
  .concept__ttl {
    margin-left: 0;
  }
  .concept__inner--col:last-child {
    margin: 0 0 -40px -20px;
    padding: 12px 0 12px 40px;
  }
  .concept__inner--img img {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .concept {
    background-color: #f7f4f0;
    position: relative;
    margin-top: 0;
    padding: 25px 0 90px;
    z-index: 100;
  }
  .concept__inner {
    margin: 0 15px;
  }
  .concept__inner--col {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
  }
  .concept__inner--col:last-child {
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .concept__inner--img {
    position: relative;
    margin-right: 0;
    margin-left: -15px;
    width: 100%;
  }
  .concept__inner--img img {
    max-width: 100%;
    width: 95%;
  }
  .concept__inner--ttl {
    margin-left: 35px;
    padding-bottom: 20px;
  }
  .concept__inner--ttl img {
    width: 165px;
  }
  .concept__inner--box {
    position: absolute;
    left: 75px;
    top: 80px;
    content: "";
    width: calc(95% - 90px);
    padding: 30px;
    background: rgba(247, 244, 240, 0.8);
    border-radius: 20px 0 0 20px;
    z-index: 1;
  }
  .concept__inner--txt01 {
    position: relative;
    padding-bottom: 15px;
  }
  .concept__inner--txt01 img {
    width: 225px;
  }
  .concept__inner--txt01::before {
    position: absolute;
    left: 60px;
    top: -102px;
    content: "";
    width: 73px;
    height: 78px;
  }
  .concept__inner--txt img {
    width: 197px;
  }
  .concept__inner--txt02 {
    text-align: right;
  }
  .concept__inner--txt02 img {
    width: 270px;
  }
}
.package {
  margin-top: 190px;
  padding: 25px 0 85px;
  overflow: hidden;
  position: relative;
}
.package .inner {
  width: 100%;
  max-width: 1075px;
  margin: 0 auto;
  padding: 0 20px;
}
.package__ttl {
  padding-bottom: 36px;
  color: #756b60;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 10px;
}
.package-info {
  margin-bottom: 202px;
  background: url("../img/home/img_package_01.jpg") no-repeat top right;
  background-size: calc(50% + 256px - 24px);
}
.package-info__ttl {
  padding-left: 3px;
  padding-bottom: 42px;
  color: #756b60;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 4px;
  text-align: center;
}
.package-info__txt {
  padding-left: 8px;
  color: #756b60;
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: center;
}
.package-info .padding-1 {
  padding-left: 2px;
}
.package-info .margin-2 {
  margin-left: -9px;
}
.package-img {
  display: flex;
  align-items: flex-start;
  margin-left: -18px;
  margin-bottom: 76px;
  padding-top: 86px;
  gap: 1.7vw;
  width: 14vw;
}
@media only screen and (max-width: 768px) {
  .package {
    background-color: #f7f4f0;
    margin-top: 0;
    padding: 25px 0 0;
    position: relative;
    z-index: 100;
  }
  .package__ttl {
    padding-bottom: 44px;
    font-size: 3.5rem;
    letter-spacing: 5px;
  }
  .package-info {
    margin-bottom: 78px;
    background: url("../img/home/img_package_01_sp.jpg") no-repeat top center;
    background-size: 100%;
  }
  .package-info__ttl {
    padding-left: 0;
    padding-bottom: 17px;
    font-size: 2.1rem;
    line-height: 1.7;
    letter-spacing: 2px;
  }
  .package-info__txt {
    padding-left: 0;
    font-size: 1.4rem;
    line-height: 2.5;
  }
  .package-img {
    max-width: 229px;
    width: 100%;
    margin: 0 auto 52px;
    padding-top: 49.5vw;
    gap: 15px;
  }
  .package-img img {
    max-width: calc((100% - 15px) / 2);
  }
  .package-bnr {
    width: 100%;
  }
  .package .padding-1 {
    padding-left: 0;
  }
  .package .margin-2 {
    margin-left: 0;
  }
}

.special {
  overflow: hidden;
  padding-top: 50px;
  background-color: #FFF;
}
.special__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.special__sns {
  display: flex;
  align-items: center;
  -moz-column-gap: 33px;
       column-gap: 33px;
  justify-content: flex-end;
  margin: 0 90px 38px 0;
}
.special__sns a {
  display: inline-block;
  font-size: 0;
}
.special__sns img {
  height: 35px;
  width: auto;
}
.special__sns .img-instagram {
  height: 40px;
}
.special__copyright {
  font-size: 1.2rem;
  text-align: center;
  color: #756b60;
  padding-bottom: 80px;
  letter-spacing: 2px;
}
.special-contact__link {
  width: 380px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3px;
  border: 1px solid #756b60;
  color: #756b60;
  letter-spacing: 3px;
  transition: opacity 0.25s;
}
.special-contact__link:hover {
  color: #756b60;
  text-decoration: none;
}
.special-contact__link:hover span {
  color: #756b60;
}
.special-contact__link span {
  font-size: 2.4rem;
  color: #756b60;
  padding: 0 20px;
}
@media only screen and (min-width: 768.1px) {
  .special__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .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: 768px) {
  .special {
    background-color: #f7f4f0;
    padding-top: 20px;
    position: relative;
    z-index: 100;
  }
  .special__sns {
    -moz-column-gap: 25px;
         column-gap: 25px;
    justify-content: flex-start;
    margin: 0 0 20px 15px;
  }
  .special__sns img {
    height: 18px;
  }
  .special__sns .img-instagram {
    height: 20px;
  }
  .special__copyright {
    padding-bottom: 40px;
    font-size: 1rem;
  }
  .special-contact__link {
    width: 190px;
    min-height: 45px;
    margin-bottom: 30px;
    letter-spacing: 2px;
  }
  .special-contact__link span {
    font-size: 1.2rem;
    padding: 0 10px;
  }
}

.carousel {
  display: inline-block;
  width: 85px;
}
.carousel .splide__slide {
  width: 85px;
}
.carousel img {
  height: auto;
  width: 100%;
}
.carousel--bg {
  opacity: 0.5;
  transition: opacity 1s;
}
.carousel--bg.show {
  opacity: 1;
}
.carousel--bg .splide__slide {
  width: 100%;
}
.carousel--bg img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
}
@media only screen and (max-width: 960px) {
  .carousel {
    width: 89px;
  }
  .carousel .splide__slide {
    width: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .carousel--bg {
    opacity: 1;
    height: 100%;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
  }
}/*# sourceMappingURL=style.min.css.map */