@charset "UTF-8";

/*================================
reset CSS
=================================*/

/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
  width: 100%;
  height: auto;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: button;
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  height: auto;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* http://meyerweb.com/eric/tools/css/reset/v2.0 | 20110126 License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  color: #333333;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.04em;
}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

b,
strong,
.bold {
  font-family: 'Noto Serif JP', serif;
}

a {
  text-decoration: none;
  color: #000;
}

/*================================
フレームワーク
=================================*/

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col-lg-5 {
  box-sizing: border-box;
  flex: 0 0 auto;
  max-width: 41.6666666667%;
  flex-basis: 41.6666666667%;
  padding: 0 20px;
}

.col-lg-6 {
  box-sizing: border-box;
  flex: 0 0 auto;
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 20px;
}

@media screen and (max-width: 760px) {

  .col-sm-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    max-width: 100%;
    flex-basis: 100%;
    padding: 0;
  }
}

/* headding left */
.headding-wrapper-outer {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
}

.headding-wrapper-outer-subtitle {
  position: absolute;
  top: 0;
  right: auto;
  left: 0;
  transform: none;
  font-family: 'EB Garamond', 'Noto Serif JP', serif;
  font-size: 196px;
  color: rgba(92, 155, 170, 0.2);
  /* #5C9BAA */
}

.headding-wrapper-outer2 {
  max-width: 1100px;
  width: 100%;
  height: auto;
  padding: 0 30px;
  margin: 0 auto;
}

.headding-wrapper {
  margin-top: 30px;
  text-align: left;
}

.headding-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  color: #3E3E3E !important;
  position: relative;
  letter-spacing: 0.1em;
  padding: 20px 66px;
  font-weight: 700;
  display: inline-block;
}

.headding-title_black {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  color: #3E3E3E !important;
  position: relative;
  letter-spacing: 0.16em;
  padding: 5px 0 0;
  font-weight: 400;
  display: inline-block;
}

.subtitle {
  font-family: 'EB Garamond', 'Noto Serif JP', serif;
  font-weight: 500;
  color: #000000 !important;
  font-size: 1rem;
  letter-spacing: 0.1em;
  /* padding-top: 5%; */
  position: relative;
}

.subtitle::after,
.header-nav-link-subtitle::after {
  content: ".";
}

.headding-text-btn-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.headding-text-btn-wrap .default-box {
  flex: 1;
}

.headding-text-btn-wrap .default-text {
  padding-bottom: 0;
  margin-right: 20px;
}

.under-header-wrapper {
  margin-top: 41px;
}

.headding-appeal-text {
  margin-top: 50px;
  font-size: .875rem;
  line-height: 2.1;
  letter-spacing: 0.2rem;
  position: relative;
}

/* headding left */

/* headding right */
.headding-wrapper-outer-dir-right .headding-wrapper-outer-subtitle {
  right: 0;
  left: auto;
  transform: none;
}

.headding-wrapper-outer-dir-right .headding-wrapper {
  margin: 0 auto;
  writing-mode: vertical-rl;
  text-align: left;
}

.headding-wrapper-outer-dir-right .subtitle {
  font-size: .875rem;
}

.headding-wrapper-outer-dir-right .headding-title_black {
  padding-top: 0;
  margin-right: 5px;
}

.headding-wrapper-outer-dir-right .headding-appeal-text {
  margin-top: 0;
  margin-right: 60px;
}

/* headding right */

/* headding center */
.headding-wrapper-outer-dir-center .headding-wrapper-outer-subtitle {
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.headding-wrapper-outer-dir-center .headding-wrapper {
  margin-bottom: 41px;
  text-align: center;
}

/* headding center */

@media screen and (max-width: 760px) {
  .headding-wrapper-outer {
    padding-top: 25px;
    padding-bottom: 20px;
  }

  .headding-wrapper-outer-subtitle {
    font-size: 106px;
  }

  .headding-title {
    font-size: 1.8rem;
    padding: 28px 43px;
  }

  .headding-title_black {
    font-size: 1.5rem;
    margin-top: 10px;
    padding: 0;
  }

  .subtitle {
    font-size: 0.875rem;
  }

  .top-space-headding {
    margin-bottom: 60px;
  }

  /* headding right */
  .headding-wrapper-outer-dir-right .headding-wrapper {
    margin: 30px 0 0;
    writing-mode: horizontal-tb;
  }

  .headding-wrapper-outer-dir-right .headding-wrapper-outer-subtitle {
    right: auto;
    left: 0;
  }

  .headding-wrapper-outer-dir-right .headding-title_black {
    margin-right: 0;
  }

  .headding-wrapper-outer-dir-right .headding-appeal-text {
    margin-top: 40px;
    margin-right: 0;
  }

  /* headding right */

  .headding-text-btn-wrap {
    display: block;
    justify-content: space-between;
    align-items: flex-end;
  }

}

@media screen and (max-width: 480px) {
  .headding-title {
    padding: 22px 39px;
  }

  .headding-title_black {
    padding: 0;
  }

}

.default-text {
  letter-spacing: 0.2em;
  line-height: 2.3em;
  font-weight: 400;
  padding-bottom: 10%;
  font-size: .875rem;
}

.default-box {
  text-align: left;
}

.default-box-menu {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.default-box-menu .default-text {
  padding-bottom: 0;
  margin-right: 10px;
  text-align: left;
  font-weight: normal;
  flex: 1;
}

@media screen and (max-width: 760px) {
  .default-box-menu {
    display: block;
  }
}

.fluid-image {
  padding-top: 90px;
  margin: 0 auto;
}

.top-concept {
  overflow-x: hidden;
  position: relative;
}

.top-concept .container {
  padding-left: 0;
  padding-right: 0;
}

.under-concept .container {
  padding-left: 0;
  padding-right: 0;
}

.concept-top-image {
  padding-top: 90px;
  margin: 0 auto;
  width: 1250px;
}

@media screen and (max-width: 1250px) {
  .concept-top-image {
    padding-top: 90px;
    margin: 0 auto;
    width: auto;
  }
}

.concept-image {
  width: 40%;
}

.concept-image-other {
  margin-top: 15px;
  margin-left: -173px;
  text-align: left;
}

.concept-box:nth-child(2n) .concept-image-other {
  margin-right: -173px;
  text-align: right;
}

.concept-image-other .concept-image-other-image {
  max-width: 380px;
  width: 100%;
}

@media screen and (max-width: 760px) {
  .concept-image {
    width: 100%;
  }

  .concept-image-other {
    margin-left: 0;
  }

  .concept-box:nth-child(2n) .concept-image-other {
    margin-right: 0;
    text-align: left;
  }

  .concept-image-other .concept-image-other-image {
    max-width: 56%;
  }
}

.concept-box {
  position: relative;
  margin-top: 160px;
}

.concept-box-inner {
  padding-left: 80px;
  padding-right: 0;
}

.concept-box:nth-child(2n) .concept-box-inner {
  padding-left: 0;
  padding-right: 80px;
}

.concept-first-image {
  margin-right: calc(50% - 50vw + 1.875rem);
  margin-left: 0;
}

.concept-box:nth-child(2n) .concept-first-image {
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}

.concept-first-image img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.concept-list {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 50px;
}

.concept-first-image+.concept-list {
  margin-top: 60px;
}

.concept-box:nth-child(2n) .concept-list {
  flex-direction: row;
  padding-left: 50px;
  padding-right: 0;
  flex-direction: row-reverse;
}

.concept-list-image {
  width: 100%;
  height: auto;
}

.concept-item {
  width: 49%;
  height: auto;
}

@media screen and (max-width: 760px) {
  .concept-box {
    margin-top: 80px;
  }

  .concept-list {
    display: block;
    margin-bottom: 0;
    padding: 0;
  }

  .concept-box:nth-child(2n) .concept-list {
    padding-left: 0;
  }

  .concept-first-image+.concept-list {
    margin-top: 30px;
  }

  .concept-list-image {
    margin-top: 30px;
    width: 56%;
  }

  .concept-item {
    width: 90%;
    margin: 30px auto 0;
  }
}

.concept-title {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.16em;
  padding-bottom: 17px;
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-rl;
  color: #fff;
}

.concept-box:nth-child(2n) .concept-title {
  left: auto;
  right: 0;
}

.top-concept-title {
  color: #7B644F !important;
}

.under-concept-title {
  position: static;
  writing-mode: horizontal-tb;
  padding-bottom: 35px;
  font-size: 1.5rem;
}

.concept-subtitle {
  font-size: .875rem;
  line-height: 2;
}

.concept-box .btn {
  text-align: left;
}

.concept-appeal-text {
  margin: 50px auto;
  font-size: .875rem;
  letter-spacing: 0.2em;
  line-height: 2.1;
  position: relative;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 760px) {
  .fluid-image {
    padding-top: 29px;
    width: auto;
    height: auto;
  }

  .default-text {
    line-height: 2em;
  }

  .top-concept .container {
    padding-left: 26px;
    padding-right: 26px;
  }

  .under-concept .container {
    padding-left: 26px;
    padding-right: 26px;
  }

  .concept-title {
    font-size: 1.5rem;
    padding-bottom: 10px;
    position: static;
    writing-mode: horizontal-tb;
    display: flex;
    justify-content: flex-end;
  }

  .under-concept-title {
    display: flex;
    justify-content: flex-start;
    font-size: 1.25rem;
  }

  .concept-subtitle {
    font-size: .875rem;
  }

  .concept-appeal-text {
    margin: 40px auto;
    writing-mode: horizontal-tb;
  }

  .concept-box .concept-first-image {
    margin-left: calc(50% - 50vw);
    margin-right: 0;
  }

  .concept-box-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .concept-box:nth-child(2n) .concept-box-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .concept-box .btn {
    margin-top: 40px;
  }
}

.top-space {
  min-height: 600px;
  /* min-height: 680px; */
  display: flex;
  align-items: center;
}

.top-space-bg {
  min-height: 680px;
}

.top-space .default-text.space-appeal-text {
  font-size: .875rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 65px;
  text-align: left;
  writing-mode: vertical-rl;
}

.under-space-lead-text {
  padding-bottom: 0;
}

.under-space-keyvisual {
  margin-top: 20px;
}

@media screen and (max-width: 760px) {
  .top-space {
    min-height: 330px;
    /* min-height: 461px; */
    /* min-height: 60vw; */
    align-items: flex-start;
    margin-top: 50px;
  }

  .top-space-bg {
    min-height: 400px;
  }

  .top-space .default-text.space-appeal-text {
    padding: 0;
    writing-mode: horizontal-tb;
  }
}

.white {
  color: #fff;
}

.description {
  font-size: 0.9rem;
  line-height: 2.3em;
  color: #000000;
}

.description-box {
  width: 90%;
  height: auto;
  margin: 37px auto 0;
}

.description-box-title {
  padding-bottom: 22px;
  font-size: 1.3rem;
  color: #fff;
}

.keyvisual {
  overflow-x: hidden;
}

.keyvisual-inner {
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.keyvisual-inner2 {
  margin-right: calc(50% - 50vw);
  margin-left: 120px;
}

.topicpath-outer {
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topicpath {
  display: flex;
  margin-right: calc(50% - 50vw);
  margin-left: 120px;
  gap: 20px;
}

.topicpath-item {
  font-size: .875rem;
}

.topicpath-link {
  position: relative;
  color: #333;
  font-weight: bold;
}

.topicpath-link::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 7px;
  right: -20px;
  width: 8px;
  height: 8px;
  margin: 0 .5em;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  transform: rotate(45deg);
}

@media screen and (max-width: 780px) {
  .keyvisual-inner2 {
    margin-right: 0;
    margin-left: 0;
  }

  .topicpath-link::after {
    right: -12px;
  }

  .topicpath-item {
    font-size: 0.87rem;
    margin-right: 20px;
    margin-left: 0;
  }

  .under-news-image {
    width: 50%;
    height: auto;
  }
}

/* PC */
.sp_only {
  display: none !important;
}

.pc_only {
  display: block !important;
}

@media screen and (max-width: 760px) {

  /* SP */
  .sp_only {
    display: block !important;
  }

  .pc_only {
    display: none !important;
  }
}

.section {
  padding: 89px 0 97px;
}

.section.below-header {
  overflow-x: hidden;
  padding-top: 20px;
  padding-bottom: 110px;
}

.section-keyvisual {
  padding-bottom: 30px;
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 1100px;
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.footer-inner {
  border-top: 1px solid #7B644F;
}

.footer-reserve {
  font-size: .875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.section-icon {
  text-align: center;
  padding-bottom: 5px;
}

.section-icon-image {
  width: 80%;
  height: auto;
}

.primary-container {
  padding-top: 27px;
}

@media screen and (max-width: 1280px) {

  .section-keyvisual {
    padding: 89px 0 115px;
    background-position: center;
  }
}

@media screen and (max-width: 980px) {

  .section-keyvisual {
    padding: 89px 0 89px;
    background-position: center;
  }
}

@media screen and (max-width: 760px) {
  .container {
    width: 100%;
    height: auto;
    padding-right: 26px;
    padding-left: 26px;
    margin-right: auto;
    margin-left: auto;
  }

  .section {
    padding: 30px 0 100px;
  }

  .section-keyvisual {
    padding: 65px 0 40px;
    background-position: center;
  }

  .section-icon-image {
    width: 60%;
    height: auto;
  }

  .concept-item {
    width: auto;
  }
}

@media screen and (max-width: 760px) {
  .section {
    padding: 30px 0 52px;
  }

  .section.below-header {
    padding: 30px 0 90px;
  }

  .section-icon-image {
    width: 60%;
    height: auto;
  }
}

.btn {
  text-align: center;
  margin-top: 85px;
}

.btn-menu {
  margin-top: 12px;
}

.btn-link {
  display: inline-block;
  position: relative;
  letter-spacing: 0.1em;
  font-size: .875rem;
  font-weight: 500;
  color: #AD845E;
  padding: 0 50px 12px 0;
  transition: 0.5s;
  border-bottom: 1px solid #AD845E;
}

.btn-link::before {
  content: "";
  position: absolute;
  top: 1px;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #AD845E;
  transition: 0.5s;
}

.btn-link::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 5px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  transition: 0.5s;
}

.btn-link:hover {
  color: #400908;
}

.btn-link:hover::before {
  background-color: #a5a3a3;
}

.brand-btn {
  padding: 20px 0;
  margin: 0 auto;
  font-size: .875rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #7B644F;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  align-self: end;
}

.brand-btn:hover {
  background-color: #333333;
}

.brandtop-footer {
  padding: 40px 0;
}

.brandtop-footer p {
  text-align: center;
}

@media screen and (max-width: 760px) {
  .btn {
    margin-top: 43px;
  }

  .btn-menu {
    text-align: left;
    margin-top: 20px;
  }

  #content {
    margin-top: 0;
    padding-top: 0;
  }
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  font-weight: 500;
  background: none;
}

#header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/brand_bk.webp") repeat top left #ffffff;
  opacity: 0.93;
  z-index: 0;
}

#header .container {
  position: relative;
  z-index: 1;
}

.header-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-logo {
  width: 65px;
  height: auto;
}

.header-logo-link {
  display: block;
  width: fit-content;
  height: auto;
  margin: 0;
  padding: 5px 0px 10px 50px;
}

.header-logo-name {
  display: block;
  text-align: left;
  color: #fff;
  margin: 0 0 0 10px;
  padding: 5px 10px 10px 0;
}

.header-link {
  display: block;
  padding: 16px;
  transition: 0.3s;
  text-align: center;
  width: 100%;
  height: auto;
  font-weight: 500;
  color: #3E3E3E;
}

.header-image {
  width: 100%;
  height: auto;
}

.header-nav-container {
  float: inherit;
  display: none;
  padding: 0;
  overflow: auto;
}

.header-nav-container-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav-container-inner2 {
  width: 100%;
  height: auto;
  margin-top: 22vh;
  height: 600px;
  display: flex;
  justify-content: space-between;
}

.header-nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 480px;
}

.header-nav-item {
  max-width: 300px;
  width: 100%;
  height: auto;
  padding-bottom: 50px;
  padding-right: 20px;
}

.header-reserve {
  width: 200px;
  height: auto;
}

.header-nav-link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  font-weight: normal;
  font-size: 1.3rem;
}

.header-nav-link-subtitle {
  display: block;
  font-size: .875rem;
  transition: .3s;
}

.header-nav-link-title {
  display: block;
  font-size: 1.25rem;
  margin-top: 10px;
  transition: .3s;
}

.header-nav-item-underlist {
  padding-top: 5px;
}

.header-nav-item-underlist-item {
  margin-top: 20px;
}

.header-nav-item-underlink {
  display: inline-block;
  font-size: 1rem;
  color: #747474;
  line-height: 1.4;
  transition: .3s;
}

.header-nav-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.header-button {
  display: none;
}

.h-spnavi_btn {
  display: block;
  top: 40px;
  left: 50px;
  width: 56px;
  height: 50px;
  position: fixed;
  cursor: pointer;
}

.h-spnavi_btn span {
  display: block;
  width: 53.57%;
  height: 1px;
  background-color: #7B644F;
  position: absolute;
  top: 50%;
  transition: 0.3s;
}

.h-spnavi_btn span:after,
.h-spnavi_btn span:before {
  content: " ";
  height: 1px;
  background-color: #7B644F;
  position: absolute;
  transition: 0.3s;
}

.h-spnavi_btn span:before {
  top: -15px;
  width: 60%;
}

.h-spnavi_btn span:after {
  top: 15px;
  width: 186.66%;
}

.h-spnavi_btn.close span {
  background: none;
}

.h-spnavi_btn.close span:before {
  width: 186.66%;
  top: 0;
  transform: rotate(25deg);
  -webkit-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
}

.h-spnavi_btn.close span:after {
  top: 0;
  transform: rotate(-25deg);
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
}

.h-navi_btn {
  display: block;
}

.header-under-logo {
  position: fixed;
  top: 32px;
  right: 40px;
}

.header-under-logo a {
  display: block;
  transition: .3s;
}

.header-under-logo a:hover {
  opacity: .7;
}

.header-under-logo img {
  width: 144px;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 760px) {
  .topicpath {
    display: none;
  }

  #header .container {
    padding: 0;
  }

  .header-nav-item {
    width: 100%;
    max-width: none;
    height: auto;
    padding: 0 0 50px 0;
  }

  .header-reserve {
    width: 100%;
    height: auto;
  }

  .header-nav-container {
    padding: 0 26px;
  }

  .header-nav-container-inner2 {
    display: block;
    margin-top: 120px;
  }

  .header-nav-list {
    display: block;
    height: auto;
  }

  .header-nav-logo {
    display: block;
    padding-bottom: 100px;
  }

  .header-nav-logo-image {
    width: 200px;
    height: auto;
    margin: 0 auto;
  }

  .h-spnavi_btn {
    top: 14px;
    left: 24px;
  }

  .header-under-logo {
    top: 24px;
    right: 24px;
  }

  .header-under-logo img {
    width: 100px;
    height: auto;
  }
}

footer {
  position: relative;
  padding-bottom: 120px;
}

footer .footer-inner2 {
  position: relative;
  border-top: 1px solid #E8E8E8;
}

.footer-nav {
  display: flex;
  /* justify-content: center; */
  padding: 40px 0 30px;
  flex-wrap: wrap;
  font-weight: 500;
  row-gap: 10px;
}

.footer-nav-list {
  padding: 0 25px 0 0;
  /* border-right: 1px solid #3E3E3E; */
}

.footer-nav-link {
  color: #747474;
  transition: 0.3s;
  font-size: .875rem;
}

.footer-nav-link:hover {
  color: #7b644f;
}

.footer-logo-image {
  width: 10%;
  height: auto;
}

.footer-logo {
  text-align: center;
}

.footer-corp-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.sns {
  padding-top: 30px;
  display: flex;
  justify-content: center;
}

.sns-icon {
  width: 30px;
  height: auto;
  margin: 0 30px 0 0;
  transition: .3s;
}

.sns-icon:hover {
  opacity: .65;
}

.sns-icon:first-child {
  width: 30px;
  height: auto;
}

.footer-copyright {
  padding: 10px 0;
}

.copyright {
  display: block;
  text-align: center;
  color: #747474;
  font-size: .625rem;
}

.footer-button {
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.footer-item {
  width: 180px;
  height: auto;
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.footer-item .footer-item-char {
  transition: .3s;
}

.footer-item-image {
  width: 20px;
  height: 20px;
  padding-right: 13px;
}

.footer-item-text {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
}

.modal-container {
  padding: 20px;
  width: 100%;
  max-width: 600px;
  height: auto;
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.modal-title {
  padding: 50px 0 15px;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}

.modal-box {
  border-bottom: 1px solid #ddd4b5;
  border-top: 1px solid #ddd4b5;
  padding: 10px 0;
}

.modal-text {
  margin-bottom: 5px;
}

.modal-button {
  display: flex;
}

.modal-button-list {
  width: 50%;
  height: auto;
  text-align: center;
  padding: 8px;
}

.pagetop {
  position: absolute;
  top: -78px;
  right: 0;
}

.footer-pagetop {
  transition: 0.3s;
  position: absolute;
  right: 80px;
  top: 0;
  width: 50px;
  height: 50px;
  z-index: 50;
  cursor: pointer;
}

@media screen and (max-width: 760px) {
  .footer-button {
    display: flex;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    right: auto;
    padding: 0 10px;
  }

  .footer-item {
    width: 100%;
    height: auto;
  }

  .pagetop {
    width: 32px;
    height: auto;
    top: -52px
  }

  .footer-nav-list {
    margin: 9px 0px;
  }

  .footer-item-image {
    width: 25px;
    height: 25px;
    margin-right: 9px;
    padding-right: 0px;
  }

  .footer-item-text {
    font-size: 0.9rem;
  }

  .footer-logo-image {
    width: 20%;
    height: auto;
  }

  .footer-corp-info {
    display: block;
  }

  .sns {
    justify-content: flex-start;
  }

  .modal-container {
    padding: 10px 15px 0 15px;
    width: 80%;
    height: auto;
  }

  .modal-title {
    padding: 38px 0 8px;
    margin-bottom: 10px;
    font-size: 18px;
    background-size: 28px auto;
  }

  .modal-text {
    margin-bottom: 3px;
  }
}

@media screen and (max-width: 760px) {
  .footer-logo-image {
    width: 87px;
    height: auto;
  }

  .footer-nav {
    padding: 30px 0;
  }

  .footer-copyright {
    padding: 40px 0 0 0;
  }

  .copyright {
    text-align: left;
  }
}

.nav-list {
  margin-bottom: 30px;
  display: flex;
  padding-top: 50px;
  justify-content: center;
}

.nav-item {
  width: 25%;
  height: auto;
  border-right: 1px solid #AD845E;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item:first-child {
  border-left: 1px solid #AD845E;
}

.nav-link {
  position: relative;
  display: block;
  padding: 0 5px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: #AD845E;
  z-index: 2;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.cur:hover {
  color: #fff;
}

.nav-link.cur {
  background-color: transparent;
  color: #747474;
}

.nav-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: #E3E3E3; */
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
  transform-origin: 0 50%;
}

.nav-link:hover::before {
  transform: scaleX(1);
}

.slide_show div {
  /* position: absolute; */
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.hero {
  position: relative;
  /* height: 54.15vw; */
}

.hero-appeal {
  position: absolute;
  top: 33%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.hero-appeal-bland {
  position: absolute;
  top: 24%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.hero-appeal-logo {
  margin: 0 auto;
  max-width: 26.2%;
  height: auto;
}

.hero-appeal-brand_logo {
  margin: 0 auto;
  width: 186px;
  height: auto;
}

.hero-appeal-shop_name {
  margin-top: 1.3%;
  padding: 0 10px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  /* text-shadow: 0 0 8px rgba(5, 3, 1, 0.6); */
}

.hero-appeal-text {
  margin-top: 5%;
  padding: 0 10px;
  text-align: center;
  line-height: 1.667;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  /* text-shadow: 0 0 8px rgba(5, 3, 1, 0.6); */
}

.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: .8125rem;
  line-height: 2.92;
}

.hero-scroll-bar {
  display: block;
  width: 1px;
  height: 4vw;
  margin: 0 auto;
  background: #fff;
  animation: scrollDown 2s cubic-bezier(0.075, 0.82, 0.165, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }

  45% {
    transform-origin: top;
    transform: scaleY(1);
  }

  55% {
    transform-origin: bottom;
    transform: scaleY(1);
  }

  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

.reserve-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: auto;
  padding: 20px 20px;
  color: #fff;
  z-index: 81;
}

@media screen and (max-width: 1280px) {
  .hero {
    position: relative;
    /* height: 54.65vw; */
  }
}

@media screen and (max-width: 760px) {
  .nav-link {
    font-size: 1rem;
  }

  .hero-wrapper {
    width: 100%;
    height: auto;
  }

  .hero-appeal {
    overflow-x: hidden;
    top: 27vh;
  }

  .hero-appeal-bland {
    overflow-x: hidden;
    top: 32dvh;
  }

  .hero-appeal-logo {
    max-width: none;
    width: 54.4%;
    height: auto;
  }

  .hero-appeal-shop_name {
    margin: 5% auto 9%;
    font-size: 1rem;
  }

  .hero-appeal-text-wrap {
    padding: 0 20px;
  }

  .hero-appeal-text {
    line-height: 2;
    font-size: 1.25rem;
  }

  .hero-scroll {
    display: none;
  }

  .nav-list {
    padding-top: 35px;
  }

  .reserve-btn {
    width: calc(100% - 20px);
    height: auto;
    margin: 0 auto;
  }
}

#slide_show_sp {
  display: none;
  position: relative;
  z-index: 0;
}

#slide_show_pc {
  display: block;
  margin: 0 auto 40px;
  position: relative;
  z-index: 0;
  /* max-width: 1800px; */
}

#slide_show_menu_pc,
#slide_show_A-la-carte_pc {
  display: block;
  margin: 0 auto 0;
  max-width: 1100px;
  width: 100%;
  height: auto;
}

#slide_show_menu_pc .slick-list,
#slide_show_A-la-carte_pc .slick-list {
  overflow: visible;
}

#slide_show_menu_pc .slick-list {
  margin-left: -27%;
}

#slide_show_A-la-carte_pc .slick-list {
  margin-left: -46%;
}

#slide_show_menu_pc .slick-slide,
#slide_show_A-la-carte_pc .slick-slide {
  opacity: .65;
}

#slide_show_menu_pc .slick-slide.slick-active,
#slide_show_A-la-carte_pc .slick-slide.slick-active {
  opacity: 1;
}

#slide_show_menu_pc .slick-slide .menu-content,
#slide_show_A-la-carte_pc .slick-slide .menu-content {
  position: relative;
  width: 100% !important;
  height: auto;
  padding-bottom: 30px;
}

#slide_show_menu_pc .slick-slide .menu-image {
  height: 47.27vw;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
}

#slide_show_menu_pc .slick-slide .menu-image a img {
  width: auto;
  height: 47.27vw;
  max-height: 520px;
  transition: .3s;
}

#slide_show_menu_pc .slick-slide .menu-image a:hover img {
  width: auto;
  height: 50vw;
  max-height: 546px;
}

#slide_show_A-la-carte_pc .slick-slide .menu-image {
  height: 43.63vw;
  max-height: 480px;
  display: flex;
  align-items: flex-end;
}

#slide_show_A-la-carte_pc .slick-slide .menu-image a img {
  width: auto;
  height: 43.63vw;
  max-height: 480px;
  transition: .3s;
}

#slide_show_A-la-carte_pc .slick-slide .menu-image a:hover img {
  width: auto;
  height: 47vw;
  max-height: 506px;
}

@media screen and (max-width: 760px) {

  #slide_show_menu_pc .slick-list,
  #slide_show_A-la-carte_pc .slick-list {
    margin-left: 0%;
    overflow: visible;
  }

  #slide_show_menu_pc .slick-slide .menu-image {
    height: 55vw;
  }

  #slide_show_menu_pc .slick-slide .menu-image a img {
    height: 55vw;
  }

  #slide_show_menu_pc .slick-slide.slick-current .menu-image a img {
    height: 58vw;
  }

  #slide_show_A-la-carte_pc .slick-slide .menu-image {
    height: 56vw;
  }

  #slide_show_A-la-carte_pc .slick-slide .menu-image a img {
    height: 56vw;
  }

  #slide_show_A-la-carte_pc .slick-slide.slick-current .menu-image a img {
    height: 59vw;
  }

}

#slide_show_menu_pc .slick-slide .menu-detail,
#slide_show_A-la-carte_pc .slick-slide .menu-detail {
  display: none;
}

.menu-detail-another-outer {
  max-width: 1100px;
  width: 100%;
  height: auto;
  padding: 0 30px;
  margin: 0 auto;
}

.menu-detail-another {
  width: 80%;
  height: auto;
}

#slide_show_menu_pc .arrow-menu-prev,
#slide_show_A-la-carte_pc .arrow-menu-prev {
  position: absolute;
  bottom: -50px;
  right: 60px;
  width: 48px;
  height: 48px;
  border: 1px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  transition: .3s;
}

#slide_show_menu_pc .arrow-menu-prev:hover,
#slide_show_A-la-carte_pc .arrow-menu-prev:hover {
  border: 1px solid #7B644F;
  background-color: #ffffff;
}

#slide_show_menu_pc .arrow-menu-prev::before,
#slide_show_A-la-carte_pc .arrow-menu-prev::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(45deg);
  transition: .3s;
}

#slide_show_menu_pc .arrow-menu-prev:hover::before,
#slide_show_A-la-carte_pc .arrow-menu-prev:hover::before {
  border-top: 1px solid #7B644F;
  border-right: 1px solid #7B644F;
}

#slide_show_menu_pc .arrow-menu-next,
#slide_show_A-la-carte_pc .arrow-menu-next {
  position: absolute;
  bottom: -50px;
  right: 120px;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  transition: .3s;
}

#slide_show_menu_pc .arrow-menu-next:hover,
#slide_show_A-la-carte_pc .arrow-menu-next:hover {
  border: 1px solid #7B644F;
  background-color: #ffffff;
}

#slide_show_menu_pc .arrow-menu-next::before,
#slide_show_A-la-carte_pc .arrow-menu-next::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(-135deg);
  transition: .3s;
}

#slide_show_menu_pc .arrow-menu-next:hover::before,
#slide_show_A-la-carte_pc .arrow-menu-next:hover::before {
  border-top: 1px solid #7B644F;
  border-right: 1px solid #7B644F;
}

.slide_thumb {
  width: 80%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.slide_thumb .slick-current .thumb_img {
  filter: none;
}

.slide_thumb .slick-track {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.thumb_img {
  width: 95% !important;
  height: auto;
  filter: brightness(60%);
}

.thumb_img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 760px) {
  .menu-detail-another-outer {
    padding: 0 26px;
  }

  .menu-detail-another {
    width: 100%;
    height: auto;
  }

  #slide_show_sp {
    display: block;
    margin: 0 auto 20px;
  }

  #slide_show_pc {
    display: none;
  }

  .slide_thumb {
    display: none;
  }

  .arrow-menu-prev,
  .arrow-menu-next {
    display: none !important;
  }

}

.space-tiles {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.space-tile {
  width: 33.2%;
  height: auto;
  margin-top: .2%;
}

.space-tile-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.space-tile-link img {
  aspect-ratio: 16 / 10;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.space-tile-detail-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
}

.space-tile-detail-outer:hover {
  opacity: 1;
}

.space-tile-detail-outer::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .65;
}

.space-tile-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.space-tile-detail-title {
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5;
}

.space-tile-detail-title::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  background: #fff;
  width: 24px;
  height: 1px;
}

.space-tile-detail-link {
  position: relative;
  display: inline-block;
  padding-right: 22px;
  margin: 50px auto 0;
  color: #fff;
  font-size: .875rem;
}

.space-tile-detail-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: 0;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
}

.space-tile-detail-link::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 5px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .space-tiles {
    display: block;
  }

  .space-tile {
    width: 100%;
    height: auto;
    margin-top: 2px;
  }

  .space-tile-link {
    display: block;
    position: relative;
  }

  .space-tile-detail-outer {
    opacity: 1;
  }

  .space-tile-detail-outer::before {
    background: transparent;
    opacity: 1;
  }

  .space-tile-detail-title {
    text-shadow: 0 0 5px #000, 0 0 5px #000, 0 0 5px #000;
  }

  .space-tile-detail-link {
    text-shadow: 0 0 5px #000, 0 0 5px #000, 0 0 5px #000;
  }

  .space-tile-detail-link::before {
    box-shadow: 0 0 8px #000;
  }
}

.border-white {
  border: 2px solid #fff !important;
}

.space-item {
  padding-bottom: 35px;
}

.under-space-contents-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  width: 100%;
}

.under-space-image-wrapper {
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;
}

.under-space-image {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(222px, 1fr));
  justify-items: stretch;
  gap: 50px;
  width: 100%;
  margin-bottom: 1rem;
}

.under-space-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 495px;
}

.under-space-contents-wrapper:has(.under-space-image img:only-child) {
  flex-direction: row;
  flex-wrap: wrap;
}

.under-space-image-wrapper:has(.under-space-image img:only-child) {
  max-width: 495px;
}

.under-space-text {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 1100px) {
  .under-space-image-wrapper:has(.under-space-image img:only-child) {
    max-width: calc((100% - 50px) / 2);
  }
}

@media screen and (max-width: 768px) {
  .under-space-image-wrapper:has(.under-space-image img:only-child) {
    max-width: 100%;
  }

  .under-space-image {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .under-space-image img {
    max-width: 100%;
  }
}


.menu-container {
  width: 83%;
  height: auto;
  margin: 74px auto 0;
  padding-bottom: 66px;
}

.menu-wrapper {
  /* width: 90%; */
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow-x: hidden;
}

.top-menu-wrapper {
  padding-bottom: 50px
}

.menu-category {
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 96px 0 40px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #AD845E !important;
}

.top-menu-category {
  padding: 50px 30px 40px;
}

.space-category {
  /* display: flex;
  align-items: center; */
  /* font-size: 1.8rem; */
  /* padding: 96px 0 65px; */
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 96px 0 65px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #AD845E !important;
}

/* .menu-category::before,
.menu-category::after {
  border-top: 1px solid;
  content: "";
  flex-grow: 1;
} */

.menu-category::before {
  margin-right: 65px;
}

.menu-category::after {
  margin-left: 65px;
}

.menu-content {
  justify-content: space-between;
  padding-bottom: 50px;
  padding-left: 4px;
  padding-right: 4px;
}

.under-menu-section.section.below-header {
  padding-bottom: 18px;
}

.under-menu-wrapper .menu-content {
  margin-top: 90px;
  padding-bottom: 43px;
  /* border-top: 1px solid #747474; */
}

.under-menu-wrapper .menu-content:first-of-type {
  margin-top: 0;
  padding-bottom: 0;
  border-top: 0;
}

.menu-content-headding {
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 40px;
  padding: 5px 0 30px;
  border-bottom: 1px solid #AD845E;
  align-items: flex-end;
}

.menu-content-mid {
  justify-content: space-between;
  flex-wrap: nowrap;
}

.menu-image {
  /* width: 39%; */
  width: 100%;
  height: auto;
}

.under-menu-wrapper .menu-image {
  width: 62%;
  height: auto;
}

.menu-detail {
  width: 100%;
  height: auto;
  align-self: center;
}

.menu-title-box {
  flex: 1;
  width: 62%;
  height: auto;
}

.menu-title {
  font-size: 1.875rem;
  line-height: 1.3;
  padding-bottom: 25px;
  font-weight: 500;
}

.top-menu-title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 20px;
}

.menu-title-tags {
  display: flex;
  flex-wrap: wrap;
}

.menu-title-tag {
  margin-right: 10px;
  margin-bottom: 5px;
  padding: 6px;
  background-color: rgba(123, 100, 79, 0.4);
  /* #7B644F */
  color: #000;
  font-size: .875rem;
}

.menu-description {
  font-size: .875rem;
  line-height: 2;
  padding: 10px 0;
}

.under-menu-wrapper .menu-description {
  margin-top: 30px;
  line-height: 2;
}

.menu-interpolate {
  padding-left: 60px;
  width: 38%;
  height: auto;
  font-size: 15px;
  display: inline-block;
}

.menu-interpolate2 {
  font-size: 0.9rem;
  display: inline-block;
  padding: 15px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.menu-detail-content {
  margin-top: 20px;
  line-height: 1.6;
}

.menu-price {
  display: flex;
  justify-content: flex-end;
  padding: 35px 0 0 15px;
  line-height: 1.6;
  font-size: 2.1rem;
  width: 38%;
  height: auto;
}

.under-course-detail .menu-title {
  font-size: 1.5rem;
}

.under-course-detail .menu-price {
  width: auto;
  height: auto;
  font-size: 1.3rem;
}

.bgblack {
  background-color: #AD845E;
  color: #FFF;
  padding: 10px;
}

.bgblack p {
  color: #FFF;
}

.about_h3 {
  padding: 30px 0;
  color: #000;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 760px) {
  .top-menu-wrapper {
    padding-bottom: 30px;
  }

  .top-menu-wrapper:last-of-type {
    padding-bottom: 0;
  }

  .menu-title-box {
    width: auto;
    height: auto;
  }

  .menu-category {
    padding: 46px 0 24px;
    font-size: 1.25rem;
  }

  .top-menu-category {
    padding: 46px 26px 24px;
  }

  .menu-category::before {
    margin-right: 34px;
  }

  .menu-category::after {
    margin-left: 34px;
  }

  .menu-content {
    display: block;
    padding-bottom: 30px;
  }

  .under-menu-section.section.below-header {
    padding-bottom: 0;
  }

  .under-menu-wrapper .menu-content {
    margin-top: 60px;
  }

  .menu-content-headding {
    display: block;
    padding-bottom: 15px;
  }

  .menu-content-mid {
    display: block;
  }

  .menu-image {
    width: 100%;
    height: auto;
  }

  .under-menu-wrapper .menu-image {
    width: 100%;
    height: auto;
  }

  .menu-interpolate {
    width: 100%;
    height: auto;
    padding: 0;
    margin-top: 25px;
  }

  .menu-detail {
    width: 100%;
    height: auto;
  }

  .menu-title {
    margin-top: 25px;
    font-size: 1.125rem;
  }

  .menu-title-tag {
    font-size: .75rem;
  }

  .menu-container {
    width: 100%;
    height: auto;
  }

  .menu-price {
    width: 100%;
    height: auto;
    margin-top: 10px;
    margin-left: 0;
    font-size: 1.5rem;
  }
}

.about-item {
  padding-bottom: 35px;
}

.news-item {
  display: flex;
  max-width: 562px;
  width: 100%;
  height: auto;
  margin-top: 20px;
  transition: .3s;
}

.news-item:hover {
  opacity: .7;
}

.news-item:first-child {
  margin-top: 0;
}

.news-date {
  font-size: .875rem;
  margin-right: 20px;
  color: #747474;
  height: auto;
  line-height: 1.6;
  min-width: 80px;
}

.news-wrapper {
  position: relative;
}

.news-title {
  font-weight: normal;
  color: #333333;
  flex: 1;
  font-size: .875rem;
  line-height: 1.6;
}

.news-container-inner {
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: flex-end;
}

.news-container-inner2 {
  margin-left: 60px;
}

@media screen and (max-width: 760px) {
  .news-container-inner {
    display: block;
    padding: 0;
  }

  .news-container-inner2 {
    margin-top: 40px;
    margin-left: 0;
  }

  .news-item {
    display: block;
  }
}

.coupon-container {
  width: 75%;
  height: auto;
  margin: 0 auto;
}

.coupon-wrapper {
  position: relative;
  display: flex;
  background-color: #fff;
  padding: 46px 41px;
  align-items: center;
  margin-bottom: 31px;
}

.coupon-wrapper::before {
  content: "";
  position: absolute;
  border-color: #AD845E;
  border-style: solid;
  border-width: 30px;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  top: -30px;
  left: -30px;
  transform: rotate(-45deg);
}

.coupon-primary {
  width: 50%;
  height: auto;
  padding-right: 49px;
}

.coupon-detail {
  width: 50%;
  height: auto;
  padding: 12px 0 12px 49px;
  border-left: 1px solid #000;
}

.coupon-title {
  font-size: 135%;
  vertical-align: baseline;
  color: #000 !important;
}

.coupon-text {
  line-height: 2.2em;
  letter-spacing: 0.2em;
  color: #000 !important;
}

.section-access-map-wrap {
  overflow-x: hidden;
  padding-bottom: calc(97px - 40px);
}

.under-access {
  padding-bottom: 0;
}

.access-detail-block {
  display: flex;
  margin-top: 80px;
}

.access-detail {
  width: 50%;
  height: auto;
}

.access-detail-logo {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
}

.access-map {
  height: 560px;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  padding-right: 30px;
  filter: grayscale(100%) brightness(.9);
  -webkit-filter: grayscale(100%) brightness(.9);
}

.access-map iframe {
  width: 100%;
  height: 100%;
}

.access-shop-name {
  font-size: 1.25rem;
  font-weight: 400;
  padding-bottom: 8px;
}

.access-wrapper {
  width: 100%;
  height: auto;
  margin-top: 30px;
}

.access-wrapper a {
  color: #3E3E3E;
}

.access-wrapper tbody {
  display: block;
}

.access-wrapper tr {
  padding: 32px 0 3px;
  text-align: left;
  line-height: 1.4em;
  justify-content: space-between;
}

.access-wrapper th {
  width: 20%;
  height: auto;
}

.access-wrapper td {
  width: 70%;
  height: auto;
  padding: 5px 0;
}

.access-desc {
  display: flex;
}

.access-desc-title {
  font-size: .8125rem;
}

.access-desc-text {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: .8125rem;
}

.access-address {
  font-size: .8125rem;
}

.access-phonenumber {
  font-size: 1.25rem;
  padding-bottom: 15px;
}

@media screen and (max-width: 760px) {
  .access-container {
    display: block;
    width: 100%;
    height: auto;
  }

  .access-detail-block {
    display: block;
  }

  .access-detail {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    padding-bottom: 30px;
  }

  .access-detail-logo {
    width: 140px;
    height: auto;
    display: block;
    padding-right: 0;
  }

  .access-map {
    width: 100vw;
    height: auto;
    height: 240px;
    margin: 0;
    padding: 0;
    margin: 0 calc(50% - 50vw);
  }
}

@media screen and (max-width: 480px) {
  .coupon-wrapper {
    display: block;
    padding: 40px 30px;
  }

  .coupon-primary {
    width: 100%;
    height: auto;
    padding: 0;
    margin-bottom: 18px;
  }

  .coupon-detail {
    width: 100%;
    height: auto;
    padding: 0;
    border-left: none;
  }
}

.under-menu-container {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 0;
}

.under-menu-wrapper {
  padding: 0;
}

.under-menu-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 33px;
}

.under-menu-content {
  width: 30%;
  height: auto;
  margin-right: 5%;
}

.under-menu-content:nth-child(3n) {
  margin-right: 0;
}

.under-menu-image img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.under-course-wrapper {
  margin-top: 84px;
}

.under-course-item {
  display: flex;
  justify-content: space-between;
}

.under-course-img {
  width: 48%;
  height: auto;
}

.under-course-img img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.under-course-detail {
  width: 48%;
  height: auto;
}

.under-corse-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
}

.under-course-interpolate {
  display: flex;
  border-bottom: 1px solid #AD845E;
  justify-content: space-between;
  padding: 20px 15px;
}

.under-course-title {
  width: 30%;
  height: auto;
}

.under-course-text {
  width: 60%;
  height: auto;
  line-height: 1.6;
}

.under-course-explain {
  width: 48%;
  height: auto;
  margin-top: 20px;
}

.under-course-content {
  width: 48%;
  height: auto;
  margin-top: 40px;
}

.under-food-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 30px 40px 0 30px;
}

.under-food-detail {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.under-menu-detail {
  padding: 25px 0 60px;
}

.under-menu-detail-heading {
  font-size: 1.25rem;
  line-height: 1.5;
}

.under-menu-detail-desc {
  margin-top: 15px;
  font-size: .875rem;
  line-height: 2;
}

.under-menu-detail-price {
  margin-top: 15px;
  color: #000000;
  font-size: 1.875rem;
  line-height: 1.133;
  text-align: right;
}

.under-course-box {
  padding: 20px;
  border: solid 1px #AD845E;
}

.under-course-box p {
  line-height: 1.6;
}

.under-food-item-heading {
  font-size: 22px;
  font-weight: 500;
  border-left: solid 8px #AD845E;
  border-bottom: solid 1px #AD845E;
  padding: 0 0 5px 23px;
}

.under-food-list {
  color: #400908;
  padding: 20px 50px;
}

.under-food-item {
  margin: 30px 0 100px 0;
}

.under-food-detail-item {
  padding: 15px 0;
  border-bottom: solid 1px;
  width: 48%;
}

.under-food-name {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
  line-height: 1.2;
}

.under-food-price {
  font-size: 14px;
  margin-top: 2px;
  color: #d33c33;
}

@media screen and (max-width: 760px) {
  .under-menu-box {
    display: block;
  }

  .under-menu-content {
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .under-menu-container {
    width: 100%;
    height: auto;
  }

  .under-menu-wrapper {
    padding: 0 0 60px;
    width: 100%;
    height: auto;
  }

  .under-course-item {
    display: block;
  }

  .under-corse-container {
    display: block;
  }

  .under-course-img {
    width: 100%;
    height: auto;
  }

  .under-course-detail {
    width: 100%;
    height: auto;
  }

  .under-course-explain {
    width: 100%;
    height: auto;
  }

  .under-course-content {
    width: 100%;
    height: auto;
  }

  .under-food-wrapper {
    display: block;
    padding: 25px 0 0;
  }

  .under-food-detail {
    display: block;
  }

  .under-food-detail-item {
    width: 100%;
    height: auto;
  }

  .under-menu-detail {
    padding: 25px 0 40px;
  }

  .under-menu-detail-heading {
    font-size: 1.125rem;
  }

  .under-menu-detail-price {
    font-size: 1.5rem;
  }

  .under-food-list {
    padding: 1px 0;
  }

  .under-food-item {
    margin: 30px 0 60px 0;
  }
}

.access-under-wrapper {
  width: 50%;
  height: auto;
  margin: 0 auto;
  padding-top: 54px;
}

.access-under-title {
  font-size: 1.7rem;
  padding-bottom: 17px;
  border-bottom: 1px solid #3E3E3E;
}

.access-under-item {
  padding: 20px 0;
  border-bottom: 1px solid #3E3E3E;
}

.access-under-name {
  width: 20%;
  height: auto;
}

.access-under-detail {
  width: 80%;
  height: auto;
}

.m-access_map {
  height: 400px;
}

.m-access_map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 760px) {
  .access-under-wrapper {
    width: 100%;
  }

  .single-news-image {
    width: 100% !important;
  }

  .single-news-container {
    width: 100% !important;
  }
}

.under-news-wrapper {
  margin-top: 20px;
}

.under-news-link {
  display: flex;
  /* margin-top: 60px; */
  border-bottom: 1px solid #272A38;
}

.under-news-link:first-of-type {
  border-top: 1px solid #272A38;
}

.under-news-image {
  width: 15%;
  height: auto;
}

.under-news-content {
  width: 100%;
  height: auto;
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.under-news-date {
  color: #747474;
  font-size: .875rem;
  margin-right: 30px;
  height: auto;
  line-height: 1.6;
}

.under-news-title {
  color: #000000;
  /* font-size: 1.6rem; */
  flex: 1;
  font-size: .875rem;
  line-height: 1.6;
  font-weight: 500;
}

.under-news-text {
  line-height: 1.5em;
}

.pageTotal-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.pageTotal-number {
  margin-right: 20px;
}

.m-pager {
  margin-top: 10px;
}

.pagenation {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

.pagenation li {
  display: inline-block;
}

.pagenation-prev {
  width: 40px;
  height: 40px;
}

.m-pager_item {
  /* ページネーション数字表示 1ページのみの場合*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #747474;
  margin: 0 7px;
}

.m-pager_item span {
  color: #fff;
}

.m-pager_box>li[class] {
  margin: 0 7px 10px;
}

.m-pager_box>li.m-pager_prev {
  margin: 0;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #AD845E;
  color: #000;
}

.page-numbers.current {
  background-color: #747474;
  color: #fff;
}

.page-numbers.dots {
  align-items: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent !important;
  color: #fff;
}

.news-arrow-prev,
.news-arrow-next {
  width: 8px;
  height: auto;
}

.news-arrow-prev {
  transform: rotate(180deg);
}

.single-news-image {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

.single-news-container {
  width: 100%;
  height: auto;
  margin: 60px 0 0;
  padding-bottom: 100px;
  border-bottom: 1px solid #E8E8E8;
}

.single-news-date {
  font-size: .875rem;
  color: #747474;
}

.single-news-title {
  margin-top: 10px;
  margin-bottom: 100px;
  font-size: 1.875rem;
  line-height: 1.334;
  color: #000000;
  font-weight: 500;
}

.single-news-contents>p {
  color: #000000;
  line-height: 2;
}

.under-single-news.below-header {
  padding-top: 200px;
  padding-bottom: 97px;
}

.brand-news-single .under-single-news.below-header {
  padding-top: calc(200px - 50px);
}

.under-single-news .topicpath {
  margin-left: 30px;
}

.under-single-news .topicpath {
  margin-left: 30px;
}

.under-single-news .btn {
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 40px auto 0;
  padding: 0 30px;
  text-align: left;
}

.under-single-news .btn-link {
  padding: 0 0 12px 50px;
}

.under-single-news .btn-link::before {
  left: 0;
}

.under-single-news .btn-link::after {
  left: 5px;
  transform: rotate(-135deg);
}

@media screen and (max-width: 760px) {
  .pageTotal-block {
    display: block;
  }

  .pageTotal-number {
    text-align: center;
    margin-right: 0;
  }

  .m-pager {
    display: flex;
    justify-content: center;
  }

  .single-news-title {
    margin-bottom: 60px;
  }

  .under-news-link {
    display: block;
  }

  .under-news-image {
    width: 50%;
    margin: 0px auto;
    padding-top: 10px;
  }

  .under-news-content {
    width: 100%;
    flex-direction: column;
  }

  .under-single-news.below-header {
    padding-top: 100px;
  }

  .brand-news-single .under-single-news.below-header {
    padding-top: calc(100px - 30px);
  }
}

.row.site-top {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 20px;
  flex-direction: row;
  align-items: flex-start;
}

.brand-wrapper {
  width: 245px;
  margin: 0;
  display: grid;
  align-content: space-between;
  align-items: start;
  grid-template-rows: 1fr 1.4rem 0.5fr auto;
  row-gap: 20px;
}

.brand-logo a {
  aspect-ratio: 16 / 10;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 34px;
  transition: 0.5s;
}

.brand-logo a:hover {
  opacity: .7;
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-shopname {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  line-height: 1.25;
}

.brand-access {
  margin-top: 20px;
}

.brand-access .addr {
  font-size: .875rem;
  color: #333333;
  line-height: 2;
}

.brand-news {
  margin-top: 50px;
}

#brand-shoplist {
  padding-bottom: 190px;
}

@media screen and (max-width: 1100px) {
  .brand-wrapper {
    width: 39dvw;
    grid-template-rows: 1fr auto auto auto;
    max-height: 80dvh;
  }

  .brand-btn {
    margin-top: 10px;
  }

  .brand-news {
    margin-top: 10px;
  }

  #brand-shoplist {
    padding-bottom: 100px;
  }
}

.undifine-wrappewr {
  padding: 100px 0;
  text-align: center;
}

.undifine-wrappewr p {
  color: #000;
}

.undifine-wrappewr h1 {
  padding: 40px 0;
  font-size: 2rem;
  color: #000;
}

.undifine-wrappewr .brand-btn {
  margin: 40px auto 0;
  max-width: 320px;
}

/* フッター上バナー群 */

.footer_bnr_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
}

.footer_bnr_wrap>a {
  margin: 0 10px;
}

@media screen and (max-width: 760px) {
  .footer_bnr_wrap {
    flex-direction: column;
  }

  .footer_bnr_wrap>a {
    width: 80%;
    height: auto;
    margin: 10px 0;
  }
}

@media screen and (max-width: 760px) {
  .row.site-top {
    row-gap: 40px;
  }
}

/* スクロールで要素出現 */
.js-fade-content {
  transition: 1.1s .2s ease-in-out;
}

.js-fade-in {
  opacity: 0;
}

.js-fade-in.is-show {
  opacity: 1;
}

.js-fade-right {
  transform: translateX(30px);
  opacity: 0;
}

.js-fade-right.is-show {
  transform: translateX(0);
  opacity: 1;
}

/* concept-first-imageのjs-fade-contentでの処理 */
.concept-first-image.js-fade-content {
  transform: translateX(30px);
  opacity: 0;
}

.concept-first-image.js-fade-content.is-show {
  transform: translateX(0);
  opacity: 1;
}

.concept-box:nth-child(2n) .concept-first-image.js-fade-content {
  transform: translateX(-30px);
  opacity: 0;
}

.concept-box:nth-child(2n) .concept-first-image.js-fade-content.is-show {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 760px) {
  .concept-first-image.js-fade-content {
    transform: translateX(-30px);
    opacity: 0;
  }
}

/* ブランドトップページ */
.brand-top-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.brand-top-hero-bg img {
  width: 100%;
  height: 96dvh;
  object-fit: cover;
  display: block;
  max-height: 768px;
}

.brand-top-hero-logo {
  text-align: center;
}

.brand-top-hero-logo img {
  max-width: 140px;
  width: 10%;
  height: auto;
}

@media screen and (max-width: 760px) {
  .brand-top-hero-logo img {
    max-width: 140px;
    width: 24%;
  }
}

/* 投稿記事の本文内のタグスタイル */
.page_container_single_content img,
.page_container_single_content p img {
  width: auto;
  height: unset !important;
  margin: 1em auto;
}

.page_container_single_content p,
.page_container_single_content dt,
.page_container_single_content dd {
  line-height: 1.5;
}

.page_container_single_content h1,
.page_container_single_content h2,
.page_container_single_content h3,
.page_container_single_content h4,
.page_container_single_content h5,
.page_container_single_content h6 {
  color: #23282d;
  margin-top: 3em;
  margin-bottom: 1.5em;
  line-height: 1.5;
}

.page_container_single_content h1 {
  font-size: 24px;
}

.page_container_single_content h2 {
  font-size: 22px;
}

.page_container_single_content h3 {
  font-size: 20px;
}

.page_container_single_content h4 {
  font-size: 18px;
}

.page_container_single_content h5 {
  font-size: 16px;
}

.page_container_single_content h6 {
  font-size: 14px;
}

.page_container_single_content strong,
.page_container_single_content b {
  font-weight: bold;
}

.page_container_single_content em,
.page_container_single_content i {
  font-style: italic;
}

.page_container_single_content u {
  text-decoration: underline;
}

.page_container_single_content s,
.page_container_single_content strike,
.page_container_single_content del {
  text-decoration: line-through;
}

.page_container_single_content sub {
  vertical-align: sub;
  font-size: smaller;
}

.page_container_single_content sup {
  vertical-align: super;
  font-size: smaller;
}

.page_container_single_content ul,
.page_container_single_content ol {
  list-style: inherit;
  padding-left: 30px;
  margin: 1em 0 1.5rem;
  line-height: 1.5rem;
}

.page_container_single_content ul {
  list-style: disc;
}

.page_container_single_content ol {
  list-style: decimal;
}

.page_container_single_content blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  border-left: 4px solid #7b644f;
  background-color: rgba(123, 100, 79, 0.1);
  font-style: italic;
}

.page_container_single_content code {
  background-color: rgba(123, 100, 79, 0.4);
  ;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  border: none !important;
}

.page_container_single_content pre {
  background-color: rgba(123, 100, 79, 0.1);
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
  white-space: pre-wrap;
  border: none;
}

.page_container_single_content pre code {
  background: none;
  padding: 0;
}

.page_container_single_content a {
  color: #0073aa;
  text-decoration: underline;
  line-height: 1.5;
}

.page_container_single_content a:hover {
  text-decoration: none;
}

/* :has() は通常CSSでも使えるが対応ブラウザ要確認 */
.page_container_single_content a:has(img) {
  display: block;
}

.page_container_single_content a:has(img.aligncenter),
.page_container_single_content p:has(img.aligncenter) {
  text-align: center;
}

.page_container_single_content a:has(img.alignleft),
.page_container_single_content p:has(img.alignleft) {
  text-align: left;
}

.page_container_single_content a:has(img.alignright),
.page_container_single_content p:has(img.alignright) {
  text-align: right;
}

.page_container_single_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.page_container_single_content table th,
.page_container_single_content table td {
  border: 1px solid #333333;
  padding: 12px;
  text-align: left;
  line-height: 1.5;
}

.page_container_single_content table th {
  background-color: rgba(123, 100, 79, 0.4);
  font-weight: bold;
}

.page_container_single_content table tr:nth-child(even) {
  background-color: rgba(123, 100, 79, 0.4);
}

.page_container_single_content img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
  margin-block: 0.5rem;
}

.page_container_single_content hr {
  border: none;
  border-top: 2px solid #7b644f;
  margin: 30px 0;
}

.page_container_single_content .nbsp-placeholder::before {
  content: '\00a0';
}

.page_container_single_content .wp-block-quote {
  border-left: 4px solid #7b644f;
  margin: 20px 0;
  padding-left: 20px;
  font-style: italic;
}

.page_container_single_content p+p {
  margin-top: 1em;
}