/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

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

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

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

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

:root {
  --vw: 1vw;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  font-family: "scotch-deck", "shippori-mincho", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000;
  line-break: strict;
  min-width: 126rem;
  isolation: isolate;
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    font-size: 1.4rem;
  }
}

.js-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-orientation: none;
  width: 100%;
  height: auto;
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 1300.1px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* main
--------------------------------------------------*/
.f-wrap {
  max-width: 110rem;
  margin: 0 auto;
  /*
  @include deviceTABmin{
  	padding: 0 2rem;
  }
  */
}
@media screen and (max-width: 767px) {
  .f-wrap {
    width: auto;
    padding: 0 4rem;
  }
}

.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}

/* link
--------------------------------------------------*/
a {
  color: #000;
  transition: 0.5s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
    opacity: 0.5;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #000;
  transition: 0.5s;
  will-change: transform;
}
button:focus {
  text-decoration: none;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.l-header__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 4rem 15rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    padding: 2.1rem 2rem 0;
  }
}
.l-header__logo {
  width: 21rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 10.5rem;
  }
  .l-header__logo img {
    vertical-align: top;
  }
}
.l-header-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 4rem;
  margin: 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-header-list {
    display: none;
  }
}
.l-header-list__item {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.l-header-list__item.is-current a::after {
  width: calc(100% - 0.14rem);
}
.l-header-list__item a {
  position: relative;
  color: #000;
}
.l-header-list__item a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.5s;
}
@media (any-hover: hover) {
  .l-header-list__item a:hover {
    opacity: 1;
  }
  .l-header-list__item a:hover::after {
    width: calc(100% - 0.14rem);
  }
}
.l-header__toggle {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 4.8rem;
  right: 5rem;
  width: 5.5rem;
  height: 4.6rem;
  cursor: pointer;
  background: url(../img/common/icn_toggle.svg) 0 0/100% 100% no-repeat;
  padding: 0 0 1rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-header__toggle {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    top: 2.5rem;
    right: 2rem;
    width: 4.5rem;
  }
}
.l-header__toggle div {
  position: relative;
  width: 2.9rem;
  height: 1rem;
}
.l-header__toggle div span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: 0.5s;
}
.is-open .l-header__toggle div span {
  top: 0.5rem;
  transform: rotate(-30deg);
}
.l-header__toggle div span:last-child {
  top: auto;
  bottom: 0;
}
.is-open .l-header__toggle div span:last-child {
  bottom: 0.4rem;
  transform: rotate(30deg);
}
.l-header-menu {
  position: absolute;
  top: 0;
  right: 3rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 58.7rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu {
    position: relative;
    top: auto;
    right: auto;
    width: 20rem;
  }
}
.l-header-menu__tel {
  width: 29.4rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu__tel {
    width: 4rem;
    margin-right: 1rem;
  }
}
.l-header-menu__btn {
  width: 18.5rem;
  height: 8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-header-menu__btn {
    width: 10rem;
    height: 5rem;
    font-size: 1.2rem;
  }
}
.l-header-menu__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #ff4e00;
  color: #fff;
}
.l-header-nav {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.5s;
  will-change: opacity;
  overflow-y: scroll;
  padding: 0 0 10rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    padding: 0 0 6rem;
  }
}
.is-open .l-header-nav {
  pointer-events: all;
  opacity: 1;
}
.l-header-nav__copy {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: 400;
  width: 110rem;
  text-align: right;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-nav__copy {
    width: 100%;
    bottom: 3rem;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .l-header-nav__copy {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: right;
    margin: 2rem 0 0;
    padding: 0 4rem;
  }
}
.l-header-nav__menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 110rem;
  margin: 17rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-header-nav__menu {
    width: auto;
    padding: 0 4rem;
    margin: 10rem 0 0;
  }
}
.l-header-nav__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 4rem 15rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav__wrap {
    padding: 2.1rem 2rem 0;
  }
}
.l-header-nav-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-header-nav-list {
    display: block;
  }
}
.l-header-nav-list.is-before {
  width: 29rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav-list.is-before {
    width: 50%;
    padding-right: 1.5rem;
  }
}
.l-header-nav-list.is-after {
  width: 71.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav-list.is-after {
    width: calc(50% + 2rem);
    margin-right: -2rem;
  }
}
.l-header-nav-list__item {
  font-size: 2rem;
  line-height: 1;
}
.is-before .l-header-nav-list__item {
  width: 13.5rem;
}
@media screen and (max-width: 767px) {
  .is-before .l-header-nav-list__item {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav-list__item {
    font-size: 1.6rem;
    margin-top: 6rem;
  }
  .l-header-nav-list__item:first-child {
    margin-top: 0;
  }
}
.l-header-nav-list__item a {
  display: inline-block;
  position: relative;
  color: .l-header-nav-list__item a font_base;
  border: 1px solid #c6aa50;
  padding: 0.5rem;
  /*
  &::before {
  	content: '';
  	position: absolute;
  	bottom: -2px;
  	left: 0;
  	width: 0;
  	height: 1px;
  	background: $beige;
  	transition: $duration;
  }
  	*/
}
@media (any-hover: hover) {
  .l-header-nav-list__item a:hover {
    opacity: 1;
    color: #fff;
    background: #c6aa50;
    /*
    &::before {
    	width: 100%;
    }
    	*/
  }
}
.l-header-nav-child {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav-child {
    margin-top: 2.4rem;
  }
}
.l-header-nav-child__item {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav-child__item {
    font-size: 1.2rem;
    margin-top: 2.7rem;
  }
}
.l-header-nav-child__item a {
  display: inline-block;
  color: #000;
  border: 0;
  padding: 0;
}
.l-header-nav-child__item a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .l-header-nav-child__item a:hover {
    background: none;
    color: #000;
  }
  .l-header-nav-child__item a:hover::before {
    width: 100%;
  }
}
.l-header-nav__logo {
  width: 21rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav__logo {
    width: 10.5rem;
  }
  .l-header-nav__logo img {
    vertical-align: top;
  }
}
.l-header-nav-sns {
  position: absolute;
  bottom: 22.5rem;
  left: 50%;
  width: 110rem;
  transform: translateX(-50%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav-sns {
    width: 100%;
    bottom: 10rem;
    gap: 0 1rem;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .l-header-nav-sns {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: right;
    margin: 2rem 0 0;
    padding: 0 4rem;
  }
}
.l-header-nav-sns__item {
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav-sns__item {
    width: 2.1rem;
  }
}

.is-fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.l-footer {
  overflow: hidden;
  padding: 0 0 8rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 0 0 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__img img {
    width: 150%;
    margin: 0 -25%;
  }
}
.l-footer__wrap {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 130rem;
  padding: 0 2rem;
  margin: 5.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    padding: 0 4rem;
  }
}
.l-footer__logo {
  width: 21rem;
  padding: 1.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 16.8rem;
    padding: 0;
    margin: 0 0 6.8rem;
  }
}
.l-footer-sns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 1.5rem;
  margin: 15rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer-sns {
    gap: 0 1rem;
    margin: 6rem 0 0;
  }
}
.l-footer-sns__item {
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-sns__item {
    width: 2.1rem;
  }
}
.l-footer__pagetop {
  position: absolute;
  bottom: 0;
  right: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop {
    width: 12rem;
    right: 4rem;
  }
}
.l-footer-right {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-footer-right {
    width: 100%;
  }
}
.l-footer-right__block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 42rem;
}
@media screen and (max-width: 767px) {
  .l-footer-right__block {
    display: block;
    width: 50%;
    padding: 0 1.5rem 0 0;
  }
  .l-footer-right__block + .l-footer-right__block {
    padding: 0;
  }
}
.l-footer-menu {
  width: 21rem;
  padding: 0 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer-menu {
    width: auto;
    margin-top: 4.5rem;
    padding: 0;
  }
  .l-footer-menu:first-child {
    margin-top: 0;
  }
}
.l-footer-menu.is-wide {
  width: 29rem;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-footer-menu.is-wide {
    width: 100%;
    margin-right: -2rem;
  }
}
.l-footer-menu.is-auto {
  width: auto;
  flex-shrink: 0;
  padding: 0;
}
.l-footer-menu__item {
  font-size: 2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer-menu__item {
    font-size: 1.6rem;
  }
}
.l-footer-menu__item:first-child {
  margin-top: 0;
}
.l-footer-menu__item a {
  position: relative;
}
.l-footer-menu__item a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .l-footer-menu__item a:hover {
    opacity: 1;
  }
  .l-footer-menu__item a:hover::before {
    width: 100%;
  }
}
.l-footer-child__item {
  font-size: 1.6rem;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer-child__item {
    font-size: 1.2rem;
    margin-top: 2.5rem;
  }
}
.l-footer__copy {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  margin: 6rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1.1rem;
    margin: 2rem 0 0;
  }
}

.c-link {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-link {
    font-size: 1.3rem;
  }
}
.c-link a {
  position: relative;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #000;
  padding: 0 8rem 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-link a {
    padding: 0 7rem 1.5rem 0;
  }
}
.c-link a::before {
  content: ">>";
  position: absolute;
  top: 0;
  right: 0.8rem;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .c-link a::before {
    right: 0;
  }
}
@media (any-hover: hover) {
  .c-link a:hover {
    opacity: 1;
  }
  .c-link a:hover::before {
    right: 0;
  }
}

.c-heading {
  position: relative;
  z-index: 2;
  line-height: 1;
}
.c-heading__txt {
  display: inline-block;
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-right: 8rem;
}
@media screen and (max-width: 767px) {
  .c-heading__txt {
    font-size: 3rem;
  }
}
.is-workshop .c-heading__txt {
  width: 46rem;
}
@media screen and (max-width: 767px) {
  .is-workshop .c-heading__txt {
    width: 100%;
  }
}
.c-heading__txt .en {
  overflow: hidden;
  display: block;
}
.c-heading__txt .en span {
  display: block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-anime .c-heading__txt .en span {
  transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 1;
}
.is-workshop .c-heading__txt .en {
  line-height: 1.2;
}
.c-heading__txt .ja {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-heading__txt .ja {
    font-size: 1rem;
    margin: 1.8rem 0 0;
  }
}
.is-workshop .c-heading__txt .ja {
  position: absolute;
  bottom: 1rem;
  left: 16rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .is-workshop .c-heading__txt .ja {
    left: 11.8rem;
  }
}
.c-heading__txt .brackets {
  display: block;
  width: 18.5rem;
  text-align: center;
  font-size: 2rem;
  border: 1px solid #c6aa50;
  letter-spacing: 0;
  margin: 2rem 0 0;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-heading__txt .brackets {
    width: 12.7rem;
    font-size: 1.4rem;
    margin: 1rem 0 0;
  }
}
.c-heading__txt .slash {
  position: absolute;
  top: 4.5rem;
  right: -2rem;
  width: 14rem;
  transform: rotate(-225deg);
}
@media screen and (max-width: 767px) {
  .c-heading__txt .slash {
    top: 3rem;
    right: -1rem;
    width: 8.5rem;
  }
}
.c-heading__txt .slash span {
  display: block;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.5s;
}
.is-anime .c-heading__txt .slash span {
  width: 100%;
}

.c-products-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 3rem 4.8rem;
  margin: 0 0 10rem;
}
@media screen and (max-width: 767px) {
  .c-products-list {
    gap: 1.5rem 1.9rem;
    margin: 0 0 3.5rem;
  }
}
.c-products-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc((100% - 24rem) / 6);
  border: 1px solid #000;
  text-align: center;
  line-height: 1.4;
  padding: 0.5rem;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .c-products-list__item {
    width: calc((100% - 3.8rem) / 3);
    font-size: 1.1rem;
    padding: 0.7rem 0.5rem 0.4rem;
  }
}
.c-products-list__item.is-current {
  background: #ccc;
}
@media (any-hover: hover) {
  .c-products-list__item:hover {
    background: #ccc;
  }
}
.c-products-list__item a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .c-products-list__item a:hover {
    opacity: 1;
  }
}
.c-products-details-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8rem 6rem;
}
@media screen and (max-width: 767px) {
  .c-products-details-list {
    justify-content: space-between;
    gap: 5rem 0;
  }
}
.c-products-details-list__item {
  width: 23rem;
  min-height: 37rem;
}
@media screen and (max-width: 767px) {
  .c-products-details-list__item {
    width: calc(50% - 2rem);
    min-height: inherit;
  }
}
.c-products-details-list__item a {
  position: relative;
  display: block;
  min-height: 37rem;
  padding: 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-products-details-list__item a {
    min-height: inherit;
    padding: 0;
  }
}
.c-products-details-list__img {
  width: 23rem;
  height: 24rem;
  margin: 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .c-products-details-list__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 23/24;
    margin: 0 0 1.5rem;
  }
}
.c-products-details-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-products-details-list__ttl {
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-products-details-list__ttl {
    font-size: 1.5rem;
  }
}
.c-products-details-list__name {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-products-details-list__name {
    font-size: 1rem;
  }
}
.c-products-details-list__price {
  position: absolute;
  bottom: 0;
  font-family: "din-2014", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-products-details-list__price {
    position: relative;
    bottom: auto;
    font-size: 1.4rem;
    margin: 1.6rem 0 0;
  }
}
.c-products-details-list__price span {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .c-products-details-list__price span {
    font-size: 1.1rem;
  }
}

.c-swiper {
  position: relative;
  width: 70rem;
  overflow: hidden;
  padding: 0 0 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-swiper {
    width: 100%;
    padding: 0 0 2.5rem;
  }
}
.c-swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 1;
  text-align: right;
}
.c-swiper .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background: #c6aa50;
  opacity: 0.5;
  margin: 0 0 0 2.4rem !important;
}
@media screen and (max-width: 767px) {
  .c-swiper .swiper-pagination-bullet {
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0 0 1.7rem !important;
  }
}
.c-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .c-swiper.is-reverse .swiper-pagination {
    text-align: left;
  }
  .c-swiper.is-reverse .swiper-pagination-bullet {
    margin: 0 1.7rem 0 0 !important;
  }
}

.c-ttl {
  font-size: 4.8rem;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    font-size: 3rem;
  }
}
.c-ttl span {
  display: block;
  font-size: 1.4rem;
  font-family: "shippori-mincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 1.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-ttl span {
    font-size: 1.2rem;
  }
}

.c-line {
  width: calc(100% - 4rem);
  max-width: 118rem;
  background: #eee;
  margin: 0 auto;
  border-radius: 2rem;
  padding: 5.5rem 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .c-line {
    padding: 3.8rem 0;
    border-radius: 1.4rem;
  }
}
.c-line-content {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 18rem;
  margin: 4.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-line-content {
    width: 23.5rem;
    flex-flow: column;
    gap: 6.8rem 0;
    margin: 3.4rem auto 0;
  }
}
.c-line-content::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: calc(50% + 0.5rem);
  width: 2.4rem;
  height: 4.8rem;
  background: #06c755;
  transform: translateX(-50%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .c-line-content::before {
    top: 50%;
    left: 50%;
    width: 3.5rem;
    height: 1.7rem;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    transform: translate(-50%, -50%);
  }
}
.c-line-content__item {
  width: 32.8rem;
}
@media screen and (max-width: 767px) {
  .c-line-content__item {
    width: 100%;
  }
}
.c-line-content__img img {
  width: 35.1rem;
  margin: -1.6rem 0 0 -1.2rem;
}
@media screen and (max-width: 767px) {
  .c-line-content__img img {
    width: 25rem;
    margin: -1.2rem 0 0 -0.75rem;
  }
}
.c-line-content__btn a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-line-content__btn a img {
  transition: opacity 0.5s;
}
.c-line-content__btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/img_line_btn_on.png) 0 0/100% auto no-repeat;
  transition: opacity 0.5s;
  opacity: 0;
}
@media (any-hover: hover) {
  .c-line-content__btn a:hover {
    opacity: 1;
  }
  .c-line-content__btn a:hover img {
    opacity: 0;
  }
  .c-line-content__btn a:hover::after {
    opacity: 1;
  }
}
.c-line__ttl {
  font-size: 2.4rem;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-line__ttl {
    font-size: 1.4rem;
  }
}
.c-line__ttl span {
  display: inline-block;
  width: 8rem;
  line-height: 1;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-line__ttl span {
    width: 4.5rem;
  }
}
.c-line-content__num {
  color: #06c755;
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
  margin: 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .c-line-content__num {
    font-size: 2.3rem;
    margin: 0.8rem 0;
  }
}
.c-line-content__txt {
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-line-content__txt {
    font-size: 1.3rem;
  }
}

.c-pager {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 7rem;
  margin: 12rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-pager {
    gap: 0 2.5rem;
    margin: 8.5rem 0 0;
  }
}
.c-pager .item {
  width: 2.6rem;
  height: 2.6rem;
  line-height: 1;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-pager .item {
    width: 2rem;
    height: 2rem;
    font-size: 1.6rem;
  }
}
.c-pager .item.current {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #e6e6e6;
  border-radius: 100%;
  border: 1px solid #000;
}
.c-pager .item a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #000;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .c-pager .item a:hover {
    background: #e6e6e6;
    opacity: 1;
  }
}

.c-mv {
  overflow: hidden;
}
.c-mv__inner {
  position: relative;
  width: 54rem;
  padding: 0 7rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-mv__inner {
    width: 100%;
    padding: 0;
  }
}
.c-mv__ttl {
  font-size: 4rem;
  line-height: 2.5;
  margin: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-mv__ttl {
    font-size: 3.1rem;
    line-height: 2;
    margin: 6rem 0 0;
  }
}
.c-mv__txt {
  line-height: 2.875;
  margin: 5rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-mv__txt {
    margin: 3rem 0 0;
  }
}
.c-mv__img {
  position: absolute;
  top: 5.5rem;
  left: 100%;
  width: 76rem;
  height: 57rem;
}
@media screen and (max-width: 767px) {
  .c-mv__img {
    position: relative;
    top: auto;
    left: auto;
    width: 100vw;
    height: 100%;
    margin: 4rem -4rem 0;
  }
}

.c-archive {
  background: #f1f1f1;
  padding: 0 0 20rem;
}
@media screen and (max-width: 767px) {
  .c-archive {
    padding: 0 0 9rem;
  }
}
.c-archive-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0 4.8rem;
  max-width: 150rem;
  margin: 8rem auto 0;
}
@media screen and (max-width: 767px) {
  .c-archive-list {
    justify-content: space-between;
    gap: 3.5rem 0;
    padding: 0 1.9rem;
  }
}
.c-archive-list__item {
  width: calc(25% - 3.6rem);
}
@media screen and (max-width: 767px) {
  .c-archive-list__item {
    width: calc(50% - 1rem);
  }
}
.c-archive-list__inner {
  padding: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-archive-list__inner {
    padding: 0;
    margin: 1.5rem 0 0;
  }
}
.c-archive-list__ttl {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-archive-list__ttl {
    font-size: 1.4rem;
  }
}
.c-archive-list__date {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-archive-list__date {
    font-size: 1rem;
  }
}
.c-archive-list__txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin: 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-archive-list__txt {
    font-size: 1.2rem;
    margin: 1rem 0 0;
  }
}
.c-archive-list__img {
  aspect-ratio: 1/1;
}
.c-archive-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-fadeup {
  transform: translateY(2rem);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fadeup.is-hidden {
  opacity: 0;
  transform: translateY(2rem);
}
.js-fadeup.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
  display: none;
}

@media screen and (min-width: 1300.1px) {
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
  .u-pc {
    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;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-mt10 {
  margin-top: 1rem;
}
.u-mt15 {
  margin-top: 1.5rem;
}
.u-mt20 {
  margin-top: 2rem;
}
.u-mt30 {
  margin-top: 3rem;
}
.u-mt40 {
  margin-top: 4rem;
}
.u-mt50 {
  margin-top: 5rem;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* --------------------------------------------------
other
-------------------------------------------------- */
.u-bold { /*font-weight: 700;*/ }