@charset "UTF-8";
/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  overflow-wrap: break-word;
}

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

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

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

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ========================================
変数・関数
======================================== */
:root {
  --color-black: #142623;
  --color-white: #F3F5F5;
  --color-green: #00B19D;
  --color-yellow: #FFFF41;
  --font-base: "FP-HiraKakuProN-W4" , sans-serif;
  --font-bold: "FP-HiraKakuProN-W6" , sans-serif;
  --font-futura-Heavy: "FuturaLTPro-Heavy", "FP-HiraKakuProN-W6" , sans-serif;
  --font-futura-BoldOblique: "FuturaLTPro-BoldOblique", "FP-HiraKakuProN-W6" , sans-serif;
  --z-index-nav: 10;
  --z-index-fixedContact: 11;
  --z-index-navBtn: 12;
  --mg-pc: min(calc(80 / 1366 * 100vw) , 80px);
  --mg-sp: min(calc(20 / 390 * 100vw) , 20px);
}

@media screen and (max-width: 768px) {
  :root {
    --z-index-fixedContact: 9;
  }
}
/* ========================================
mixin
======================================== */
/* ========================================
ベースCSS
======================================== */
body {
  color: var(--color-black);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  background-color: var(--color-white);
}

*,
*::before,
*::after {
  letter-spacing: 0.025em;
}

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

/* CLEAR-FIX */
/* ========================================
モジュール・パーツ m-
======================================== */
.m-inner {
  width: 88.2869692533vw;
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: calc(100% - var(--mg-sp) * 2);
  }
}

.m-linkCircle--white, .m-linkCircle {
  display: block;
  width: 200px;
  padding: 9px 0 9px 6px;
  color: var(--color-green);
  font-family: var(--font-bold);
  font-size: 18px;
  border-bottom: 1px solid var(--color-green);
  position: relative;
}
.m-linkCircle--white::after, .m-linkCircle::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: var(--color-green) url(../image/common/arrow-white.svg) center/auto no-repeat;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  right: 0;
  transition: 0.2s;
}
.m-linkCircle--white:hover::after, .m-linkCircle:hover::after {
  background-color: var(--color-yellow);
  background-image: url(../image/common/arrow-green.svg);
}

.m-linkCircle--white {
  color: #fff;
  border-bottom-color: #fff;
}
.m-linkCircle--white::after {
  background-color: #fff;
  background-image: url(../image/common/arrow-green.svg);
}

.m-secTtl__en {
  display: block;
  font-family: var(--font-futura-Heavy);
  font-size: 76px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .m-secTtl__en {
    font-size: 45px;
  }
}
.m-secTtl__ja {
  display: block;
  padding-left: 20px;
  font-family: var(--font-bold);
  font-size: 18px;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-secTtl__ja {
    font-size: 16px;
  }
}
.m-secTtl__ja::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-green);
  position: absolute;
  top: 9px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .m-secTtl__ja::before {
    width: 10px;
    height: 10px;
  }
}

.m-bgWhite {
  background-color: var(--color-white);
}

.m-colorGreen {
  color: #0B8476;
}

.m-bold {
  font-family: var(--font-bold);
}

/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

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

.u-ib {
  display: inline-block !important;
}

.u-text-center {
  text-align: center !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}

.u-weight-100 {
  font-weight: 100 !important;
}

.u-weight-200 {
  font-weight: 200 !important;
}

.u-weight-300 {
  font-weight: 300 !important;
}

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

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

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

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

.u-weight-800 {
  font-weight: 800 !important;
}

.u-weight-900 {
  font-weight: 900 !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

/* ========================================
header
======================================== */
/* ========================================
footer
======================================== */
/* ========================================
メニュー
======================================== */
/* ========================================
共通で使うレイアウト l-
======================================== */
.l-header__contact {
  position: fixed;
  top: 40px;
  right: 156px;
  z-index: var(--z-index-fixedContact);
}
@media screen and (max-width: 767px) {
  .l-header__contact {
    width: calc(350 / 390 * 100vw);
    top: auto;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-header__contact a {
  display: block;
  width: 208px;
  height: 83px;
  background: url(../image/common/bg_balloon.png) center/contain;
  padding-top: 20px;
  text-align: center;
  color: #2E6F60;
  font-size: 18px;
  font-family: var(--font-bold);
}
@media screen and (max-width: 767px) {
  .l-header__contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: #fff;
    border-radius: 30px;
    padding-top: 0;
  }
  .l-header__contact a::before {
    content: "";
    display: block;
    width: 20px;
    height: 14px;
    background: url(../image/common/icon_mail.svg) center/contain no-repeat;
  }
}
.l-header__navBtn {
  position: fixed;
  top: 58px;
  right: 77px;
  z-index: var(--z-index-navBtn);
}
@media screen and (max-width: 767px) {
  .l-header__navBtn {
    top: 30px;
    right: 27px;
  }
}
.l-header__navBtn span {
  display: block;
  width: 56px;
  height: 4px;
  background: #2E6F60;
  transform: skewX(-25deg);
  background: #fff;
  filter: drop-shadow(0px 0px 6px rgba(104, 124, 122, 0.4));
}
@media screen and (max-width: 767px) {
  .l-header__navBtn span {
    width: 35px;
    height: 3px;
  }
}
.l-header__navBtn span + span {
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  .l-header__navBtn span + span {
    margin-top: 6px;
  }
}
.l-header__navBtn span:nth-child(1) {
  transform: translateX(5px) skewX(-20deg);
}
@media screen and (max-width: 767px) {
  .l-header__navBtn span:nth-child(1) {
    transform: translateX(5px) skewX(-20deg);
  }
}
.l-header__navBtn span:nth-child(3) {
  transform: translateX(-5px) skewX(-20deg);
}
.is-menuActive .l-header__navBtn span {
  background: #2E6F60;
}

.l-nav {
  width: 100%;
  height: 100%;
  background: #F3F5F5;
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-index-nav);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.3s 0s, transform 0s 0.3s;
}
.is-menuActive .l-nav {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s 0s, transform 0s 0s;
}
.l-nav__img {
  width: 38.2137628111%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-nav__img {
    width: 48.7179487179%;
  }
}
.l-nav__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
.l-nav__contBox {
  width: 61.7862371889%;
  height: 100%;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 39.0625vh;
}
@media screen and (max-width: 767px) {
  .l-nav__contBox {
    display: block;
    width: 51.2820512821%;
    padding-left: calc(40 / 390 * 100vw);
    padding-top: 95px;
    padding-bottom: 40px;
    padding-right: 5px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .l-nav__contBox::-webkit-scrollbar {
    display: none;
  }
}
.l-nav__primary {
  width: min(52.0833333333vw, 456px);
  max-width: 96%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-nav__primary {
    grid-template-columns: repeat(1, auto);
  }
}
.l-nav__primary .--current a * {
  color: var(--color-green);
}
.l-nav__primary a {
  display: block;
}
.l-nav__primary .__en {
  display: block;
  font-family: var(--font-futura-Heavy);
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1.3076923077;
  letter-spacing: 0.04em;
}
.l-nav__primary .__ja {
  display: block;
  padding-left: 20px;
  color: #537771;
  font-family: var(--font-bold);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.7142857143;
  position: relative;
}
.l-nav__primary .__ja::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: var(--color-green);
  position: absolute;
  top: 50%;
  left: 0;
}
.l-nav__privacy {
  margin-top: 40px;
}
.l-nav__privacy a {
  display: inline-block;
  color: #537771;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .l-nav__privacy {
    display: none;
  }
}
.l-nav__deco {
  color: #C9DDD6;
  font-family: var(--font-futura-BoldOblique);
  font-size: min(7.3206442167vw, 100px);
  letter-spacing: 0.05em;
  line-height: 1.05;
  position: absolute;
  right: 5.8565153734%;
  bottom: 3.90625%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-nav__deco {
    display: none;
  }
}

.l-newsList a {
  display: block;
  padding: 20px 30px 20px 10px;
  background: url(../image/common/arrow-green.svg) right bottom 25px/auto no-repeat;
  border-bottom: 1px solid var(--color-green);
  font-family: var(--font-bold);
}
@media (hover: hover) {
  .l-newsList a {
    transition: 0.3s;
  }
  .l-newsList a:hover {
    background-color: color-mix(in srgb, var(--color-green) 16%, transparent);
  }
}
.l-newsList__time {
  display: block;
  color: var(--color-green);
  font-size: 14px;
  line-height: 1;
}
.l-newsList__ttl {
  margin-top: 16px;
  font-family: var(--font-bold);
  font-size: 16px;
}

.l-footer {
  padding-top: 100px;
  height: 814px;
  background: var(--color-white) url(../image/common/footer_bg-pc.png) center bottom/1880px auto no-repeat;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 80px;
    height: 380px;
    background-image: url(../image/common/footer_bg-sp.png);
    background-size: 698px auto;
  }
}
.l-footer__nav {
  margin-top: 320px;
  width: min(52.0833333333vw, 456px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav > ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__nav > ul {
    grid-template-columns: repeat(1, auto);
  }
}
.l-footer__nav a {
  display: block;
}
.l-footer__nav .__en {
  display: block;
  font-family: var(--font-futura-Heavy);
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1.3076923077;
  letter-spacing: 0.04em;
}
.l-footer__nav .__ja {
  display: block;
  padding-left: 20px;
  color: #537771;
  font-family: var(--font-bold);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.7142857143;
  position: relative;
}
.l-footer__nav .__ja::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: var(--color-green);
  position: absolute;
  top: 50%;
  left: 0;
}
.l-footer__foot {
  margin-top: 85px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .l-footer__foot {
    display: block;
    margin-top: 142px;
  }
}
.l-footer__foot a {
  display: inline-block;
  text-decoration: underline;
  letter-spacing: 0;
}
.l-footer__copyright {
  display: block;
  font-family: var(--font-futura-Heavy);
  font-size: 14px;
  letter-spacing: 0;
}
.l-footer__copy {
  display: flex;
  width: 100%;
  margin-top: 20px;
  color: #2E6F60;
  font-family: var(--font-futura-BoldOblique);
  font-size: 66px;
  letter-spacing: 0.05em;
  line-height: 1;
  place-items: center;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 10px;
    font-size: 45px;
  }
}

.l-head {
  padding-top: 130px;
}
.l-head .m-secTtl__en {
  font-size: 100px;
}
@media screen and (max-width: 767px) {
  .l-head .m-secTtl__en {
    font-size: min(calc(55 / 390 * 100vw), 55px);
  }
}
.l-head .m-secTtl__ja {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .l-head .m-secTtl__ja {
    font-size: 18px;
  }
}

/* ========================================
トップページ home
======================================== */
.p-home {
  overflow: hidden;
}

.p-homeBg {
  width: 100%;
  height: 100vh;
  margin-bottom: -100vh;
  position: fixed;
  z-index: -1;
}
.p-homeBg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-homeFirst {
  padding-bottom: 708px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-homeFirst {
    padding-bottom: 482px;
  }
}

.p-homeHead {
  display: flex;
  align-items: center;
  padding-top: 215px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-homeHead {
    padding-top: 82px;
  }
}
.p-homeHead__ttlEn {
  font-family: var(--font-futura-BoldOblique);
  font-size: min(calc(125 / 1366 * 100vw), 125px);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-homeHead__ttlEn {
    font-size: min(calc(58 / 390 * 100vw), 58px);
    line-height: 1.2;
  }
}
.p-homeHead__ttlMain {
  margin-top: 10px;
  font-family: var(--font-bold);
  font-size: 24px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-homeHead__ttlMain {
    margin-top: 6px;
    font-size: 20px;
  }
}

.p-homeGel {
  width: 100%;
  transform: translateY(-50%);
  position: absolute;
  top: 717px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-homeGel {
    top: 560px;
  }
}
.p-homeGel__cont01 {
  display: block;
  width: min(calc(799 / 1366 * 100vw), 799px);
  max-width: 799px;
  margin-left: auto;
  margin-right: 93px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-homeGel__cont01 {
    width: min(calc(286 / 390 * 100vw), 286px);
    margin-right: 0;
  }
}
.p-homeGel__cont02 {
  width: min(calc(1019 / 1366 * 100vw), 1019px);
  max-width: 1019px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(19.5%, 41.5%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-homeGel__cont02 {
    width: min(calc(366 / 390 * 100vw), 366px);
    transform: translate(29%, 45%);
  }
}

.p-homeIntro {
  padding: 0 var(--mg-pc);
  color: #fff;
  font-family: var(--font-bold);
  margin-top: 450px;
}
@media screen and (max-width: 767px) {
  .p-homeIntro {
    margin-top: 52px;
    padding: 0;
  }
}
.p-homeIntro__ttl {
  color: var(--color-green);
  font-size: min(calc(60 / 1366 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .p-homeIntro__ttl {
    font-size: min(calc(30 / 390 * 100vw), 30px);
  }
}
.p-homeIntro__ttl span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  line-height: 1;
  padding: 0.17em 0.2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-homeIntro__ttl span {
    margin-bottom: 10px;
    padding: 0.27em 0.2em;
  }
}
.p-homeIntro__ttl span.__pcWrap {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-homeIntro__ttl span.__pcWrap span {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .p-homeIntro__ttl span.__pcWrap {
    display: contents;
  }
  .p-homeIntro__ttl span.__pcWrap::before {
    display: none;
  }
}
.p-homeIntro__ttl span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.p-homeIntro__desc {
  margin-top: 89px;
  font-size: min(2.34375vw, 22px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-homeIntro__desc {
    margin-top: 350px;
    font-size: min(calc(18 / 390 * 100vw), 18px);
    text-shadow: 0px 0px 6px #046a5e;
  }
}
.p-homeIntro__link {
  margin-top: 75px;
}

.p-homeCase {
  margin-top: -408px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-homeCase {
    margin-top: -332px;
  }
}
.p-homeCase .m-secTtl {
  margin-bottom: 47px;
}
@media screen and (max-width: 767px) {
  .p-homeCase .m-secTtl {
    margin-bottom: 30px;
  }
}
.p-homeCase .m-secTtl__en {
  color: #fff;
}
.p-homeCase .m-secTtl__ja {
  color: #fff;
}
.p-homeCase .m-secTtl__ja::before {
  background-color: var(--color-yellow);
}
.p-homeCase__listWrap {
  position: relative;
  z-index: 1;
}
.p-homeCase__listWrap::before {
  content: "";
  display: block;
  background: var(--color-white);
  width: 1000%;
  height: 1000%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.p-homeCase__list {
  display: flex;
  gap: 0 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-homeCase__list {
    gap: 0 15px;
  }
}
.p-homeCase__list > li {
  background: #abece0;
  flex: 0 0 min(58.5651537335vw, 800px);
  aspect-ratio: 800/505;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-homeCase__list > li {
    flex: 0 0 min(85.8974358974vw, 335px);
    aspect-ratio: 335/474;
  }
}
.p-homeCase__list > li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../image/home/case_overlay-pc.png) center bottom/100% auto no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .p-homeCase__list > li::before {
    background-image: url(../image/home/case_overlay-sp.png);
  }
}
.p-homeCase__listCont {
  width: 100%;
  padding: 0 min(calc(50 / 1366 * 100vw), 50px) min(calc(50 / 1366 * 100vw), 50px) min(calc(50 / 1366 * 100vw), 50px);
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-homeCase__listCont {
    padding: 0 min(calc(25 / 390 * 100vw), 25px) min(calc(30 / 390 * 100vw), 30px) min(calc(25 / 390 * 100vw), 25px);
  }
}
.p-homeCase__listCase {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.267em 0.25em;
  background: #fff;
  color: var(--color-green);
  font-family: var(--font-bold);
  font-size: min(3.125vw, 30px);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-homeCase__listCase {
    font-size: min(calc(24 / 390 * 100vw), 24px);
  }
}
.p-homeCase__listTtl {
  margin-top: 0.95em;
  font-size: min(2.34375vw, 24px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-homeCase__listTtl {
    font-size: min(calc(20 / 390 * 100vw), 20px);
  }
}
.p-homeCase__listDesc {
  margin-top: 0.8em;
  font-size: min(1.5625vw, 16px);
  line-height: 1.6875;
}
@media screen and (max-width: 767px) {
  .p-homeCase__listDesc {
    padding-right: min(calc(40 / 390 * 100vw), 40px);
    font-size: min(calc(16 / 390 * 100vw), 16px);
  }
}
.p-homeCase__listBg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-homeReason {
  display: flex;
  justify-content: space-between;
  gap: 0 5.8043117745%;
  padding-top: 146px;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-homeReason {
    padding-top: 80px;
    display: block;
  }
}
.p-homeReason__contBox {
  flex: 1;
}
.p-homeReason__desc {
  margin-top: min(calc(110 / 1366 * 100vw), 110px);
  padding-left: min(calc(43 / 1366 * 100vw), 43px);
  font-family: var(--font-bold);
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-homeReason__desc {
    margin-top: 45px;
    padding-left: 0;
  }
}
.p-homeReason__imgBox {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-homeReason__imgBox {
    width: 100%;
    margin-top: 75px;
  }
  .p-homeReason__imgBox img {
    width: 100%;
  }
}

.p-homeNews {
  display: flex;
  justify-content: space-between;
  margin-top: 148px;
  position: relative;
  z-index: 1;
  padding-right: var(--mg-pc);
}
@media screen and (max-width: 767px) {
  .p-homeNews {
    display: block;
    margin-top: 100px;
    padding-bottom: 95px;
  }
}
.p-homeNews__head {
  flex: 1;
}
.p-homeNews .l-newsList {
  margin-top: -20px;
  width: 61.7229129663%;
}
@media screen and (max-width: 767px) {
  .p-homeNews .l-newsList {
    margin-top: 20px;
    width: 100%;
  }
}
.p-homeNews__link {
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-companyVendor__ttl {
  margin-top: 130px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-companyVendor__ttl {
    margin-top: 80px;
  }
}
.p-companyVendor__ttl .__en {
  display: block;
  font-family: var(--font-futura-Heavy);
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-companyVendor__ttl .__en {
    font-size: 25px;
  }
}
.p-companyVendor__ttl .__ja {
  display: block;
  text-align: center;
  color: var(--color-green);
  font-family: var(--font-bold);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-companyVendor__ttl .__ja {
    font-size: 16px;
  }
}
.p-companyVendor__cont {
  width: -moz-fit-content;
  width: fit-content;
  margin: 65px auto 0;
}
@media screen and (max-width: 767px) {
  .p-companyVendor__cont {
    margin-top: 40px;
  }
}
.p-companyVendor__cont dl {
  display: flex;
}
.p-companyVendor__cont dl + dl {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-companyVendor__cont dl + dl {
    margin-top: 30px;
  }
}
.p-companyVendor__cont dt {
  width: 160px;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-companyVendor__cont dt {
    width: 120px;
  }
}
.p-companyVendor__cont dt::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #00B19D;
  position: absolute;
  top: 11px;
  left: 0;
}
.p-companyVendor__cont dd {
  flex: 1;
}
.p-companyVendor__list > li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .p-companyVendor__list span:nth-child(1) {
    display: inline-block;
    width: 190px;
  }
}

.p-news-archive__list {
  margin-top: 120px;
  max-width: 900px;
}

.p-newsContainer {
  max-width: 900px;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .p-newsContainer {
    margin-top: 90px;
  }
}

.p-news__time {
  display: block;
  color: var(--color-green);
  font-size: 18px;
  font-family: var(--font-bold);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-news__time {
    font-size: 14px;
  }
}
.p-news__postTtl {
  margin-top: 16px;
  font-family: var(--font-bold);
  font-size: 30px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-news__postTtl {
    font-size: 24px;
  }
}
.p-news__post {
  margin-top: 40px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-news__post {
    margin-top: 70px;
    padding-top: 70px;
    border-top: 1px solid var(--color-green);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-news__post {
    margin-top: 30px;
    padding-bottom: 35px;
  }
}
.p-news__linkBack {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .p-news__linkBack {
    margin-top: 80px;
  }
}

.p-shopInfo {
  max-width: 960px;
  margin: 20px auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 90px 40px 60px;
}
@media screen and (max-width: 767px) {
  .p-shopInfo {
    padding: 50px min(calc(40 / 390 * 100vw), 40px);
  }
}
.p-shopInfo dl {
  display: flex;
  font-family: var(--font-bold);
  max-width: 616px;
  margin: 0 auto;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-shopInfo dl {
    display: block;
    text-align: center;
  }
}
.p-shopInfo dl + dl {
  margin-top: 35px;
}
.p-shopInfo dt {
  width: 106px;
  color: #009B88;
}
@media screen and (max-width: 767px) {
  .p-shopInfo dt {
    width: 100%;
  }
}
.p-shopInfo dd {
  flex: 1;
}

.p-shopListContainer {
  margin-top: 160px;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .p-shopListContainer {
    margin-top: 90px;
  }
}

.p-shopList {
  margin-top: 80px;
}
.p-shopList__place {
  display: block;
  padding-left: 25px;
  font-family: var(--font-bold);
  font-size: 22px;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-shopList__place {
    font-size: 16px;
  }
}
.p-shopList__place::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #00B19D;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}
.p-shopList__list {
  margin-top: 30px;
}
.p-shopList__list > * {
  padding: 20px 0;
  border-top: 2px solid color-mix(in srgb, #69D9CD 50%, transparent);
  display: grid;
  grid-template-columns: 37.5% 52% 1fr;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-shopList__list > * {
    display: block;
    border-color: #02B19D;
  }
}
.p-shopList__list > *:last-child {
  border-bottom: 2px solid color-mix(in srgb, #69D9CD 50%, transparent);
}
@media screen and (max-width: 767px) {
  .p-shopList__list > *:last-child {
    border-color: #02B19D;
  }
}
.p-shopList__list > *:last-child .p-shopList__contTtl::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #00B19D;
  position: absolute;
  bottom: -22px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-shopList__list > *:last-child .p-shopList__contTtl::after {
    display: none;
  }
}
.p-shopList__contTtl {
  font-family: var(--font-bold);
  position: relative;
}
.p-shopList__contTtl::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #00B19D;
  position: absolute;
  top: -22px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-shopList__contTtl::before {
    display: none;
  }
}
.p-shopList__info {
  padding: 0 40px 0 30px;
}
@media screen and (max-width: 767px) {
  .p-shopList__info {
    padding: 0;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-shopList__tel {
    margin-top: 10px;
  }
}
.p-shopList__links {
  align-self: center;
}
@media screen and (max-width: 767px) {
  .p-shopList__links {
    margin-top: 10px;
  }
}
.p-shopList__links a {
  padding-right: 24px;
  display: block;
  color: var(--color-green);
  border-bottom: 1px solid var(--color-green);
  font-size: 14px;
  font-family: var(--font-bold);
  background: url(../image/common/arrow-green.svg) right center/12px auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-shopList__links a {
    width: -moz-fit-content;
    width: fit-content;
  }
}/*# sourceMappingURL=style.css.map */