@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

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

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-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] { /* 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;
}

/* ==================================================
   Base
   ================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-size: 62.5%;
}

img {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  color: #000;
  font-size: 1.6rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

a:hover {
  opacity: 0.6;
}

.sp {
  display: none;
}
@media (width <= 768px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media (width <= 768px) {
  .pc {
    display: none;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.l-header {
  height: 10rem;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (width <= 768px) {
  .l-header {
    height: 8rem;
  }
}
@media (width <= 400px) {
  .l-header {
    height: 6rem;
  }
}
.l-header .l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 114rem;
  padding-right: 120px;
  height: 100%;
  margin: 0 auto;
}
@media (width <= 1200px) {
  .l-header .l-header__inner {
    max-width: 96rem;
  }
}
@media (width <= 992px) {
  .l-header .l-header__inner {
    max-width: 70rem;
  }
}
@media (width <= 768px) {
  .l-header .l-header__inner {
    padding: 0 4rem;
  }
}
.l-header .l-header__logo {
  background-image: url("../img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 6.5rem;
  height: 6.5rem;
  position: relative;
  z-index: 100;
}
@media (width <= 768px) {
  .l-header .l-header__logo {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media (width <= 400px) {
  .l-header .l-header__logo {
    width: 4rem;
    height: 4rem;
  }
}
.l-header .l-header__nav ul {
  display: flex;
  gap: 4rem;
}
.l-header .l-header__nav li {
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
}
.l-header .l-header__nav a {
  position: relative;
}
.l-header .l-header__nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background-color: #333;
  transition: width 0.3s ease, left 0.3s ease;
}
.l-header .l-header__nav a:hover::before {
  width: 100%;
  left: 0;
}
@media (width <= 768px) {
  .l-header .l-header__humb {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    cursor: pointer;
    position: relative;
    z-index: 100;
  }
  .l-header .l-header__humb span {
    display: block;
    width: 3rem;
    height: 0.2rem;
    background-color: #333;
    tansition: all 0.3s ease;
  }
}
.l-header .l-header__humb.active span:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}
.l-header .l-header__humb.active span:nth-child(2) {
  opacity: 0;
}
.l-header .l-header__humb.active span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}
.l-header .l-header__humb-menu {
  position: fixed;
  z-index: 99;
  padding: 8rem 4rem;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background-color: rgb(255, 255, 255);
  transition: left 0.3s ease;
}
@media (width <= 768px) {
  .l-header .l-header__humb-menu {
    display: flex;
  }
  .l-header .l-header__humb-menu.active {
    left: 0;
  }
}
.l-header .l-header__humb-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.l-header .l-header__humb-menu li {
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
}
.l-header .l-header__humb-menu a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.l-header .l-header__humb-menu a:hover {
  color: #000;
}

.l-footer {
  padding: 3.2rem 0 3.2rem 0;
  margin-top: 12rem;
  position: relative;
  background-color: #A6A7A7;
  overflow: visible;
}

@media (width <= 768px) {
  .l-footer {
    height: auto;
    overflow: hidden;
  }
}
.l-footer .l-footer__img {
  position: absolute;
  bottom: 0;
  right: 2rem;
  height: 120%;
}
.l-footer__img img {
  height: 100%;
  width: auto;
}
@media (width <= 768px) {
  .l-footer .l-footer__img {
    bottom: 0;
    width: 29.3333333333vw;
    right: -2.6666666667vw;
  }
}
.l-footer .l-footer__inner {
  max-width: 810px;
  margin: 0 auto;
}
@media (width <= 1200px) {
  .l-footer .l-footer__inner {
    max-width: 810px;
  }
}
@media (width <= 992px) {
  .l-footer .l-footer__inner {
    max-width: 720px;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__inner {
    padding: 0 4rem;
  }
}
.l-footer .l-footer__subtitle {
  font-size: 2rem;
  margin: 0;
}
@media (width <= 768px) {
  .l-footer .l-footer__subtitle {
    font-size: 1.6rem;
  }
}
@media (width <= 340px) {
  .l-footer .l-footer__subtitle {
    font-size: 1.4rem;
  }
}
.l-footer .l-footer__title {
  margin: 0;
  letter-spacing: 0.16rem;
  font-size: 3rem;
}
@media (width <= 768px) {
  .l-footer .l-footer__title {
    font-size: 2.2rem;
  }
}
@media (width <= 340px) {
  .l-footer .l-footer__title {
    font-size: 2rem;
  }
}
.l-footer .l-footer__address {
  margin-top: 0.6rem;
  font-size: 1.5rem;
}
@media (width <= 340px) {
  .l-footer .l-footer__address {
    font-size: 1.3rem;
  }
}

.l-inner {
  max-width: 920px;
  margin: 0 auto;
}
@media (width <= 992px) {
  .l-inner {
    padding: 0 2rem;
    max-width: 820px;
  }
}
@media (width <= 768px) {
  .l-inner {
    padding: 0 2.4rem;
    max-width: 620px;
  }
}

.c-hidden {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.c-column {
  display: flex;
}

.c-grid {
  display: grid;
}
@media (width <= 768px) {
  .c-grid {
    grid-template-columns: 1fr;
  }
}

.c-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 768px) {
  .c-grid2 {
    grid-template-columns: 1fr;
  }
}

.c-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 768px) {
  .c-grid3 {
    grid-template-columns: 1fr;
  }
}

.c-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.c-card {
  padding: 2rem;
}

.c-title {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1.4;
  letter-spacing: 0.14rem;
  font-weight: 600;
  text-align: center;
  color: #A56D35;
}
@media (width <= 768px) {
  .c-title {
    font-size: 2.6rem;
  }
}
@media (width <= 400px) {
  .c-title {
    font-size: 2.2rem;
  }
}
@media (width <= 340px) {
  .c-title {
    font-size: 1.8rem;
  }
}

.c-text {
  margin: 0;
  font-size: 1.6rem;
}
@media (width <= 768px) {
  .c-text {
    font-size: 1.4rem;
  }
}
@media (width <= 340px) {
  .c-text {
    font-size: 1.1rem;
  }
}

.c-yugothic {
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", sans-serif;
}

.c-cetnter {
  text-align: center;
}

.c-subtitle {
  margin: 0;
  color: #A56D35;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
@media (width <= 768px) {
  .c-subtitle {
    font-size: 1.8rem;
  }
}
@media (width <= 340px) {
  .c-subtitle {
    font-size: 1.6rem;
  }
}

.c-btn {
  display: inline-block;
  cursor: pointer;
}

.p-fv {
  height: 100vh;
  position: relative;
}
@media (width <= 992px) {
  .p-fv {
    height: 70rem;
  }
}
@media (width <= 768px) {
  .p-fv {
    height: 58rem;
  }
}
@media (width <= 600px) {
  .p-fv {
    height: 90.8333333333vw;
  }
}
.p-fv .p-fv__content {
  bottom: 15vh;
  left: 52.5%;
  position: absolute;
  transform: translateX(-50%);
}
@media (width <= 992px) {
  .p-fv .p-fv__content {
    bottom: auto;
    top: 10rem;
    max-width: 100%;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__content {
    top: 9.0666666667vw;
    left: 50%;
  }
}
.p-fv .p-fv__img {
  height: 77vh;
}
@media (width <= 992px) {
  .p-fv .p-fv__img {
    width: 70rem;
    max-width: 100%;
    height: auto;
  }
}
@media (width <= 992px) and (width <= 768px) {
  .p-fv .p-fv__img {
    width: 60rem;
  }
}
.p-fv .p-fv__img img {
  width: auto;
  height: 100%;
}
@media (width <= 992px) {
  .p-fv .p-fv__img img {
    width: 100%;
    height: auto;
  }
}
.p-fv .p-fv__logo {
  position: absolute;
  bottom: -3.8rem;
  right: 9rem;
  width: 26vh;
}
@media (width <= 992px) {
  .p-fv .p-fv__logo {
    width: 18rem;
    bottom: auto;
    top: 27rem;
    right: 2rem;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__logo {
    bottom: auto;
    top: 22.5rem;
    right: 4rem;
  }
}
@media (width <= 600px) {
  .p-fv .p-fv__logo {
    top: 37.3333333333vw;
    right: 10.6666666667vw;
    width: 32vw;
  }
}
.p-fv .p-fv__logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}
@media (width <= 992px) {
  .p-fv .p-fv__logo img {
    width: 100%;
    height: auto;
  }
}

.p-about {
  position: relative;
}
@media (width <= 768px) {
  .p-about {
    margin-top: 0.8rem;
  }
}
@media (width <= 600px) {
  .p-about {
    margin-top: 4rem;
  }
}
.p-about .p-about__content {
  margin-top: 3.4rem;
}
.p-about .p-about__text {
  font-size: 2rem;
  line-height: 1.7;
}
@media (width <= 768px) {
  .p-about .p-about__text {
    font-size: 1.6rem;
  }
}
@media (width <= 400px) {
  .p-about .p-about__text {
    font-size: 1.4rem;
  }
}
@media (width <= 340px) {
  .p-about .p-about__text {
    font-size: 1.1rem;
  }
}
.p-about .p-top__bg1 {
  z-index: -1;
  right: 0%;
  top: -32%;
  position: absolute;
  background-image: url(../img/top-bg1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  width: 37rem;
  height: 40rem;
}
@media (width <= 992px) {
  .p-about .p-top__bg1 {
    top: -23%;
    width: 25rem;
    height: 29rem;
  }
}
@media (width <= 600px) {
  .p-about .p-top__bg1 {
    filter: opacity(0.2);
    width: 21rem;
    height: 24rem;
  }
}
.p-about .p-top__bg2 {
  z-index: -1;
  left: 0;
  bottom: -5%;
  position: absolute;
  background-image: url(../img/top-bg2.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 29.3rem;
  height: 31.2rem;
}
@media (width <= 992px) {
  .p-about .p-top__bg2 {
    bottom: -27%;
    width: 20rem;
    height: 27rem;
  }
}
@media (width <= 600px) {
  .p-about .p-top__bg2 {
    filter: opacity(0.2);
    width: 17rem;
    height: 24rem;
  }
}
.p-feature {
  margin-top: 10.4rem;
}
@media (width <= 768px) {
  .p-feature {
    margin-top: 8rem;
  }
}
.p-feature .p-feature__cards {
  gap: 8rem;
}
@media (width <= 992px) {
  .p-feature .p-feature__cards {
    gap: 2.6rem;
  }
}
@media (width <= 768px) {
  .p-feature .p-feature__cards {
    gap: 4rem;
  }
}
.p-feature .p-feature__ctitle {
  margin-top: 0.8rem;
}
.p-feature .p-feature__cdesc {
  margin-top: 2.8rem;
}
@media (width <= 768px) {
  .p-feature .p-feature__cdesc {
    margin-top: 1.4rem;
  }
}

.p-product {
  margin-top: 10.4rem;
}
@media (width <= 768px) {
  .p-product {
    margin-top: 10rem;
  }
}
.p-product .p-product__items {
  gap: 6rem;
}
.p-product .p-product__item {
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.p-product .p-product__name {
  margin: 0;
  margin-top: 4rem;
  text-align: center;
  font-weight: 600;
  font-size: 2.5rem;
}
@media (width <= 768px) {
  .p-product .p-product__name {
    margin-top: 1.2rem;
    font-size: 1.6rem;
  }
}
@media (width <= 340px) {
  .p-product .p-product__name {
    font-size: 1.4rem;
  }
}
.p-product .p-product__price {
  margin: 0;
  margin-top: 1.2rem;
  text-align: center;
  font-weight: 500;
  font-size: 2.5rem;
}
@media (width <= 768px) {
  .p-product .p-product__price {
    font-size: 1.6rem;
  }
}
@media (width <= 340px) {
  .p-product .p-product__price {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */