@charset "UTF-8";

html {
  font-size: 100%;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}

@media (min-width: 1100px) {
  html {
    font-size: 100%;
  }
}

body {
  color: #484848;
  font-family: "Montserrat", sans-serif;
}

@media screen and (min-width: 768px) {

  a,
  button {
    transition: 0.3s;
  }

  a:hover,
  button:hover {
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: initial;
  border: none;
  outline: none;
  padding: 0;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.l-header {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1100px;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.l-main {
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 5rem;
  }
}

.c-button {
  background-color: #eb6100;
  border: 0.0625rem solid transparent;
  border-radius: 0.375rem;
  color: #fff;
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1764705882;
  padding-block: 0.9375rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-button:hover {
    background-color: #fff;
    border: 0.0625rem solid #eb6100;
    color: #eb6100;
  }
}

.c-button--white {
  background-color: #fff;
  border: 0.0625rem solid #eb6100;
  color: #eb6100;
}

@media screen and (min-width: 768px) {
  .c-button--white:hover {
    background-color: #eb6100;
    border: 0.0625rem solid transparent;
    color: #fff;
  }
}

.c-card {
  background-color: #fff;
  border: 0.0625rem solid rgba(0, 0, 0, 0.5);
}

.c-card__img {
  width: 100%;
}

.c-card__img img {
  aspect-ratio: 333/215;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .c-card__img img {
    aspect-ratio: 343/219;
  }
}

.c-card__body {
  padding: 1.875rem 1.25rem 1.5rem 1.25rem;
}

.c-card__title {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2083333333;
}

.c-card__text {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  margin-top: 1.625rem;
}

.c-card__link {
  color: inherit;
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.c-card__link:hover {
  opacity: 0.7;
}

.c-title {
  display: flex;
  flex-direction: column;
}

.c-title__en {
  color: #eb6100;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2222222222;
}

@media screen and (min-width: 768px) {
  .c-title__en {
    font-size: 3rem;
    line-height: 1.2083333333;
  }
}

.c-title__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4285714286;
}

@media screen and (min-width: 768px) {
  .c-title__jp {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.p-blog {
  background-color: #fff;
  display: block;
  padding-bottom: 3.75rem;
  padding-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-blog {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}

.p-blog__title {
  align-items: center;
  margin-bottom: 0;
  margin-top: 0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-blog__title {
    align-items: flex-end;
    margin-bottom: 0;
    margin-top: 0;
    text-align: right;
  }
}

.p-blog__list {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  list-style: none;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-blog__list {
    flex-direction: row;
    gap: 2.0625rem;
    margin-top: 5rem;
  }
}

.p-blog__item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-blog__item {
    width: calc((100% - 4.125rem) / 3);
  }
}

.p-blog__text {
  font-size: 2.25rem;
  line-height: 1.3888888889;
  margin-bottom: 0;
  margin-left: auto;
  margin-top: 1.875rem;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .p-blog__text {
    margin-bottom: 0;
    margin-top: 2.5rem;
  }
}

.p-blog__button {
  margin-inline: auto;
  margin-top: 3.125rem;
  width: 12rem;
}

@media screen and (min-width: 768px) {
  .p-blog__button {
    margin-left: 0;
    margin-right: auto;
    margin-top: 5.0625rem;
  }
}

.p-footer {
  align-items: center;
  background-color: #fff9de;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.25rem;
  padding-top: 4.5625rem;
}

@media screen and (min-width: 768px) {
  .p-footer {
    padding-bottom: 2.1875rem;
    padding-top: 6.1875rem;
  }
}

.p-footer__nav {
  width: 100%;
}

.p-footer__nav-list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    flex-direction: row;
    justify-content: center;
  }
}

.p-footer__nav-item {
  color: #eb6100;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.2666666667;
}

.p-footer__nav-link {
  color: #eb6100;
  display: inline-block;
  font-weight: 500;
  padding-bottom: 0.9375rem;
  padding-top: 0.9375rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-footer__nav-link:hover {
  opacity: 0.7;
}

.p-footer__copyright {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 3.9375rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 4.6875rem;
  }
}

.p-header {
  background-color: #fff9de;
  height: 3.75rem;
  width: 100%;
  z-index: 600;
}

@media screen and (min-width: 768px) {
  .p-header {
    height: 5rem;
  }
}

.p-header__inner {
  align-items: center;
  display: flex;
  height: 3.75rem;
  justify-content: space-between;
  padding-inline: 20px;
}

@media screen and (min-width: 768px) {
  .p-header__inner {
    height: 5rem;
    padding-inline-end: 0;
    padding-inline-start: 2.5rem;
    width: 100%;
  }
}

.p-header__logo {
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 100;
}

.p-header__logo img {
  display: block;
  height: 1.5625rem;
  width: 8.625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .p-header__logo img {
    height: 2.375rem;
    width: 12.875rem;
  }
}

.p-header__logo-link {
  align-items: center;
  display: inline-flex;
  padding-bottom: 0.625rem;
  padding-inline: 0.3125rem;
  padding-top: 0.9375rem;
  transition: opacity 0.3s;
}

.p-header__logo-link:hover {
  opacity: 0.7;
}

.p-header__hamburger {
  align-items: center;
  background-color: transparent;
  border: 0.0625rem solid transparent;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 3.4375rem;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  width: 3.4375rem;
  z-index: 100;
}

@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.is-open .p-header__hamburger {
  background-color: #fff;
  border-color: #eb6100;
}

.p-header__hamburger span {
  background-color: #eb6100;
  border-radius: 0.125rem;
  height: 0.125rem;
  left: calc(50% - 0.9375rem);
  position: absolute;
  transition: all 0.3s ease;
  width: 1.875rem;
}

.p-header__hamburger span:nth-child(1) {
  top: calc(50% - 0.625rem);
}

.is-open .p-header__hamburger span:nth-child(1) {
  left: calc(50% - 0.875rem);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 1.75rem;
}

.p-header__hamburger span:nth-child(2) {
  top: calc(50% - 0.0625rem);
}

.is-open .p-header__hamburger span:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger span:nth-child(3) {
  top: calc(50% + 0.625rem);
}

.is-open .p-header__hamburger span:nth-child(3) {
  left: calc(50% - 0.875rem);
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 1.75rem;
}

.p-header__wrapper {
  align-items: flex-start;
  background-color: #fff9de;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: flex-start;
  left: 0;
  opacity: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 8.625rem;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 100vw;
  z-index: 90;
}

.is-open .p-header__wrapper {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .p-header__wrapper {
    align-items: center;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    height: auto;
    margin-left: auto;
    opacity: 1;
    padding: 0;
    position: static;
    visibility: visible;
    width: auto;
  }
}

.p-header__nav {
  margin-bottom: 4rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-header__nav {
    margin-bottom: 0;
    margin-right: 1.875rem;
    width: auto;
  }
}

.p-header__nav-list {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-header__nav-list {
    align-items: center;
    flex-direction: row;
    gap: 1.875rem;
  }
}

.p-header__nav-item {
  width: 100%;
}

.p-header__nav-item:not(:first-child) {
  margin-top: 2.5rem;
}

.p-header__nav-item:not(:last-child) {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .p-header__nav-item:not(:first-child) {
    margin-top: 0;
  }
}

.p-header__nav-link {
  align-items: center;
  color: #eb6100;
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1;
  padding-bottom: 1.125rem;
  padding-inline: 1.25rem;
  padding-top: 1.125rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, opacity 0.3s ease;
  width: 100%;
}

.p-header__nav-link:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .p-header__nav-link:hover {
    color: #eb6100;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-link {
    color: #484848;
    display: block;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    padding: 1.875rem 0rem;
  }
}

.p-header__contact {
  margin-inline: auto;
  width: 12rem;
}

@media screen and (min-width: 768px) {
  .p-header__contact {
    height: 5rem;
    margin-bottom: 0;
    margin-inline: 0;
    width: 9.375rem;
  }
}

.p-header__contact-button {
  align-items: center;
  border-radius: 0.375rem;
  display: flex;
  height: 3.25rem;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-header__contact-button {
    border-radius: 0;
    font-size: 1.125rem;
    font-weight: 500;
    height: 100%;
    letter-spacing: 0.03em;
    line-height: 1.2222222222;
    width: 100%;
  }
}

.p-mv {
  position: relative;
  width: 100%;
}

.p-mv img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  aspect-ratio: 375/545;
  max-height: 34.0625rem;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-mv img {
    aspect-ratio: 1440/780;
    max-height: 48.75rem;
  }
}

.p-mv__copy {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  left: 50%;
  line-height: 1.3846153846;
  padding-inline: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-mv__copy {
    font-size: min(3.8888888889vw, 3.5rem);
  }
}

.p-news {
  padding-bottom: 3.75rem;
  padding-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-news {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}

.p-news__title {
  align-items: center;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .p-news__title {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 0;
    width: 9.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__title .c-title__jp {
    align-self: flex-end;
    /* 日本語だけを右端に引っ張る */
    text-align: right;
    width: 100%;
    /* 親（英語の幅）に対して目一杯広げる */
  }
}

.p-news__list {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  list-style: none;
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-news__list {
    flex-direction: row;
    gap: 2.125rem;
    margin-top: 3.875rem;
    padding-top: 0;
    width: 100%;
  }
}

.p-news__item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-news__item {
    width: calc((100% - 6.375rem) / 4);
  }
}

.p-news__text {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 0;
  margin-top: 1.6875rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-news__text {
    font-size: 2.25rem;
    line-height: 1.3888888889;
    margin-bottom: 0;
    margin-top: 3.4375rem;
    text-align: left;
  }
}

.p-news__button {
  margin-inline: auto;
  margin-top: 1.5rem;
  width: 12rem;
}

@media screen and (min-width: 768px) {
  .p-news__button {
    display: block;
    margin-left: auto;
    margin-right: 0;
    margin-top: 5rem;
  }
}

.p-products {
  background-color: #fff9de;
  padding-bottom: 3.75rem;
  padding-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-products {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-products__container {
    align-items: center;
    display: flex;
  }
}

.p-products__title {
  align-items: center;
  margin-bottom: 0;
  margin-top: -0.375rem;
}

@media screen and (min-width: 768px) {
  .p-products__title {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
    width: 17.6875rem;
  }
}

.p-products__list {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  list-style: none;
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-products__list {
    flex-direction: row;
    flex-grow: 1;
    flex-wrap: wrap;
    margin-left: 6.0625rem;
    margin-top: 0;
    row-gap: 1.6875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }
}

.p-products__item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-products__item {
    width: calc((100% - 1.875rem) / 2);
  }
}

.p-products__button {
  margin-inline: auto;
  margin-top: 3.125rem;
  width: 12rem;
}

@media screen and (min-width: 768px) {
  .p-products__button {
    margin-left: auto;
    margin-right: 0;
    margin-top: 5rem;
  }
}

.u-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
