/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentColor;
  fill: none;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/*
font-family: 'Lato', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
*/
:root {
  scroll-behavior: smooth;
}

* {
  line-height: 1.7;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  color: #333;
  text-decoration: none;
}
a:link, a:visited, a:active, a:focus {
  color: #333;
}
a:hover {
  color: #333;
  text-decoration: underline;
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.2);
}
.l-header__inner {
  width: 100%;
  max-width: 1240px;
  height: 94px;
  margin: 0 auto;
  padding: 22px 20px 0;
}
@media only screen and (max-width: 767px) {
  .l-header__inner {
    height: 15.625vw;
    padding: 3.90625vw 0 0 6.25vw;
  }
}
.l-header__logo-wrap {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .l-header__logo-wrap {
    margin-left: 4px;
    width: 422px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__logo-wrap {
    width: 72.96875vw;
  }
}
.l-header__logo {
  display: block;
}
.l-header__logo--bosofarm {
  width: 100%;
  height: auto;
}
.l-header__logo--nosan {
  position: absolute;
  top: 8%;
  left: 57.0212765957%;
  width: 19.1489361702%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .l-header__menu-button {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__menu-button {
    position: absolute;
    top: 0.78125vw;
    right: 1.5625vw;
    width: 14.0625vw;
    cursor: pointer;
  }
  .l-header__menu-button > img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 768px) {
  .l-main {
    padding-top: 94px;
  }
}
@media only screen and (max-width: 767px) {
  .l-main {
    padding-top: 15.625vw;
  }
}

.l-footer {
  position: relative;
  background-color: #999;
}
@media only screen and (min-width: 768px) {
  .l-footer {
    height: 99px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer {
    height: 12.5vw;
  }
}
.l-footer > p {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .l-footer > p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer > p {
    font-size: 3.125vw;
  }
}

.c-menu {
  display: none;
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding-top: 15.625vw;
}
@media only screen and (min-width: 768px) {
  .c-menu {
    display: none !important;
  }
}
.is-menu-open .c-menu {
  display: block;
}
.c-menu__inner {
  position: relative;
  padding: 17.96875vw 0 10.9375vw;
  background-color: #fff;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.is-menu-slidein .c-menu__inner {
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
}
.c-menu__close-btn {
  position: absolute;
  top: 3.90625vw;
  right: 1.5625vw;
  width: 14.0625vw;
  cursor: pointer;
}
.c-menu__close-btn > img {
  width: 100%;
  height: auto;
}
.c-menu__list {
  margin: 0;
  padding: 0;
}
.c-menu__list > li {
  list-style-type: none;
}
.c-menu__list > li > a {
  display: block;
  padding: 0.6em;
  font-size: 4.375vw;
  text-align: center;
}

.c-page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s 0s, visibility 0s ease 0.5s;
  transition: opacity 0.5s 0s, visibility 0s ease 0.5s;
}
.c-page-top.is-show {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 1;
  visibility: visible;
}
.c-page-top > a {
  display: block;
}
.c-page-top > a > img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .c-page-top > a > img {
    width: 100px;
    height: 99px;
  }
}
@media only screen and (max-width: 767px) {
  .c-page-top > a > img {
    width: 12.65625vw;
    height: 12.5vw;
  }
}

.c-mv {
  position: relative;
}
.c-mv__bg {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .c-mv__bg {
    overflow: hidden;
  }
}
.c-mv__bg > img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .c-mv__bg > img {
    width: 241.2280625vw;
    max-inline-size: none;
  }
}
@media only screen and (min-width: 768px) {
  .c-mv__scroll {
    padding-top: 6.935483871%;
  }
}
@media only screen and (max-width: 767px) {
  .c-mv__scroll {
    padding-top: 24.6875vw;
  }
}
.c-mv__scroll > p {
  position: relative;
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .c-mv__scroll > p {
    font-size: 2.5vw;
  }
}
.c-mv__scroll > p::before {
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  content: "";
  border-left: 1px solid #e50011;
}
@media only screen and (min-width: 768px) {
  .c-mv__scroll > p::before {
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .c-mv__scroll > p::before {
    height: 12.1875vw;
  }
}
.c-mv__catchcopy {
  position: absolute;
  z-index: 4;
}
@media only screen and (min-width: 768px) {
  .c-mv__catchcopy {
    top: 0;
    left: 4.0322580645%;
    padding-top: 4.8387096774%;
    width: 40.3225806452%;
  }
}
@media only screen and (max-width: 767px) {
  .c-mv__catchcopy {
    top: 8.4375vw;
    left: 50%;
    width: 87.5vw;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.c-mv__catchcopy > img {
  width: 100%;
  height: auto;
}
.c-mv__main {
  position: absolute;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .c-mv__main {
    top: 0;
    right: 1.2096774194%;
    padding-top: 2.6612903226%;
    width: 52.7419354839%;
  }
}
@media only screen and (max-width: 767px) {
  .c-mv__main {
    top: 49.21875vw;
    left: 28.90625vw;
    width: 68.28125vw;
  }
}
.c-mv__main > img {
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .c-kv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 1.6129032258%;
  }
}
@media only screen and (max-width: 767px) {
  .c-kv {
    padding: 0 6.25vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-kv__img {
    width: 46.6666666667%;
  }
}
@media only screen and (max-width: 767px) {
  .c-kv__img {
    width: 100%;
  }
}
.c-kv__img > img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .c-kv__lead {
    width: 46.6666666667%;
  }
}
@media only screen and (max-width: 767px) {
  .c-kv__lead {
    margin-top: 7.8125vw;
    width: 100%;
  }
}
.c-kv__lead > img {
  width: 100%;
  height: auto;
}

.c-heading {
  text-align: center;
}
.c-heading__icon {
  display: block;
  line-height: 1;
}
.c-heading__icon > img {
  margin: 0 auto;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .c-heading__icon > img {
    width: 7.9032258065%;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading__icon > img {
    width: 15.3125vw;
  }
}
.c-heading__text {
  display: block;
  margin-top: 0;
  font-size: 40px;
  line-height: 1.7;
  font-weight: normal;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-heading__text {
    font-size: 3.2258064516vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading__text {
    font-size: 6.25vw;
  }
}
.c-heading__ruby {
  display: block;
  font-size: 18px;
  color: #e50011;
  line-height: 1.7;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-heading__ruby {
    font-size: 1.4516129032vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading__ruby {
    font-size: 2.8125vw;
  }
}

.c-commitment__img > img {
  width: 100%;
  height: auto;
}
.c-commitment__heading {
  text-align: center;
  font-size: 32px;
  color: #fff;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-commitment__heading {
    margin-top: 6%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-commitment__heading {
    font-size: 2.5806451613vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-commitment__heading {
    margin-top: 6.25vw;
    font-size: 5vw;
  }
}
.c-commitment__heading::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_egg_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.3125em;
  vertical-align: middle;
  -webkit-transform: translate(0, -5%);
          transform: translate(0, -5%);
}
@media only screen and (min-width: 768px) {
  .c-commitment__heading::before {
    width: 6%;
    padding-top: 7.8%;
  }
}
@media only screen and (max-width: 767px) {
  .c-commitment__heading::before {
    width: 4.6875vw;
    padding-top: 6.09375vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-commitment__body {
    margin-top: 1.6%;
    padding-bottom: 9%;
  }
}
@media only screen and (max-width: 767px) {
  .c-commitment__body {
    margin-top: 3.125vw;
    padding-bottom: 7.8125vw;
  }
}
.c-commitment__body > p {
  font-size: 18px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-commitment__body > p {
    font-size: 1.4516129032vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-commitment__body > p {
    font-size: 3.90625vw;
  }
}

.c-effortss__img > img {
  width: 100%;
  height: auto;
}
.c-effortss__text {
  position: relative;
  background-color: #fff;
  border-bottom: 4px solid #e50011;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 768px) {
  .c-effortss__text {
    width: 79.0322580645%;
    margin-top: -9.1935483871%;
    padding-top: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .c-effortss__text {
    width: 76.5625vw;
    margin-top: -12.5vw;
    padding-top: 23.4375vw;
  }
}
.c-effortss__text--left {
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .c-effortss__text--left {
    margin-left: 5.4838709677%;
  }
}
@media only screen and (max-width: 767px) {
  .c-effortss__text--left {
    margin-left: auto;
  }
}
.c-effortss__text--right {
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .c-effortss__text--right {
    margin-right: 5.4838709677%;
  }
}
@media only screen and (max-width: 767px) {
  .c-effortss__text--right {
    margin-right: auto;
  }
}
.c-effortss__text > p {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 100%;
  font-size: 28px;
  color: #e50011;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-effortss__text > p {
    font-size: 2.2580645161vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-effortss__text > p {
    font-size: 4.375vw;
  }
}

@media only screen and (min-width: 768px) {
  .c-products--01 {
    width: 45.1612903226%;
  }
}
@media only screen and (max-width: 767px) {
  .c-products--01 {
    margin-top: 7.8125vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-products--02, .c-products--03 {
    width: 40.3225806452%;
  }
}
@media only screen and (max-width: 767px) {
  .c-products--02, .c-products--03 {
    margin-top: 6.25vw;
  }
}
.c-products__img {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .c-products--01 .c-products__img {
    padding-top: 67.8571428571%;
  }
}
@media only screen and (min-width: 768px) {
  .c-products--02 .c-products__img, .c-products--03 .c-products__img {
    padding-top: 40%;
  }
}
.c-products__img > img {
  height: auto;
  max-inline-size: none;
}
@media only screen and (min-width: 768px) {
  .c-products__img > img {
    position: absolute;
  }
}
@media only screen and (min-width: 768px) {
  .c-products--01 .c-products__img > img {
    top: 0;
    left: 4.4642857143%;
    width: 102.6785714286%;
  }
}
@media only screen and (max-width: 767px) {
  .c-products--01 .c-products__img > img {
    width: 89.53125vw;
    -webkit-transform: translate(-1.3%, 0);
            transform: translate(-1.3%, 0);
  }
}
@media only screen and (min-width: 768px) {
  .c-products--02 .c-products__img > img {
    top: 0;
    left: -1.6%;
    width: 103.6%;
  }
}
@media only screen and (max-width: 767px) {
  .c-products--02 .c-products__img > img {
    margin: 0 auto;
    width: 80.9375vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-products--03 .c-products__img > img {
    top: -8.2%;
    top: 0;
    left: 25.4%;
    width: 69.2%;
    -webkit-transform: translate(0, -18.8940092166%);
            transform: translate(0, -18.8940092166%);
  }
}
@media only screen and (max-width: 767px) {
  .c-products--03 .c-products__img > img {
    margin: 0 auto;
    width: 54.0625vw;
    -webkit-transform: translate(10%, 0);
            transform: translate(10%, 0);
  }
}
.c-products__heading {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  border-bottom: 1px solid #e50011;
}
@media only screen and (max-width: 767px) {
  .c-products__heading {
    padding-bottom: 3.28125vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-products--01 .c-products__heading {
    padding-bottom: 1.7857142857%;
  }
}
@media only screen and (min-width: 768px) {
  .c-products--02 .c-products__heading, .c-products--03 .c-products__heading {
    padding-bottom: 2%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-products__heading {
    font-size: 2.2580645161vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-products__heading {
    margin-top: 4.6875vw;
    font-size: 4.6875vw;
  }
}
.c-products__heading::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_egg_03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.3571428571em;
  vertical-align: middle;
  -webkit-transform: translate(0, -5%);
          transform: translate(0, -5%);
}
@media only screen and (min-width: 768px) {
  .c-products__heading::before {
    width: 6%;
    padding-top: 7.8%;
  }
}
@media only screen and (max-width: 767px) {
  .c-products__heading::before {
    width: 4.6875vw;
    padding-top: 6.09375vw;
  }
}
.c-products__text {
  margin-top: 0.8em;
  text-align: center;
  font-size: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-products__text {
    font-size: 1.2903225806vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-products__text {
    font-size: 4.0625vw;
  }
}
.c-products__text > span {
  font-size: 13px;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-products__text > span {
    font-size: 1.0483870968vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-products__text > span {
    font-size: 3.4375vw;
  }
}


.c-outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .c-outline {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .c-outline__map {
    margin: 1.5em 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-outline__map {
    width: 100%;
    margin: 2.65625vw 0;
  }
}
.c-outline > dt {
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-outline > dt {
    padding: 0.65em 0;
    width: 27.7777777778%;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-outline > dt {
    font-size: 1.2903225806vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-outline > dt {
    font-size: 4.0625vw;
    line-height: 2.35;
    padding: 0.85em 0 0;
  }
}
.c-outline > dd {
  border-bottom: 1px solid #ccc;
}
@media only screen and (min-width: 768px) {
  .c-outline > dd {
    padding: 0.65em 0;
    width: 72.2222222222%;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-outline > dd {
    font-size: 1.2903225806vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-outline > dd {
    font-size: 4.0625vw;
    line-height: 2.35;
    padding: 0 0 0.85em;
  }
}
@media only screen and (min-width: 768px) {
  .c-outline > dd > dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .c-outline > dd > dl > dt {
    width: 9.5em;
  }
}
@media only screen and (max-width: 767px) {
  .c-outline > dd > dl > dt {
    line-height: 2.35;
  }
}
@media only screen and (min-width: 768px) {
  .c-outline > dd > dl > dd {
    width: calc(100% - 9.5em);
  }
}
@media only screen and (max-width: 767px) {
  .c-outline > dd > dl > dd {
    line-height: 2.35;
  }
}

.c-philosophy {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .c-philosophy {
    padding-top: 8.3333333333%;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy {
    padding: 6.25vw 6.25vw 0;
  }
}
.c-philosophy__bg {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 768px) {
  .c-philosophy__bg {
    width: 76.6666666667%;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__bg {
    width: 100%;
    height: 139.6875vw;
    overflow: hidden;
  }
}
.c-philosophy__bg > img {
  height: auto;
}
@media only screen and (min-width: 768px) {
  .c-philosophy__bg > img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__bg > img {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 215.625%;
    max-inline-size: none;
  }
}
.c-philosophy__list {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-philosophy__list > li {
  list-style-type: none;
  background-color: #fff;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li {
    padding: 2.3333333333% 0 3.3333333333%;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__list > li {
    padding-top: 5.46875vw;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(odd) {
    width: 33.3333333333%;
  }
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(even) {
    width: 40.4166666667%;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__list > li:nth-child(even) {
    padding-bottom: 7.8125vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(n+3) {
    margin-top: 0.5%;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__list > li:nth-child(3) {
    margin-top: 1.5625vw;
  }
}
.c-philosophy__heading {
  position: relative;
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-philosophy__heading {
    font-size: 1.935483871vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__heading {
    font-size: 4.375vw;
    padding-left: 10.15625vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(odd) .c-philosophy__heading {
    padding-left: 17.0854271357%;
  }
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(even) .c-philosophy__heading {
    padding-left: 14.0206185567%;
  }
}
.c-philosophy__heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  border-top: 5px solid #e50011;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (max-width: 767px) {
  .c-philosophy__heading::before {
    width: 7.8125vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(odd) .c-philosophy__heading::before {
    width: 12.5628140704%;
  }
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(even) .c-philosophy__heading::before {
    width: 10.3092783505%;
  }
}
.c-philosophy__heading > span {
  color: #e50011;
}
.c-philosophy__body {
  font-size: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .c-philosophy__body {
    font-size: 1.2903225806vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__body {
    padding-left: 10.15625vw;
    font-size: 3.90625vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(odd) .c-philosophy__body {
    margin-top: 5.0251256281%;
    padding-left: 17.0854271357%;
  }
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(even) .c-philosophy__body {
    margin-top: 4.1237113402%;
    padding-left: 14.0206185567%;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__list > li:nth-child(1) .c-philosophy__body {
    margin-top: 2.96875vw;
  }
}
.c-philosophy__list > li:nth-child(1) .c-philosophy__body > img {
  height: auto;
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(1) .c-philosophy__body > img {
    width: 81.8181818182%;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__list > li:nth-child(1) .c-philosophy__body > img {
    width: 42.1875vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__list > li:nth-child(2) .c-philosophy__body {
    margin-top: 2.96875vw;
  }
}
.c-philosophy__list > li:nth-child(2) .c-philosophy__body > img {
  height: auto;
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(2) .c-philosophy__body > img {
    width: 57.3141486811%;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__list > li:nth-child(2) .c-philosophy__body > img {
    width: 37.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-philosophy__list > li:nth-child(3) .c-philosophy__body, .c-philosophy__list > li:nth-child(4) .c-philosophy__body {
    margin-top: 1.25vw;
  }
}
.c-philosophy__list > li:nth-child(3) .c-philosophy__body > ol, .c-philosophy__list > li:nth-child(4) .c-philosophy__body > ol {
  padding-left: 1.1em;
}
@media only screen and (min-width: 768px) {
  .c-philosophy__list > li:nth-child(3) .c-philosophy__body > ol > li, .c-philosophy__list > li:nth-child(4) .c-philosophy__body > ol > li {
    line-height: 2;
  }
}

.c-related-sites {
  list-style-type: none;
}
@media only screen and (min-width: 768px) {
  .c-related-sites {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 6.6666666667% 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-related-sites {
    padding: 6.25vw 6.25vw 10.15625vw;
  }
}
@media only screen and (min-width: 768px) {
  .c-related-sites > li {
    width: 31.6666666667%;
  }
}
@media only screen and (max-width: 767px) {
  .c-related-sites > li:nth-child(n+2) {
    margin-top: 6.25vw;
  }
}
.c-related-sites > li > a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-related-sites > li > a:hover {
  opacity: 0.6;
}
.c-related-sites > li > a > img {
  width: 100%;
  height: auto;
}

.p-atf {
  position: relative;
  z-index: 10;
  background-color: #fff;
}
.p-atf__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.p-atf__mv {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-atf__kv {
    margin-top: 3.2258064516%;
    padding-bottom: 3.2258064516%;
  }
}
@media only screen and (max-width: 767px) {
  .p-atf__kv {
    margin-top: 4.6875vw;
    padding-bottom: 9.375vw;
  }
}

.p-commitment {
  position: relative;
  z-index: 9;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-commitment {
    margin-top: -14px;
    padding-top: 94px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .p-commitment {
    margin-top: calc(6.4516129032% - 94px);
  }
}
@media only screen and (max-width: 767px) {
  .p-commitment {
    margin-top: calc(0px - 15.625vw);
    padding-top: 15.625vw;
  }
}
.p-commitment__inner {
  max-width: 1240px;
  margin: 0 auto;
  background-color: #f4f4f4;
}
@media only screen and (min-width: 768px) {
  .p-commitment__header {
    padding-top: 2.4193548387%;
  }
}
@media only screen and (max-width: 767px) {
  .p-commitment__header {
    padding-top: 9.375vw;
  }
}
@media only screen and (min-width: 768px) {
  .p-commitment__body {
    margin-top: 2.5806451613%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), color-stop(34%, #f4f4f4), color-stop(34%, #e50011), to(#e50011));
    background: linear-gradient(180deg, #f4f4f4 0%, #f4f4f4 34%, #e50011 34%, #e50011 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-commitment__body {
    margin-top: 8.75vw;
    background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), color-stop(11.94%, #f4f4f4), color-stop(11.94%, #e50011), to(#e50011));
    background: linear-gradient(180deg, #f4f4f4 0%, #f4f4f4 11.94%, #e50011 11.94%, #e50011 100%);
  }
}
@media only screen and (min-width: 768px) {
  .p-commitment__body > div {
    width: 40.3225806452%;
  }
}
@media only screen and (max-width: 767px) {
  .p-commitment__body > div {
    padding: 0 6.25vw 3.125vw;
  }
}

.p-efforts {
  position: relative;
  z-index: 8;
}
@media only screen and (min-width: 768px) {
  .p-efforts {
    margin-top: -67px;
    padding-top: 94px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(61%, #fff), color-stop(61%, #f7f5f0), to(#f7f5f0));
    background: linear-gradient(180deg, #fff 0%, #fff 61%, #f7f5f0 61%, #f7f5f0 100%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .p-efforts {
    margin-top: calc(2.1774193548% - 94px);
  }
}
@media only screen and (max-width: 767px) {
  .p-efforts {
    margin-top: calc(0px - 15.625vw);
    padding-top: 15.625vw;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(38.8%, #fff), color-stop(38.8%, #f7f5f0), to(#f7f5f0));
    background: linear-gradient(180deg, #fff 0%, #fff 38.8%, #f7f5f0 38.8%, #f7f5f0 100%);
  }
}
.p-efforts__inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .p-efforts__inner {
    padding-bottom: 1.6129032258%;
  }
}
@media only screen and (min-width: 768px) {
  .p-efforts__header {
    padding-top: 2.4193548387%;
  }
}
@media only screen and (max-width: 767px) {
  .p-efforts__header {
    padding-top: 9.375vw;
  }
}
@media only screen and (min-width: 768px) {
  .p-efforts__body {
    margin-top: 2.5806451613%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .p-efforts__body {
    margin-top: 8.125vw;
  }
}
@media only screen and (min-width: 768px) {
  .p-efforts__body > div {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .p-efforts__body > div {
    padding: 0 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-efforts__body > div:nth-child(2) {
    margin-top: 7.8125vw;
  }
}

.p-products {
  position: relative;
  z-index: 7;
  background-color: #f7f5f0;
  background-image: url(../img/bg_01.png);
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .p-products {
    margin-top: -94px;
    padding-top: 94px;
    background-position: center bottom;
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) {
  .p-products {
    margin-top: calc(5px - 15.625vw);
    padding-top: 15.625vw;
    background-position: 66% 106%;
    background-size: 136%;
  }
}
.p-products__inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .p-products__header {
    padding-top: 2.4193548387%;
  }
}
@media only screen and (max-width: 767px) {
  .p-products__header {
    padding-top: 9.375vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-products__body {
    padding: 0 6.25vw;
  }
}
.p-products__text {
  text-align: center;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .p-products__text {
    margin-top: 1.8548387097%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .p-products__text {
    font-size: 1.4516129032vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-products__text {
    margin-top: 2.8125vw;
    font-size: 3.90625vw;
  }
}
@media only screen and (min-width: 768px) {
  .p-products__products {
    padding-top: 2.4193548387%;
    padding-bottom: 25.8064516129%;
  }
}
@media only screen and (max-width: 767px) {
  .p-products__products {
    padding-bottom: 27.34375vw;
  }
}
@media only screen and (min-width: 768px) {
  .p-products__products-row {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .p-products__products-row--01 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .p-products__products-row--02 {
    margin-top: 5.1612903226%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.p-outline {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-outline {
    z-index: 8;
    margin-top: -251px;
    padding-top: 94px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .p-outline {
    margin-top: calc(-12.6612903226% - 94px);
  }
}
@media only screen and (max-width: 767px) {
  .p-outline {
    z-index: 6;
    margin-top: calc(0px - 15.625vw);
    padding-top: 15.625vw;
    background-color: #fff;
  }
}
.p-outline__inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .p-outline__inner {
    width: 96.7741935484%;
  }
}
@media only screen and (min-width: 768px) {
  .p-outline__header {
    padding-top: 4.5833333333%;
  }
}
@media only screen and (max-width: 767px) {
  .p-outline__header {
    padding-top: 8.125vw;
  }
}
@media only screen and (min-width: 768px) {
  .p-outline__body {
    margin: 2.6666666667% auto 0;
    width: 90%;
    padding-bottom: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .p-outline__body {
    margin-top: 4.6875vw;
    padding: 0 6.25vw 12.5vw;
  }
}

.p-philosophy {
  position: relative;
  z-index: 7;
}
@media only screen and (min-width: 768px) {
  .p-philosophy {
    margin-top: -94px;
    padding-top: 94px;
  }
}
@media only screen and (max-width: 767px) {
  .p-philosophy {
    margin-top: calc(0px - 15.625vw);
    padding-top: 15.625vw;
  }
}
.p-philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .p-philosophy__inner {
    width: 96.7741935484%;
  }
}
@media only screen and (min-width: 768px) {
  .p-philosophy__header {
    padding-top: 4.1666666667%;
  }
}
@media only screen and (max-width: 767px) {
  .p-philosophy__header {
    padding-top: 7.8125vw;
  }
}
@media only screen and (min-width: 768px) {
  .p-philosophy__body {
    margin: 1.6666666667% auto 0;
  }
}
.p-philosophy__text {
  text-align: center;
  font-size: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .p-philosophy__text {
    font-size: 1.935483871vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-philosophy__text {
    margin-top: 2.8125vw;
    font-size: 4.6875vw;
  }
}
@media only screen and (min-width: 768px) {
  .p-philosophy__philosophy {
    margin-top: 3.1666666667%;
  }
}
@media only screen and (max-width: 767px) {
  .p-philosophy__philosophy {
    margin-top: 4.21875vw;
  }
}

.p-related-sites {
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-related-sites {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .p-related-sites {
    margin-top: 12.5vw;
  }
}
.p-related-sites__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .p-related-sites__inner {
    width: 96.7741935484%;
  }
}

@media only screen and (max-width: 767px) {
  .u-show-pc {
    display: none !important;
  }
}

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