@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* basic - foundation
--------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  text-size-adjust: 100%;
}

body {
  width: 100vw;
  min-height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-size: 3.6vw;
  font-feature-settings: "palt" 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  vertical-align: baseline;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  body {
    font-size: 1.6rem;
    width: 100%;
    min-width: 1000px;
  }
}

address {
  font-style: normal;
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-out;
}

@media screen and (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 300;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
iframe,
video {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

video {
  display: block;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=button], input[type=submit] {
  border-radius: inherit;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
select {
  text-transform: none;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

pre {
  white-space: -moz-pre-wrap;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* basic - animation
--------------------------------------------------------- */
@keyframes PageFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* container - layout
--------------------------------------------------------- */
.l-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .l-container {
    width: calc(100% - 8vw);
  }
}

/* footer - layout
--------------------------------------------------------- */
.l-footer {
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 8vw;
}
@media screen and (min-width: 751px) {
  .l-footer {
    margin-top: 75px;
  }
}

.l-footer-logo {
  text-align: center;
  margin-bottom: 11.3333333333vw;
}
@media screen and (min-width: 751px) {
  .l-footer-logo {
    margin-bottom: 95px;
  }
}
.l-footer-logo img {
  width: 17.6vw;
}
@media screen and (min-width: 751px) {
  .l-footer-logo img {
    width: 130px;
  }
}

.l-footer-text {
  font-size: 2.4vw;
  margin-bottom: 1em;
}
@media screen and (min-width: 751px) {
  .l-footer-text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.l-footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 9.3333333333vw;
  font-size: 2.4vw;
  color: #fff;
  background-color: #124734;
}
@media screen and (min-width: 751px) {
  .l-footer-copyright {
    height: 70px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* header - layout
--------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9000;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  .l-header {
    position: static;
  }
}

@media screen and (min-width: 751px) {
  .l-header__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
  }
}
@media screen and (max-width: 750px) {
  .l-header__inner:after {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
}

@media screen and (max-width: 750px) {
  .nav--is-open .l-header__inner:after {
    opacity: 0.8;
    visibility: visible;
  }
}

/* --- l-header__nav --- */
@media screen and (max-width: 750px) {
  .l-header__nav {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 200;
    font-size: 2.6666666667vw;
    color: #006835;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.6s;
    border-top: solid 13.4666666667vw #006835;
  }
}
.l-header__nav .c-nav {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 751px) {
  .l-header__nav .c-nav {
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-header__nav .c-nav .c-nav__item {
  font-weight: 600;
  font-size: 4vw;
  white-space: nowrap;
  line-height: 1.25;
}
@media screen and (max-width: 750px) {
  .l-header__nav .c-nav .c-nav__item {
    border-bottom: 1px solid #006835;
  }
}
@media screen and (min-width: 751px) {
  .l-header__nav .c-nav .c-nav__item {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    border-right: 1px solid #006835;
  }
}
.l-header__nav .c-nav .c-nav__link {
  color: #006835;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .l-header__nav .c-nav .c-nav__link {
    padding: 0 4vw;
    height: 13.3333333333vw;
  }
}
@media screen and (min-width: 751px) {
  .l-header__nav .c-nav .c-nav__link {
    min-width: 154px;
    height: 60px;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .l-header__nav .c-nav .c-nav__link::after {
    display: inline-block;
    content: "";
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2023%2026%22%3E%3Cpath%20d%3D%22M0%204.5V0l23%2013L0%2026v-4.5l15.5-8.5L0%204.5Z%22%20fill%3D%22%23006835%22/%3E%3C/svg%3E") center/contain no-repeat;
    width: 3.0666666667vw;
    height: 3.4666666667vw;
  }
}
@media screen and (min-width: 751px) {
  .l-header__nav .c-nav .c-nav__item:first-of-type .c-nav__link {
    min-width: 70px;
    border-left: 1px solid #006835;
  }
}

@media screen and (max-width: 750px) {
  .nav--is-open .l-header__nav {
    transform: translateY(0%);
    opacity: 1;
  }
}

/* --- l-header-menu-button --- */
.l-header-menu-button {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  background-color: #006835;
  z-index: 9000;
}
@media screen and (min-width: 751px) {
  .l-header-menu-button {
    display: none;
  }
}
.l-header-menu-button i {
  display: block;
  width: 9.0666666667vw;
  height: 0.6666666667vw;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header-menu-button i:before, .l-header-menu-button i:after {
  content: "";
  display: block;
  width: 9.0666666667vw;
  height: 0.6666666667vw;
  background: #fff;
  position: absolute;
  transform: rotate(0deg);
  transition: transform 0.25s ease-out;
}
.l-header-menu-button i:before {
  transform: translateX(0) translateY(-3.2vw);
}
.l-header-menu-button i:after {
  transform: translateX(0) translateY(3.2vw);
}

.nav--is-open .l-header-menu-button i {
  background: transparent;
}
.nav--is-open .l-header-menu-button i:before {
  background: #ffffff;
  transform: rotate(-45deg) translateY(0px);
}
.nav--is-open .l-header-menu-button i:after {
  background: #ffffff;
  transform: rotate(45deg) translateY(0px);
}

/* main - layout
--------------------------------------------------------- */
.l-main {
  width: 100%;
  display: block;
  position: relative;
  flex: 1 0 auto;
  overflow: hidden;
}

/* wrapper - layout
--------------------------------------------------------- */
.l-wrapper {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* button - component - object
--------------------------------------------------------- */
.c-button {
  display: inline-block;
  touch-action: manipulation;
  cursor: pointer;
  min-width: 190px;
  height: 13.3333333333vw;
  line-height: 13.3333333333vw;
  outline: none;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  padding: 0 0.8em;
  box-sizing: border-box;
  background-color: #F7F7F7;
  border-radius: 1.3333333333vw;
  font-weight: bold;
  font-size: 4vw;
}
@media screen and (min-width: 751px) {
  .c-button {
    border-radius: 10px;
    height: 70px;
    line-height: 70px;
    font-size: 20px;
    font-size: 2rem;
  }
}
.c-button:hover {
  opacity: 0.7;
}
.c-button.disabled, .c-button[disabled], fieldset[disabled] .c-button {
  cursor: not-allowed;
  opacity: 0.7;
}

.c-button--primary {
  background-color: #719e42;
  color: #ffffff;
}

.c-button--secondary {
  background-color: #124734;
  color: #ffffff;
}

.c-button--arrow-right {
  position: relative;
  padding: 0 2em 0 0.8em;
}
.c-button--arrow-right:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2023%2026%22%3E%3Cpath%20d%3D%22M0%204.5V0l23%2013L0%2026v-4.5l15.5-8.5L0%204.5Z%22%20fill%3D%22%23ffffff%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .c-button--arrow-right:after {
    width: 3.0666666667vw;
    height: 3.4666666667vw;
  }
}
@media screen and (min-width: 751px) {
  .c-button--arrow-right:after {
    width: 16px;
    height: 20px;
  }
}

/* link - component - object
--------------------------------------------------------- */
.c-link {
  color: #00a84f;
  text-decoration: underline;
  font-weight: 600;
}
.c-link:hover {
  text-decoration: none;
}

.c-link--alpha:hover {
  opacity: 0.7;
}

/* scroll - component - object
--------------------------------------------------------- */
.c-scroll {
  position: absolute;
  display: block;
  overflow: hidden;
  height: 11.4666666667vw;
  width: 11.4666666667vw;
  background: #00a84f;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  position: absolute;
  right: 4vw;
  top: 1.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 751px) {
  .c-scroll {
    width: 86px;
    height: 86px;
    right: 30px;
    top: 10px;
  }
}
.c-scroll:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg id='a' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 25'%3E%3Cdefs%3E%3Cstyle%3E.b%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='b' points='21 0 42 20.994 37.993 25 21 8.013 4.007 25 0 20.994 21 0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  width: 5.6vw;
  height: 3.3333333333vw;
}
@media screen and (min-width: 751px) {
  .c-scroll:before {
    width: 42px;
    height: 25px;
  }
}

/* home - project - object
--------------------------------------------------------- */
/* --- hero --- */
.p-home-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 144vw;
  background-image: url("../img/hero-bg@sm.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 1.0666666667vw;
}
@media screen and (min-width: 751px) {
  .p-home-hero {
    background-image: image-set(url(../img/hero-bg.png) 1x, url(../img/hero-bg@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/hero-bg.png) 1x, url(../img/hero-bg@2x.png) 2x);
    height: 1000px;
    margin-bottom: 56px;
    background-size: cover;
  }
}
.p-home-hero-title {
  text-align: center;
}
.p-home-hero-title__main {
  width: 61.3333333333vw;
  height: 61.3333333333vw;
  margin: 10.1333333333vw auto 8.8vw;
}
@media screen and (min-width: 751px) {
  .p-home-hero-title__main {
    width: 460px;
    height: 460px;
    margin-top: 125px;
    margin-bottom: 95px;
  }
}
.p-home-hero-title__sub {
  color: #ffffff;
  font-size: 9.3333333333vw;
  font-weight: 800;
  line-height: 1.2;
}
.p-home-hero-title__sub::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.2) * 0.5em);
  content: "";
}
.p-home-hero-title__sub::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.2) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  .p-home-hero-title__sub {
    font-size: 70px;
    font-size: 7rem;
  }
}

/* --- intro --- */
.p-home-intro {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-home-intro {
    margin-bottom: 150px;
  }
}
.p-home-intro-title {
  text-align: center;
  margin-bottom: 8.5333333333vw;
}
@media screen and (min-width: 751px) {
  .p-home-intro-title {
    margin-bottom: 64px;
  }
}
.p-home-intro-title__main {
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 751px) {
  .p-home-intro-title__main {
    margin-bottom: 24px;
  }
}
.p-home-intro-title__sub {
  font-size: 5.3333333333vw;
  font-weight: 700;
}
.p-home-intro-title__sub::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
.p-home-intro-title__sub::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  .p-home-intro-title__sub {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
.p-home-intro-text {
  font-size: 3.6vw;
  line-height: 2;
  margin-top: 1em;
}
@media screen and (min-width: 751px) {
  .p-home-intro-text {
    font-size: 20px;
    font-size: 2rem;
    margin-top: 2em;
  }
}

/* --- project-team --- */
.p-home-project-team-title {
  text-align: center;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-title {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 750px) {
  .p-home-project-team-title {
    padding-bottom: 4.2666666667vw;
    border-bottom: 1px solid #000000;
  }
}
.p-home-project-team-title__main {
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-title__main {
    flex: 50%;
    margin-bottom: 16px;
    border-bottom: 1px solid #000000;
    padding-bottom: 16px;
  }
}
.p-home-project-team-title__sub {
  font-size: 4.6666666667vw;
  font-weight: 700;
}
.p-home-project-team-title__sub::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
.p-home-project-team-title__sub::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  .p-home-project-team-title__sub {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
.p-home-project-team-list {
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-list {
    margin-bottom: 100px;
  }
}
.p-home-project-team-item {
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item {
    display: grid;
    grid-template-columns: 415px 415px;
    grid-template-rows: auto max-content auto;
    gap: 0 80px;
    margin-top: 50px;
  }
}
.p-home-project-team-item:not(:last-child) {
  border-bottom: 1px solid #000;
  padding-bottom: 9.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item:not(:last-child) {
    padding-bottom: 50px;
  }
}
.p-home-project-team-item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .p-home-project-team-item__main {
    margin-bottom: 9.3333333333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__main {
    grid-column: 1;
    grid-row: 1;
  }
}
@media screen and (max-width: 750px) {
  .p-home-project-team-item__sub {
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__sub {
    grid-column: 2;
    grid-row: 1/-1;
  }
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__button {
    grid-column: 1;
    grid-row: 2;
    margin-top: 48px;
  }
}
.p-home-project-team-item__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__header {
    margin-bottom: 20px;
  }
}
.p-home-project-team-item__sub-title {
  font-size: 3.6vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__sub-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-home-project-team-item__main-title {
  font-weight: 500;
  font-size: 6.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__main-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.p-home-project-team-item__logo {
  margin-left: auto;
  z-index: -1;
}
.p-home-project-team-item__logo--shunpachi {
  width: 24.5333333333vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__logo--shunpachi {
    width: 138px;
  }
}
.p-home-project-team-item__logo--ichiba-n {
  width: 13.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__logo--ichiba-n {
    width: 82px;
    margin-top: -2.8rem;
  }
}
.p-home-project-team-item__logo--ilecole {
  width: 28.8vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__logo--ilecole {
    width: 216px;
    margin-top: -2.8rem;
  }
}
.p-home-project-team-item__logo--curryscramble {
  width: 23.7333333333vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__logo--curryscramble {
    width: 144px;
    margin-top: 10px;
  }
}
.p-home-project-team-item__image {
  margin-top: 4vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__image {
    margin-top: 35px;
  }
}
.p-home-project-team-item__image:first-child {
  margin-top: 0;
}
.p-home-project-team-item__access {
  line-height: 1.9;
  font-size: 3.2vw;
  margin-top: 4.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__access {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 25px;
  }
}
.p-home-project-team-item__lead {
  line-height: 2;
  font-size: 3.6vw;
  font-weight: 600;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__lead {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-home-project-team-item__text {
  line-height: 2;
  font-size: 3.6vw;
}
@media screen and (min-width: 751px) {
  .p-home-project-team-item__text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-home-project-team-item__button .c-button {
  width: 100%;
}
.p-home-project-team-item__button--sampling .c-button {
  background-color: #124734;
}

.p-home-supporting-companies {
  width: calc(100% - 8vw);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 751px) {
  .p-home-supporting-companies {
    max-width: 910px;
  }
}
.p-home-supporting-companies__inner {
  border: 1px solid #000;
  padding: 3.3333333333vw 7.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-home-supporting-companies__inner {
    padding: 20px 35px;
  }
}
.p-home-supporting-companies__text {
  line-height: 1.35;
  font-size: 3.2vw;
}
@media screen and (min-width: 751px) {
  .p-home-supporting-companies__text {
    font-size: 20px;
    font-size: 2rem;
    display: flex;
  }
}
.p-home-supporting-companies__text dt {
  font-weight: 600;
}

/* project - project - object
--------------------------------------------------------- */
.p-project-bento {
  padding-top: 16.2666666667vw;
  margin-bottom: 22.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-project-bento {
    padding-top: 20px;
    margin-bottom: 140px;
  }
}
.p-project-bento-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 77.0666666667vw;
  margin-bottom: 6vw;
}
@media screen and (min-width: 751px) {
  .p-project-bento-title {
    width: 786px;
    margin-bottom: 30px;
  }
}
.p-project-bento-summary {
  font-size: 3.6vw;
  line-height: 2;
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-project-bento-summary {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 60px;
  }
}
.p-project-bento-main {
  position: relative;
  background-image: url("../img/project-bg-check@sm.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 6.6666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-project-bento-main {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    background-image: image-set(url(../img/project-bg-check.png) 1x, url(../img/project-bg-check@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/project-bg-check.png) 1x, url(../img/project-bg-check@2x.png) 2x);
    background-position: left bottom;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  .p-project-bento-main__lead {
    width: calc(100% - 8vw);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__lead {
    margin-left: 35px;
  }
}
.p-project-bento-main__bento {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__bento {
    position: absolute;
    top: -50px;
    right: -24px;
    z-index: 1;
  }
}
.p-project-bento-main__details {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-project-bento-main__details {
    width: calc(100% - 8vw);
    margin-right: auto;
    margin-left: auto;
    margin-top: -7.3333333333vw;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__details {
    margin-top: 350px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__sponge {
    position: absolute;
    top: 136px;
    left: 35px;
  }
}
.p-project-bento-main__period {
  margin-bottom: 4.6666666667vw;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .p-project-bento-main__period {
    width: calc(100% - 8vw);
    margin-right: auto;
    margin-top: -0.4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__period {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  .p-project-bento-main__period__date {
    width: 54vw;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__period__date {
    margin-right: 20px;
  }
}
.p-project-bento-main__period__notes {
  font-size: 2.6666666667vw;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__period__notes {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-project-bento-main__store {
  width: calc(100% - 8vw);
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 4.6666666667vw;
  padding-bottom: 4.6666666667vw;
}
@media screen and (max-width: 750px) {
  .p-project-bento-main__store {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__store {
    width: 910px;
    padding-top: 15px;
    padding-bottom: 30px;
  }
}
.p-project-bento-main__store__title {
  font-size: 3.6vw;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__store__title {
    font-size: 22px;
    font-size: 2.2rem;
    text-align: center;
  }
}
.p-project-bento-main__store__list {
  font-size: 3.6vw;
  margin-bottom: 4.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__store__list {
    font-size: 18px;
    font-size: 1.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 0.5em;
    margin-bottom: 20px;
  }
}
.p-project-bento-main__store__list > li {
  position: relative;
  box-sizing: border-box;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.p-project-bento-main__store__list > li:not(:last-child) {
  margin-bottom: 0.5em;
}
.p-project-bento-main__store__list > li:before {
  content: "★";
  margin-right: 0.5em;
  width: 1em;
  margin-right: 0.5em;
  text-align: left;
}
.p-project-bento-main__store__list > li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.p-project-bento-main__store__list > li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.p-project-bento-main__store__list > li:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}
.p-project-bento-main__store__list > li:nth-child(4) {
  grid-column: 1;
  grid-row: 4;
}
.p-project-bento-main__store__list > li:nth-child(5) {
  grid-column: 2;
  grid-row: 1/span 2;
}
.p-project-bento-main__store__list > li:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__store__block {
    display: flex;
  }
}
.p-project-bento-main__store__notes {
  font-size: 2.6666666667vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__store__notes {
    font-size: 18px;
    font-size: 1.8rem;
    margin-right: 1em;
    margin-bottom: 0;
  }
}
.p-project-bento-main__store__link .c-link {
  font-size: 3.6vw;
  font-weight: 400;
}
@media screen and (min-width: 751px) {
  .p-project-bento-main__store__link .c-link {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-project-bento-environment-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 8vw);
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #1ea839;
  border-radius: 2vw;
  padding: 6.9333333333vw 5.6vw 8.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-project-bento-environment-day {
    flex-direction: row;
    width: 1000px;
    border-radius: 10px;
    padding: 28px 38px;
  }
}
.p-project-bento-environment-day__title {
  width: 47.2vw;
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-project-bento-environment-day__title {
    width: 203px;
    margin-right: 38px;
    margin-bottom: 0px;
  }
}
.p-project-bento-environment-day__text {
  line-height: 1.5;
  font-size: 5.2vw;
}
@media screen and (min-width: 751px) {
  .p-project-bento-environment-day__text {
    font-size: 24px;
    font-size: 2.4rem;
    border-left: 1px solid #1ea839;
    padding-left: 38px;
  }
}

.p-project-idea-title {
  text-align: center;
  margin-bottom: 10.6666666667vw;
}
@media screen and (max-width: 750px) {
  .p-project-idea-title {
    width: 81.3333333333vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 751px) {
  .p-project-idea-title {
    margin-bottom: 30px;
  }
}
.p-project-idea-summary {
  font-size: 3.6vw;
  line-height: 2;
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-project-idea-summary {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 60px;
  }
}
.p-project-idea-main {
  margin-bottom: 22.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-project-idea-main {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 80px;
    align-items: start;
    max-width: 910px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
}
.p-project-idea-main__image {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-project-idea-main__image {
    grid-row: 1/span 3;
    margin-bottom: 0px;
  }
}
.p-project-idea-main__text {
  position: relative;
  line-height: 1.9;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-project-idea-main__text {
    grid-column: 2;
    grid-row: 1;
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 0px;
  }
}
.p-project-idea-main__text:after {
  content: "";
  display: inline-block;
  background-image: url("../img/project-idea-bg1@sm.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 93.3333333333vw;
  height: 36.8vw;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 751px) {
  .p-project-idea-main__text:after {
    background-image: image-set(url(../img/project-idea-bg1.png) 1x, url(../img/project-idea-bg1@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/project-idea-bg1.png) 1x, url(../img/project-idea-bg1@2x.png) 2x);
    width: 440px;
    height: 174px;
    left: -12px;
    top: -35px;
  }
}
@media screen and (min-width: 751px) {
  .p-project-idea-main__place {
    grid-column: 2;
    grid-row: 2;
    margin-top: 30px;
  }
}

.p-project-sampling {
  width: calc(100% - 8vw);
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #000;
  padding: 5.3333333333vw;
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-project-sampling {
    width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 80px;
    align-items: start;
    padding: 45px;
  }
}
.p-project-sampling:after {
  content: "";
  display: inline-block;
  background-image: url("../img/project-sampling-bg1@sm.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 78.2666666667vw;
  height: 33.6vw;
  position: absolute;
  top: -1.6vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 751px) {
  .p-project-sampling:after {
    background-image: image-set(url(../img/project-sampling-bg1.png) 1x, url(../img/project-sampling-bg1@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/project-sampling-bg1.png) 1x, url(../img/project-sampling-bg1@2x.png) 2x);
    width: 450px;
    height: 196px;
    top: 8px;
  }
}
.p-project-sampling-title {
  font-weight: 700;
  font-size: 6.6666666667vw;
  text-align: center;
  margin-bottom: 7.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-project-sampling-title {
    grid-column: 1;
    grid-row: 1;
    font-size: 25px;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: left;
  }
}
.p-project-sampling-subtitle {
  margin-bottom: 7.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-project-sampling-subtitle {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 35px;
  }
}
.p-project-sampling-subtitle__jp {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 751px) {
  .p-project-sampling-subtitle__jp {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-project-sampling-subtitle__en {
  font-size: 6.1333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .p-project-sampling-subtitle__en {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.p-project-sampling-text {
  line-height: 1.9;
  font-size: 3.6vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-project-sampling-text {
    grid-column: 1;
    grid-row: 3;
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 751px) {
  .p-project-sampling-image {
    grid-column: 2;
    grid-row: 2/span 3;
  }
}

/* series - project - object
--------------------------------------------------------- */
.p-series-product {
  background-image: url("../img/series-top-bg@sm.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 28.5333333333vw;
  margin-bottom: 21.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-series-product {
    background-image: image-set(url(../img/series-top-bg.png) 1x, url(../img/series-top-bg@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/series-top-bg.png) 1x, url(../img/series-top-bg@2x.png) 2x);
    padding-top: 390px;
    background-size: auto;
    margin-bottom: 100px;
  }
}
.p-series-product__inner {
  width: calc(100% - 8vw);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 751px) {
  .p-series-product__inner {
    width: 1000px;
    border: 5px solid #4f655c;
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 85px 45px 55px;
  }
}
.p-series-product-logo {
  width: 30.4vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-series-product-logo {
    width: 228px;
    margin-bottom: 70px;
  }
}
.p-series-product-title {
  text-align: center;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-series-product-title {
    margin-bottom: 35px;
  }
}
.p-series-product-title__main {
  margin-bottom: 4.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-series-product-title__main {
    margin-bottom: 15px;
  }
}
.p-series-product-title__sub {
  font-size: 4.6666666667vw;
  line-height: 1.2;
  font-weight: 700;
}
.p-series-product-title__sub::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.2) * 0.5em);
  content: "";
}
.p-series-product-title__sub::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.2) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  .p-series-product-title__sub {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.p-series-product-text {
  font-size: 3.6vw;
  line-height: 2;
  margin-bottom: 18.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-series-product-text {
    font-size: 20px;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
  }
}
.p-series-product-subtitle {
  display: flex;
  align-items: center;
  color: #006835;
  font-size: 4.6666666667vw;
  line-height: 1.25;
  font-weight: 700;
  gap: 2vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-series-product-subtitle {
    font-size: 24px;
    font-size: 2.4rem;
    gap: 18px;
    margin-bottom: 35px;
  }
}
.p-series-product-subtitle:before {
  content: "";
  display: inline-block;
  background-image: url("../img/text-head-mark-01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.4vw;
  height: 14.9333333333vw;
  flex: 0 0 auto;
}
@media screen and (min-width: 751px) {
  .p-series-product-subtitle:before {
    width: 26px;
    height: 62px;
  }
}
.p-series-product-list:not(:last-child) {
  margin-bottom: 16vw;
}
@media screen and (min-width: 751px) {
  .p-series-product-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 80px;
  }
  .p-series-product-list:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 750px) {
  .p-series-product-item:not(:last-child) {
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-series-product-item {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(50% - 40px);
  }
}
.p-series-product-item__text {
  flex: 1 1 auto;
  line-height: 2;
  font-size: 3.6vw;
}
@media screen and (min-width: 751px) {
  .p-series-product-item__text {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 751px) {
  .p-series-product-item__box {
    display: flex;
    align-items: flex-end;
    gap: 20px;
  }
}
.p-series-product-item__image {
  position: relative;
  flex: 0 0 auto;
  padding-top: 28vw;
}
@media screen and (max-width: 750px) {
  .p-series-product-item__image {
    margin-bottom: 3.3333333333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-series-product-item__image {
    padding-top: 276px;
  }
}
.p-series-product-item__image:before {
  content: "";
  display: inline-block;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 58.9333333333vw;
  min-height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
@media screen and (min-width: 751px) {
  .p-series-product-item__image:before {
    left: 0;
    max-width: 444px;
  }
}
.p-series-product-item img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .p-series-product-item--product01 img {
    width: 33.3333333333vw;
  }
}
.p-series-product-item--product01 .p-series-product-item__image:before {
  background-image: url("../img/series-image-01@sm.png");
}
@media screen and (min-width: 751px) {
  .p-series-product-item--product01 .p-series-product-item__image:before {
    background-image: image-set(url(../img/series-image-01.png) 1x, url(../img/series-image-01@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/series-image-01.png) 1x, url(../img/series-image-01@2x.png) 2x);
  }
}
@media screen and (max-width: 750px) {
  .p-series-product-item--product02 img {
    width: 23.7333333333vw;
  }
}
.p-series-product-item--product02 .p-series-product-item__image:before {
  background-image: url("../img/series-image-02@sm.png");
}
@media screen and (min-width: 751px) {
  .p-series-product-item--product02 .p-series-product-item__image:before {
    background-image: image-set(url(../img/series-image-02.png) 1x, url(../img/series-image-02@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/series-image-02.png) 1x, url(../img/series-image-02@2x.png) 2x);
  }
}
@media screen and (min-width: 751px) {
  .p-series-product-item--product02 .p-series-product-item__image {
    padding-top: 297px;
  }
}
@media screen and (min-width: 751px) {
  .p-series-product-item--product03 .p-series-product-item__image {
    padding-top: 306px;
  }
}
@media screen and (max-width: 750px) {
  .p-series-product-item--product03 .p-series-product-item__image img {
    width: 26.6666666667vw;
  }
}
.p-series-product-item--product03 .p-series-product-item__image:before {
  background-image: url("../img/series-image-03@sm.png");
}
@media screen and (min-width: 751px) {
  .p-series-product-item--product03 .p-series-product-item__image:before {
    background-image: image-set(url(../img/series-image-03.png) 1x, url(../img/series-image-03@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/series-image-03.png) 1x, url(../img/series-image-03@2x.png) 2x);
  }
}
@media screen and (min-width: 751px) {
  .p-series-product-item--product04 .p-series-product-item__image {
    padding-top: 306px;
  }
}
@media screen and (max-width: 750px) {
  .p-series-product-item--product04 .p-series-product-item__image img {
    width: 26.6666666667vw;
  }
}
.p-series-product-item--product04 .p-series-product-item__image:before {
  background-image: url("../img/series-image-04@sm.png");
}
@media screen and (min-width: 751px) {
  .p-series-product-item--product04 .p-series-product-item__image:before {
    background-image: image-set(url(../img/series-image-04.png) 1x, url(../img/series-image-04@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/series-image-04.png) 1x, url(../img/series-image-04@2x.png) 2x);
  }
}
.p-series-product-item__name {
  font-size: 3.6vw;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (min-width: 751px) {
  .p-series-product-item__name {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-series-product-item__material {
  font-weight: 400;
  display: block;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .p-series-product-item__material:before {
    content: "（";
    display: inline-block;
  }
  .p-series-product-item__material:after {
    content: "）";
    display: inline-block;
  }
}
@media screen and (min-width: 751px) {
  .p-series-product-item__material {
    margin-top: 1em;
  }
}

.p-series-doctor-title {
  margin-bottom: 11.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-title {
    margin-bottom: 60px;
  }
}
.p-series-doctor-profile {
  margin-bottom: 12.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-profile {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    column-gap: 80px;
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 750px) {
  .p-series-doctor-profile__image {
    margin-bottom: 12.6666666667vw;
    width: 65.4666666667vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 751px) {
  .p-series-doctor-profile__image {
    flex: 0 0 auto;
  }
}
.p-series-doctor-profile__head {
  font-weight: 600;
  border-bottom: 1px solid #000000;
  font-size: 3.6vw;
  padding-bottom: 2vw;
}
@media screen and (max-width: 750px) {
  .p-series-doctor-profile__head {
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-series-doctor-profile__head {
    font-size: 19px;
    font-size: 1.9rem;
    padding-bottom: 10px;
  }
}
.p-series-doctor-profile__body {
  line-height: 1.9;
  font-size: 3.6vw;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-profile__body {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-series-doctor-point:not(:last-child) {
  margin-bottom: 10vw;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point:not(:last-child) {
    margin-bottom: 55px;
  }
}
.p-series-doctor-point__lead {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  color: #00a84f;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 5.3333333333vw;
}
@media screen and (max-width: 750px) {
  .p-series-doctor-point__lead {
    font-size: 5.3333333333vw;
    background-image: url("../img/text-head-mark2@sm.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 2.6666666667vw 0;
  }
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__lead {
    margin-bottom: 25px;
    font-size: 28px;
    font-size: 2.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 25px;
    padding: 10px 0;
  }
  .p-series-doctor-point__lead:before, .p-series-doctor-point__lead:after {
    content: "";
    display: inline-block;
    background-image: image-set(url(../img/text-head-mark2.png) 1x, url(../img/text-head-mark2@2x.png) 2x);
    background-image: -webkit-image-set(url(../img/text-head-mark2.png) 1x, url(../img/text-head-mark2@2x.png) 2x);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 30px 34px;
    width: 30px;
    height: 34px;
  }
}
.p-series-doctor-point__text {
  line-height: 2;
  font-size: 3.6vw;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__text {
    font-size: 18px;
    font-size: 1.8rem;
    width: 910px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-series-doctor-point__text--notes {
  font-size: 2.4vw;
  display: inline-block;
  margin-top: 0.5em;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__text--notes {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-series-doctor-point__science {
  margin-bottom: 2em;
}
.p-series-doctor-point__science dt {
  font-size: 4vw;
  font-weight: 600;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__science dt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__block {
    display: flex;
    column-gap: 80px;
  }
  .p-series-doctor-point__block > * {
    flex: 0 0 calc(50% - 40px);
  }
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__block .p-series-doctor-point__science {
    margin-bottom: 0;
  }
}
.p-series-doctor-point__image {
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .p-series-doctor-point__image {
    padding: 2.6666666667vw;
  }
  .p-series-doctor-point__image img {
    width: 76vw;
  }
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__image {
    min-height: 405px;
  }
}
.p-series-doctor-point__ng {
  line-height: 2;
  font-size: 3.6vw;
}
@media screen and (max-width: 750px) {
  .p-series-doctor-point__ng {
    border: 1px solid #000000;
    padding: 2.6666666667vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__ng {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-series-doctor-point__ng dt {
  font-size: 4.4vw;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__ng dt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.p-series-doctor-point__qa:not(:last-child) {
  margin-bottom: 8vw;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__qa:not(:last-child) {
    margin-bottom: 20px;
  }
}
.p-series-doctor-point__qa dt {
  font-size: 3.6vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  column-gap: 2.6666666667vw;
  line-height: 1.5;
  margin-bottom: 3.3333333333vw;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__qa dt {
    font-size: 18px;
    font-size: 1.8rem;
    column-gap: 15px;
    margin-bottom: 10px;
  }
}
.p-series-doctor-point__qa dt:before {
  content: "";
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12.4vw;
  height: 12.4vw;
  flex: 0 0 auto;
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__qa dt:before {
    width: 54px;
    height: 54px;
  }
}
@media screen and (min-width: 751px) {
  .p-series-doctor-point__qa dd {
    padding-left: 69px;
  }
}
.p-series-doctor-point__qa--01 dt:before {
  background-image: url("../img/icon-q1.png");
}
.p-series-doctor-point__qa--02 dt:before {
  background-image: url("../img/icon-q2.png");
}

/* br - utility - object
--------------------------------------------------------- */
.u-br-sm {
  display: inline-block;
}
@media screen and (min-width: 751px) {
  .u-br-sm {
    display: none;
  }
}
@media screen and (min-width: 2000px) {
  .u-br-sm {
    display: none;
  }
}

.u-br-md {
  display: none;
}
@media screen and (min-width: 751px) {
  .u-br-md {
    display: inline-block;
  }
}

.u-br-lg {
  display: none;
}
@media screen and (min-width: 2000px) {
  .u-br-lg {
    display: inline-block;
  }
}

/* display - utility - object
--------------------------------------------------------- */
.u-display-sm {
  display: inline-block;
}
@media screen and (min-width: 751px) {
  .u-display-sm {
    display: none;
  }
}
@media screen and (min-width: 2000px) {
  .u-display-sm {
    display: none;
  }
}

.u-display-md {
  display: none;
}
@media screen and (min-width: 751px) {
  .u-display-md {
    display: inline-block;
  }
}

.u-display-lg {
  display: none;
}
@media screen and (min-width: 2000px) {
  .u-display-lg {
    display: inline-block;
  }
}

/* text-decoration - helper
--------------------------------------------------------- */
.u-font-weight-normal {
  font-weight: normal !important;
}

.u-text-decoration-underline {
  text-decoration: underline !important;
}

.u-text-sup {
  font-size: 0.7em;
  vertical-align: top;
}

.u-font-weight-regular {
  font-weight: 400 !important;
}

.u-font-weight-medium {
  font-weight: 500 !important;
}

.u-font-weight-semibold {
  font-weight: 600 !important;
}

.u-font-weight-bold {
  font-weight: 700 !important;
}

.u-font-colo-primary {
  color: #124734;
}