@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Tenor+Sans&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 1.6rem;
  color: #2c4662;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2.1;
  width: 100%;
  color: #2c4662;
}
@media screen and (max-width: 450px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

/***************************

layout/_header.scss

***************************/
header .inner {
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 30px;
}

.sub-gnav {
  max-width: 250px;
  margin-right: 10vw;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 834px) {
  .sub-gnav {
    display: none;
  }
}
.sub-gnav_list {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5em 110px;
}
.sub-gnav_item {
  width: calc((100% - 110px) / 2);
}

/* Hamburger menu */
.gnav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100lvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(../img/common/gnav-bg.webp) no-repeat center center/cover;
  color: #fff;
  z-index: 6;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  pointer-events: none;
}
@media screen and (max-width: 450px) {
  .gnav {
    padding-top: 70px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.gnav.active {
  position: fixed;
  opacity: 1;
  visibility: visible;
  pointer-events: fill;
}
.gnav-inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.gnav-list {
  position: relative;
  width: 50%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 6vh 0;
}
@media screen and (max-width: 1410px) {
  .gnav-list {
    width: 100%;
  }
}
.gnav-list-item {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gnav-list-item:nth-of-type(1), .gnav-list-item:nth-of-type(2), .gnav-list-item:nth-of-type(3), .gnav-list-item:nth-of-type(4) {
  font-size: 6rem;
}
@media screen and (max-width: 834px) {
  .gnav-list-item:nth-of-type(1), .gnav-list-item:nth-of-type(2), .gnav-list-item:nth-of-type(3), .gnav-list-item:nth-of-type(4) {
    font-size: 2rem;
  }
}
.gnav-list-item:nth-of-type(5), .gnav-list-item:nth-of-type(6), .gnav-list-item:nth-of-type(7) {
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .gnav-list-item:nth-of-type(5), .gnav-list-item:nth-of-type(6), .gnav-list-item:nth-of-type(7) {
    font-size: 1.6rem;
  }
}
.gnav-list-item:nth-of-type(1) {
  grid-area: about;
  grid-column: 1;
  grid-row: 1;
}
.gnav-list-item:nth-of-type(2) {
  grid-area: concept;
  grid-column: 1;
  grid-row: 2;
}
.gnav-list-item:nth-of-type(3) {
  grid-area: quality;
  grid-column: 1;
  grid-row: 3;
}
.gnav-list-item:nth-of-type(4) {
  grid-area: product;
  grid-column: 1;
  grid-row: 4;
}
.gnav-list-item:nth-of-type(5) {
  grid-area: news;
  grid-column: 2;
  grid-row: 1;
}
.gnav-list-item:nth-of-type(6) {
  grid-area: shop;
  grid-column: 2;
  grid-row: 1;
  position: relative;
  bottom: -85%;
}
@media screen and (max-width: 834px) {
  .gnav-list-item:nth-of-type(6) {
    bottom: -150%;
  }
}
.gnav-list-item:nth-of-type(7) {
  grid-area: faq;
  grid-column: 2;
  grid-row: 2;
}
.gnav-list-link {
  display: block;
}
.gnav-hg {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 15px;
}
@media screen and (max-width: 834px) {
  .gnav-hg {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  .gnav-hg {
    margin-top: 30vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 450px) and (max-height: 590px) {
  .gnav-hg {
    margin-top: 40px;
  }
}
.gnav-hg .logo {
  max-width: 219px;
}
@media screen and (max-width: 834px) {
  .gnav-hg .logo {
    max-width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .gnav-hg .logo img {
    width: 200px;
  }
}
.gnav-hg .logo img {
  filter: invert(100%) brightness(1000%);
}
@media screen and (max-width: 834px) {
  .gnav-hg .logo img {
    max-width: 275px;
  }
}
@media screen and (max-width: 834px) {
  .gnav-hg .fv-hg_txt {
    max-width: 275px;
  }
}
@media screen and (max-width: 450px) {
  .gnav-hg .fv-hg_txt {
    text-align: center;
  }
}

/* toggle button */
.toggle.active .toggle__bar {
  -webkit-transform: translateY(-3px) rotate(15deg);
  transform: translateY(-3px) rotate(15deg);
}

.toggle.active .toggle__bar:nth-child(2) {
  -webkit-transform: translateY(3px) rotate(-15deg);
  transform: translateY(3px) rotate(-15deg);
}

.toggle {
  position: relative;
  width: 40px;
  height: 20px;
  cursor: pointer;
  display: block;
  background: none;
  border: none;
  outline: none;
  position: absolute;
  top: 30px;
  right: 25px;
  transform: translateY(-50%);
  text-align: center;
  z-index: 10;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 834px) {
  .toggle {
    top: 30px;
    right: 10px;
  }
}
.toggle.active .toggle__bar {
  background-color: #fff;
}
.toggle.is-show {
  position: fixed;
  z-index: 50;
}

.toggle__bar {
  position: absolute;
  top: 60%;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 40px;
  height: 1px;
  background-color: rgba(10, 42, 75, 0.4);
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.toggle__bar:nth-child(2) {
  top: calc(60% - 6px);
}
@media screen and (max-width: 834px) {
  .toggle__bar {
    width: 30px;
  }
}

/***************************

layout/_footer.scss

***************************/
.footer {
  position: relative;
  aspect-ratio: 1000/994;
  background: url(../img/common/footer-bg.webp) no-repeat center center/cover;
  overflow: hidden;
}
.footer-ttl {
  position: absolute;
  width: 70%;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  filter: invert(100%) brightness(1000%);
}

.copy {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  white-space: nowrap;
  color: #fff;
  font-family: "Tenor Sans", sans-serif;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  font-weight: normal;
  font-size: 11px;
  font-size: 1.1rem;
}

/***************************

layout/_page-title.scss

***************************/
.cmn-ttl {
  font-family: "Tenor Sans", sans-serif;
  letter-spacing: 1px;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 17px;
  font-size: 1.7rem;
}

.cmn-ttl01 {
  text-align: center;
  font-weight: normal;
  font-size: 32px;
  font-size: 3.2rem;
}

.cmn-catch_txt {
  letter-spacing: 7px;
  line-height: 1.6;
  font-weight: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 450px) {
  .cmn-catch_txt {
    font-size: 5vw;
  }
}
@media screen and (max-width: 415px) {
  .cmn-catch_txt {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 378px) {
  .cmn-catch_txt {
    font-size: 4.6vw;
  }
}

/***************************

object/component/_box.scss

***************************/
.inner {
  width: 90%;
  margin: 0 auto;
}

.fv {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: 100vw;
  padding-bottom: 25vh;
  background: linear-gradient(180deg, rgb(220, 238, 239) 0%, rgb(220, 238, 239) 90%, rgba(220, 238, 239, 0) 100%);
}
@media screen and (max-width: 834px) {
  .fv {
    padding-bottom: 0;
  }
}
.fv-hg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2vw;
}
@media screen and (max-width: 834px) {
  .fv-hg {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.fv-hg .logo {
  max-width: 450px;
  width: 30vw;
}
@media screen and (max-width: 834px) {
  .fv-hg .logo {
    width: 325px;
  }
}
.fv-hg_txt {
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: 4px;
  line-height: 1.6;
  font-weight: normal;
}
@media screen and (max-width: 834px) {
  .fv-hg_txt {
    width: 100%;
  }
}
.fv-hg_txt span {
  display: block;
  letter-spacing: normal;
  font-size: 11px;
  font-size: 1.1rem;
}

.mv {
  margin-top: 100px;
  padding-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10vw;
}
@media screen and (max-width: 834px) {
  .mv {
    margin-top: 80px;
    padding-right: 0;
  }
}
.mv-main {
  width: 70vw;
}
@media screen and (max-width: 834px) {
  .mv-main {
    width: 100vw;
  }
}
.mv-sub {
  width: 20vw;
}
@media screen and (max-width: 834px) {
  .mv-sub {
    display: none;
  }
}

.pc-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: 1;
  overflow: hidden;
  background: url(../img/common/pc-bg_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 834px) {
  .pc-bg {
    display: none;
  }
}
.pc-bg_hg {
  margin-top: 3vw;
  margin-left: 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
}
.pc-bg_hg .logo {
  max-width: 191px;
}
.pc-bg_hg .fv-hg_txt {
  font-size: 18px;
  font-size: 1.8rem;
}
.pc-bg_flex {
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.pc-bg_flex-fig01 {
  margin-top: 10vh;
  height: 70vh;
}
.pc-bg_flex-fig01 img {
  width: auto;
  height: 100%;
}
.pc-bg_flex-fig02 {
  margin-left: 30px;
  height: 50vh;
}
.pc-bg_flex-fig02 img {
  width: auto;
  height: 100%;
}
.pc-bg_flex-fig03 {
  margin-top: 20vh;
  height: 30vh;
}
.pc-bg_flex-fig03 img {
  width: auto;
  height: 100%;
}
.pc-bg_txt-wrap {
  position: absolute;
  top: 60%;
  transform: translateY(-60%);
  left: 0;
  mix-blend-mode: overlay;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
.pc-bg_txt {
  width: 100vw;
}
.pc-bg_txt:first-child {
  animation: slide01 200s -100s infinite linear;
}
.pc-bg_txt:last-child {
  animation: slide02 200s infinite linear;
}

@keyframes slide01 {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes slide02 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-200%, 0);
  }
}
.sp-cont {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 70px 5% 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .sp-cont {
    max-width: 100%;
    margin-top: 0;
    margin-right: 0;
  }
}

.js-up-img {
  position: relative;
}
.js-up-img img {
  position: absolute;
  top: 0;
  left: 0;
}

/*////////////////////////

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
  transition: all 1.2s linear;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  opacity: 1;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.effectAnime {
  transition: all 2.3s linear;
  z-index: 0;
  -webkit-mask-image: url(../img/common/mask.webp);
  mask-image: url(../img/common/mask.webp);
  mask-mode: alpha;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
  mask-size: auto 200%;
}

.effectStart {
  animation: 2.3s effect cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
}

@keyframes effect {
  0% {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  to {
    -webkit-mask-position: center 0;
    mask-position: center 0;
    -webkit-mask-size: auto 500%;
    mask-size: auto 500%;
    opacity: 1;
  }
}
/***************************

object/object/project/_top.scss

***************************/
.top-fig {
  -webkit-mask-image: url(../img/common/top-fig_mask.webp);
  mask-image: url(../img/common/top-fig_mask.webp);
  -webkit-mask-position: bottom 0 50%;
  mask-position: bottom 0 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .top-fig {
    display: none;
  }
}

/***************************

object/object/project/_about.scss

***************************/
.sec-about {
  position: relative;
  margin-top: -110px;
  padding-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .sec-about {
    margin-top: 0;
    padding-top: 45px;
    padding-bottom: 13vw;
  }
}
.sec-about_hg {
  margin-bottom: 38px;
}
@media screen and (max-width: 834px) {
  .sec-about_hg {
    margin-bottom: 20px;
  }
}
.sec-about_hg .cmn-catch_txt {
  margin-top: 33px;
}
@media screen and (max-width: 834px) {
  .sec-about_hg .cmn-catch_txt {
    margin-top: 20px;
  }
}
.sec-about_bgtxt {
  position: absolute;
  top: -60px;
  right: 0;
  max-width: 117px;
  width: 15vw;
  line-height: 1;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .sec-about_bgtxt {
    top: -1vw;
  }
}

/***************************

object/object/project/_concept.scss

***************************/
.sec-concept {
  position: relative;
  padding: 60px 0 90px;
  color: #fff;
  background: url(../img/top/concept-bg.webp) no-repeat center center/cover;
}
.sec-concept_hg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec-concept_hg-txt {
  margin-top: 10px;
  font-size: 31px;
  font-size: 3.1rem;
  letter-spacing: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 450px) {
  .sec-concept_hg-txt {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.sec-concept_cont {
  margin-top: -160px;
}
@media screen and (max-width: 450px) {
  .sec-concept_cont {
    margin-top: -165px;
  }
}
.sec-concept_cont p {
  text-align: right;
}
@media screen and (max-width: 450px) {
  .sec-concept_cont p {
    font-size: 3.6vw;
  }
}
.sec-concept_cont p:not(:first-of-type) {
  margin-top: 34px;
}
@media screen and (max-width: 450px) {
  .sec-concept_cont p:not(:first-of-type) {
    margin-top: 20px;
  }
}

/***************************

object/object/project/_quality.scss

***************************/
.sec-quality {
  padding: 64px 0 34px;
  background-color: #edf6f6;
}
@media screen and (max-width: 450px) {
  .sec-quality {
    padding: 50px 0 20px;
  }
}
.sec-quality_hg {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 30px;
}
.sec-quality_fig {
  margin-top: 20px;
}
.sec-quality_list {
  margin-top: 40px;
}
@media screen and (max-width: 450px) {
  .sec-quality_list {
    margin-top: 21px;
  }
}
.sec-quality_list-item {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #c3dbdc;
}
@media screen and (max-width: 450px) {
  .sec-quality_list-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.sec-quality_list-hg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.sec-quality_list-hg_ttl {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: normal;
  letter-spacing: 7px;
}
@media screen and (max-width: 450px) {
  .sec-quality_list-hg_ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
.sec-quality_list-hg_en {
  margin-top: 4px;
  color: #6eacaf;
  font-size: 11px;
  font-size: 1.1rem;
}
.sec-quality_list .f16 {
  margin-bottom: 7px;
  font-weight: normal;
}

/***************************

object/object/project/_product.scss

***************************/
.sec-product {
  position: relative;
}
.sec-product_fig01 {
  position: relative;
}
.sec-product_fig01 .cmn-ttl {
  position: absolute;
  top: 50px;
  left: 5%;
}
.sec-product_fig02 {
  position: relative;
}
.sec-product_fig02 img {
  position: absolute;
  top: -150px;
  right: 0;
  width: 85%;
  pointer-events: none;
}
@media screen and (max-width: 560px) {
  .sec-product_fig02 img {
    top: -26vw;
  }
}
.sec-product_inner {
  padding-top: 280px;
  background: url(../img/top/product-bg.webp) no-repeat top -120px left/100% auto;
}
@media screen and (max-width: 560px) {
  .sec-product_inner {
    padding-top: 58vw;
  }
}
.sec-product_dt {
  max-width: 170px;
}
@media screen and (max-width: 560px) {
  .sec-product_dt {
    width: 31vw;
  }
}
.sec-product_dd {
  margin-top: 15px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
}
@media screen and (max-width: 450px) {
  .sec-product_dd {
    margin-top: 0;
  }
}
.sec-product .cmn-catch_txt {
  margin: 30px 0 20px;
}
@media screen and (max-width: 450px) {
  .sec-product .cmn-catch_txt {
    margin-top: 10px;
  }
}
.sec-product_box {
  margin-top: 30px;
  padding: 24px 20px 34px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background-color: #f4f7f7;
}
@media screen and (max-width: 834px) {
  .sec-product_box {
    margin-top: 20px;
    padding: 20px;
  }
}
.sec-product_box .f17 {
  letter-spacing: 3px;
  font-weight: normal;
}
.sec-product_box .f17 br {
  display: none;
}
@media screen and (max-width: 481px) {
  .sec-product_box .f17 {
    line-height: 1.5;
  }
  .sec-product_box .f17 br {
    display: block;
  }
}
.sec-product_list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 6px;
}
@media screen and (max-width: 450px) {
  .sec-product_list {
    margin-top: 10px;
  }
}
.sec-product_list-item {
  padding: 4px 15px;
  width: calc((100% - 6px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
}
@media screen and (max-width: 834px) {
  .sec-product_list-item {
    padding: 3px 10px;
    gap: 5px;
  }
}
@media screen and (max-width: 540px) {
  .sec-product_list-item {
    width: 100%;
    font-size: 1.5rem;
  }
}
.sec-product_list-item .material-symbols-outlined {
  display: block;
  color: #7bb6b9;
  font-size: 16px;
  font-size: 1.6rem;
}

/***************************

object/object/project/_how.scss

***************************/
.sec-how {
  margin-top: 70px;
  padding: 70px 0 80px;
  background: linear-gradient(180deg, rgb(237, 246, 246) 0%, rgb(255, 255, 255) 40%);
}
@media screen and (max-width: 834px) {
  .sec-how {
    margin-top: 50px;
    padding: 50px 0;
  }
}
.sec-how_list {
  margin-top: 10px;
}
.sec-how_list-item {
  position: relative;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 834px) {
  .sec-how_list-item {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .sec-how_list-item {
    gap: 20px;
  }
}
.sec-how_list-item:not(:last-of-type)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 21px;
  border-right: 2px dotted #7bb6b9;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .sec-how_list-item:not(:last-of-type)::before {
    left: 18px;
  }
}
.sec-how_list-num {
  position: relative;
  width: 46px;
  aspect-ratio: 1/1;
  line-height: 46px;
  color: #fff;
  text-align: center;
  background-color: #7bb6b9;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .sec-how_list-num {
    width: 40px;
    line-height: 40px;
  }
}
.sec-how_list-cont {
  width: calc(100% - 86px);
}
@media screen and (max-width: 480px) {
  .sec-how_list-cont {
    width: calc(100% - 60px);
  }
}
.sec-how_list-ttl {
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
  color: #7bb6b9;
}
.sec-how_list-ttl:has(span) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .sec-how_list-ttl:has(span) {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 10px;
    line-height: 1.5;
  }
}
.sec-how_list-fig {
  margin: 15px 0;
}
@media screen and (max-width: 450px) {
  .sec-how_list-fig {
    margin: 10px 0;
  }
}

/***************************

object/object/project/_feature.scss

***************************/
.sec-feature {
  padding: 76px 0;
  background: url(../img/top/feature-bg.webp) no-repeat top left/contain;
  background-color: #edf6f6;
}
@media screen and (max-width: 834px) {
  .sec-feature {
    padding: 50px 0;
  }
}
.sec-feature_figwrap {
  margin-top: 50px;
  position: relative;
  aspect-ratio: 88/100;
}
@media screen and (max-width: 450px) {
  .sec-feature_figwrap {
    margin-top: 20px;
  }
}
.sec-feature_figwrap-fig {
  height: 23.3333333333%;
}
.sec-feature_figwrap-fig img {
  position: absolute;
  width: 50%;
  left: 25%;
  opacity: 0;
  transition: all 0.2s ease-out;
}
.sec-feature_figwrap-fig.show img {
  opacity: 1;
}
.sec-feature_figwrap-fig:nth-of-type(1) img {
  top: 58px;
  bottom: auto;
  right: 35px;
  left: auto;
}
.sec-feature_figwrap-fig:nth-of-type(1).show img {
  top: 18px;
  -ms-transform: rotate(8.86deg);
  -webkit-transform: rotate(8.86deg);
  transform: rotate(8.86deg);
}
.sec-feature_figwrap-fig:nth-of-type(2) img {
  bottom: -20px;
  left: 40px;
}
.sec-feature_figwrap-fig:nth-of-type(2).show img {
  bottom: 20px;
  -ms-transform: rotate(-10.82deg);
  -webkit-transform: rotate(-10.82deg);
  transform: rotate(-10.82deg);
}
.sec-feature_figwrap-fig:nth-of-type(3) img {
  bottom: calc(25% - 40px);
}
.sec-feature_figwrap-fig:nth-of-type(3).show img {
  bottom: 25%;
  -ms-transform: rotate(5.96deg);
  -webkit-transform: rotate(5.96deg);
  transform: rotate(5.96deg);
}
.sec-feature_list01 {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 450px) {
  .sec-feature_list01 {
    margin-top: 30px;
  }
}
.sec-feature_list01-item {
  width: 100px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-size: 2rem;
  color: #7bb6b9;
  background-color: rgba(188, 218, 218, 0.3);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 450px) {
  .sec-feature_list01-item {
    width: 80px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.sec-feature_list01-item:not(:first-child) {
  margin-left: -15px;
}
@media screen and (max-width: 450px) {
  .sec-feature_list01-item:not(:first-child) {
    margin-left: -10px;
  }
}
.sec-feature_ttl {
  margin: 30px 0;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 3px;
}
@media screen and (max-width: 450px) {
  .sec-feature_ttl {
    font-size: 4vw;
  }
}
.sec-feature_ttl .marker-line {
  font-size: 22px;
  font-size: 2.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 450px) {
  .sec-feature_ttl .marker-line {
    font-size: 5vw;
  }
}
.sec-feature_list02 {
  margin-top: 20px;
  padding: 30px 25px;
  background-color: #f3fdfd;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px 0;
}
@media screen and (max-width: 530px) {
  .sec-feature_list02 {
    gap: 15px 0;
  }
}
@media screen and (max-width: 450px) {
  .sec-feature_list02 {
    padding: 20px 15px;
  }
}
.sec-feature_list02-item {
  width: 50%;
}
@media screen and (max-width: 530px) {
  .sec-feature_list02-item {
    width: 100%;
  }
}
.sec-feature_list02-fig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.sec-feature_list02-fig picture {
  width: 60px;
  aspect-ratio: 1/1;
}
.sec-feature_list02-fig img {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.sec-feature_list02-cap {
  width: calc(100% - 75px);
  font-weight: normal;
  line-height: 1.6;
}
@media screen and (max-width: 450px) {
  .sec-feature_list02-cap {
    font-size: 1.6rem;
  }
}
.sec-feature_list02-cap .f13 {
  display: block;
}

/***************************

object/object/project/_feature.scss

***************************/
.sec-news {
  padding: 90px 0;
}
@media screen and (max-width: 834px) {
  .sec-news {
    padding: 50px 0;
  }
}
.sec-news_list {
  margin-top: 40px;
}
@media screen and (max-width: 450px) {
  .sec-news_list {
    margin-top: 30px;
  }
}
.sec-news_list-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #c3dbdc;
}
@media screen and (max-width: 450px) {
  .sec-news_list-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.sec-news_time {
  display: block;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}
.sec-news_ttl {
  margin-top: 10px;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 450px) {
  .sec-news_ttl {
    margin-top: 5px;
  }
}

.open-btn {
  display: block;
  padding: 0;
  border-width: 0;
  background-color: transparent;
  cursor: pointer; /* クリック可能な状態を維持 */
  color: #0a2a4b;
}

.modal-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  padding: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 100;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}
.modal-dialog.is-active {
  opacity: 1;
  display: flex;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100lvh;
  cursor: pointer;
  z-index: 40;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  z-index: 41;
  max-width: 420px;
  max-height: 80svh;
  padding: 50px 40px;
  background-color: #edf5f7;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 30px 0 70px 0 rgba(4, 0, 0, 0.24);
  overflow-y: auto;
}
.modal-content .sec-news_time {
  font-size: 12px;
  font-size: 1.2rem;
}
.modal-content .sec-news_modal-ttl {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c3dbdc;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #0a2a4b;
}
.modal-content p {
  font-size: 13px;
  font-size: 1.3rem;
}
.modal-content p:not(:first-of-type) {
  margin-top: 20px;
}

.close-btn {
  margin: 110px auto 0;
  max-width: 200px;
  width: 100%;
  line-height: 50px;
  display: block;
  color: #fff;
  background-color: #7bb6b9;
  border-width: 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  cursor: pointer;
}
@media screen and (max-width: 450px) {
  .close-btn {
    margin-top: 40px;
  }
}

/***************************

object/object/project/_feature.scss

***************************/
.sec-shop {
  padding: 80px 0;
  background-color: #edf6f6;
}
@media screen and (max-width: 834px) {
  .sec-shop {
    padding: 50px 0;
  }
}
.sec-shop_list {
  margin-top: 60px;
}
.sec-shop_list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sec-shop_list-item:not(:first-child) {
  margin-top: 30px;
}
.sec-shop_list-fig {
  width: 50%;
}
.sec-shop_list-fig img {
  width: 90%;
}
.sec-shop_list-cont {
  width: 50%;
}
.sec-shop_list-hg {
  margin-bottom: 15px;
  font-weight: normal;
  line-height: 1.6;
}
.sec-shop_list-hg .f22 {
  font-weight: normal;
}
@media screen and (max-width: 500px) {
  .sec-shop_list-hg .f22 {
    font-size: 4vw;
  }
}
.sec-shop_list p:not(.f10) {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
}

/***************************

object/object/project/_faq.scss

***************************/
.sec-faq {
  padding: 80px 0;
}
@media screen and (max-width: 834px) {
  .sec-faq {
    padding: 50px 0;
  }
}

.add-control {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #c3dbdc;
  color: #0a2a4b;
}
@media screen and (max-width: 450px) {
  .add-control {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.add-control:first-of-type {
  margin-top: 50px;
}
@media screen and (max-width: 450px) {
  .add-control:first-of-type {
    margin-top: 10px;
  }
}

.add-sum {
  transition: all 0.3s ease;
  cursor: pointer;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.add-sum::-webkit-details-marker {
  display: none !important;
}

.add-ttl {
  width: calc(100% - 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: normal;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .add-ttl {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 2;
  }
}
.add-ttl span {
  display: block;
  font-family: "Tenor Sans", sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  color: #7bb6b9;
}
@media screen and (max-width: 450px) {
  .add-ttl span {
    line-height: 1;
  }
}

.add-btn {
  position: relative;
  width: 15px;
  aspect-ratio: 1/1;
  transition: all 0.3s ease;
}

.add-btn::before, .add-btn::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  top: 0;
  left: calc(50% - 1px);
  background-color: #7bb6b9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.add-btn::after {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.add-sum.close .add-btn::before {
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.add-box {
  display: none;
  padding: 0 76px 0 40px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .add-box {
    padding: 0 5vw 0 7vw;
  }
}

.add-box.open {
  display: block;
}

/***************************

object/utility/_link.scss

***************************/
.tel-link {
  margin-top: 10px;
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
}

.map-link {
  position: relative;
  display: block;
  width: fit-content;
  margin-top: 15px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
}
.map-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #0a2a4b;
}

/***************************

object/utility/_text.scss

***************************/
.en {
  font-family: "Tenor Sans", sans-serif;
  letter-spacing: 1px;
}
.en-up {
  text-transform: uppercase;
}

.wm-rl {
  writing-mode: vertical-rl;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.ls-1 {
  letter-spacing: 3px;
}

.ls-2 {
  letter-spacing: 3px;
}

.ls-3 {
  letter-spacing: 3px;
}

.ls-5 {
  letter-spacing: 5px;
}

.under-line {
  text-decoration: underline;
}

.marker-line {
  position: relative;
  display: block;
  width: fit-content;
  z-index: 1;
}
.marker-line::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 9px;
  bottom: 0;
  left: 0;
  background-color: #c9e5e5;
  z-index: -1;
}

.f10 {
  font-size: 10px;
  font-size: 1rem;
}

.f12 {
  font-size: 12px;
  font-size: 1.2rem;
}

.f13 {
  font-size: 13px;
  font-size: 1.3rem;
}

.f16 {
  font-size: 16px;
  font-size: 1.6rem;
}

.f17 {
  font-size: 17px;
  font-size: 1.7rem;
}

.f22 {
  font-size: 22px;
  font-size: 2.2rem;
}/*# sourceMappingURL=style.css.map */