@charset "UTF-8";
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://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;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

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

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html {
  font-size: 62.5%;
  height: auto;
  overflow: visible;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #232323;
  height: auto;
  overflow: visible;
  font-weight: 400;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  opacity: 1;
}
body.is__fix {
  overflow: hidden;
  height: 100%;
  position: static;
}
body.is_show {
  overflow: hidden;
  height: 100%;
  position: static;
}
body.is_show .main {
  position: relative;
}
body.is_show .main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  z-index: 3;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
body.fade:after {
  opacity: 1;
}

html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  font-weight: 400;
}

img {
  vertical-align: bottom;
}

input,
button,
select {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
}

@supports (-webkit-touch-callout: none) {
  body {
    font-size-adjust: 0.5;
    /* Safariだけ補正 */
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.jsActive {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 870px) {
  .fadein.spAnimationNone {
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    opacity: 1;
  }
}
.fadein.initial-visible {
  -webkit-transition: none;
  transition: none;
}

/* Page transition overlay */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  pointer-events: all;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
.page-transition-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

body.is-transitioning {
  pointer-events: none;
}

@-webkit-keyframes scrollDownBar {
  0% {
    top: 0;
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 18px;
    opacity: 0;
  }
}

@keyframes scrollDownBar {
  0% {
    top: 0;
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 18px;
    opacity: 0;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.pcnon {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcnon {
    display: block;
  }
}

.spnon {
  display: block;
}
@media screen and (max-width: 768px) {
  .spnon {
    display: none;
  }
}

.sectionBorderTtl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sectionBorderTtl {
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.sectionBorderTtl:before {
  content: "";
  display: block;
  width: 132px;
  height: 1px;
  background-color: #d1c0a7;
  margin-right: 20px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 768px) {
  .sectionBorderTtl:before {
    width: 5.3333333333vw;
    height: 1px;
    margin-right: 8px;
  }
}
.sectionBorderTtl.isInview:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.sectionBorderTtl__text {
  font-family: "futura-pt", sans-serif;
  font-weight: 300;
  font-size: 2.4rem;
  color: #d1c0a7;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .sectionBorderTtl__text {
    font-size: 4.2666666667vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sectionBorderTtl:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transition: none;
    transition: none;
  }
}
.footer {
  background-color: #ffefde;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.footer:before, .footer:after {
  content: "";
  display: block;
}
.footer:before {
  width: 351.4224px;
  height: 311.1633px;
  aspect-ratio: 351.4224/311.1633;
  background: url(../images/bg_footer_01.svg) no-repeat center center/cover;
  position: absolute;
  bottom: 62px;
  left: -80px;
}
@media screen and (max-width: 768px) {
  .footer:before {
    width: 32vw;
    height: 28.3340666667vw;
    left: -6.6666666667vw;
    bottom: 10.1333333333vw;
  }
}
.footer:after {
  width: 382.8563px;
  height: 362.1121px;
  aspect-ratio: 382.8563/362.1121;
  background: url(../images/bg_footer_02.svg) no-repeat center center/cover;
  position: absolute;
  top: 0px;
  right: -92px;
}
@media screen and (max-width: 768px) {
  .footer:after {
    width: 32vw;
    height: 30.2661466667vw;
    right: -8vw;
    top: 8vw;
  }
}
.footer__inner {
  position: relative;
  z-index: 1;
}
.footer__content {
  padding: 90px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    padding: 100px 0;
    gap: 45px;
  }
}
.footer__logo {
  width: 182px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 150px;
  }
}
.footer__logoNagaraen {
  width: 156px;
}
@media screen and (max-width: 768px) {
  .footer__logoNagaraen {
    width: 150px;
  }
}
.footer__copyright {
  background-color: #5b4b39;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding: 10px 0;
  }
}
.footer__copyrightText {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}

.header {
  position: relative;
  z-index: 3;
}
.header__logo {
  width: 196px;
  position: absolute;
  top: 40px;
  left: 40px;
}
@media screen and (max-width: 1060px) {
  .header__logo {
    width: 140px;
    top: 30px;
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 24.28644vw;
    top: 15px;
    left: 15px;
  }
}
.header__nagaraLogo {
  width: 271px;
  position: absolute;
  top: 40px;
  right: 40px;
}
@media screen and (max-width: 1060px) {
  .header__nagaraLogo {
    width: 180px;
    top: 30px;
    right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__nagaraLogo {
    width: 26.72868vw;
    top: 15px;
    right: 15px;
  }
}
.main {
  display: block;
}

.top {
  overflow: hidden;
  padding-bottom: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top {
    padding-bottom: 60px;
  }
}

.topMv {
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .topMv {
    margin-bottom: 60px;
  }
}
.topMv__inner {
  position: relative;
}
.topMv__title {
  position: absolute;
  color: #fff;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  line-height: 1.4;
  padding-top: 3em;
}
@media screen and (max-width: 870px) {
  .topMv__title {
    z-index: 2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  .topMv__title {
    margin-top: 1em;
    padding-right: 0.75em;
  }
}
.topMv__titleText {
  font-size: 6rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 870px) {
  .topMv__titleText {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .topMv__titleText {
    font-size: 8.2666666667vw;
  }
  .is-ios .topMv__titleText {
    font-size: 7.2vw;
  }
}
.topMv__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 870px) {
  .topMv__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topMv__listItem {
  width: 50%;
}
@media screen and (max-width: 870px) {
  .topMv__listItem {
    width: 100%;
    position: relative;
  }
}
.topMv__listItem:nth-of-type(1) .topMv__listItemText {
  left: 40px;
  bottom: 40px;
}
@media screen and (max-width: 768px) {
  .topMv__listItem:nth-of-type(1) .topMv__listItemText {
    left: 17px;
    bottom: 20px;
  }
}
.topMv__listItem:nth-of-type(1) .topMv__listItemTextImg {
  width: 262px;
}
@media screen and (max-width: 870px) {
  .topMv__listItem:nth-of-type(1) .topMv__listItemTextImg {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .topMv__listItem:nth-of-type(1) .topMv__listItemTextImg {
    width: 19.9540666667vw;
    left: 17px;
    bottom: 20px;
  }
}
.topMv__listItem:nth-of-type(2) .topMv__listItemText {
  right: 40px;
  bottom: 40px;
}
@media screen and (max-width: 870px) {
  .topMv__listItem:nth-of-type(2) .topMv__listItemText {
    right: auto;
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .topMv__listItem:nth-of-type(2) .topMv__listItemText {
    left: 17px;
    bottom: 20px;
  }
}
.topMv__listItem:nth-of-type(2) .topMv__listItemTextImg {
  width: 262px;
}
@media screen and (max-width: 870px) {
  .topMv__listItem:nth-of-type(2) .topMv__listItemTextImg {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .topMv__listItem:nth-of-type(2) .topMv__listItemTextImg {
    width: 20.77512vw;
  }
}
.topMv__listItemImg {
  width: 100%;
  max-height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1060px) {
  .topMv__listItemImg {
    height: 100dvh;
  }
}
@media screen and (max-width: 870px) {
  .topMv__listItemImg {
    height: 50dvh;
  }
}
.topMv__listItemText {
  position: absolute;
}
.topAbout {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .topAbout {
    margin-bottom: 50px;
  }
}
.topAbout:before, .topAbout:after {
  content: "";
  display: block;
  position: absolute;
}
.topAbout:before {
  width: 351.4224px;
  height: 311.1633px;
  background: url(../images/bg_section_01_01.svg) no-repeat center center/cover;
  left: -68px;
  bottom: 418px;
}
@media screen and (max-width: 768px) {
  .topAbout:before {
    width: 61.3333333333vw;
    height: 54.3069733333vw;
    left: -10.6666666667vw;
    bottom: 77.3333333333vw;
  }
}
.topAbout:after {
  width: 382.8563px;
  height: 362.1121px;
  background: url(../images/bg_section_01_02.svg) no-repeat center center/cover;
  right: -94px;
  top: 75px;
}
@media screen and (max-width: 768px) {
  .topAbout:after {
    width: 53.3333333333vw;
    height: 50.4435866667vw;
    right: -14.6666666667vw;
    top: 38vw;
  }
}
.topAbout__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 870px) {
  .topAbout__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topAbout__inner {
    gap: 40px;
  }
}
.topAbout__logo {
  width: 240px;
}
@media screen and (max-width: 1060px) {
  .topAbout__logo {
    width: 180px;
  }
}
@media screen and (max-width: 870px) {
  .topAbout__logo {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .topAbout__logo {
    width: 53.3333333333vw;
  }
}
.topAbout__logoImg {
  width: 100%;
}
.topAbout__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 170px;
}
@media screen and (max-width: 1060px) {
  .topAbout__text {
    padding-left: 80px;
  }
}
@media screen and (max-width: 870px) {
  .topAbout__text {
    padding-left: 0;
  }
}
.topAbout__textTitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.75;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .topAbout__textTitle {
    font-size: 8vw;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
.topAbout__textDescPara {
  margin-bottom: 1.5em;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .topAbout__textDescPara {
    line-height: 1.875;
  }
}
.topAbout__textDescPara:last-of-type {
  margin-bottom: 0;
}
.topAbout__fig {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .topAbout__fig {
    margin-top: 40px;
  }
}
.topAbout__scrollText {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .topAbout__scrollText {
    margin-top: 14.6666666667vw;
  }
}

.scrollText {
  --scroll-duration: 22s;
  --scroll-gap: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-family: "futura-pt", sans-serif;
  font-size: 15rem;
  line-height: 1;
  color: #e5ddd1;
}
@media screen and (max-width: 768px) {
  .scrollText {
    font-size: 26.6666666667vw;
  }
}
.scrollText__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  gap: var(--scroll-gap);
  padding-right: var(--scroll-gap);
  -webkit-animation: scrollTextLoop var(--scroll-duration) linear infinite;
          animation: scrollTextLoop var(--scroll-duration) linear infinite;
  will-change: transform;
}
.scrollText__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@-webkit-keyframes scrollTextLoop {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes scrollTextLoop {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .scrollText__track {
    -webkit-animation: none;
            animation: none;
  }
}
.topProduct {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 870px) {
  .topProduct__list {
    gap: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .topProduct__list {
    gap: 60px;
  }
}
.topProduct__listItem {
  padding: 10px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .topProduct__listItem {
    padding: 5px;
    padding-bottom: 0;
  }
}
.topProduct__listItem:nth-of-type(even) .topProduct__listItemInner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 870px) {
  .topProduct__listItem:nth-of-type(even) .topProduct__listItemInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topProduct__listItemInner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 870px) {
  .topProduct__listItemInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topProduct__listItemDetails {
  width: 550px;
}
@media screen and (max-width: 1060px) {
  .topProduct__listItemDetails {
    width: 400px;
  }
}
@media screen and (max-width: 870px) {
  .topProduct__listItemDetails {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.topProduct__listItemDetailsText {
  padding: 50px 50px 0 50px;
}
@media screen and (max-width: 1060px) {
  .topProduct__listItemDetailsText {
    padding: 30px 30px 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .topProduct__listItemDetailsText {
    padding: 25px 25px 0 25px;
  }
}
.topProduct__listItemDetailsTextTitle {
  font-size: 3rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.7333333333;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .topProduct__listItemDetailsTextTitle {
    font-size: 8vw;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
.topProduct__listItemDetailsTextDesc {
  line-height: 1.875;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .topProduct__listItemDetailsTextDesc {
    line-height: 1.875;
  }
}
.topProduct__listItemDetailsTextList_type_01 .topProduct__listItemDetailsTextListItem:before {
  width: 14.6672px;
  height: 11.8032px;
  background: url(../images/icon_list_01.svg) no-repeat center center/cover;
  position: relative;
  top: 10px;
}
.topProduct__listItemDetailsTextList_type_02 .topProduct__listItemDetailsTextListItem:before {
  width: 14.3387px;
  min-width: 14.3387px;
  height: 12.6107px;
  background: url(../images/icon_list_02.svg) no-repeat center center/cover;
  position: relative;
  top: 10px;
}
.topProduct__listItemDetailsTextListItem {
  line-height: 1.875;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .topProduct__listItemDetailsTextListItem {
    line-height: 1.875;
  }
}
.topProduct__listItemDetailsTextListItem:before {
  content: "";
  display: block;
  margin-right: 7px;
}
@media screen and (max-width: 768px) {
  .topProduct__listItemDetailsTextListItem:before {
    margin-right: 10px;
  }
}
.topProduct__listItemDetailsTextListDl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.topProduct__listItemDetailsTextListDt {
  min-width: 3em;
}
.topProduct__listItemDetailsTextListDd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.topProduct__listItemPics {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 870px) {
  .topProduct__listItemPics {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0;
        -ms-flex: 0;
            flex: 0;
    height: 100%;
  }
}
@media screen and (max-width: 870px) {
  .topProduct__listItemPicsInner {
    width: 100%;
  }
}
.topProduct__listItemPicsItem {
  overflow: hidden;
}
.topProduct__listItemPicsItem_type_details {
  display: none;
}
.topProduct__listItemPicsItemImg {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1060px) {
  .topProduct__listItemPicsItemImg {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.topProduct__listItemPicsPagination {
  position: absolute;
  right: 40px !important;
  bottom: 40px !important;
  z-index: 2;
  left: auto !important;
  top: auto !important;
  width: auto !important;
  margin: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .topProduct__listItemPicsPagination {
    right: 15px !important;
    bottom: 15px !important;
  }
}
.topProduct__listItemPicsPagination .swiper-pagination-bullet {
  width: 82px;
  height: 82px;
  margin: 0 !important;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  position: relative;
  opacity: 1;
}
.topProduct__listItemPicsPagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 14px !important;
}
.topProduct__listItemPicsPagination .swiper-pagination-bullet img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.topProduct__listItemPicsPagination .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.topProduct__listItemPicsPagination .swiper-pagination-bullet:hover:after {
  opacity: 1;
}
.topProduct__listItemPicsPagination .swiper-pagination-bullet-active:after {
  opacity: 1;
}
.topProduct__scrollText {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .topProduct__scrollText {
    margin-top: 50px;
  }
}
.topProduct__scrollText.scrollText .scrollText__item {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #d1c0a7;
  text-stroke: 1px #d1c0a7;
}
@media screen and (max-width: 870px) {
  .topProduct__listItemDetailsFig {
    display: none;
  }
  .topProduct__listItemPicsItem_type_details {
    display: block;
  }
  .topProduct__listItemPics.fadein {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.borderBtn {
  margin-top: 30px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .borderBtn {
    margin-top: 30px;
    width: 100%;
  }
}
.borderBtn:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #232323;
  position: absolute;
  left: 4px;
  top: 4px;
}
.borderBtn__link {
  text-decoration: none;
  position: relative;
  z-index: 2;
  width: 324px;
  height: 56px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #232323;
}
@media screen and (max-width: 768px) {
  .borderBtn__link {
    width: 100%;
    height: 50px;
  }
}
.borderBtn__link:hover {
  background-color: #232323;
}
.borderBtn__link:hover:after {
  background: url(../images/icon_arrow_02.svg) no-repeat center center/cover;
}
.borderBtn__link:hover .borderBtn__linkText {
  color: #fff;
}
.borderBtn__link:after {
  content: "";
  display: block;
  width: 13.7262px;
  height: 13.6572px;
  aspect-ratio: 13.7262/13.6572;
  background: url(../images/icon_arrow_01.svg) no-repeat center center/cover;
  position: absolute;
  right: 17px;
  top: calc(50% - 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .borderBtn__link:after {
    width: 15px;
    height: 15px;
    right: 15px;
    top: calc(50% - 0px);
  }
}
.borderBtn__linkText {
  color: #232323;
  font-size: 1.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .borderBtn__linkText {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 960px) {
  .topProduct__listItemPicsPagination {
    right: 12px;
    bottom: 12px;
  }
  .topProduct__listItemPicsPagination .swiper-pagination-bullet {
    width: 82px;
    height: 82px;
  }
  .topProduct__listItemPicsPagination .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 14px !important;
  }
}
@media screen and (max-width: 960px) and (max-width: 768px) {
  .topProduct__listItemPicsPagination .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 10px !important;
  }
}
@media screen and (max-width: 960px) and (max-width: 768px) {
  .topProduct__listItemPicsPagination .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
  }
}
.topCommitment {
  background: url(../images/bg_section_03_pc.jpg) no-repeat center center/cover;
  padding-top: 120px;
  position: relative;
  z-index: 0;
  margin-top: -70px;
  padding-bottom: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .topCommitment {
    padding-top: 90px;
    margin-top: -13vw;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.topCommitment__title:before {
  background-color: #845a23;
}
.topCommitment__title .sectionBorderTtl__text {
  color: #845a23;
}
.topCommitment__inner {
  max-width: 1220px;
}
@media screen and (max-width: 768px) {
  .topCommitment__inner {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.commitmentList__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 870px) {
  .commitmentList__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.commitmentList__item:nth-of-type(odd) .commitmentList__textInner {
  margin-left: 10px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 870px) {
  .commitmentList__item:nth-of-type(odd) .commitmentList__textInner {
    margin-right: 10px;
    border-right: 1px solid #fff;
  }
}
.commitmentList__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 870px) {
  .commitmentList__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.commitmentList__item:nth-of-type(even) .commitmentList__textInner {
  margin-right: 10px;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 870px) {
  .commitmentList__item:nth-of-type(even) .commitmentList__textInner {
    margin-left: 10px;
    border-left: 1px solid #fff;
  }
}
.commitmentList__item:nth-of-type(even) .commitmentList__textInner {
  padding-left: 80px;
}
@media screen and (max-width: 1060px) {
  .commitmentList__item:nth-of-type(even) .commitmentList__textInner {
    padding-left: 40px;
  }
}
.commitmentList__item:nth-of-type(1) .commitmentList__text {
  background: linear-gradient(135deg, rgb(234, 184, 40) 0%, rgb(198, 134, 30) 100%);
}
.commitmentList__item:nth-of-type(1) .commitmentList__textInner:after {
  content: "";
  display: block;
  width: 382.8563px;
  height: 362.1121px;
  aspect-ratio: 382.8563/362.1121;
  background: url(../images/bg_commitment_01.svg) no-repeat center center/cover;
  position: absolute;
  right: -95px;
  bottom: 60px;
}
@media screen and (max-width: 768px) {
  .commitmentList__item:nth-of-type(1) .commitmentList__textInner:after {
    width: 106.6666666667vw;
    height: 100.88716vw;
    right: -32vw;
    bottom: 13.3333333333vw;
  }
}
.commitmentList__item:nth-of-type(2) .commitmentList__text {
  background: linear-gradient(135deg, rgb(224, 154, 61) 0%, rgb(91, 45, 0) 100%);
}
.commitmentList__item:nth-of-type(2) .commitmentList__textInner:after {
  content: "";
  display: block;
  width: 351.4224px;
  height: 311.1633px;
  aspect-ratio: 351.4224/311.1633;
  background: url(../images/bg_commitment_02.svg) no-repeat center center/cover;
  position: absolute;
  left: -73px;
  bottom: 120px;
}
@media screen and (max-width: 768px) {
  .commitmentList__item:nth-of-type(2) .commitmentList__textInner:after {
    width: 106.6666666667vw;
    height: 94.4469066667vw;
    left: -22.6666666667vw;
    bottom: auto;
    top: 13.3333333333vw;
  }
}
.commitmentList__item:nth-of-type(3) .commitmentList__text {
  background: linear-gradient(135deg, rgb(178, 108, 25) 0%, rgb(58, 21, 11) 100%);
}
.commitmentList__item:nth-of-type(3) .commitmentList__textInner:after {
  content: "";
  display: block;
  width: 422.7625px;
  height: 415.2141px;
  aspect-ratio: 422.7625/415.2141;
  background: url(../images/bg_commitment_03.svg) no-repeat center center/cover;
  position: absolute;
  right: -60px;
  bottom: 170px;
}
@media screen and (max-width: 768px) {
  .commitmentList__item:nth-of-type(3) .commitmentList__textInner:after {
    width: 93.3333333333vw;
    height: 91.66688vw;
    right: -6.6666666667vw;
    bottom: 73.3333333333vw;
  }
}
.commitmentList__text {
  width: 580px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1240px) {
  .commitmentList__text {
    width: 50%;
  }
}
@media screen and (max-width: 870px) {
  .commitmentList__text {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.commitmentList__text:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 10px;
}
.commitmentList__text:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 10px;
}
.commitmentList__textInner {
  height: 100%;
  width: 100%;
  padding: 88px 80px 96px 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1060px) {
  .commitmentList__textInner {
    padding: 40px;
  }
}
.commitmentList__textTitle {
  font-size: 3rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.7333333333;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .commitmentList__textTitle {
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}
.commitmentList__textTitle_type_indent {
  text-indent: -0.5em;
}
.commitmentList__textDesc {
  position: relative;
  z-index: 1;
}
.commitmentList__textDescPara {
  line-height: 1.875;
  margin-bottom: 1.75em;
  color: #fff;
}
.commitmentList__textDescPara:last-of-type {
  margin-bottom: 0;
}
.commitmentList__fig {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (max-width: 1240px) {
  .commitmentList__fig {
    width: 50%;
  }
}
@media screen and (max-width: 870px) {
  .commitmentList__fig {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.commitmentList__figImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1060px) {
  .commitmentList__figImg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 870px) {
  .commitmentList__figImg {
    width: 100%;
    height: auto;
    position: static;
  }
}
.topOnlineShop {
  position: relative;
}
.topOnlineShop__inner {
  position: static;
}
.topOnlineShop__subTtl {
  font-size: 3.6rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .topOnlineShop__subTtl {
    text-align: left;
    line-height: 1.5;
  }
}
.topOnlineShop__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
@media screen and (max-width: 1060px) {
  .topOnlineShop__list {
    padding: 0 90px;
    gap: 24px;
  }
}
@media screen and (max-width: 870px) {
  .topOnlineShop__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 45px;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .topOnlineShop__list {
    gap: 25px;
  }
}
.topOnlineShop__listItem {
  width: 50%;
}
@media screen and (max-width: 870px) {
  .topOnlineShop__listItem {
    width: 100%;
  }
}

.productItem__catch {
  font-size: 11.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  position: absolute;
  top: -0.1em;
  -ms-writing-mode: sideways-lr;
  line-height: 1;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
  text-orientation: upright;
}
@media screen and (max-width: 870px) {
  .productItem__catch {
    top: -0.2em;
    font-size: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .productItem__catch {
    font-size: 6rem;
    top: 0;
    height: 100%;
    text-align: center;
  }
}
.productItem__catch_type_01 {
  color: #e8c152;
  left: calc(-50vw + 100% - 0.1em);
  opacity: 0.15;
}
@media screen and (max-width: 870px) {
  .productItem__catch_type_01 {
    left: -0.75em;
  }
}
@media screen and (max-width: 768px) {
  .productItem__catch_type_01 {
    left: -0.75em;
  }
}
.productItem__catch_type_02 {
  color: #653420;
  right: calc(-50vw + 100% + 0.1em);
  opacity: 0.1;
}
@media screen and (max-width: 870px) {
  .productItem__catch_type_02 {
    right: -0.75em;
  }
}
@media screen and (max-width: 768px) {
  .productItem__catch_type_02 {
    right: -0.6em;
  }
}
.productItem:nth-of-type(odd) .productItem__textListItem:before {
  width: 14.6672px;
  min-width: 14.6672px;
  height: 11.8032px;
  background: url(../images/icon_list_01.svg) no-repeat center center/cover;
  position: relative;
  top: 10px;
}
.productItem:nth-of-type(even) .productItem__textListItem:before {
  width: 14.3387px;
  min-width: 14.3387px;
  height: 12.6107px;
  background: url(../images/icon_list_02.svg) no-repeat center center/cover;
  position: relative;
  top: 10px;
}
.productItem__inner {
  border: 1px solid #d1c0a7;
  padding: 30px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
}
@media screen and (max-width: 870px) {
  .productItem__inner {
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .productItem__inner {
    padding: 20px;
  }
}
.productItem__fig {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .productItem__fig {
    margin-bottom: 22px;
  }
}
.productItem__figImg {
  width: 100%;
  height: auto;
  aspect-ratio: 419.5814/365.2325;
  -o-object-fit: cover;
     object-fit: cover;
}
.productItem__textTitle {
  font-size: 3rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.7333333333;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .productItem__textTitle {
    line-height: 1.5;
    margin-bottom: 17px;
  }
}
.productItem__textDesc {
  line-height: 1.875;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .productItem__textDesc {
    margin-bottom: 20px;
    line-height: 1.875;
  }
}
.productItem__textListItem {
  line-height: 1.875;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.productItem__textListItem:before {
  content: "";
  display: block;
  margin-right: 7px;
}
.productItem__textListDl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.productItem__textListDt {
  min-width: 3em;
}
.productItem__textListDd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.productItem__textBtn {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .productItem__textBtn {
    margin-top: 20px;
  }
}
.productItem__textBtn .borderBtn__link {
  width: 100%;
}

.show_page_loading::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
}

#section01,
#section02,
#section03,
#section04,
#section05,
#section06,
#section07,
#section08,
#section09,
#section10 {
  outline: none;
}
/*# sourceMappingURL=style.css.map */
