@charset "UTF-8";
/**
-------------------------------------------     front.scss   **/
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");
/**
------------------------------------------     header.scss   **/
.header {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 4%;
  background: rgba(83, 71, 65, 0.4);
  z-index: 50;
}

.wrapper.flexBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-image {
  width: 183px;
  filter: invert(100%) grayscale(100%) contrast(100);
}

.g-nav {
  display: none;
  align-items: center;
  margin-right: 64px;
}
.g-nav .menu-header-nav-container {
  padding-top: 5px;
}
.g-nav ul {
  display: flex;
}
.g-nav ul li {
  width: 100%;
  padding: 0 24px;
  white-space: nowrap;
  list-style-type: none !important;
  margin: 0 !important;
}
.g-nav ul li:first-of-type {
  padding-left: 0;
}
.g-nav ul li:last-of-type {
  padding-right: 0;
}
.g-nav ul li a {
  position: relative;
  color: #fefefe;
  font-weight: 600;
  padding-bottom: 5px;
}
.g-nav ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #948D8A;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.g-nav ul li a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
.g-nav ul li a span {
  display: block;
  font-size: 0.65rem;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .g-nav {
    display: flex;
    margin-right: 20px;
    margin-left: auto;
  }
  .g-nav ul li {
    padding: 0 16px;
  }
}

.hamburger-menu-wrapper.pc-nav {
  display: flex;
  cursor: pointer;
}
.hamburger-menu-wrapper.pc-nav .hamburger-menu-open,
.hamburger-menu-wrapper.pc-nav .hamburger-menu-close {
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .hamburger-menu-wrapper.pc-nav {
    display: none;
  }
}

#hamburger-menu-button,
.bg-wrapper {
  display: none;
}

#hamburger-menu-button:checked ~ .hamburger-menu-open {
  display: none;
}
#hamburger-menu-button:checked ~ .hamburger-menu-close {
  display: block;
}
#hamburger-menu-button:checked ~ .bg-wrapper {
  display: block;
  opacity: 0.5;
}
#hamburger-menu-button:checked ~ .hamburger-menu-content {
  transform: translate3d(0, 0, 0);
}

.hamburger-menu {
  padding: 24px 4vw;
}
.hamburger-menu-wrapper {
  display: flex;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 10px 12px;
}
@media screen and (min-width: 992px) {
  .hamburger-menu-wrapper {
    display: none;
  }
}
.hamburger-menu-open, .hamburger-menu-close {
  position: relative;
  display: block;
  width: 90%;
  height: 100%;
  font-size: 0.65rem;
  color: #fefefe;
  letter-spacing: 0;
  transition: 0.3s ease;
  -webkit-animation: site-title 0.8s ease 0.5s 1 normal;
          animation: site-title 0.8s ease 0.5s 1 normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.hamburger-menu-open .menu-icon, .hamburger-menu-close .menu-icon {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #fefefe;
}
.hamburger-menu-open .menu-icon:nth-of-type(1), .hamburger-menu-close .menu-icon:nth-of-type(1) {
  top: 0;
}
.hamburger-menu-open .menu-icon:nth-of-type(2), .hamburger-menu-close .menu-icon:nth-of-type(2) {
  top: 10px;
}
.hamburger-menu-open .menu-icon:nth-of-type(3), .hamburger-menu-close .menu-icon:nth-of-type(3) {
  top: 20px;
}
.hamburger-menu-open .label-text, .hamburger-menu-close .label-text {
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  color: #fefefe;
  font-weight: 900;
}
.hamburger-menu-close {
  display: none;
}
.hamburger-menu-close .menu-icon:nth-of-type(1) {
  top: 11px;
  left: 0;
  transform: rotate(45deg);
}
.hamburger-menu-close .menu-icon:nth-of-type(2) {
  opacity: 0;
}
.hamburger-menu-close .menu-icon:nth-of-type(3) {
  top: 11px;
  left: 0;
  transform: rotate(-45deg);
}
.hamburger-menu-content {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 60px;
  right: 0;
  width: 80%;
  height: 100%;
  transition: 0.3s ease;
  transform: translate3d(100%, 0, 0);
  overflow: auto;
  z-index: 5;
}
.hamburger-menu-content .contactArea {
  padding: 40px 4vw 0;
  display: flex;
}
.hamburger-menu li {
  padding: 10px;
  border-bottom: 1px dotted #948D8A;
  font-size: 18px;
  text-align: left;
  transition: 0.3s ease;
}
.hamburger-menu li a {
  font-size: 1rem;
  color: #fefefe;
}

.bg-wrapper {
  background: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 60px;
  left: 0;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 3;
}

.contactArea {
  display: none;
}
.contactArea .mailBox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}
.contactArea .mailBox button {
  width: 42px;
  width: 66px;
  height: 66px;
  background: rgb(208, 248, 255);
  background: linear-gradient(145deg, rgb(208, 248, 255) 0%, rgb(0, 161, 255) 100%);
  margin: 0;
  padding: 12px;
  border-radius: 5px;
}
.contactArea .mailBox button::after {
  display: none;
}
.contactArea .telBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contactArea .telBox a p {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  color: #fefefe;
  font-weight: 600;
  white-space: nowrap;
}
.contactArea .telBox .tel-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.contactArea .telBox > p {
  font-size: 12px;
  color: #fefefe;
  text-align: right;
}
@media screen and (min-width: 992px) {
  .contactArea {
    display: flex;
  }
}

#home main {
  padding-top: 0;
  padding-bottom: 0;
}

.main_visual {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 0 4%;
}
.main_visual picture {
  display: flex;
  align-items: center;
  width: 300px;
}
@media screen and (min-width: 768px) {
  .main_visual {
    height: 100vh;
  }
  .main_visual picture {
    width: 450px;
  }
}

.aboutus {
  padding: 120px 4%;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  text-align: center;
}
.aboutus p {
  line-height: 2.6;
}
.aboutus p:first-of-type {
  margin-bottom: 48px;
}
.aboutus picture {
  display: block;
  width: 186px;
  margin: 96px auto 0;
}
.aboutus figure {
  width: 240px;
  margin: 120px auto 0;
}
@media screen and (min-width: 768px) {
  .aboutus p {
    line-height: 2.3;
  }
  .aboutus picture {
    margin: 80px auto 0;
  }
}

.Whatis {
  padding: 160px 4% 120px;
}
.Whatis p {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
}
.Whatis ul {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.Whatis ul li {
  width: calc(50% - 8px);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.24);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .Whatis p {
    line-height: 2.3;
    text-align: center;
  }
  .Whatis ul {
    margin-top: 120px;
  }
  .Whatis ul li {
    width: calc(50% - 16px);
  }
}

.efficacy {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 4%;
}
.efficacy .inner {
  position: relative;
  z-index: 5;
}
.efficacy .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border: 1px solid #fefefe;
  box-shadow: 0 0 2px 2px #fefefe, 0 0 2px 2px #fefefe inset;
  border-radius: 10px;
  padding: 48px 24px;
}
.efficacy .container::after {
  position: absolute;
  display: block;
  content: "";
  right: -20px;
  bottom: -100px;
  width: 208px;
  height: 180px;
  background-image: url(../assets/images/layer-sp.svg);
  background-size: contain;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.3));
}
.efficacy p {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 600;
  color: #fefefe;
  line-height: 2.2;
  letter-spacing: 0.117em;
}
.efficacy .material {
  position: relative;
  max-width: 740px;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 80px;
  margin: 0 auto;
}
.efficacy .material ul li {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  color: #fefefe;
}
.efficacy .material ul.toplist, .efficacy .material ul.bottomlist {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #fefefe;
  padding: 0 10px;
}
.efficacy .material ul.toplist::after {
  position: absolute;
  content: "";
  width: 70px;
  border: 1px dotted #fefefe;
  right: -60px;
  bottom: -26px;
  transform: rotate(45deg);
}
.efficacy .material ul.bottomlist {
  position: absolute;
  right: 0;
}
.efficacy .material ul.bottomlist::after {
  position: absolute;
  content: "";
  width: 140px;
  border: 1px dotted #fefefe;
  left: -120px;
  bottom: 48px;
  transform: rotate(45deg);
}
.efficacy .material picture {
  display: block;
  width: 229px;
  margin: 0 auto;
}
.efficacy::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .efficacy {
    padding: 240px 4%;
  }
  .efficacy .container {
    padding: 96px;
  }
  .efficacy .container::after {
    width: 240px;
    height: 206px;
  }
  .efficacy p {
    line-height: 2.4;
    text-align: center;
  }
  .efficacy .material ul.toplist::after {
    position: absolute;
    content: "";
    width: 140px;
    border: 1px dotted #fefefe;
    right: -120px;
    bottom: -52px;
    transform: rotate(45deg);
  }
}

.story {
  padding: 120px 4%;
  background: rgba(148, 141, 138, 0.24);
}
.story p {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  line-height: 2;
}
.story ul {
  margin: 40px 0 80px;
}
.story ul li {
  width: 100%;
  box-shadow: 0 0 24px rgba(83, 71, 65, 0.24);
}
.story ul li:not(:last-of-type) {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .story {
    padding: 240px 4%;
  }
  .story p {
    line-height: 2.4;
    text-align: center;
  }
  .story ul {
    display: flex;
    justify-content: space-between;
    margin: 120px 0;
  }
  .story ul li {
    width: calc(33.3333333333% - 16px);
  }
  .story ul li:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.products {
  padding: 120px 4%;
  overflow: hidden;
}
.products .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.products .swiper,
.products .thumb-wrapper {
  max-width: 570px;
  width: 100%;
  height: 100%;
}
.products .swiper {
  overflow: visible;
  margin-bottom: 40px;
}
.products .swiper-wrapper {
  margin-bottom: 24px;
}
.products .swiper-slide picture {
  padding-top: 75%;
}
.products .swiper-slide picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products .products_info {
  width: 100%;
  font-weight: 500;
}
.products .products_info .text_head {
  display: inline-block;
  color: #fefefe;
  margin-bottom: 16px;
  padding: 4px 8px;
  background: #534741;
}
.products .products_info .text_head:nth-of-type(2) {
  margin-top: 16px;
}
.products .products_info .text_head_sub {
  display: inline-block;
  border-bottom: 1px solid #534741;
  margin-bottom: 8px;
}
.products .products_info .type {
  display: flex;
}
.products .products_info .type li {
  list-style-type: decimal;
  margin: 0 20px 16px 24px;
}
.products .products_info .type li:last-of-type {
  margin-bottom: 0;
}
.products .products_info .cause li {
  list-style-type: disc;
  margin-left: 24px;
}
.products .products_info dl {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.products .products_info dt {
  font-weight: 700;
}
.products .products_info .flexBox {
  display: flex;
  flex-wrap: wrap;
}
.products .products_info .flexBox p {
  margin: 0 24px 8px 0;
  padding: 4px 8px;
  border: 1px solid #534741;
}
.products .note {
  border-top: 1px solid #534741;
  border-bottom: 1px solid #534741;
  margin-top: 24px;
  padding: 24px 0;
}
.products .note p {
  margin-bottom: 16px;
}
.products .note p span {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}
.products .note p:last-of-type {
  margin-bottom: 0;
}
.products .products_price h2 {
  margin-top: 24px;
}
.products .products_price .price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.products .products_price .price span {
  font-size: 14px;
}
.products .link-btn {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .products {
    padding: 240px 4%;
  }
}
@media screen and (min-width: 992px) {
  .products .container {
    flex-direction: row;
  }
  .products .swiper {
    margin-bottom: 0;
  }
  .products .products_info {
    max-width: 514px;
    margin-left: 56px;
  }
  .products .products_info dl {
    flex-direction: row;
  }
  .products .products_info dt {
    width: 38%;
  }
  .products .products_info dd {
    width: 62%;
  }
}

.about {
  padding: 120px 4%;
}
.about .txt_container p {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  line-height: 2;
}
.about .txt_container p:not(:last-of-type) {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 240px 4%;
  }
  .about p {
    text-align: center;
  }
}

.section_header {
  width: 343px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  .section_header {
    width: 510px;
    margin: 0 auto 64px;
  }
}

:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;
}

.slide {
  display: block;
  overflow: hidden;
}

.slide-media {
  display: block;
  padding-top: 62.5%;
  border-radius: 4px;
}

.slide-media img {
  -o-object-fit: contain;
  object-fit: contain;
}

.slide-title {
  font-weight: bold;
  line-height: 1.6;
  padding: 3.2rem 0;
}

.thumb-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.thumb-media {
  padding-top: 100%;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
}

.thumb-media img {
  transition: var(--transition);
}

.thumb-media-active {
  transform: scale(0.9);
  opacity: 0.3;
}

.thumb-media-active img {
  transform: scale(1.1);
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
  .thumb-wrapper {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .thumb-media:hover {
    transform: scale(0.9);
  }
  .thumb-media:hover img {
    transform: scale(1.1);
  }
}
@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/**
-----------------------------------------------------     page.scss   **/
.page main.privacy-policy {
  padding: 96px 4%;
}
.page .privacy-policy h1 {
  margin-bottom: 40px;
}
.page .privacy-policy h2 {
  margin-bottom: 24px;
}
.page .privacy-policy h2:first-of-type {
  margin-top: 24px;
}
.page .privacy-policy ul li {
  list-style-type: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}
.page .privacy-policy ul li:first-of-type {
  margin-top: 16px;
}

/**
----------------------------------------     footer.scss   **/
.footer {
  padding: 80px 4% 16px;
  background: #534741;
}
.footer-nav,
.footer p {
  color: #fefefe;
  text-align: right;
}
.footer-nav {
  margin-bottom: 32px;
}
.footer .copyright {
  font-size: 12px;
  text-align: center;
}

/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

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

hr {
  overflow: visible; /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted; /* Add a bordered underline effect in all browsers */
  text-decoration: none; /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder; /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic; /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number] {
  width: auto; /* Firefox 36+ */
}

[type=search] {
  -webkit-appearance: textfield; /* Safari 8+ */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Safari 8 */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

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

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

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

svg:not(:root) {
  overflow: hidden; /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block; /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

/**
---------------------------------------------------------------------------------------     base.scss   **/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS 2", sans-serif;
  color: #534741;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  letter-spacing: 0.08em;
  background: #e3e3e3;
  background-repeat: repeat-y;
  background-size: contain;
}

@font-face {
  font-family: "M PLUS 2";
  font-style: normal;
  font-display: swap;
  src: url(../assets/font/MPLUS2-VariableFont_wght.ttf) format("ttf");
  font-weight: 100 1000;
}
@font-face {
  font-family: "Josefin Sans";
  font-style: normal;
  font-display: swap;
  src: url(../assets/font/JosefinSans-VariableFont_wght.ttf) format("ttf");
  font-weight: 100 1000;
}
.en {
  font-family: "Josefin Sans", sans-serif;
  font-variation-settings: "wght" 800;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

picture {
  display: block;
}

* {
  box-sizing: border-box;
}

.sitewrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1;
}

.inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.attention {
  color: #7c050f;
  font-weight: 900;
}

/**
----------------------------------------------     parts.scss   **/
/**************************************************** button */
button {
  display: block;
  width: 254px;
  height: 60px;
  color: #fefefe;
  background: #534741;
  margin: 0 auto;
  transition: all 0.3s ease-out;
}
button:hover {
  opacity: 0.8;
}

.topics button::after {
  right: 35px;
}

/**************************************** ページナビゲーション */
.pnavi {
  display: flex;
  justify-content: center;
  margin-bottom: 160px;
}
.pnavi .page-numbers {
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #534741;
  text-align: center;
  background: #f2f2f2;
  border: 2px solid #534741;
  margin-right: 20px;
  line-height: 50px;
}
.pnavi .page-numbers.current {
  color: #fefefe;
  background: #534741;
}

.next.page-numbers {
  position: relative;
}
.next.page-numbers::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #534741;
  border-right: 2px solid #534741;
  top: 50%;
  left: 45%;
  transform: translate(-45%, -50%) rotate(45deg);
}

.prev.page-numbers {
  position: relative;
}
.prev.page-numbers::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #534741;
  border-left: 2px solid #534741;
  top: 50%;
  left: 55%;
  transform: translate(-55%, -50%) rotate(-45deg);
}

.sentence-nav {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  border-top: 5px solid #534741;
  margin-bottom: 160px;
  padding-top: 40px;
}
.sentence-nav .next-page a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.sentence-nav .next-page a::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  border-top: 2px solid #534741;
  border-left: 2px solid #534741;
}
.sentence-nav .prev-page a {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}
.sentence-nav .prev-page a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(135deg);
  border-top: 2px solid #534741;
  border-left: 2px solid #534741;
}

/************************************************ breadcrumb */
.breadcrumbs {
  display: flex;
  margin-bottom: 40px;
}

/**************************************************************** webp */
.webp body {
  background-image: url(../assets/images/bg-sp.webp);
}
.webp .main_visual {
  background-image: url(../assets/images/main_visual-sp.webp);
}
.webp .efficacy {
  background-image: url(../assets/images/background.webp);
}
.webp .about {
  background-image: url(../assets/images/about_bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .webp body {
    background-image: url(../assets/images/bg.webp);
  }
  .webp .main_visual {
    background-image: url(../assets/images/main_visual.webp);
  }
  .webp .about {
    background-image: url(../assets/images/about_bg.webp);
  }
}

.no-webp body {
  background-image: url(../assets/images/bg-sp.png);
}
.no-webp .main_visual {
  background-image: url(../assets/images/main_visual-sp.jpg);
}
.no-webp .efficacy {
  background-image: url(../assets/images/background.jpg);
}
.no-webp .about {
  background-image: url(../assets/images/about_bg-sp.jpg);
}
@media screen and (min-width: 768px) {
  .no-webp body {
    background-image: url(../assets/images/bg.png);
  }
  .no-webp .main_visual {
    background-image: url(../assets/images/main_visual.jpg);
  }
  .no-webp .about {
    background-image: url(../assets/images/about_bg.jpg);
  }
}

/**************************************************************** error404 */
.error404 p:first-of-type {
  margin-bottom: 16px;
}
.error404 p:last-of-type {
  font-size: 14px;
}
.error404 a.line {
  font-size: 14px;
  text-decoration: underline;
}

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

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

.mt16 {
  margin-top: 16px;
}
/*# sourceMappingURL=style.css.map */