/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  box-sizing: border-box;
}

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

/**
 * 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; /* 4 */
  -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, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

/* 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).
 */
img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: top;
}

/**
 * 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;
}

/**
 * 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] {
  -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 {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 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; /* 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;
}

/**
 * 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;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

table {
  table-layout: fixed;
}

menu {
  padding: 0;
}

picture {
  display: block;
}

p {
  margin: 0;
  padding: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

/*--------------- form reset ------------*/
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  display: block;
  padding: 0;
  outline: none;
  margin: 0;
  border: none;
  background-color: transparent;
}
button:hover {
  opacity: 0.7;
  background-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
}

input[type=checkbox], input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type=checkbox] + span {
  position: relative;
  padding-left: 15px;
}
label input[type=radio] + span {
  position: relative;
  padding-left: 25px;
}
label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=checkbox] + span::before {
  border-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #fff;
}
label input[type=checkbox]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
label input[type=checkbox] + span::before, label input[type=checkbox] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label input[type=checkbox] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 0.1rem #313131 solid;
}
label input[type=checkbox] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=radio] + span::before {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #686868;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: transparent;
  width: 14px;
  height: 14px;
}
label input[type=radio]:checked + span::before {
  border-color: #007acc;
}
label input[type=radio]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #007acc;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  width: 8px;
  height: 8px;
}

/*-------- text email tel ---------*/
input[type=text], input[type=email], input[type=tel], input[type=search], input[type=date] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

input[type=button], input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

button[type=submit], input[type=reset], button[type=button] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

/*-------- select ------------*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

input[type=text], input[type=email], input[type=tel], input[type=date] {
  max-width: 100%;
}

textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
  overflow: auto;
}

input[type=button] {
  color: #fff;
  border-style: none;
}
input[type=submit] {
  color: #fff;
  border-style: none;
}
input[type=submit]:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder, ::placeholder {
  color: rgba(45, 44, 53, 0.5);
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  cursor: initial;
  line-height: 1.8;
  color: #333;
  font-size: 1.6rem;
  line-break: strict;
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body.is-fixed {
  width: 100%;
  position: fixed;
}

dl,
ul,
ol {
  margin: 0;
  padding: 0;
}

img {
  backface-visibility: hidden;
}

label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: inherit;
  /*&:hover,
  &:focus {
  	text-decoration: underline;
  }*/
}
a:link, a:active, a:visited {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}
[id] {
  scroll-margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  [id] {
    scroll-margin-top: 8rem;
  }
}

.l-header {
  z-index: 9999;
  width: 100%;
  height: 7.2rem;
  padding: 0 4rem;
  position: fixed;
  top: 0;
  left: 0;
  transition: height 0.3s, color 0.3s, background 0.3s;
  background-color: #f2eee8;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 7rem;
    padding: 0 2rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header.is-active {
    background-color: #334038;
  }
  .l-header.is-active::after {
    opacity: 0;
  }
  .l-header.is-active .l-header__logo a::before {
    background-color: #fffefa;
  }
  .l-header.is-active .l-header__parent .now {
    color: #fffefa;
  }
  .l-header.is-active .l-header__parent .now::after {
    background-color: #fffefa;
  }
  .l-header.is-active .l-header__parent .child .item + .item {
    border-color: #fffefa;
  }
  .l-header.is-active .l-header__parent .child .item a {
    color: #fffefa;
    background-color: #76857c;
  }
  .l-header.is-active .l-header__lang::before {
    background-color: #fffefa;
  }
  .l-header.is-active .l-header__lang .child a {
    color: #fffefa;
    background-color: #76857c;
  }
  .l-header.is-active .l-header__lang .child a + a, .l-header.is-active .l-header__lang .child .gtranslate_wrapper a {
    border-color: #fffefa;
  }
  .l-header.is-active .l-header__sns::before {
    background-color: #fffefa;
  }
  .l-header.is-active .l-header__sns .item a::before {
    background-color: #fffefa;
  }
  .l-header.is-active .l-header__reserve a {
    color: #334038;
    background-color: #f2eee8;
  }
}
.l-header.is-transparent {
  background-color: transparent;
  backdrop-filter: blur(1.3rem);
}
.l-header.is-transparent::after {
  background-color: #fffefa;
}
.l-header.is-transparent.is-active {
  background-color: #f2eee8;
}
@media screen and (max-width: 767px) {
  .l-header.is-transparent.is-active {
    background-color: #334038;
  }
}
.l-header.is-transparent.is-active::after {
  background-color: rgba(51, 51, 51, 0.3);
}
.l-header.is-transparent.is-active .l-header__logo a::before {
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .l-header.is-transparent.is-active .l-header__logo a::before {
    background-color: #fffefa;
  }
}
.l-header.is-transparent.is-active .l-header__parent .now {
  color: #333;
}
@media screen and (max-width: 767px) {
  .l-header.is-transparent.is-active .l-header__parent .now {
    color: #fffefa;
  }
}
.l-header.is-transparent.is-active .l-header__parent .now::after {
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .l-header.is-transparent.is-active .l-header__parent .now::after {
    background-color: #fffefa;
  }
}
.l-header.is-transparent.is-active .l-header__parent .child .item a {
  color: #333;
  background-color: #f2eee8;
}
@media screen and (max-width: 767px) {
  .l-header.is-transparent.is-active .l-header__parent .child .item a {
    color: #fffefa;
    background-color: #76857c;
  }
}
.l-header.is-transparent.is-active .l-header__lang::before {
  background-color: #333;
}
.l-header.is-transparent.is-active .l-header__lang .child a {
  color: #333;
  background-color: #f2eee8;
}
@media screen and (max-width: 767px) {
  .l-header.is-transparent.is-active .l-header__lang .child a {
    color: #fffefa;
    background-color: #76857c;
  }
}
.l-header.is-transparent.is-active .l-header__lang .child a + a, .l-header.is-transparent.is-active .l-header__lang .child .gtranslate_wrapper a {
  border-color: rgba(51, 51, 51, 0.3);
}
@media screen and (max-width: 767px) {
  .l-header.is-transparent.is-active .l-header__lang .child a + a, .l-header.is-transparent.is-active .l-header__lang .child .gtranslate_wrapper a {
    border-color: #fffefa;
  }
}
.l-header.is-transparent.is-active .l-header__sns::before {
  background-color: #333;
}
.l-header.is-transparent.is-active .l-header__sns .item a::before {
  background-color: #334038;
}
.l-header.is-transparent.is-active .l-header__reserve::before, .l-header.is-transparent.is-active .l-header__reserve::after {
  opacity: 0;
}
.l-header.is-transparent.is-active .l-header__reserve a {
  color: #f2eee8;
  background-color: #334038;
}
.l-header.is-transparent.is-active .l-header__hamb .line01,
.l-header.is-transparent.is-active .l-header__hamb .line02 {
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .l-header.is-transparent.is-active .l-header__hamb .line01,
  .l-header.is-transparent.is-active .l-header__hamb .line02 {
    background-color: #fffefa;
  }
}
.l-header.is-transparent .l-header__logo a::before {
  background-color: #fffefa;
}
.l-header.is-transparent .l-header__parent .now {
  color: #fffefa;
}
.l-header.is-transparent .l-header__parent .now::after {
  background-color: #fffefa;
}
.l-header.is-transparent .l-header__parent .child .item + .item {
  border-color: #fffefa;
}
.l-header.is-transparent .l-header__parent .child .item a {
  color: #fffefa;
  background-color: transparent;
}
.l-header.is-transparent .l-header__lang::before {
  background-color: #fffefa;
}
.l-header.is-transparent .l-header__lang .child a {
  color: #fffefa;
  background-color: transparent;
}
.l-header.is-transparent .l-header__lang .child a + a, .l-header.is-transparent .l-header__lang .child .gtranslate_wrapper a {
  border-color: #fffefa;
}
.l-header.is-transparent .l-header__sns::before {
  background-color: #fffefa;
}
.l-header.is-transparent .l-header__sns .item a::before {
  background-color: #fffefa;
}
.l-header.is-transparent .l-header__reserve::before, .l-header.is-transparent .l-header__reserve::after {
  opacity: 1;
}
.l-header.is-transparent .l-header__reserve a {
  color: #fffefa;
  background-color: transparent;
}
.l-header.is-transparent .l-header__hamb .line01,
.l-header.is-transparent .l-header__hamb .line02 {
  background-color: #fffefa;
}
.l-header::after {
  z-index: 1;
  pointer-events: none;
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: opacity 0.3s;
  background-color: rgba(51, 51, 51, 0.3);
}
.l-header__wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.l-header__logo {
  width: 23.3rem;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 14rem;
    margin-left: auto;
    order: 2;
  }
}
.l-header__logo a {
  display: block;
  position: relative;
}
.l-header__logo a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: background 0.3s;
  background: #333;
  mask: var(--src) no-repeat center/contain;
}
.l-header__logo a img {
  display: block;
  opacity: 0.01;
}
.l-header__parent {
  z-index: 2;
  height: 100%;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header__parent {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
.l-header__parent .now {
  height: 100%;
  padding: 0 5.2rem 0 2.4rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__parent .now {
    padding: 0 4.2rem 0 2rem;
  }
}
.l-header__parent .now:hover {
  opacity: 1;
}
.l-header__parent .now::after {
  content: "";
  width: 0.7rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  transform: translateY(-50%) rotate(90deg);
  transition: background 0.3s;
  background-color: #333;
  mask: url(../img/common/arrow_b.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .l-header__parent .now::after {
    width: 0.6rem;
    height: 0.9rem;
    right: 2rem;
  }
}
.l-header__parent .child {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
}
.l-header__parent .child .item + .item {
  border-top: 0.5px solid rgba(51, 51, 51, 0.3);
  transition: border 0.3s;
}
.l-header__parent .child .item a {
  height: 7.2rem;
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  transition: opacity 0.3s, color 0.3s, background 0.3s;
  background-color: #f2eee8;
}
@media screen and (max-width: 767px) {
  .l-header__parent .child .item a {
    height: 7rem;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__lang {
    order: 1;
  }
}
.l-header__lang::before {
  content: "";
  width: 0.5px;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: background 0.3s;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .l-header__lang::before {
    content: none;
  }
}
.l-header__lang .child a {
  height: 7.2rem;
  padding: 0 1rem 0 2.4rem;
  display: flex;
  align-items: center;
  transition: opacity 0.3s, color 0.3s, background 0.3s;
  background-color: #f2eee8;
}
@media screen and (max-width: 767px) {
  .l-header__lang .child a {
    height: 7rem;
    padding: 0 1rem 0 2rem;
  }
}
.l-header__lang .child a[data-gt-lang=ja] {
  display: none;
}
.l-header__lang .child a + a, .l-header__lang .child .gtranslate_wrapper a {
  border-top: 0.5px solid rgba(51, 51, 51, 0.3);
  transition: border 0.3s, opacity 0.3s, color 0.3s, background 0.3s;
}
.l-header__lang .child .gtranslate_wrapper {
  display: flex;
  flex-direction: column;
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=en] {
  order: 1;
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=zh-CN] {
  order: 2;
  font-size: 0;
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=zh-CN]::after {
  content: "SC";
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__lang .child .gtranslate_wrapper a[data-gt-lang=zh-CN]::after {
    font-size: 1.2rem;
  }
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=zh-TW] {
  order: 3;
  font-size: 0;
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=zh-TW]::after {
  content: "TC";
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__lang .child .gtranslate_wrapper a[data-gt-lang=zh-TW]::after {
    font-size: 1.2rem;
  }
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=ko] {
  order: 4;
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=th] {
  order: 5;
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=ms] {
  order: 6;
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=id] {
  order: 7;
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=fr] {
  order: 8;
}
.l-header__lang .child .gtranslate_wrapper a[data-gt-lang=de] {
  order: 9;
}
.l-header__sns {
  padding: 0 2.4rem;
  display: flex;
  gap: 1.6rem;
  position: relative;
}
.l-header__sns::before {
  content: "";
  width: 0.5px;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: background 0.3s;
  background-color: #333;
}
.l-header__sns .item a {
  display: block;
  position: relative;
}
.l-header__sns .item a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: background 0.3s;
  background: #334038;
  mask: var(--src) no-repeat center/contain;
}
.l-header__sns .item a img {
  display: block;
  opacity: 0.01;
}
.l-header__reserve {
  height: 100%;
  margin-right: 3.2rem;
  position: relative;
}
.l-header__reserve::before, .l-header__reserve::after {
  content: "";
  width: 0.5px;
  height: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  background-color: #fffefa;
}
.l-header__reserve::before {
  left: 0;
}
.l-header__reserve::after {
  right: 0;
}
.l-header__reserve a {
  height: 100%;
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  transition: opacity 0.3s, color 0.3s, background 0.3s;
  color: #f2eee8;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
  background-color: #334038;
}
.l-header .l-header__hamb {
  width: 3.4rem;
  height: 3.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header .l-header__hamb {
    width: 3.7rem;
    margin-left: 2rem;
    order: 3;
  }
}
.l-header .l-header__hamb.is-active .line01,
.l-header .l-header__hamb.is-active .line02 {
  top: 50%;
}
@media screen and (max-width: 767px) {
  .l-header .l-header__hamb.is-active .line01,
  .l-header .l-header__hamb.is-active .line02 {
    background-color: #f2eee8;
  }
}
.l-header .l-header__hamb.is-active .line01 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header .l-header__hamb.is-active .line02 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header .l-header__hamb .line01,
.l-header .l-header__hamb .line02 {
  width: 100%;
  height: 0.1rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: top 0.3s, transform 0.3s, background 0.3s;
  background-color: #333;
}
.l-header .l-header__hamb .line01 {
  top: 38%;
}
.l-header .l-header__hamb .line02 {
  top: 62%;
}

.l-menu {
  display: none;
  z-index: 1;
  overflow-y: auto;
  max-width: 48rem;
  width: 100%;
  height: calc(100dvh - 7.2rem);
  position: absolute;
  top: 100%;
  right: 0;
  color: #fffefa;
  background-color: #334038;
}
@media screen and (max-width: 767px) {
  .l-menu {
    height: calc(100dvh - 7rem);
  }
}
.l-menu__wrap {
  max-width: 128rem;
  margin: 0 auto;
  padding: 4rem 4.8rem;
  background: #334038 url(../img/common/bg_header.svg) no-repeat right 4.8rem bottom 20.7rem/15.1rem auto;
}
@media screen and (max-width: 767px) {
  .l-menu__wrap {
    padding: 7.2rem 1.6rem;
    background-position: right 1.6rem bottom 27.4rem;
    background-size: 12.9rem auto;
  }
}
.l-menu__main .item {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .l-menu__main .item {
    font-size: 2.4rem;
    letter-spacing: -0.04em;
  }
}
.l-menu__main .item + .item {
  margin-top: 3.2rem;
}
.l-menu__sns {
  margin-top: 8rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-menu__sns {
    margin-top: 7.2rem;
  }
}
.l-menu__sns .txt {
  font-size: 1rem;
  line-height: 1.4;
}
.l-menu__sns .list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  line-height: 1;
}
.l-menu__sns .list .item img {
  width: 2rem;
}
.l-menu__box {
  margin-top: 7.2rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-menu__box {
    margin-top: 1.4rem;
    display: block;
  }
}
.l-menu__sub {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3.2rem;
}
.l-menu__copy {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-menu__copy {
    margin-top: 2.6rem;
  }
}
.l-menu__copy small {
  font-size: inherit;
}

.l-footer__content {
  padding: 25.5rem 0 12rem;
  color: #fffefa;
  background: url(../img/common/bg_footer_pc.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    padding: 9.6rem 0;
    background-image: url(../img/common/bg_footer_sp.jpg);
  }
}
.l-footer__wrap {
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    padding: 0 1.6rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-footer__left {
  margin-top: 1.8rem;
  flex: 1;
  display: flex;
  gap: 3rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-footer__left {
    margin-top: 0;
    flex-direction: column;
    gap: 3.2rem;
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
}
.l-footer__logo {
  width: 15.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 12rem;
  }
}
.l-footer__txt {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__txt {
    margin-top: 0;
  }
}
.l-footer__address {
  margin-top: 3rem;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    margin-top: 2.4rem;
  }
}
.l-footer__tel {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__tel {
    margin-top: 1.4rem;
  }
}
.l-footer__right {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .l-footer__right {
    width: 100%;
  }
}
.l-footer__btn {
  display: flex;
  justify-content: flex-end;
}
.l-footer__btn a {
  max-width: 35rem;
  width: 100%;
  padding: 2.4rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: #76857c;
}
@media screen and (max-width: 767px) {
  .l-footer__btn a {
    padding: 2.3rem 1.6rem;
  }
}
.l-footer__btn a .icon {
  width: 2.6rem;
}
.l-footer__btn a .txt {
  flex: 1;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-footer__btn a .txt {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.l-footer__btn a .arrow {
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid #fffefa;
  border-radius: 50%;
  background: url(../img/common/arrow_w.svg) no-repeat center/0.6rem auto;
}
.l-footer__sns {
  margin-top: 6.7rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    margin-top: 4rem;
    justify-content: flex-start;
    align-items: center;
  }
}
.l-footer__sns .txt {
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
  .l-footer__sns .txt {
    font-size: 1rem;
  }
}
.l-footer__sns .list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  line-height: 1;
}
.l-footer__sns .list .item img {
  width: 2rem;
}
.l-footer__list {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    margin-top: 1.6rem;
    gap: 1.6rem 2rem;
  }
}
.l-footer__item {
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
  .l-footer__item {
    font-size: 1rem;
  }
}
.l-footer__copy {
  padding: 2.6rem 1rem;
  text-align: center;
  background-color: #f2eee8;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    padding: 1.8rem 1rem;
  }
}
.l-footer__copy small {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copy small {
    font-size: 1.1rem;
  }
}

.l-fixed {
  z-index: 999;
  width: 100%;
  padding: 1.5rem 1.6rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #334038;
}
.l-fixed a {
  padding: 0.8rem;
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
}

.l-content__inner {
  max-width: 102.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-content__inner {
    padding-inline: 1.6rem;
  }
}

.l-breadcrumb {
  max-width: 102.4rem;
  margin-inline: auto;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.000072em;
  font-weight: 500;
  margin-block: 14rem 4rem;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    margin-block: 12rem 3.2rem;
    padding-inline: 1.6rem;
  }
}

.l-breadcrumb__list {
  display: flex;
  border-top: 1px solid rgba(118, 133, 124, 0.5);
  border-bottom: 1px solid rgba(118, 133, 124, 0.5);
  padding: 2rem 1rem;
}

.l-breadcrumb__list a {
  position: relative;
  padding-right: 2.5rem;
  margin-right: 1.5rem;
}
.l-breadcrumb__list a::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 1rem;
  background: url(../img/common/arrow_b.svg) no-repeat center/contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.l-breadcrumb__item {
  flex-shrink: 0;
}

.l-breadcrumb__item:last-child {
  overflow: hidden;
  flex-shrink: 1;
}

.l-breadcrumb__item:last-child span {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.l-pager {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 9.6rem;
}
.l-pager.-column--3 {
  margin-top: 7.2rem;
  padding-top: 4.8rem;
  border-top: 1px solid rgba(118, 133, 124, 0.5);
}
@media screen and (max-width: 767px) {
  .l-pager.-column--3 {
    padding-top: 2.8rem;
  }
}
.l-pager.-column--3 .l-pager__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.l-pager.-column--3 .l-pager__list .l-pager__item {
  text-align: center;
}
.l-pager.-column--3 .l-pager__list .l-pager__link {
  width: auto;
  height: auto;
  display: block;
}
.l-pager.-column--3 .l-pager__list .l-prev {
  text-align: left;
}
.l-pager.-column--3 .l-pager__list .l-next {
  margin-left: auto;
}

.l-pager__list {
  display: flex;
  justify-content: center;
  column-gap: 0.8rem;
}

.l-pager__item.l-hide {
  visibility: hidden;
  pointer-events: none;
}
.l-pager__item.l-current .l-pager__link {
  border-bottom: 1px solid #333;
}
.l-pager__item.l-prev .l-pager__link, .l-pager__item.l-next .l-pager__link {
  width: auto;
  position: relative;
}
.l-pager__item.l-prev .l-pager__link::before, .l-pager__item.l-next .l-pager__link::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.6rem;
  height: 0.9rem;
  background: url(../img/common/arrow_b.svg) no-repeat center/contain;
  transform: translateY(-40%);
}
.l-pager__item.l-prev .l-pager__link {
  padding-left: 1.5rem;
}
.l-pager__item.l-prev .l-pager__link::before {
  left: 0;
  transform: translateY(-40%) rotate(180deg);
}
.l-pager__item.l-next .l-pager__link {
  padding-right: 1.5rem;
}
.l-pager__item.l-next .l-pager__link::before {
  right: 0;
}

.l-pager__link {
  height: 5.2rem;
  width: 2.4rem;
  display: grid;
  place-content: center;
}

.l-content__heading {
  padding-top: 16.8rem;
}

.l-content__ttl {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-content__ttl {
    display: flex;
    align-items: flex-start;
    column-gap: 2.2rem;
  }
}
.l-content__ttl .u-en {
  font-size: 1.5rem;
  line-height: 1.1333333333;
  font-weight: 400;
  display: inline-block;
  writing-mode: vertical-rl;
  font-weight: 400;
  letter-spacing: 0.1em;
  position: absolute;
  padding-bottom: 2.2rem;
  left: -7rem;
  top: 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-content__ttl .u-en {
    padding-bottom: 2.5rem;
    font-size: 1.2rem;
    position: relative;
    left: 0;
    top: 0;
  }
}
.l-content__ttl .u-en::after {
  position: absolute;
  content: "";
  height: 1.4rem;
  width: 1px;
  background-color: rgb(51, 51, 51);
  left: calc(50% - 1px);
  bottom: 0;
}
.l-content__ttl .u-jp {
  font-size: 5.6rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 5.6rem;
}
@media screen and (max-width: 767px) {
  .l-content__ttl .u-jp {
    font-size: 3.6rem;
    line-height: 1.2;
    margin-top: -1rem;
  }
}
.l-content__ttl .u-jp.u-txtsize--small {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .l-content__ttl .u-jp.u-txtsize--small {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-top: -0.8rem;
  }
}

.l-format:has(.l-kv) .l-content__heading {
  padding-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .l-format:has(.l-kv) .l-content__heading {
    padding-top: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .l-format:has(.l-kv) .l-content__body {
    padding-top: 12rem;
  }
}
.l-format:has(.l-kv) .l-content__body::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 43.1rem;
  height: 46.8rem;
  background: url(../img/common/bg_tree.png) no-repeat top right/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-format:has(.l-kv) .l-content__body::after {
    width: 11.5rem;
    height: 20.7rem;
    background-image: url(../img/common/bg_tree_sp.png);
  }
}
.l-format:not(:has(.l-sidebar)) .l-main-content {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-format:not(:has(.l-sidebar)) .l-main-content {
    margin-inline: 0;
  }
}

.l-content__body {
  overflow-x: clip;
  width: 100%;
  position: relative;
  padding-top: 14rem;
}
@media screen and (max-width: 767px) {
  .l-content__body {
    padding-top: 10rem;
  }
}
.l-content__body.l-pt-narrow {
  padding-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .l-content__body.l-pt-narrow {
    padding-top: 10rem;
  }
}

.l-kv {
  display: grid;
}

.l-kv__ttl-wrapper {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 2;
  max-width: 104rem;
  display: grid;
  place-content: center;
  margin-inline: auto;
  color: #fff;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .l-kv__ttl-wrapper {
    padding-inline: 1.6rem;
  }
}

.l-kv__ttl .u-en,
.l-kv__ttl .u-jp {
  display: block;
  text-align: center;
}
.l-kv__ttl .u-en {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .l-kv__ttl .u-en {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}
.l-kv__ttl .u-jp {
  font-size: 5.6rem;
  line-height: 1.1964285714;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 767px) {
  .l-kv__ttl .u-jp {
    font-size: 3.6rem;
    line-height: 1.2;
  }
}

.l-kv__img-wrapper {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
}
.l-kv__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-content__wrapper {
  display: flex;
  max-width: 122.4rem;
  margin-inline: auto;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-content__wrapper {
    display: block;
  }
}

.l-sidebar {
  top: 10rem;
  left: 0;
  width: 17.2rem;
  position: sticky;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .l-sidebar {
    display: none;
  }
}

.l-sidebar__block dt {
  font-size: 1.1rem;
  line-height: 1.6363636364;
  letter-spacing: 0.1em;
  color: #76857c;
}
.l-sidebar__block dd {
  font-size: 1.1rem;
  line-height: 1.6363636364;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}
.l-sidebar__block dd a {
  position: relative;
  padding-block: 0.6rem;
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
.l-sidebar__block dd a.current {
  font-weight: bold;
}
.l-sidebar__block dd a::before {
  content: "";
  width: 0.2em;
  height: 0.2em;
  background-color: #333;
  border-radius: 100px;
  position: absolute;
  left: 0.2em;
  top: 1.4em;
}

.l-main-content {
  flex-grow: 1;
  max-width: 102.4rem;
}
@media screen and (max-width: 767px) {
  .l-main-content {
    padding-inline: 1.6rem;
  }
}

.l-section__ttl {
  font-size: 3.6rem;
  line-height: 1.8166666667;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-section__ttl {
    font-size: 2rem;
    line-height: 2;
  }
}
.l-section__ttl + .l-catch {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-section__ttl + .l-catch {
    margin-top: 2.4rem;
  }
}

.l-catch {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.01em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-catch {
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0.08em;
  }
}

.l-heading__txt {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.012em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-heading__txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}

.l-section__ttl + .l-heading__txt {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-section__ttl + .l-heading__txt {
    margin-top: 2.4rem;
  }
}

.c-arrow-link {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-arrow-link {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.c-arrow-link::after {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/common/icn_link.svg) no-repeat center/contain;
  left: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
}

.l-anchor {
  border-top: 1px solid rgba(118, 133, 124, 0.5);
  border-bottom: 1px solid rgba(118, 133, 124, 0.5);
  padding: 2.4rem 1rem;
}
@media screen and (max-width: 767px) {
  .l-anchor {
    border: none;
    padding: 0;
  }
}

.l-anchor__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  gap: 2rem 6rem;
}

@media screen and (max-width: 767px) {
  .l-pc-anchor {
    display: none;
  }
}

.l-anchor__link {
  display: inline-block;
  padding-right: 3rem;
  position: relative;
}
.l-anchor__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/common/icn_link_down.svg) no-repeat center/contain;
}

.l-sp-anchor {
  font-size: 1.1rem;
  color: #76857c;
  border: 1px solid rgba(118, 133, 124, 0.5);
  position: relative;
  display: none;
}
@media screen and (max-width: 767px) {
  .l-sp-anchor {
    display: block;
  }
}
.l-sp-anchor::after {
  content: "";
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/common/icn_link_down.svg) no-repeat center/contain;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
}
.l-sp-anchor select {
  padding: 1.4rem 2rem 1.4rem 1.2rem;
  width: 100%;
}

.u-forum {
  font-family: "Forum", serif;
}

@media screen and (max-width: 767px) {
  .l-general {
    padding-inline: 1.6rem;
  }
}

.l-post__body > *:first-child {
  margin-top: 0 !important;
}
.l-post__body h2 {
  margin-top: 8rem;
  font-size: 3.6rem;
  line-height: 1.8166666667;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-post__body h2 {
    font-size: 2rem;
    line-height: 2;
  }
}
.l-post__body h2 + * {
  margin-top: 5.6rem !important;
}
@media screen and (max-width: 767px) {
  .l-post__body h2 + * {
    margin-top: 3.2rem !important;
  }
}
.l-post__body h3 {
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.01em;
  font-weight: 700;
  position: relative;
  margin-top: 4rem;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .l-post__body h3 {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.l-post__body h3 + * {
  margin-top: 3.2rem !important;
}
@media screen and (max-width: 767px) {
  .l-post__body h3 + * {
    margin-top: 1.6rem !important;
  }
}
.l-post__body h3::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1.9rem;
  height: 3.8rem;
  top: 0.5rem;
  background: url(../img/common/icn_tree.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .l-post__body h3::before {
    top: 0;
  }
}
.l-post__body h4 {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 700;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .l-post__body h4 {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.l-post__body h4 + * {
  margin-top: 1.6rem !important;
}
.l-post__body img {
  display: block;
}
.l-post__body blockquote {
  font-style: italic;
  background-color: #ebf1ea;
  margin-inline: 0;
  padding: 2rem;
}
.l-post__body blockquote p {
  margin-top: 0;
}
.l-post__body p {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 400;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .l-post__body p {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.l-post__body p + p {
  margin-top: 2em;
}
.l-post__body p a {
  text-decoration: underline;
}
.l-post__body .blank {
  display: block;
  height: 7.2rem;
  margin: 0 !important;
}
.l-post__body .btn a {
  background-color: #334038;
  color: #fff;
  display: grid;
  align-items: center;
  min-height: 5.6rem;
  padding: 1rem 8.6rem 1rem 2.4rem;
  width: fit-content;
  position: relative;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-post__body .btn a {
    font-size: 1.5rem;
    width: auto;
  }
}
.l-post__body .btn a::after {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/common/icn_link_w.svg) no-repeat center/contain;
}
.l-post__body ul,
.l-post__body ol {
  margin-block: 6rem;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 400;
  padding-left: 1em;
}
.l-post__body ul li {
  list-style: disc;
}
.l-post__body ol li {
  list-style: decimal;
}
.l-post__body figure {
  margin-top: 1.6rem;
}
.l-post__body figcaption,
.l-post__body [id*=caption] {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.001em;
  font-weight: 400;
  margin-top: 1.6rem;
}
.l-post__body [class*=wp-image] {
  margin-top: 1.6rem;
}
.l-post__body .youtube {
  margin-block: 4rem;
}
.l-post__body .youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.l-post__body .scroll {
  margin: 4rem 0;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .l-post__body .scroll {
    padding-bottom: 1rem;
  }
}
.l-post__body table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .l-post__body table {
    width: 102.4rem !important;
  }
}
.l-post__body table th,
.l-post__body table td {
  border: 1px solid rgb(51, 64, 56);
  padding: 2rem 2.4rem;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.012em;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-post__body table th,
  .l-post__body table td {
    padding: 1.2rem 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .l-post__body table th,
  .l-post__body table td {
    font-size: 1.3rem;
    line-height: 1.5384615385;
  }
}
.l-post__body dl {
  margin-block: 4rem 0;
}
.l-post__body dl > div {
  border-bottom: 1px solid rgba(118, 133, 124, 0.5);
  padding-block: 2rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-post__body dl > div {
    padding-block: 1.6rem;
    display: block;
  }
}
.l-post__body dl dt {
  width: 17.2rem;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.015em;
  font-weight: 600;
  flex-shrink: 0;
  padding-right: 2em;
}
@media screen and (max-width: 767px) {
  .l-post__body dl dt {
    width: auto;
    padding-bottom: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.7857142857;
    padding-right: 0;
  }
}
.l-post__body dl dd {
  flex-grow: 1;
}
.l-post__body dl dd ul {
  margin: 0;
}
.l-post__body dl dd ul + * {
  margin-top: 2em;
}
.l-post__body dl dd p {
  margin-top: 0;
}
.l-post__body dl dd p + * {
  margin-top: 2em;
}

.cards {
  list-style: none !important;
  margin-block: 7.2rem !important;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0 !important;
}
@media screen and (max-width: 767px) {
  .cards {
    display: block;
    margin-block: 7.4rem !important;
  }
}
.cards .card {
  list-style: none !important;
}
@media screen and (max-width: 767px) {
  .cards .card + .card {
    margin-top: 4.8rem;
  }
}
.cards.column-2 {
  gap: 7.2rem 4.8rem;
}
.cards.column-2 .card {
  width: calc((100% - 4.8rem) / 2);
}
@media screen and (max-width: 767px) {
  .cards.column-2 .card {
    width: auto;
  }
}
.cards.column-3 {
  gap: 8rem 3.2rem;
}
.cards.column-3 .card {
  width: calc((100% - 6.4rem) / 3);
}
@media screen and (max-width: 767px) {
  .cards.column-3 .card {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .cards h4 {
    font-size: 1.8rem;
  }
}
.cards p {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.012em;
  font-weight: 400;
}
.cards figure {
  display: block;
}
.cards figure + * {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cards figure + * {
    margin-top: 2.4rem;
  }
}
.cards img {
  width: 100%;
  aspect-ratio: 320/213;
  object-fit: cover;
}
.cards a {
  display: block;
  width: fit-content;
  position: relative;
  padding-right: 3rem;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 3rem;
}
.cards a::after {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/common/icn_link.svg) no-repeat center/contain;
}

.medias {
  list-style: none !important;
  padding-left: 0 !important;
  margin-block: 7.2rem !important;
}
@media screen and (max-width: 767px) {
  .medias {
    margin-block: 6rem !important;
  }
}

.media {
  list-style: none !important;
  display: flex;
  align-items: center;
  column-gap: 7.4rem;
}
@media screen and (max-width: 767px) {
  .media {
    display: block;
  }
}
.media + .media {
  margin-top: 8rem;
}
.media > div > *:first-child {
  margin-top: 0;
}
.media:nth-of-type(even) {
  flex-direction: row-reverse;
}
.media figure {
  display: block;
  flex-shrink: 0;
  width: 61.8rem;
}
@media screen and (max-width: 767px) {
  .media figure {
    width: 100%;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .media figure + * {
    margin-top: 2.4rem;
  }
}
.media img {
  aspect-ratio: 618/327;
  object-fit: cover;
  width: 100%;
}
.media p {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.012em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .media p {
    font-size: 1.3rem;
    line-height: 2.0769230769;
  }
}
.media a {
  display: block;
  width: fit-content;
  position: relative;
  padding-right: 3rem;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 3rem;
}
.media a + a {
  margin-top: 2.3rem;
}
.media a::after {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/common/icn_link.svg) no-repeat center/contain;
}

.p-404__container {
  max-height: calc(100vh - 7.2rem);
  min-height: 82.8rem;
  display: grid;
  place-content: center;
  margin-top: 7.2rem;
  background-image: url(../img/common/bg_tree.png), url(../img/common/bg_tree_l.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top right, bottom left;
  background-size: 46rem 49rem, 52rem 43rem;
}
@media screen and (max-width: 767px) {
  .p-404__container {
    margin-top: 7rem;
    max-height: calc(100vh - 7rem);
    min-height: 59.7rem;
    background-image: url(../img/common/bg_tree_sp.png), url(../img/common/bg_tree_l_sp.png);
    background-size: 10rem 18rem, 16rem 17rem;
  }
}
.p-404__container h1 {
  width: 22.8rem;
  margin-inline: auto;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-404__container h1 {
    width: 17.1rem;
  }
}
.p-404__container h1 img {
  width: 100%;
}
.p-404__container p {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 2.4rem;
  line-height: 2;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-404__container p {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.p-404__container a {
  margin: 4.8rem auto 0;
  display: grid;
  place-content: center;
  width: 30rem;
  color: #fff;
  min-height: 5.6rem;
  position: relative;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  background-color: rgb(118, 133, 124);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-404__container a {
    font-size: 1.5rem;
    width: 100%;
  }
}
.p-404__container a::after {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/common/icn_link_w.svg) no-repeat center/contain;
}

.control-wrapper {
  display: flex;
  align-items: center;
  column-gap: 2.4rem;
}
.control-wrapper .dots {
  flex-grow: 1;
}
.control-wrapper .slick-dots {
  position: relative;
  margin: 0;
  bottom: 0;
  width: 100%;
  padding: 0;
  line-height: 1;
  font-size: 0;
}
.control-wrapper .slick-dots::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  background-color: rgba(118, 133, 124, 0.5);
  top: 50%;
  transform: translateY(-0.5px);
}
.control-wrapper .slick-dots li {
  width: calc(100% / var(--slide-count));
  margin: 0;
  height: 3px;
  background-color: gray;
  opacity: 0;
}
.control-wrapper .slick-dots li.slick-active {
  opacity: 1;
}
.control-wrapper .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.control-wrapper .slick-dots li button::before {
  width: 100%;
  height: 100%;
  font-size: 0;
}
.control-wrapper .arrow_box {
  display: flex;
}
.control-wrapper .slick-disabled {
  opacity: 0.4;
}
.control-wrapper .slide-arrow {
  cursor: pointer;
}
.control-wrapper .prev-arrow {
  width: 4rem;
  height: 4rem;
  background: url(../img/common/arrow_b.svg) no-repeat center/1.5rem 1.5rem;
  transform: rotate(180deg);
}
.control-wrapper .next-arrow {
  width: 4rem;
  height: 4rem;
  background: url(../img/common/arrow_b.svg) no-repeat center/1.5rem 1.5rem;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

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

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

/* --------------------------------------------------
  preload
-------------------------------------------------- */
.u-preload * {
  -webkit-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

/* --------------------------------------------------
  font,text
-------------------------------------------------- */
.u-underline {
  text-decoration: underline !important;
}

.u-bold {
  font-weight: bold;
}

.u-en {
  font-family: "Forum", "Zen Old Mincho", serif;
}

/*----------- shadow ------------*/
.u-boxshadow {
  box-shadow: 0 0 10px rgba(24, 99, 175, 0.25);
}

.c-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.c-btn.-right {
  margin-left: auto;
}
.c-btn__txt {
  font-size: 1.6rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .c-btn__txt {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.c-btn__arrow {
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid #333;
  border-radius: 50%;
  background: url(../img/common/arrow_b.svg) no-repeat center/0.6rem auto;
}
