@charset "UTF-8";
/*=======================
基本設定
=======================*/
@media screen and (min-width:768px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media not screen and (min-width:768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/*=======================
共通パーツ
=======================*/
body {
  background: #fefff6;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  letter-spacing: normal;
}
body.is-fixed {
  overflow: clip;
}

.body-container {
  overflow: hidden;
}

.inner {
  margin: 0 auto;
  max-width: 1000px;
  width: 95%;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .inner {
    max-width: initial !important;
  }
}
@media not screen and (min-width:768px) {
  .inner {
    margin-inline: auto;
    max-width: initial;
    width: 33.5rem;
  }
}

.sec-title {
  text-align: center;
}
.sec-title.left {
  text-align: left;
}
.sec-title .title-en {
  color: #026f38;
  display: block;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.13em;
}
@media not screen and (min-width:768px) {
  .sec-title .title-en {
    font-size: 1.3rem;
  }
}
.sec-title .title-jp {
  display: block;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4722222222;
  margin-top: 12px;
}
@media not screen and (min-width:768px) {
  .sec-title .title-jp {
    font-size: 2.6rem;
    line-height: 1.4642857143;
    margin-top: 1.2rem;
  }
}

.btn {
  align-items: center;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin-inline: auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
}
.btn-gradation {
  background: transparent linear-gradient(269deg, #bce373 0%, #068141 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
@media not screen and (min-width:768px) {
  .btn-gradation {
    font-size: 1.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-gradation:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn-gradation:hover {
    opacity: 0.5;
  }
}
.btn-arrow::after {
  background: url(../img/arrow_right_white.svg) no-repeat center center/cover;
  content: "";
  height: 5px;
  position: absolute;
  right: 40px;
  width: 14px;
  z-index: 6;
}
@media not screen and (min-width:768px) {
  .btn-arrow::after {
    height: 0.5rem;
    right: 3.8rem;
    width: 1.5rem;
  }
}

br.is-pc {
  display: block;
}
@media not screen and (min-width:768px) {
  br.is-pc {
    display: none;
  }
}
br.is-sp {
  display: none;
}
@media not screen and (min-width:768px) {
  br.is-sp {
    display: inline;
  }
}

span.is-pc {
  display: inline;
}
@media not screen and (min-width:768px) {
  span.is-pc {
    display: none;
  }
}
span.is-sp {
  display: none;
}
@media not screen and (min-width:768px) {
  span.is-sp {
    display: inline;
  }
}

img {
  display: block;
  height: auto;
  width: 100%;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/*=======================
下層ページ共通設定
=======================*/
.page-low {
  margin-top: -31px;
}
@media not screen and (min-width:768px) {
  .page-low {
    margin-top: initial;
  }
}

.low-head {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  height: 302px;
  overflow-x: hidden;
  place-content: center;
  position: relative;
}
@media not screen and (min-width:768px) {
  .low-head {
    height: 20rem;
  }
}

.low-title {
  color: #fff;
  text-align: center;
}
@media not screen and (min-width:768px) {
  .low-title {
    margin-top: 0.8rem;
  }
}
.low-title .title-en {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
}
@media not screen and (min-width:768px) {
  .low-title .title-en {
    font-size: 1.4rem;
    letter-spacing: 0.11em;
    line-height: 1.5454545455;
  }
}
.low-title .title-jp {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-top: 9px;
}
@media not screen and (min-width:768px) {
  .low-title .title-jp {
    font-size: 2.4rem;
    line-height: 1.5833333333;
    margin-top: -0.8rem;
  }
}

.breadcrumb {
  padding: 35px 0;
}
@media not screen and (min-width:768px) {
  .breadcrumb {
    padding: 3.2rem 0;
  }
}

.breadcrumb-items {
  align-items: center;
  display: flex;
  gap: 40px;
}
@media not screen and (min-width:768px) {
  .breadcrumb-items {
    gap: 4rem;
    overflow: hidden;
  }
}

.breadcrumb-item {
  color: #000;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
}
@media not screen and (min-width:768px) {
  .breadcrumb-item {
    flex-shrink: 0;
    font-size: 1.4rem;
    white-space: nowrap;
  }
}
.breadcrumb-item::after {
  background: #000;
  content: "";
  height: 1px;
  position: absolute;
  right: -32px;
  top: 50%;
  translate: 0 -50%;
  width: 23px;
}
@media not screen and (min-width:768px) {
  .breadcrumb-item::after {
    height: 0.1em;
    right: -3.2rem;
    width: 2.3rem;
  }
}
.breadcrumb-item.current {
  color: #026f38;
}
@media not screen and (min-width:768px) {
  .breadcrumb-item.current {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.breadcrumb-item.current::after {
  display: none;
}

.low-item-title {
  border-bottom: 1px solid #CECECE;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4642857143;
  margin-bottom: 20px;
  padding-bottom: 12px;
  padding-left: 12px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .low-item-title {
    border-width: 0.1rem;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    line-height: 1.4166666667;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.2rem;
  }
}
.low-item-title::before {
  background: #026f38;
  content: "";
  height: 33px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 3px;
}
@media not screen and (min-width:768px) {
  .low-item-title::before {
    height: 60%;
    top: 43%;
    translate: 0 -50%;
    width: 0.3rem;
  }
}
.low-item-title::after {
  background: #026f38;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 190px;
}
@media not screen and (min-width:768px) {
  .low-item-title::after {
    bottom: -0.1rem;
    height: 0.1rem;
    width: 14rem;
  }
}

.low-item-text {
  font-size: 14px;
  letter-spacing: 0.024em;
  line-height: 2.2857142857;
  margin-bottom: 32px;
}
@media not screen and (min-width:768px) {
  .low-item-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.low-item-text:last-of-type {
  margin-bottom: 0;
}

/*=======================
ヘッダー
=======================*/
.header {
  display: flex;
  justify-content: space-between;
  padding-right: 38px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .header {
    padding-right: 20px;
  }
}
@media not screen and (min-width:768px) {
  .header {
    align-items: center;
    padding-right: 2rem;
  }
}

.header-logo {
  background: #fff;
  display: grid;
  padding: 35px 15px;
  place-content: center;
  position: relative;
  z-index: 1;
}
@media not screen and (min-width:768px) {
  .header-logo {
    padding: 1.7rem 0.6rem;
  }
}

.header-logo-link {
  height: 54px;
  transition: all 0.3s ease;
  width: 215px;
}
@media not screen and (min-width:768px) {
  .header-logo-link {
    height: 2.8rem;
    width: 11.3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-logo-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-logo-link:hover {
    opacity: 0.5;
  }
}

.header-nav {
  height: 98px;
}
@media not screen and (min-width:768px) {
  .header-nav {
    display: none;
  }
}

.header-nav-items {
  align-items: center;
  display: flex;
  gap: 34px;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .header-nav-items {
    gap: 20px;
  }
}

.header-nav-item-link {
  color: #121212;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  position: relative;
  transition: all 0.3s ease;
}
.header-nav-item-link::before {
  background: #69ae59;
  bottom: -4px;
  content: "";
  height: 1px;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav-item-link:hover {
    color: #69ae59;
  }
  .header-nav-item-link:hover::before {
    opacity: 1;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-nav-item-link:hover {
    color: #69ae59;
  }
  .header-nav-item-link:hover::before {
    opacity: 1;
  }
}

.header-btn {
  align-items: center;
  border: 1px solid #026f38;
  color: #026f38;
  font-size: 12px;
  font-weight: 500;
  height: 42px;
  letter-spacing: 0.02em;
  line-height: 1.4166666667;
  padding: 0 25px;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header-btn:hover {
    background: #026f38;
    color: #fff;
  }
  .header-btn:hover::before {
    background-image: url(../img/icon_mail_white.svg);
  }
  .header-btn:hover::after {
    background-image: url(../img/arrow_right_white.svg);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-btn:hover {
    background: #026f38;
    color: #fff;
  }
  .header-btn:hover::before {
    background-image: url(../img/icon_mail_white.svg);
  }
  .header-btn:hover::after {
    background-image: url(../img/arrow_right_white.svg);
  }
}
.header-btn::before {
  background: url(../img/icon_mail_green.svg) no-repeat center center/cover;
  content: "";
  height: 9px;
  margin-right: 4px;
  margin-top: 3px;
  transition: all 0.3s ease;
  width: 13px;
}
.header-btn::after {
  background: url(../img/arrow_right_green.svg) no-repeat center center/cover;
  content: "";
  height: 4px;
  margin-left: 11px;
  margin-top: 2px;
  transition: all 0.3s ease;
  width: 11px;
}

.drawer-icon {
  display: none;
}
@media not screen and (min-width:768px) {
  .drawer-icon {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 3.3rem;
    justify-content: center;
    width: 3.3rem;
  }
}

@media not screen and (min-width:768px) {
  .drawer-bars {
    height: 0.5rem;
    position: relative;
    width: 100%;
  }
}

@media not screen and (min-width:768px) {
  .drawer-bar {
    background: #000;
    height: 0.1rem;
    position: absolute;
    transition: all 0.3s ease;
    width: 3.3rem;
  }
  .drawer-bar.bar01 {
    top: 0;
  }
  .drawer-bar.bar02 {
    bottom: 0;
    top: initial;
  }
  .drawer-bar.is-active.bar01 {
    top: 50%;
    transform: translateY(-50%) rotate(17deg);
  }
  .drawer-bar.is-active.bar02 {
    bottom: initial;
    top: 50%;
    transform: translateY(-50%) rotate(-17deg);
  }
}

.drawer {
  display: none;
}
@media not screen and (min-width:768px) {
  .drawer {
    background: #fefff6;
    display: block;
    height: 100dvh;
    height: calc(100dvh - 6.2rem);
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 6.2rem;
    transform: translateX(100%);
    transition: all 0.3s ease;
    width: 100%;
    z-index: 20;
    -webkit-overflow-scrolling: touch;
  }
  .drawer.is-active {
    transform: translateX(0);
  }
}

@media not screen and (min-width:768px) {
  .drawer-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
}

@media not screen and (min-width:768px) {
  .drawer-deco {
    margin-inline: calc(50% - 50vw);
    margin-top: auto;
    order: 99;
    overflow: hidden;
    padding-top: 3.2rem;
    position: relative;
    width: 100vw;
  }
  .drawer-deco::after {
    background: transparent linear-gradient(270deg, #DEE373 0%, #068141 100%) 0% 0% no-repeat padding-box;
    bottom: 0;
    content: "";
    height: 1.4rem;
    left: 50%;
    position: absolute;
    translate: -50% 0;
    width: 100vw;
  }
}

@media not screen and (min-width:768px) {
  .drawer-deco-copy {
    color: rgba(232, 241, 226, 0.49);
    display: block;
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 7.3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 0.82;
    margin-inline: auto;
    max-width: none;
    padding-bottom: 0.6rem;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

@media not screen and (min-width:768px) {
  .drawer-nav {
    margin-top: 1rem;
  }
}

@media not screen and (min-width:768px) {
  .drawer-item {
    border-bottom: 0.1rem solid #B9B9B9;
    height: 6.5rem;
    padding: 1.5rem 0;
  }
}

@media not screen and (min-width:768px) {
  .drawer-item-link {
    align-items: center;
    color: #000;
    display: flex;
    font-size: 1.4rem;
    font-weight: 500;
    height: 100%;
    letter-spacing: 0.04em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media not screen and (min-width:768px) {
  .drawer-btn {
    height: 5.4rem;
    margin-top: 5.6rem;
    width: 30.5rem;
  }
}
.drawer-btn::before {
  background: url(../img/icon_airplane.svg);
  content: "";
  height: 19px;
  margin-right: 4px;
  width: 23px;
}
@media not screen and (min-width:768px) {
  .drawer-btn::before {
    background-size: 2.3rem 1.9rem;
    height: 1.9rem;
    margin-right: 0.4rem;
    width: 2.3rem;
  }
}
.drawer-btn::after {
  right: 22px;
}
@media not screen and (min-width:768px) {
  .drawer-btn::after {
    right: 2.2rem;
  }
}

/*=======================
トップ / FV
=======================*/
.fv {
  margin-top: -26px;
  padding-bottom: 23px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .fv {
    margin-top: initial;
    padding-bottom: 11.7rem;
  }
}
.fv::after {
  background: url(../img/fv_deco_img.png) no-repeat center center/cover;
  bottom: 0;
  content: "";
  height: 255px;
  position: absolute;
  right: 59px;
  width: 280px;
}
@media not screen and (min-width:768px) {
  .fv::after {
    height: 16rem;
    right: 1.5rem;
    width: 17.6rem;
    z-index: 1;
  }
}

.fv-title {
  align-items: center;
  color: #026f38;
  display: flex;
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 500;
  gap: 29px;
  left: min(28px, 2.8rem);
  position: absolute;
  rotate: 180deg;
  top: 49px;
  writing-mode: vertical-lr;
}
@media not screen and (min-width:768px) {
  .fv-title {
    gap: 2.6rem;
    left: 1.3rem;
    top: 1.5rem;
  }
}
.fv-title h1 {
  font-size: 14px;
  letter-spacing: 0.04em;
  position: relative;
}
@media not screen and (min-width:768px) {
  .fv-title h1 {
    font-size: 1.2rem;
    padding-left: 0.2em;
  }
}
.fv-title h1::after {
  background: currentColor;
  bottom: -22px;
  content: "";
  height: 13px;
  left: 50%;
  position: absolute;
  translate: -50% 0;
  width: 1px;
}
@media not screen and (min-width:768px) {
  .fv-title h1::after {
    bottom: -1.9rem;
    height: 1.3rem;
    width: 0.1rem;
  }
}
.fv-title p {
  font-size: 12px;
  letter-spacing: 0.08em;
}
@media not screen and (min-width:768px) {
  .fv-title p {
    font-size: 0.9rem;
  }
}

.fv-inner {
  position: relative;
  width: 75%;
}
@media not screen and (min-width:768px) {
  .fv-inner {
    width: 25.9rem;
  }
}

.fv-movie {
  height: 686px;
  margin-right: calc(50% - 50vw);
  position: relative;
}
@media not screen and (min-width:768px) {
  .fv-movie {
    height: 43rem;
  }
}
.fv-movie video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media not screen and (min-width:768px) {
  .fv-movie video {
    width: auto;
  }
}
.fv-movie::before {
  background: rgba(3, 6, 11, 0.1);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.fv-movie::after {
  color: #fff;
  content: "FRESTA68";
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 116px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.14;
  position: absolute;
  right: 0;
  top: 19px;
  writing-mode: vertical-lr;
}
@media not screen and (min-width:768px) {
  .fv-movie::after {
    font-size: 6.4rem;
    top: 1rem;
  }
}

.fv-content {
  left: max(-8.9rem, -89px);
  position: absolute;
  top: 50px;
}
@media not screen and (min-width:768px) {
  .fv-content {
    left: -1.4rem;
    top: 1.6rem;
  }
}

.fv-copy {
  color: #fff;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  position: relative;
}
@media not screen and (min-width:768px) {
  .fv-copy {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 1.4444444444;
  }
}
.fv-copy::after {
  background: url(../img/fv_deco_text.svg) no-repeat center center/cover;
  bottom: -45px;
  content: "";
  height: 103px;
  position: absolute;
  right: 15px;
  width: 220px;
}
@media not screen and (min-width:768px) {
  .fv-copy::after {
    bottom: -3rem;
    height: 5.1rem;
    right: 2.1rem;
    width: 9.9rem;
  }
}
.fv-copy span {
  background: transparent linear-gradient(263deg, #a4d02d 0%, #068141 100%) 0% 0% no-repeat padding-box;
  display: block;
  margin-bottom: 11px;
  opacity: 0;
  padding: 12px 19px;
  transform: translateX(-36px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media not screen and (min-width:768px) {
  .fv-copy span {
    margin-bottom: 0.5rem;
    padding: 0.6rem 1rem;
  }
}
.fv-copy span:last-of-type {
  margin-bottom: 0;
}
.fv-copy.is-loaded span {
  animation: fv-copy-slide-in 0.8s ease-out forwards;
}
.fv-copy.is-loaded span:nth-of-type(2) {
  animation-delay: 0.48s;
}
.fv-copy.is-loaded span:nth-of-type(3) {
  animation-delay: 0.88s;
}

@keyframes fv-copy-slide-in {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fv-copy span {
    animation: none;
    opacity: 1;
    transform: translateX(0);
  }
}
.fv-text {
  color: #9ece2e;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  line-height: 2.1666666667;
  margin-top: 17px;
  width: 265px;
}
@media not screen and (min-width:768px) {
  .fv-text {
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    line-height: 2.5;
    margin-top: 0.6rem;
    width: 13.2rem;
  }
}

.fv-scroll {
  bottom: 32px;
  left: min(29px, 2.9rem);
  position: absolute;
  transform: translateZ(0);
}
@media not screen and (min-width:768px) {
  .fv-scroll {
    bottom: 3.3rem;
    display: flex;
    flex-direction: column;
    left: 1.4rem;
  }
}

.fv-scroll-txt {
  color: #026f38;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  writing-mode: vertical-lr;
}
@media not screen and (min-width:768px) {
  .fv-scroll-txt {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

.fv-scroll-bar {
  animation: pathmove 2.5s ease-in-out infinite;
  background: #026f38;
  display: block;
  height: 89px;
  margin-inline: auto;
  width: 1px;
}
@media not screen and (min-width:768px) {
  .fv-scroll-bar {
    height: 7.9rem;
    width: 0.2rem;
  }
}

@keyframes pathmove {
  0% {
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    opacity: 1;
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    opacity: 1;
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*=======================
トップ / 私たちについて
=======================*/
.sec-about {
  padding: 102px 0 132px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .sec-about {
    padding: 8.8rem 0 6rem;
  }
}
.sec-about > * {
  position: relative;
  z-index: 1;
}

.loop-items {
  display: flex;
  gap: 30px;
  overflow: hidden;
  position: absolute;
  top: 119px;
  width: 100%;
  z-index: 1;
}
@media not screen and (min-width:768px) {
  .loop-items {
    gap: 3rem;
    top: -3.7rem;
    z-index: 0;
  }
}

.loop-item {
  animation: loop-slide 40s infinite linear both;
  color: #fff;
  color: #e8f1e2;
  flex-shrink: 0;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 116px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.49;
  white-space: nowrap;
}
@media not screen and (min-width:768px) {
  .loop-item {
    font-size: 8.1rem;
    letter-spacing: 0.1em;
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.about-content {
  align-items: center;
  display: grid;
  gap: 32px 99px;
  grid-template-columns: 456px 1fr;
  margin-right: calc(50% - 50vw);
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .about-content {
    gap: 32px 40px;
    grid-template-columns: 380px 1fr;
  }
}
@media not screen and (min-width:768px) {
  .about-content {
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-right: initial;
    margin-top: 3.3rem;
  }
}

.about-title {
  color: #000;
}
.about-title .title-en {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.1944444444;
}
@media not screen and (min-width:768px) {
  .about-title .title-en {
    font-size: 3.2rem;
    line-height: 1.21875;
  }
}
.about-title .title-jp {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4166666667;
  margin-top: 6px;
}
@media not screen and (min-width:768px) {
  .about-title .title-jp {
    font-size: 1.2rem;
    margin-top: 0.6rem;
  }
}

.about-lead {
  color: #026f38;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 24px;
  font-weight: 600;
  grid-column: 1/2;
  grid-row: 1/2;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media not screen and (min-width:768px) {
  .about-lead {
    font-size: 2rem;
    line-height: 1.8;
  }
}

.about-text {
  display: grid;
  font-size: 14px;
  gap: 32px;
  grid-column: 1/2;
  grid-row: 2/3;
  grid-template-columns: 1fr;
  letter-spacing: 0.024em;
  line-height: 2.2857142857;
}
@media not screen and (min-width:768px) {
  .about-text {
    font-size: 1.4rem;
    gap: 3.2rem;
    grid-row: 3/4;
  }
}
.about-text span {
  display: block;
}

.about-img {
  grid-column: 2/3;
  grid-row: 1/3;
  height: 461px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .about-img {
    grid-column: 1/2;
    grid-row: 2/3;
    height: initial;
  }
}
.about-img img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media not screen and (min-width:768px) {
  .about-img img {
    height: auto;
    left: initial;
    position: static;
    top: initial;
    translate: initial;
  }
}

/*=======================
トップ / FEATURE
=======================*/
.sec-feature {
  background: #fff;
  padding: 117px 0 109px;
}
@media not screen and (min-width:768px) {
  .sec-feature {
    padding: 8.2rem 0 7rem;
  }
}

.feature-title {
  position: relative;
}
.feature-title::after {
  background: #026f38;
  bottom: -28px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  translate: -50% 0;
  width: 50px;
}
@media not screen and (min-width:768px) {
  .feature-title::after {
    bottom: -2.3rem;
    height: 0.1rem;
    width: 5rem;
  }
}

.feature-text {
  font-size: 14px;
  letter-spacing: 0.024em;
  line-height: 2.2857142857;
  margin-top: 46px;
  text-align: center;
}
@media not screen and (min-width:768px) {
  .feature-text {
    font-size: 1.4rem;
    margin-top: 4.2rem;
  }
}

.feature-items {
  counter-reset: feature;
  display: grid;
  gap: 75px;
  grid-template-columns: 1fr;
  margin-top: 60px;
}
@media not screen and (min-width:768px) {
  .feature-items {
    gap: 3rem;
    margin-top: 4.5rem;
  }
}

.feature-item {
  align-items: center;
  counter-increment: feature;
  display: grid;
  gap: 7.1%;
  grid-template-columns: 41% 51.9%;
  margin-inline: auto;
  max-width: 1000px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .feature-item {
    width: 95%;
  }
}
@media not screen and (min-width:768px) {
  .feature-item {
    gap: 2.7rem;
    grid-template-columns: 1fr;
    width: 33.5rem;
  }
}
.feature-item::before {
  color: #e8f1e2;
  content: "Feature " counter(feature, decimal-leading-zero);
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 56px;
  font-weight: 500;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  letter-spacing: 0.13em;
  position: absolute;
  right: -188px;
  right: -19%;
  top: 50%;
  translate: 0 -50%;
  writing-mode: vertical-rl;
}
@media not screen and (min-width:768px) {
  .feature-item::before {
    display: none;
  }
}
@media screen and (min-width:768px) {
  .feature-item:nth-child(even) {
    grid-template-columns: 1fr 410px;
  }
  .feature-item:nth-child(even) .feature-item-img {
    order: 2;
  }
  .feature-item:nth-child(even) .feature-item-info {
    order: 1;
  }
  .feature-item:nth-child(even)::before {
    left: -30px;
    right: auto;
  }
}

.feature-item-img {
  height: 270px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .feature-item-img {
    height: initial;
  }
}
.feature-item-img img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media not screen and (min-width:768px) {
  .feature-item-img img {
    height: auto;
    left: initial;
    position: static;
    top: initial;
    translate: initial;
  }
}

.feature-item-num {
  color: #026f38;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.13em;
}
@media not screen and (min-width:768px) {
  .feature-item-num {
    font-size: 1.3rem;
  }
}
.feature-item-num::before {
  content: "Feature " counter(feature, decimal-leading-zero);
}

.feature-item-title {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  line-height: 1.6666666667;
  margin-top: 9px;
}
@media not screen and (min-width:768px) {
  .feature-item-title {
    font-size: 2rem;
    line-height: 2;
    margin-top: 0.3rem;
  }
}

.feature-item-text {
  border-top: 1px solid #222;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 2.1428571429;
  margin-top: 7px;
  padding-top: 11px;
}
@media not screen and (min-width:768px) {
  .feature-item-text {
    border-width: 0.1rem;
    font-size: 1.4rem;
    margin-top: 0.7rem;
    padding-top: 1.1rem;
  }
}

.feature-btn {
  height: 54px;
  margin-top: 70px;
  padding: 0 68px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media not screen and (min-width:768px) {
  .feature-btn {
    height: 5.4rem;
    margin-top: 4.5rem;
  }
}

/*=======================
トップ / 監修医紹介
=======================*/
.sec-doctor {
  padding: 125px 0 136px;
}
@media not screen and (min-width:768px) {
  .sec-doctor {
    padding: 7.1rem 0 6rem;
  }
}

.doctor-inner {
  max-width: 1234px;
}
@media not screen and (min-width:768px) {
  .doctor-inner {
    max-width: initial;
  }
}

.doctor-content {
  align-items: center;
  display: grid;
  gap: 0 52px;
  grid-template-columns: 1fr 547px;
  margin-top: 69px;
}
@media not screen and (min-width:768px) {
  .doctor-content {
    grid-template-columns: 1fr;
    margin-top: initial;
  }
}

.doctor-title {
  color: #464646;
  grid-column: 1/-1;
  grid-row: 1/2;
  padding: 60px 0 41px calc(100% - 547px);
  position: relative;
}
@media not screen and (min-width:768px) {
  .doctor-title {
    grid-column: 1/2;
    padding: 3.8rem 0 2.9rem;
  }
}
.doctor-title::before, .doctor-title::after {
  background: #cecece;
  content: "";
  height: 1px;
  left: calc(50% - 50vw);
  position: absolute;
  width: 100vw;
}
@media not screen and (min-width:768px) {
  .doctor-title::before, .doctor-title::after {
    left: 50%;
    translate: -50% 0;
  }
}
.doctor-title::before {
  top: 0;
}
.doctor-title::after {
  bottom: 0;
}
.doctor-title .title-jp {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media not screen and (min-width:768px) {
  .doctor-title .title-jp {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.doctor-title .title-en {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 78px;
  letter-spacing: 0.06em;
  line-height: 1.2051282051;
  margin-top: 7px;
}
@media not screen and (min-width:768px) {
  .doctor-title .title-en {
    font-size: 6rem;
    line-height: 1.2;
    margin-top: 0.2rem;
  }
}

.doctor-img {
  grid-column: 1/2;
  grid-row: 1/3;
  margin-top: -190px;
  position: relative;
  z-index: 1;
}
@media not screen and (min-width:768px) {
  .doctor-img {
    grid-row: 2/3;
    margin-top: 1.9rem;
  }
}

.doctor-items {
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr;
  margin-top: 55px;
  padding-left: 68px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .doctor-items {
    padding-left: initial;
  }
}
@media not screen and (min-width:768px) {
  .doctor-items {
    gap: 4.2rem;
    margin-top: 3.9rem;
    padding-left: initial;
  }
}

.doctor-item-title {
  border-bottom: 1px solid #cecece;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media not screen and (min-width:768px) {
  .doctor-item-title {
    border-width: 0.1rem;
    font-size: 2.4rem;
  }
}
.doctor-item-title .underline {
  display: block;
  padding-bottom: 10px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media not screen and (min-width:768px) {
  .doctor-item-title .underline {
    padding-bottom: 1.2rem;
  }
}
.doctor-item-title .underline::after {
  background: #bba87d;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 110%;
}
@media not screen and (min-width:768px) {
  .doctor-item-title .underline::after {
    bottom: -0.1rem;
    height: 0.1rem;
  }
}
.doctor-item-title .small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-left: 17px;
}
@media not screen and (min-width:768px) {
  .doctor-item-title .small {
    font-size: 1.2rem;
    margin-left: 1.6rem;
  }
}

.doctor-item-lead {
  color: #026f38;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 29px;
}
@media not screen and (min-width:768px) {
  .doctor-item-lead {
    font-size: 1.6rem;
    margin-top: 3rem;
  }
}

.doctor-item-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2.1428571429;
  margin-top: 9px;
  max-width: 432px;
}
@media not screen and (min-width:768px) {
  .doctor-item-text {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    max-width: initial;
  }
}

.doctor-history {
  display: grid;
  gap: 13px;
  grid-template-columns: 1fr;
  margin-top: 26px;
  max-width: 432px;
}
@media not screen and (min-width:768px) {
  .doctor-history {
    gap: 1.3rem;
    margin-top: 2.5rem;
    max-width: initial;
  }
}

.doctor-history-item {
  display: grid;
  grid-template-columns: 92px 1fr;
}
@media not screen and (min-width:768px) {
  .doctor-history-item {
    grid-template-columns: 9.2rem 1fr;
  }
}
.doctor-history-item dt,
.doctor-history-item dd {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media not screen and (min-width:768px) {
  .doctor-history-item dt,
  .doctor-history-item dd {
    font-size: 1.4rem;
  }
}
.doctor-history-item dt {
  color: #026f38;
  font-weight: bold;
}
.doctor-history-item dd {
  color: #000;
}

.doctor-link {
  margin-top: 93px;
}
@media not screen and (min-width:768px) {
  .doctor-link {
    margin-top: 5.8rem;
  }
}

.doctor-link-content {
  display: grid;
  grid-template-columns: 1fr 340px;
}
@media not screen and (min-width:768px) {
  .doctor-link-content {
    grid-template-columns: 1fr;
  }
}

.doctor-link-info-wrapper {
  background: #f8f5ee;
  display: grid;
  padding: 30px;
  place-content: center;
  position: relative;
}
@media not screen and (min-width:768px) {
  .doctor-link-info-wrapper {
    grid-row: 2/3;
    padding: 3rem 3rem 3.7rem;
  }
}
.doctor-link-info-wrapper::before {
  border: 1px solid #969696;
  border-right: none;
  content: "";
  height: calc(100% - 14px);
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: calc(100% - 7px);
}
@media not screen and (min-width:768px) {
  .doctor-link-info-wrapper::before {
    display: none;
  }
}

.doctor-link-info {
  margin-right: 24px;
  max-width: 498px;
  position: relative;
  z-index: 1;
}
@media not screen and (min-width:768px) {
  .doctor-link-info {
    margin-right: initial;
    max-width: initial;
  }
}

.doctor-link-title {
  color: #000;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4615384615;
  margin-left: 3px;
  padding-left: 17px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .doctor-link-title {
    font-size: 2rem;
    line-height: 1.45;
    margin-left: initial;
    padding-left: 1.3rem;
  }
}
.doctor-link-title::before {
  background: #026f38;
  content: "";
  height: 26px;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 4px;
}
@media not screen and (min-width:768px) {
  .doctor-link-title::before {
    height: 2.4rem;
    width: 0.4rem;
  }
}

.doctor-link-text {
  color: #000;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2.2857142857;
  margin-top: 11px;
}
@media not screen and (min-width:768px) {
  .doctor-link-text {
    font-size: 1.3rem;
    line-height: 2.4615384615;
    margin-top: 0.7rem;
  }
}

.btn-doctor-link {
  font-size: 12px;
  height: 42px;
  letter-spacing: 0.08em;
  margin-left: initial;
  margin-top: 23px;
  width: 262px;
}
@media not screen and (min-width:768px) {
  .btn-doctor-link {
    font-size: 1.2rem;
    height: 4.2rem;
    margin-top: 2rem;
    width: 26.2rem;
  }
}
.btn-doctor-link::after {
  right: 18px;
}
@media not screen and (min-width:768px) {
  .btn-doctor-link::after {
    right: 1.8rem;
  }
}

@media not screen and (min-width:768px) {
  .doctor-link-img {
    grid-row: 1/2;
  }
}

/*=======================
トップ / 会社概要
=======================*/
.sec-company {
  padding-top: 340px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .sec-company {
    padding-top: 15rem;
  }
}
.sec-company::before {
  background-image: url(../img/company_bg_pc.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 400px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
@media not screen and (min-width:768px) {
  .sec-company::before {
    background-image: url(../img/company_bg_sp.png);
    height: 17rem;
  }
}
.sec-company > * {
  position: relative;
  z-index: 1;
}

.company-inner {
  background: #fefff6;
  padding: 79px 85px 118px;
}
@media not screen and (min-width:768px) {
  .company-inner {
    padding: 4.4rem 0 6.3rem;
  }
}

.company-items {
  margin-top: 8px;
}
@media not screen and (min-width:768px) {
  .company-items {
    margin-top: 1.3rem;
  }
}

.company-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 50px;
}
@media not screen and (min-width:768px) {
  .company-item {
    grid-template-columns: 11rem 1fr;
    min-width: 5rem;
  }
}
.company-item dt,
.company-item dd {
  border-bottom: 1px solid;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8571428571;
  padding: 12px 0;
}
@media not screen and (min-width:768px) {
  .company-item dt,
  .company-item dd {
    border-width: 0.1rem;
    font-size: 1.4rem;
    padding: 1.2rem 0 1rem;
  }
}
.company-item dt {
  border-color: #026f38;
}
.company-item dd {
  border-color: #c7c7c7;
  padding-left: 12px;
}

.sec-cta {
  padding-bottom: 120px;
  padding-top: 63px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .sec-cta {
    padding-bottom: 6.9rem;
    padding-top: 2.1rem;
  }
}
.sec-cta::before, .sec-cta::after {
  background: #e9f1e2;
  content: "";
  position: absolute;
  width: 100%;
}
.sec-cta::before {
  height: 63px;
  left: 0;
  top: 0;
  -webkit-clip-path: ellipse(52% 100% at 50% 100%);
          clip-path: ellipse(52% 100% at 50% 100%);
}
@media not screen and (min-width:768px) {
  .sec-cta::before {
    height: 2.1rem;
  }
}
.sec-cta::after {
  height: calc(100% - 63px);
  top: 63px;
}
@media not screen and (min-width:768px) {
  .sec-cta::after {
    height: calc(100% - 2.1rem);
    top: 2.1rem;
  }
}
.sec-cta > * {
  position: relative;
  z-index: 1;
}

.cta-inner {
  padding-top: 54px;
}
@media not screen and (min-width:768px) {
  .cta-inner {
    padding-top: 5rem;
  }
}

.cta-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2.1428571429;
  margin-top: 21px;
  text-align: center;
}
@media not screen and (min-width:768px) {
  .cta-text {
    font-size: 1.4rem;
    margin-top: 1.4rem;
  }
}

.btn-cta {
  height: 54px;
  margin-top: 46px;
  width: 305px;
}
@media not screen and (min-width:768px) {
  .btn-cta {
    height: 5.4rem;
    margin-top: 3.4rem;
    width: 30.5rem;
  }
}
.btn-cta::before {
  background: url(../img/icon_airplane.svg);
  content: "";
  height: 19px;
  margin-right: 4px;
  width: 23px;
}
@media not screen and (min-width:768px) {
  .btn-cta::before {
    background-size: 2.3rem 1.9rem;
    height: 1.9rem;
    margin-right: 0.4rem;
    width: 2.3rem;
  }
}
.btn-cta::after {
  right: 22px;
}
@media not screen and (min-width:768px) {
  .btn-cta::after {
    right: 2.2rem;
  }
}

.link {
  background: url(../img/link_bg_pc.png) no-repeat center center/cover;
  padding: 89px 0;
  position: relative;
}
@media not screen and (min-width:768px) {
  .link {
    background-image: url(../img/link_bg_sp.png);
    padding: 3.1rem 0 3.3rem;
  }
}
.link::before {
  background: rgba(0, 0, 0, 0.68);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.link > * {
  position: relative;
  z-index: 1;
}

.link-items {
  display: grid;
  gap: 17px;
  grid-template-columns: 1fr 1fr;
}
@media not screen and (min-width:768px) {
  .link-items {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
}

.link-item {
  background: #fff;
  padding: 56px 20px 52px;
}
@media not screen and (min-width:768px) {
  .link-item {
    padding: 4rem 2rem 3.5rem;
  }
}

.link-item-title {
  position: relative;
  text-align: center;
}
.link-item-title::after {
  background: #026f38;
  bottom: -24px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  translate: -50% 0;
  width: 36px;
}
@media not screen and (min-width:768px) {
  .link-item-title::after {
    bottom: -2rem;
    height: 0.1rem;
    width: 3.6rem;
  }
}
.link-item-title .title-en {
  color: #000;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media not screen and (min-width:768px) {
  .link-item-title .title-en {
    font-size: 3.4rem;
  }
}
.link-item-title .title-jp {
  font-size: 16px;
  letter-spacing: 0.024em;
  margin-top: 12px;
}
@media not screen and (min-width:768px) {
  .link-item-title .title-jp {
    font-size: 1.4rem;
    margin-top: 0.7rem;
  }
}

.btn-link {
  height: 72px;
  margin-top: 47px;
  max-width: 384px;
  width: 100%;
}
@media not screen and (min-width:768px) {
  .btn-link {
    height: 6rem;
    margin-top: 3.9rem;
    max-width: initial;
    width: 25.6rem;
  }
}
.btn-link::after {
  background: url(../img/arrow_right_02_white.svg) no-repeat center center/cover;
  content: "";
  height: 8px;
  position: absolute;
  right: 48px;
  top: 50%;
  translate: 0 -50%;
  width: 4px;
}
@media not screen and (min-width:768px) {
  .btn-link::after {
    height: 0.8rem;
    right: 3.2rem;
    width: 0.4rem;
  }
}

/*=======================
フッター
=======================*/
.footer {
  background: transparent linear-gradient(108deg, #26844a 0%, #26834d 7%, #27573f 49%, #026f38 100%) 0% 0% no-repeat padding-box;
}
.footer a,
.footer p {
  color: #fff;
}

.top-scroll {
  align-items: center;
  border-bottom: 1px solid #fff;
  display: flex;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 20px;
  font-weight: bold;
  gap: 15px;
  height: 72px;
  justify-content: center;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}
@media not screen and (min-width:768px) {
  .top-scroll {
    border-width: 0.1rem;
    font-size: 2rem;
    gap: 1.5rem;
    height: 8.3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-scroll:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .top-scroll:hover {
    opacity: 0.5;
  }
}
.top-scroll::before {
  background: url(../img/arrow_right_02_white.svg) no-repeat center center/cover;
  content: "";
  height: 10px;
  rotate: -90deg;
  width: 5px;
}
@media not screen and (min-width:768px) {
  .top-scroll::before {
    height: 1rem;
    width: 0.5rem;
  }
}

.footer-inner {
  max-width: 1118px;
}
@media not screen and (min-width:768px) {
  .footer-inner {
    max-width: initial;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  padding: 87px 0 111px;
}
@media not screen and (min-width:768px) {
  .footer-content {
    grid-template-columns: 1fr;
    padding: 4.5rem 0 3.8rem;
  }
}

.footer-logo {
  background: #fff;
  display: grid;
  height: 60px;
  place-content: center;
  width: 198px;
}
@media not screen and (min-width:768px) {
  .footer-logo {
    height: 6rem;
    width: 19.8rem;
  }
}
.footer-logo img {
  height: 45px;
  width: 178px;
}
@media not screen and (min-width:768px) {
  .footer-logo img {
    height: 4.5rem;
    width: 17.8rem;
  }
}

.footer-address {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8571428571;
  margin-top: 18px;
}
@media not screen and (min-width:768px) {
  .footer-address {
    font-size: 1.4rem;
    margin-top: 1.8rem;
  }
}

.footer-nav {
  margin-left: auto;
  margin-right: 14px;
  margin-top: 10px;
}
@media not screen and (min-width:768px) {
  .footer-nav {
    margin-left: initial;
    margin-right: initial;
    margin-top: 4.3rem;
  }
}

.footer-nav-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media not screen and (min-width:768px) {
  .footer-nav-items {
    flex-direction: column;
    gap: 3rem;
  }
}

.footer-nav-item-link {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  position: relative;
}
@media not screen and (min-width:768px) {
  .footer-nav-item-link {
    font-size: 1.6rem;
  }
}
.footer-nav-item-link::before {
  background: #fff;
  bottom: -4px;
  content: "";
  height: 1px;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-item-link:hover::before {
    opacity: 1;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .footer-nav-item-link:hover::before {
    opacity: 1;
  }
}

.copyright {
  background: #2b2b2b;
}

.copyright-content {
  align-items: center;
  display: flex;
  height: 110px;
  justify-content: space-between;
}
@media not screen and (min-width:768px) {
  .copyright-content {
    flex-direction: column;
    gap: 1.4rem;
    height: 12.3rem;
    justify-content: center;
  }
}

.footer-link-items {
  align-items: center;
  display: flex;
  gap: 30px;
}
@media not screen and (min-width:768px) {
  .footer-link-items {
    flex-direction: column;
    gap: 1rem;
  }
}

.footer-link {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  transition: all 0.3s ease;
}
@media not screen and (min-width:768px) {
  .footer-link {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .footer-link:hover {
    opacity: 0.5;
  }
}

.copyright-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-right: 11px;
}
@media not screen and (min-width:768px) {
  .copyright-text {
    font-size: 1.6rem;
    margin-right: initial;
  }
}

/*=======================
下層 / 監修医紹介
=======================*/
.page-doctor .low-head {
  background-image: url(../img/head_doctor_pc.png);
}
@media not screen and (min-width:768px) {
  .page-doctor .low-head {
    background-image: url(../img/head_doctor_sp.png);
  }
}

.sec-intro {
  padding: 36px 0 88px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .sec-intro {
    padding: 0.9rem 0 4rem;
  }
}
.sec-intro::before {
  background: #F0F9EE;
  bottom: 0;
  content: "";
  height: 53%;
  position: absolute;
  right: 0;
  width: 93%;
  z-index: -1;
}
@media not screen and (min-width:768px) {
  .sec-intro::before {
    display: none;
  }
}
.sec-intro::after {
  bottom: 3px;
  color: rgba(255, 255, 255, 0.6);
  content: "MESSAGE";
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 116px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: absolute;
  right: 12px;
}
@media not screen and (min-width:768px) {
  .sec-intro::after {
    display: none;
  }
}
.sec-intro .doctor-item-title .underline {
  padding-bottom: 16px;
}
.sec-intro .doctor-item-title .underline::after {
  background: #026f38;
}

.intro-content {
  align-items: center;
  display: grid;
  gap: 3.4%;
  grid-template-columns: 43.75% 52.85%;
  margin-inline: calc(50% - 50vw);
  margin-top: 26px;
  width: 100vw;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .intro-content {
    margin-inline: initial;
    margin-left: calc(50% - 50vw);
    width: initial;
  }
}
@media not screen and (min-width:768px) {
  .intro-content {
    gap: 2.6rem;
    grid-template-columns: 1fr;
    margin-inline: initial;
    margin-top: 1.9rem;
    width: initial;
  }
}
.intro-content .doctor-items {
  margin-top: initial;
  padding-left: initial;
}
.intro-content .doctor-item {
  max-width: 560px;
}
@media not screen and (min-width:768px) {
  .intro-content .doctor-item {
    max-width: initial;
  }
}
.intro-content .doctor-item-sub-title {
  color: #000;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.0833333333;
  margin-bottom: 15px;
}
@media not screen and (min-width:768px) {
  .intro-content .doctor-item-sub-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

.doctor-profile {
  margin-top: 32px;
}
@media not screen and (min-width:768px) {
  .doctor-profile {
    margin-top: 3.4rem;
  }
}

.doctor-profile-title {
  color: #000;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4615384615;
  margin-left: 1px;
  padding-left: 17px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .doctor-profile-title {
    font-size: 2.4rem;
    line-height: 1.4166666667;
    margin-left: initial;
    padding-left: 1.8rem;
  }
}
.doctor-profile-title::before {
  background: #026f38;
  content: "";
  height: 26px;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 4px;
}
@media not screen and (min-width:768px) {
  .doctor-profile-title::before {
    height: 2.4rem;
    width: 0.4rem;
  }
}

.intro-img {
  height: 421px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .intro-img {
    height: initial;
    margin-left: calc(50% - 50vw);
  }
}
.intro-img img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media not screen and (min-width:768px) {
  .intro-img img {
    height: auto;
    left: initial;
    position: static;
    top: initial;
    translate: initial;
  }
}

.doctor-profile-items {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 14px;
  padding-left: 5px;
}
@media not screen and (min-width:768px) {
  .doctor-profile-items {
    margin-top: 1.6rem;
    padding-left: 0.5rem;
  }
}

.doctor-profile-item {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2.1428571429;
  padding-left: 9px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .doctor-profile-item {
    font-size: 1.4rem;
    padding-left: 0.7em;
  }
}
.doctor-profile-item::before {
  background: #222;
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 14px;
  width: 3px;
}
@media not screen and (min-width:768px) {
  .doctor-profile-item::before {
    height: 0.3rem;
    top: 1.4rem;
    width: 0.3rem;
  }
}

.intro-history {
  padding-top: 67px;
}
@media not screen and (min-width:768px) {
  .intro-history {
    background: #F0F9EE;
    margin-top: 3.2rem;
    padding: 4.7rem 2.4rem 3.7rem;
  }
}

.intro-history-title {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  color: #2C2C2C;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.875;
  margin-inline: auto;
  padding: 9px 10px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media not screen and (min-width:768px) {
  .intro-history-title {
    border-width: 0.1rem;
    font-size: 2rem;
    line-height: 1.5;
    padding: 1.8rem 1rem 1.6rem;
  }
}

.intro-history-text {
  font-size: 14px;
  letter-spacing: 0.024em;
  line-height: 2.2857142857;
  margin: 23px auto 0;
  max-width: 850px;
}
@media not screen and (min-width:768px) {
  .intro-history-text {
    font-size: 1.4rem;
    margin-top: 1.6rem;
    max-width: initial;
  }
}

.sec-story {
  padding: 88px 0 96px;
}
@media not screen and (min-width:768px) {
  .sec-story {
    padding: 4.5rem 0 4.3rem;
  }
}

.story-title-wrapper {
  border-bottom: 1px solid #CECECE;
}
@media not screen and (min-width:768px) {
  .story-title-wrapper {
    border-width: 0.1rem;
  }
}

.story-title {
  display: flex;
  gap: 9px;
  padding-bottom: 15px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media not screen and (min-width:768px) {
  .story-title {
    gap: 0.7rem;
    padding-bottom: 1.2rem;
  }
}
.story-title::after {
  background: #026f38;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 110%;
}
@media not screen and (min-width:768px) {
  .story-title::after {
    bottom: -0.1rem;
    height: 0.1rem;
  }
}
.story-title .title-jp {
  margin-top: initial;
}
.story-title .title-en {
  margin-top: 29px;
}
@media not screen and (min-width:768px) {
  .story-title .title-en {
    margin-top: 1.9rem;
  }
}

.story-items {
  display: grid;
  gap: 29px;
  grid-template-columns: 1fr;
  margin-top: 54px;
}
@media not screen and (min-width:768px) {
  .story-items {
    gap: 1.9rem;
    margin-top: 3.7rem;
  }
}

.story-item {
  padding-left: 50px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .story-item {
    padding-left: 5.1rem;
  }
}
.story-item::before {
  background: #BCE373;
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 13px;
  z-index: 1;
}
@media not screen and (min-width:768px) {
  .story-item::before {
    height: 1.3rem;
    left: 0.3rem;
    top: 0.2rem;
    width: 1.3rem;
  }
}
.story-item::after {
  background: #D8D8D8;
  content: "";
  height: calc(100% + 30px);
  left: 6px;
  position: absolute;
  top: 6px;
  width: 1px;
}
@media not screen and (min-width:768px) {
  .story-item::after {
    height: calc(100% + 1.9rem);
    left: 0.9rem;
    top: 0.6rem;
    width: 0.1rem;
  }
}
.story-item:last-of-type::after {
  display: none;
}

.story-item-title {
  color: #2C2C2C;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-left: 10px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .story-item-title {
    font-size: 1.8rem;
    margin-left: 0.2rem;
    padding-left: 1rem;
  }
}
.story-item-title::before {
  background: #026f38;
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 3px;
}
@media not screen and (min-width:768px) {
  .story-item-title::before {
    height: 1.7rem;
    width: 0.3rem;
  }
}

.story-item-text {
  font-size: 14px;
  letter-spacing: 0.024em;
  line-height: 2.2857142857;
  margin-top: 6px;
}
@media not screen and (min-width:768px) {
  .story-item-text {
    font-size: 1.4rem;
    margin-top: 0.6rem;
  }
}

.sec-message {
  background: #fff;
  padding: 77px 0 90px;
}
@media not screen and (min-width:768px) {
  .sec-message {
    padding: 6rem 0 6.9rem;
  }
}

.message-content {
  align-items: center;
  display: grid;
  gap: 5%;
  grid-template-columns: 42.9% 52.1%;
  margin-top: 45px;
}
@media not screen and (min-width:768px) {
  .message-content {
    gap: initial;
    grid-template-columns: 1fr;
    margin-top: 2.7rem;
  }
}

.message-img {
  grid-column: 1/2;
  grid-row: 1/4;
  height: 369px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .message-img {
    grid-row: 2/3;
    height: initial;
    margin-top: 2.7rem;
  }
}
.message-img img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media not screen and (min-width:768px) {
  .message-img img {
    height: auto;
    left: initial;
    position: static;
    top: initial;
    translate: initial;
  }
}

.message-lead {
  color: #2C2C2C;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 24px;
  font-weight: 500;
  grid-column: 2/3;
  grid-row: 1/2;
  letter-spacing: 0.04em;
  line-height: 1.4166666667;
  margin-top: 6px;
  padding-left: 18px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .message-lead {
    font-size: 2.2rem;
    grid-column: 1/2;
    grid-row: 1/2;
    line-height: 1.5454545455;
    margin-top: initial;
    padding-left: 1.8rem;
  }
}
.message-lead::before {
  background: #026f38;
  content: "";
  height: 90%;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 3px;
}
@media not screen and (min-width:768px) {
  .message-lead::before {
    width: 0.3rem;
  }
}

.message-text {
  font-size: 14px;
  grid-column: 2/3;
  grid-row: 2/3;
  letter-spacing: 0.024em;
  line-height: 2.2857142857;
  margin-top: 2px;
}
@media not screen and (min-width:768px) {
  .message-text {
    font-size: 1.4rem;
    grid-column: 1/2;
    grid-row: 3/4;
    margin-top: 2.3rem;
  }
}

.message-name {
  color: #2C2C2C;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 18px;
  font-weight: 500;
  grid-column: 2/3;
  grid-row: 3/4;
  letter-spacing: 0.04em;
  line-height: 1.7777777778;
}
@media not screen and (min-width:768px) {
  .message-name {
    font-size: 1.8rem;
    grid-column: 1/2;
    grid-row: 4/5;
    margin-top: 2.9rem;
  }
}

.btn-message {
  height: 54px;
  margin-top: 76px;
  width: 282px;
}
@media not screen and (min-width:768px) {
  .btn-message {
    height: 5.4rem;
    margin-top: 5.5rem;
    width: 28.2rem;
  }
}

/*=======================
下層 / 商品一覧
=======================*/
.page-product .low-head,
.page-notice .low-head,
.page-privacy .low-head {
  background-image: url(../img/head_product_pc.png);
}
@media not screen and (min-width:768px) {
  .page-product .low-head,
  .page-notice .low-head,
  .page-privacy .low-head {
    background-image: url(../img/head_product_sp.png);
  }
}

.sec-health {
  padding: 38px 0 85px;
}
@media not screen and (min-width:768px) {
  .sec-health {
    padding: 1.3rem 0 6.6rem;
  }
}

.health-title-wrapper {
  border-bottom: 1px solid #CECECE;
}
@media not screen and (min-width:768px) {
  .health-title-wrapper {
    border-width: 0.1rem;
  }
}

.health-title {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media not screen and (min-width:768px) {
  .health-title {
    gap: 1.2rem;
    padding-bottom: 0.8rem;
  }
}
.health-title::after {
  background: #026f38;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 110%;
}
@media not screen and (min-width:768px) {
  .health-title::after {
    bottom: -0.1rem;
    height: 0.1rem;
  }
}
.health-title .title-jp {
  margin-top: initial;
}
@media not screen and (min-width:768px) {
  .health-title .title-jp {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
  }
}
.health-title .title-en {
  margin-top: 29px;
}
@media not screen and (min-width:768px) {
  .health-title .title-en {
    margin-top: 1.9rem;
  }
}

.health-items {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  margin-top: 38px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .health-items {
    gap: 30px;
  }
}
@media not screen and (min-width:768px) {
  .health-items {
    gap: 5rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}

.health-item {
  display: grid;
  gap: 0;
  grid-row: span 3;
  grid-template-rows: subgrid;
}

.health-item-title {
  color: #000;
  margin-top: 21px;
}
@media not screen and (min-width:768px) {
  .health-item-title {
    margin-top: 2.7rem;
  }
}
.health-item-title .title-en {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4545454545;
}
@media not screen and (min-width:768px) {
  .health-item-title .title-en {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.health-item-title .title-jp {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 2.5;
  margin-top: 5px;
}
@media not screen and (min-width:768px) {
  .health-item-title .title-jp {
    font-size: 1.2rem;
    margin-top: 0.3rem;
  }
}

.btn-product {
  border-radius: initial;
  height: 38px;
  margin-top: 30px;
  width: 100%;
}
@media not screen and (min-width:768px) {
  .btn-product {
    height: 3.8rem;
    margin-top: 2.4rem;
  }
}
.btn-product::after {
  right: 34%;
}
@media not screen and (min-width:768px) {
  .btn-product::after {
    right: 10rem;
  }
}

/*=======================
下層 / 商品詳細
=======================*/
@media not screen and (min-width:768px) {
  .page-single .low-title .title-jp {
    margin-top: initial;
  }
}

.sec-overview {
  padding-top: 67px;
}
@media not screen and (min-width:768px) {
  .sec-overview {
    padding-top: 2.7rem;
  }
}

.overview-content {
  display: grid;
  gap: 7%;
  grid-template-columns: 50% 43%;
}
@media not screen and (min-width:768px) {
  .overview-content {
    gap: 2.8rem;
    grid-template-columns: 1fr;
  }
}

.overview-img {
  height: 345px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .overview-img {
    height: initial;
    width: 100%;
  }
}
.overview-img img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media not screen and (min-width:768px) {
  .overview-img img {
    height: auto;
    left: initial;
    position: static;
    top: initial;
    translate: initial;
  }
}

.overview-title {
  border-bottom: 1px solid #CECECE;
  color: #2C2C2C;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 25px;
  padding-bottom: 9px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .overview-title {
    border-width: 0.1rem;
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
  }
}
.overview-title::after {
  background: #026f38;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 190px;
}
@media not screen and (min-width:768px) {
  .overview-title::after {
    bottom: -0.1rem;
    height: 0.1rem;
    width: 5.6rem;
  }
}

.overview-items {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-bottom: 21px;
}
@media not screen and (min-width:768px) {
  .overview-items {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

.overview-item {
  align-items: center;
  display: flex;
  gap: 10px;
}
@media not screen and (min-width:768px) {
  .overview-item {
    gap: 1rem;
  }
}
.overview-item dt, .overview-item dd {
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media not screen and (min-width:768px) {
  .overview-item dt, .overview-item dd {
    font-size: 1.4rem;
  }
}
.overview-item dt {
  background: #026f38;
  color: #fff;
  display: grid;
  height: 25px;
  padding-bottom: 1px;
  place-content: center;
  width: 61px;
}
@media not screen and (min-width:768px) {
  .overview-item dt {
    height: 2.5rem;
    padding-bottom: 0.1rem;
    width: 6.1rem;
  }
}
.overview-item dd {
  color: #000;
}

.single-text {
  font-size: 14px;
  letter-spacing: 0.024em;
  line-height: 2.2857142857;
}
@media not screen and (min-width:768px) {
  .single-text {
    font-size: 1.4rem;
  }
}

.sec-single {
  padding: 70px 0;
}
@media not screen and (min-width:768px) {
  .sec-single {
    padding: 3.8rem 0;
  }
}

.single-title {
  border-bottom: 1px solid #CECECE;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4642857143;
  margin-bottom: 37px;
  padding-bottom: 13px;
  padding-left: 12px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .single-title {
    border-width: 0.1rem;
    font-size: 2.4rem;
    line-height: 1.4166666667;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    padding-left: 1.7rem;
  }
}
.single-title::before {
  background: #026f38;
  content: "";
  height: 33px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 3px;
}
@media not screen and (min-width:768px) {
  .single-title::before {
    height: 2.5rem;
    top: 0.6rem;
    width: 0.3rem;
  }
}
.single-title::after {
  background: #026f38;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 190px;
}
@media not screen and (min-width:768px) {
  .single-title::after {
    bottom: -0.1rem;
    height: 0.1rem;
    width: 5.6rem;
  }
}

.single-about-content {
  align-items: center;
  display: grid;
  gap: 7%;
  grid-template-columns: 50% 43%;
}
@media not screen and (min-width:768px) {
  .single-about-content {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
}

.sec-single-nanosight {
  background: #fff;
}

.single-nanosight-title {
  margin-bottom: 18px;
}
@media not screen and (min-width:768px) {
  .single-nanosight-title {
    margin-bottom: 0.8rem;
  }
}

.single-nanosight-content {
  display: grid;
  gap: 5.2%;
  grid-template-columns: 47.4% 47.4%;
  margin-top: 31px;
}
@media not screen and (min-width:768px) {
  .single-nanosight-content {
    gap: 1.7rem;
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
  }
}

.sec-single-features {
  padding-bottom: 100px;
}
@media not screen and (min-width:768px) {
  .sec-single-features {
    padding-bottom: 6.6rem;
  }
}

.single-features-title {
  margin-bottom: 33px;
}
@media not screen and (min-width:768px) {
  .single-features-title {
    margin-bottom: 1.5rem;
  }
}

.single-items {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media not screen and (min-width:768px) {
  .single-items {
    gap: 3rem;
  }
}

.single-item-title {
  background: transparent linear-gradient(270deg, #BCE373 0%, #068141 100%) 0% 0% no-repeat padding-box;
  border-radius: 20px 20px 0 0;
  color: #fff;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  min-height: 63px;
  padding: 15px 0 12px;
  text-align: center;
}
@media not screen and (min-width:768px) {
  .single-item-title {
    border-radius: 2rem 2rem 0 0;
    font-size: 1.6rem;
    line-height: 2;
    min-height: 4.8rem;
    padding: 0.8rem 0;
  }
}

/*=======================
下層 / 特商法
=======================*/
.notice-info {
  margin-top: 34px;
}
@media not screen and (min-width:768px) {
  .notice-info {
    margin-top: 1.3rem;
  }
}

.notice-info-item {
  display: grid;
  grid-template-columns: 110px 1fr;
}
@media not screen and (min-width:768px) {
  .notice-info-item {
    grid-template-columns: 11rem 1fr;
  }
}
.notice-info-item dt, .notice-info-item dd {
  border-bottom: 1px solid;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8571428571;
  min-height: 50px;
}
@media not screen and (min-width:768px) {
  .notice-info-item dt, .notice-info-item dd {
    border-width: 0.1rem;
    font-size: 1.4rem;
    min-height: 5rem;
  }
}
.notice-info-item dt {
  border-color: #026f38;
  padding: 11px 4px;
}
@media not screen and (min-width:768px) {
  .notice-info-item dt {
    padding: 1.1rem 0.4rem;
  }
}
.notice-info-item dd {
  border-color: #C7C7C7;
  padding: 11px 12px;
}
@media not screen and (min-width:768px) {
  .notice-info-item dd {
    padding: 1.1rem 1.2rem;
  }
}
.notice-info-item dd a {
  color: #222;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .notice-info-item dd a:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .notice-info-item dd a:hover {
    opacity: 0.5;
  }
}

.notice-content {
  padding: 77px 0 88px;
}
@media not screen and (min-width:768px) {
  .notice-content {
    padding: 6rem 0;
  }
}

.notice-items {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr;
}
@media not screen and (min-width:768px) {
  .notice-items {
    gap: 3rem;
  }
}

.notice-item-title {
  border-bottom: 1px solid #CECECE;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4642857143;
  padding-bottom: 12px;
  padding-left: 12px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .notice-item-title {
    border-width: 0.1rem;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    line-height: 1.4166666667;
    padding-bottom: 1rem;
    padding-left: 1.2rem;
  }
}
.notice-item-title::before {
  background: #026f38;
  content: "";
  height: 33px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 3px;
}
@media not screen and (min-width:768px) {
  .notice-item-title::before {
    height: 60%;
    top: 43%;
    translate: 0 -50%;
    width: 0.3rem;
  }
}
.notice-item-title::after {
  background: #026f38;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 190px;
}
@media not screen and (min-width:768px) {
  .notice-item-title::after {
    bottom: -0.1rem;
    height: 0.1rem;
    width: 14rem;
  }
}

.notice-item-text {
  font-size: 14px;
  letter-spacing: 0.024em;
  line-height: 2.2857142857;
  margin-bottom: 32px;
}
@media not screen and (min-width:768px) {
  .notice-item-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.notice-item-text:last-of-type {
  margin-bottom: 0;
}

.notice-child-item {
  margin-top: 21px;
}
@media not screen and (min-width:768px) {
  .notice-child-item {
    margin-top: 1.5rem;
  }
}

.notice-child-item-title {
  align-items: center;
  background: #026f38;
  color: #fff;
  display: flex;
  font-size: 14px;
  height: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 9px;
  padding: 0 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media not screen and (min-width:768px) {
  .notice-child-item-title {
    font-size: 1.4rem;
    height: 2.4rem;
    margin-bottom: 1rem;
    padding: 0 0.8rem;
  }
}

/*=======================
下層 / プラポリ
=======================*/
.privacy-content {
  padding: 54px 0 97px;
}
@media not screen and (min-width:768px) {
  .privacy-content {
    padding: 2rem 0 6rem;
  }
}

.privacy-items {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr;
  margin-bottom: 66px;
}
@media not screen and (min-width:768px) {
  .privacy-items {
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.privacy-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.024em;
  line-height: 2.125;
}
@media not screen and (min-width:768px) {
  .privacy-text {
    font-size: 1.6rem;
  }
}

/*=======================
下層 / お問い合わせ
=======================*/
.page-contact .low-head,
.page-thanks .low-head {
  background-image: url(../img/head_contact_pc.png);
}
@media not screen and (min-width:768px) {
  .page-contact .low-head,
  .page-thanks .low-head {
    background-image: url(../img/head_contact_sp.png);
  }
}

.sec-contact,
.sec-thanks {
  padding: 30px 0 119px;
}
@media not screen and (min-width:768px) {
  .sec-contact,
  .sec-thanks {
    padding: 2.5rem 0 7.4rem;
  }
}

.contact-text,
.thanks-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2.1428571429;
  margin-top: 24px;
  text-align: center;
}
@media not screen and (min-width:768px) {
  .contact-text,
  .thanks-text {
    font-size: 1.4rem;
    letter-spacing: 0.024em;
    line-height: 2.2857142857;
    margin-top: 2.2rem;
  }
}

.contact-form,
.thanks-content {
  margin-top: 50px;
}
@media not screen and (min-width:768px) {
  .contact-form,
  .thanks-content {
    margin-top: 2.8rem;
  }
}

.contact-form-items {
  background: #fff;
  padding: 44px 70px 80px;
}
@media not screen and (min-width:768px) {
  .contact-form-items {
    padding: 1.7rem 2rem 2rem;
  }
}

.contact-form-item {
  border-bottom: 1px solid #BCBCBC;
  display: grid;
  grid-template-columns: 240px 1fr;
}
@media not screen and (min-width:768px) {
  .contact-form-item {
    border-width: 0.1rem;
    gap: 1.4rem 0;
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }
  .contact-form-item:last-of-type {
    border-bottom: none;
  }
}
.contact-form-item dt, .contact-form-item dd {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media not screen and (min-width:768px) {
  .contact-form-item dt, .contact-form-item dd {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.3125;
  }
}
.contact-form-item dt {
  align-items: center;
  background: #ECF4E7;
  display: flex;
  gap: 9px;
  padding-left: 29px;
}
@media not screen and (min-width:768px) {
  .contact-form-item dt {
    background: #fff;
    gap: 1rem;
    padding-left: initial;
  }
}
.contact-form-item dt.required {
  position: relative;
}
.contact-form-item dt.required::after {
  background: #026f38;
  border-radius: 40px;
  color: #fff;
  content: "必須";
  display: grid;
  font-size: 12px;
  font-weight: 500;
  height: 22px;
  place-content: center;
  width: 43px;
}
@media not screen and (min-width:768px) {
  .contact-form-item dt.required::after {
    border-radius: 4rem;
    font-size: 1.2rem;
    height: 2.5rem;
    width: 5rem;
  }
}
.contact-form-item dd {
  padding: 30px 0 30px 40px;
}
@media not screen and (min-width:768px) {
  .contact-form-item dd {
    padding: initial;
  }
}
.contact-form-item input,
.contact-form-item textarea {
  background: #F5F5F5;
  border: none;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 10px;
  width: 100%;
}
@media not screen and (min-width:768px) {
  .contact-form-item input,
  .contact-form-item textarea {
    font-size: 1.6rem;
    padding: 1rem;
  }
}
.contact-form-item input {
  height: 40px;
}
@media not screen and (min-width:768px) {
  .contact-form-item input {
    height: 4rem;
  }
}
.contact-form-item textarea {
  min-height: 217px;
}
@media not screen and (min-width:768px) {
  .contact-form-item textarea {
    min-height: 15rem;
  }
}

.btn-contact {
  margin-top: 61px;
  position: relative;
}
@media not screen and (min-width:768px) {
  .btn-contact {
    margin-top: 5rem;
  }
}
.btn-contact::before {
  background: url(../img/icon_airplane.svg);
  content: "";
  height: 19px;
  left: 90px;
  position: absolute;
  width: 23px;
}
@media not screen and (min-width:768px) {
  .btn-contact::before {
    background-size: 2.3rem 1.9rem;
    height: 1.9rem;
    left: 9rem;
    width: 2.3rem;
  }
}
.btn-contact input {
  background: transparent;
  border: none;
  border-radius: 9999px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  height: 55px;
  letter-spacing: 0.02em;
  width: 305px;
}
@media not screen and (min-width:768px) {
  .btn-contact input {
    font-size: 1.5rem;
    height: 5.5rem;
    width: 30.5rem;
  }
}

.btn-thanks {
  height: 55px;
  margin-top: 70px;
  width: 305px;
}
@media not screen and (min-width:768px) {
  .btn-thanks {
    height: 5.5rem;
    margin-top: 5rem;
    width: 30.5rem;
  }
}

/*=======================
下層 / 確認ページ・サンクスページ
=======================*/
.pageConfirm .confirm-box,
.pageThanks .confirm-box {
  margin-top: 100px;
}
@media not screen and (min-width:768px) {
  .pageConfirm .confirm-box,
  .pageThanks .confirm-box {
    margin-top: 8rem;
  }
}
.pageConfirm .confirm-box dl,
.pageThanks .confirm-box dl {
  display: grid;
  grid-template-columns: 220px 1fr;
}
@media not screen and (min-width:768px) {
  .pageConfirm .confirm-box dl,
  .pageThanks .confirm-box dl {
    grid-template-columns: 11.5rem 1fr;
  }
}
.pageConfirm .confirm-box dl:last-of-type dt,
.pageConfirm .confirm-box dl:last-of-type dd,
.pageThanks .confirm-box dl:last-of-type dt,
.pageThanks .confirm-box dl:last-of-type dd {
  border-bottom: none;
}
.pageConfirm .confirm-box dt,
.pageConfirm .confirm-box dd,
.pageThanks .confirm-box dt,
.pageThanks .confirm-box dd {
  align-items: center;
  display: flex;
  font-size: 16px;
  letter-spacing: 0.08em;
  min-height: 90px;
  padding: 30px;
  word-break: break-all;
}
@media not screen and (min-width:768px) {
  .pageConfirm .confirm-box dt,
  .pageConfirm .confirm-box dd,
  .pageThanks .confirm-box dt,
  .pageThanks .confirm-box dd {
    font-size: 1.2rem;
    min-height: 6rem;
    padding: 1rem 0.5rem;
  }
}
.pageConfirm .confirm-box dt,
.pageThanks .confirm-box dt {
  background: #222;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: bold;
}
.pageConfirm .confirm-box dd,
.pageThanks .confirm-box dd {
  border-bottom: 1px solid #c6c6c6;
}
.pageConfirm .confirm-box .btn-wrapper,
.pageThanks .confirm-box .btn-wrapper {
  margin-top: 50px;
}
@media not screen and (min-width:768px) {
  .pageConfirm .confirm-box .btn-wrapper,
  .pageThanks .confirm-box .btn-wrapper {
    margin-top: 4rem;
  }
}

.thanks-box {
  margin-top: 40px;
  text-align: center;
}
@media not screen and (min-width:768px) {
  .thanks-box {
    margin-top: 4rem;
  }
}

.thanks-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media not screen and (min-width:768px) {
  .thanks-title {
    font-size: 2.2rem;
  }
}

.thanks-text {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 30px;
}
@media not screen and (min-width:768px) {
  .thanks-text {
    font-size: 1.6rem;
    margin-top: 2.2rem;
  }
}

.thanks-btn {
  background: #fff !important;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 20px;
}
@media not screen and (min-width:768px) {
  .thanks-btn {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
}