@charset "UTF-8";
/* -------------------------------
// additional reset
------------------------------- */
body, p, table, blockquote, address, pre, iframe, form, figure, dl, dt, dd, h1, h2, h3, h4, h5, h6, ul, ol {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

b {
  font-weight: bold;
}

ul, li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* -------------------------------
// variable
------------------------------- */
:root {
  --text-base:#414141;
  --epson-color:#004098;
  --accent-color:#4EC6D9;
  --bg-color-01:#E9FDFE;
  --bg-color-02:#ABE7E9;
}

/* -------------------------------
// base
------------------------------- */
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--text-base);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625;
}

/* -------------------------------
// header
------------------------------- */
.l-header {
  background-color: #fff;
  padding: 0 32px;
  width: 100%;
  height: 100px;
}

.l-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.l-header__epson {
  display: block;
  transition: opacity 0.3s;
  line-height: 1;
}
.l-header__epson:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .l-header {
    height: 40px;
  }
  .l-header__epson {
    width: 68px;
  }
}
@media screen and (max-width: 640px) {
  .l-header {
    padding-right: 16px;
    padding-left: 16px;
  }
}
/* -------------------------------
// footer
------------------------------- */
.l-footer {
  background-color: var(--epson-color);
  color: #fff;
  min-height: 60px;
  padding: 22px 32px;
  width: 100%;
}

.l-footer__copyright {
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .l-footer {
    min-height: 40px;
    padding-top: 11px;
    padding-bottom: 9px;
  }
}
@media screen and (max-width: 640px) {
  .l-footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}
/* -------------------------------
// layout
------------------------------- */
.l-contents {
  min-height: calc(100vh - 100px - 63.5px);
  min-height: calc(100svh - 100px - 63.5px);
  background-color: var(--bg-color-01);
  overflow: hidden;
  padding: 42px 32px 0;
}
@media screen and (max-width: 1024px) {
  .l-contents {
    min-height: calc(100vh - 40px - 40px);
    min-height: calc(100svh - 40px - 40px);
  }
}

@media screen and (max-width: 640px) {
  .l-contents {
    padding: 16px 16px 0;
  }
}
.l-main {
  padding-top: 55px;
}

@media screen and (max-width: 640px) {
  .l-main {
    padding-top: 10px;
  }
}
/* -------------------------------
// components
------------------------------- */
.c-textlink {
  color: var(--epson-color);
  transition: opacity 0.3s;
}
.c-textlink:hover {
  opacity: 0.8;
}

.c-heading02 {
  color: var(--epson-color);
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 70px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .c-heading02 {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .c-heading02 {
    display: none;
  }
}
.c-pagetop {
  position: fixed;
  right: 36px;
  bottom: 90px;
  /* bottom: 90px; */
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  line-height: 1;
  z-index: 10;
}

.c-pagetop__link {
  color: var(--epson-color);
  padding-top: 22px;
  position: relative;
}
.c-pagetop__link::before {
  content: "";
  background-color: var(--epson-color);
  display: block;
  margin: auto;
  -webkit-mask-image: url(../img/arrow.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/arrow.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: rotate(-90deg);
  transition: transform 0.3s;
  width: 19px;
  height: 11px;
}
.c-pagetop__link:hover::before {
  transform: translateY(-4px) rotate(-90deg);
}

@media screen and (max-width: 640px) {
  .c-pagetop {
    right: 15px;
    bottom: 64px;
  }
}
/* -------------------------------
// common
------------------------------- */
.only-mobile {
  display: none;
}
@media screen and (max-width: 640px) {
  .only-mobile {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .only-desktop {
    display: none;
  }
}

.section.-m_contain > * {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.notes {
  margin-top: 24px;
}
.notes p {
  padding-left: 1.4em;
  font-size: 1.8rem;
  position: relative;
}
.notes p::before {
  content: "※";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  .notes p {
    font-size: 1.4rem;
    position: relative;
  }
}
.menu {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.menu__link {
  height: 184px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 32px 0px rgba(108, 184, 196, 0.16);
  color: var(--text-base);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  text-align: center;
}
.menu__link .menu__link__nowrap {
  display: contents;
}
.menu__link .menu__link__title {
  font-size: clamp(1.2rem, 5vw, 2.8rem);
  line-height: 1.2142857143;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px 12px;
}
.menu__link .menu__link__title span {
  font-size: 85.7%;
}
.menu__link .menu__link__title br {
  display: none;
}
.menu__link .menu__link__img {
  margin: 0 0 0 60px;
  width: 127px;
  text-align: left;
  transition: transform 0.3s;
}
.menu__link .menu__link__btn {
  margin: 0 24px 0 auto;
  padding: 4px 33px;
  border: 2px solid var(--accent-color);
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  white-space: nowrap;
}
.menu__link .menu__link__btn.-arrow::before {
  content: "";
  width: 10px;
  height: 100%;
  background-color: var(--epson-color);
  -webkit-mask-image: url(../img/icon_arrow.svg);
  mask-image: url(../img/icon_arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  transition: background-color 0.3s;
}
.menu__link .menu__link__btn.-blank::after {
  content: "";
  background-color: var(--accent-color);
  margin: auto;
  -webkit-mask-image: url(../img/icon_blank.svg);
  mask-image: url(../img/icon_blank.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  position: absolute;
  top: 0;
  right: 12px;
  left: auto;
  bottom: 0;
  transition: background-color 0.3s;
  width: 13px;
  height: 100%;
}
.menu__link:where(.-guide) {
  justify-content: space-between;
}
.menu__link:where(.-guide) .menu__link__img {
  width: auto;
}
.menu__link:where(.-guide) .menu__link__img img {
  width: 80px;
}
.menu__link:where(.-guide) .menu__link__btn {
  margin-left: 0;
}
.menu__link:where(.-chat) .menu__link__img img {
  width: 90px;
}
.menu__link:where(.-contact) .menu__link__img img {
  width: 103px;
}
.menu__link:where(.-free_dial) {
  margin-top: 42px;
  justify-content: flex-start;
}
.menu__link:where(.-free_dial) .menu__link__img {
  width: 134px;
  margin-left: 75px;
}
.menu__link:where(.-free_dial) .menu__link__img img {
  width: 69px;
  transform: translateY(-7px);
}
.menu__link:where(.-free_dial) .menu__link__title {
  margin-right: 28px;
}
.menu__link:where(.-home) {
  height: 100%;
  padding: 45px 0 23px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}
.menu__link:where(.-home) .menu__link__title {
  margin-left: auto;
  margin-right: auto;
  padding: 6px 0;
  width: 233px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--epson-color);
  border-radius: 8px;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.menu__link:where(.-home) .menu__link__title span {
  display: block;
  margin-top: 12px;
  font-size: 66.667%;
}
.menu__link:where(.-home) .menu__link__title br {
  display: block;
}
.menu__link:where(.-home) .menu__link__img {
  width: 100%;
  height: auto;
  margin: 23px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu__link:where(.-home) .menu__link__img > picture {
  text-align: center;
}
.menu__link:where(.-home) .menu__link__img.-id206 img {
  width: 41.3%;
}
.menu__link:where(.-home) .menu__link__img.-id206-cb img {
  margin-left: 6.84%;
  width: 67.8%;
}
.menu__link:where(.-home) .menu__link__img.-mt-100 img {
  margin-left: 3.13%;
  width: 74.4%;
}
.menu__link:where(.-home) .menu__link__btn {
  margin: auto auto 0;
  padding: 1px 34px;
}
.menu__link:hover::before {
  transform: translate(20px, -20px) rotate(-45deg);
}
.menu__link:hover .menu__link__img {
  transform: rotate(15deg);
}
.menu__link:hover .menu__link__img.-tel {
  transform: none;
}
.menu__link:hover .menu__link__btn {
  background-color: var(--accent-color);
  color: #fff;
}
.menu__link:hover .menu__link__btn.-arrow::before {
  background-color: #fff;
}
.menu__link:hover .menu__link__btn.-blank::after {
  background-color: #fff;
}

@media screen and (max-width: 1280px) {
  .menu__link:where(.-home) .menu__link__title span {
    margin-top: 0.444em;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .menu__link .menu__link__title {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .menu__link .menu__link__title span {
    margin-left: -0.5em;
  }
  .menu__link:where(.-guide) {
    justify-content: flex-end;
  }
  .menu__link:where(.-guide) .menu__link__img {
    width: 127px;
  }
  .menu__link:where(.-guide) .menu__link__btn {
    margin-left: auto;
  }
  .menu__link:where(.-home) {
    padding-top: 25px;
  }
  .menu__link:where(.-home).-free-dial {
    pointer-events: initial;
  }
  .menu__link:where(.-home) .menu__link__title {
    width: 90%;
    align-items: center;
    text-align: center;
    font-size: clamp(1.6rem, 2.15vw, 2.2rem);
  }
  .menu__link:where(.-home) .menu__link__title span {
    margin-top: 0.444em;
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  }
  .menu__link:where(.-home) .menu__link__btn {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
    font-size: clamp(1.1rem, 1.46vw, 1.6rem);
  }
}
@media screen and (max-width: 768px) {
  .menu__link {
    padding: 32px 20px 26px;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
  }
  .menu__link .menu__link__nowrap {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 14px;
    column-gap: 14px;
    width: 100%;
  }
  .menu__link .menu__link__title {
    font-size: 2.4rem;
  }
  .menu__link .menu__link__title span {
    font-size: 1.8rem;
  }
  .menu__link .menu__link__title br {
    display: block;
  }
  .menu__link .menu__link__img {
    margin-left: 0;
    width: auto;
  }
  .menu__link .menu__link__btn {
    margin: 18px 0 0;
    padding: 1px 33px;
    width: 100%;
    max-width: 260px;
    font-size: 1.4rem;
  }
  .menu__link .menu__link__btn.-blank::after {
    display: inline-block;
    position: relative;
    top: 2px;
    right: auto;
    left: 3px;
    bottom: auto;
    height: 13px;
  }
  .menu__link:where(.-guide) .menu__link__img img {
    width: 47px;
  }
  .menu__link:where(.-chat) .menu__link__img img {
    width: 54px;
  }
  .menu__link:where(.-contact) .menu__link__img img {
    width: 57px;
  }
  .menu__link:where(.-free_dial) {
    margin-top: 26px;
    padding-top: 20px;
  }
  .menu__link:where(.-free_dial) .menu__link__nowrap {
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .menu__link:where(.-free_dial) .menu__link__img {
    width: auto;
    margin-left: 0;
  }
  .menu__link:where(.-free_dial) .menu__link__img img {
    width: 47px;
    transform: translateY(-5px);
  }
  .menu__link:where(.-free_dial) .menu__link__title {
    margin-right: 0;
  }
  .menu__link:where(.-home) {
    display: grid;
    grid-template-columns: 28.8% 1fr;
    padding: clamp(10px, 2.67vw, 30px) clamp(20px, 10vw, 80px) clamp(10px, 2.67vw, 30px) clamp(5px, 2.67vw, 10px);
    -moz-column-gap: clamp(1px, 1.33vw, 8px);
    column-gap: clamp(1px, 1.33vw, 8px);
    row-gap: clamp(1px, 2.67vw, 10px);
    position: relative;
  }
  .menu__link:where(.-home)::before {
    right: -23px;
    width: clamp(52px, 18%, 80px);
  }
  .menu__link:where(.-home)::after {
    content: "";
    width: 17px;
    height: 11px;
    background-color: var(--epson-color);
    -webkit-mask-image: url(../img/icon_arrow.svg);
    mask-image: url(../img/icon_arrow.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 17px;
    mask-size: 17px;
    position: absolute;
    right: clamp(10px, 2.67vw, 20px);
    top: 50%;
    transform: translateY(-50%);
  }
  .menu__link:where(.-home) .menu__link__title {
    order: 2;
    grid-row: auto/span 1;
    grid-column: auto/span 1;
    display: block;
    margin: 0;
    padding: 0;
    width: auto;
    background-color: transparent;
    border-radius: 0;
    font-size: clamp(1.6rem, 4.53vw, 2.1rem);
    line-height: 1.1764705882;
    color: var(--epson-color);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .menu__link:where(.-home) .menu__link__title span {
    font-size: clamp(1.6rem, 4.8vw, 2.4rem);
    margin-left: 0;
  }
  .menu__link:where(.-home) .menu__link__img {
    order: 1;
    grid-row: auto/span 2;
    grid-column: auto/span 1;
    height: clamp(55px, 20.53vw, 119px);
    margin: 0;
    text-align: center;
  }
  .menu__link:where(.-home) .menu__link__img.-id206 {
    margin: auto;
  }
  .menu__link:where(.-home) .menu__link__img.-id206 img {
    width: auto;
    height: 75.3%;
  }
  .menu__link:where(.-home) .menu__link__img.-id206-cb {
    margin: auto;
  }
  .menu__link:where(.-home) .menu__link__img.-id206-cb picture {
    width: auto;
    height: 94.8%;
  }
  .menu__link:where(.-home) .menu__link__img.-id206-cb img {
    margin-left: auto;
    width: auto;
    height: 100%;
  }
  .menu__link:where(.-home) .menu__link__img.-mt-100 {
    margin: auto;
  }
  .menu__link:where(.-home) .menu__link__img.-mt-100 picture {
    width: auto;
    height: 100%;
  }
  .menu__link:where(.-home) .menu__link__img.-mt-100 img {
    margin-left: auto;
    width: auto;
    height: 100%;
  }
  .menu__link:where(.-home) .menu__link__img.-tel {
    width: clamp(128px, 20vw, 144px);
  }
  .menu__link:where(.-home) .menu__link__btn {
    pointer-events: none;
    order: 3;
    grid-row: auto/span 1;
    grid-column: auto/span 1;
    margin: 0;
    padding: 0;
    width: auto;
    max-width: unset;
    border: none;
    border-radius: 0;
    text-align: left;
    font-size: clamp(1.1rem, 3.73vw, 1.6rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .menu__link:where(.-home) .menu__link__btn.-arrow::before {
    content: none;
  }
  .menu__link:where(.-home) .menu__link__btn:hover, .menu__link:where(.-home) .menu__link__btn:active {
    background-color: transparent;
    color: var(--text-base);
  }
  .menu__link:where(.-home):hover .menu__link__btn, .menu__link:where(.-home):active .menu__link__btn {
    background-color: transparent;
    color: var(--text-base);
  }
}
.menu-tel {
  background-color: #C1EAF1;
  border-radius: 8px;
  color: var(--epson-color);
  display: inline-flex;
  align-items: center;
  height: 75px;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 30px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1280px) {
  .menu-tel {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .menu-tel {
    margin-top: 9px;
    padding: 0 27px;
    height: 50px;
    font-size: 2.8rem;
    line-height: 1.3;
  }
}
.menu-pdf {
  background-color: #fff;
  border: 2px solid var(--accent-color);
  border-radius: 32px;
  color: var(--text-base);
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 9px 40px 7px 16px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.menu-pdf::after {
  content: "";
  background-color: var(--accent-color);
  display: block;
  margin: auto;
  -webkit-mask-image: url(../img/icon_pdf.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/icon_pdf.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  transition: background-color 0.3s;
  width: 17px;
  height: 19px;
}
.menu-pdf:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.menu-pdf:hover::after {
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .menu-pdf {
    font-size: 1.4rem;
    width: 83.7%;
    margin-left: auto;
    margin-right: auto;
  }
  .menu-pdf::after {
    right: 14px;
  }
}
/* pdfボタン：長いため改行あり */
.menu-pdf.-wrap br {
  display: none;
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .menu-pdf.-wrap {
    padding-top: 4px;
    padding-bottom: 2px;
    padding-left: 40px;
    width: 100%;
  }
  .menu-pdf.-wrap br {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .menu-pdf.-wrap {
    padding-top: 4px;
    padding-bottom: 2px;
    padding-left: 40px;
  }
  .menu-pdf.-wrap br {
    display: block;
  }
}
/* -------------------------------
// mv
------------------------------- */
.mv {
  background-image: url(../img/bg_dots.svg);
  background-position: center top;
  background-repeat: repeat;
  background-size: 26px;
}
.mv .mv__inner {
  display: flex;
  align-items: stretch;
  margin: auto;
  max-width: 1160px;
  width: 100%;
}
.mv .mv__content {
  width: 540px;
}
.mv .mv__content .mv__heading {
  display: flex;
  align-items: flex-end;
  gap: 4px 22px;
}
.mv .mv__content .mv__deco {
  color: var(--epson-color);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.mv .mv__content .mv__deco::after {
  content: "";
  background-color: var(--bg-color-02);
  border-radius: 6px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 0.3em;
  z-index: -1;
}
.mv .mv__content .mv__lead {
  color: var(--epson-color);
  font-weight: 700;
  margin-top: 15px;
  text-align: left;
}
.mv .mv__content .mv__item-name {
  display: inline-block;
  font-size: 3.2rem;
  line-height: 1.5;
  color: #fff;
  margin-top: 20px;
  padding: 5px 29px;
  background-color: var(--epson-color);
  border-radius: 8px;
  text-align: center;
}
.mv .mv__content .mv__item-name br {
  display: none;
}
.mv .mv__img img {
  width: 100%;
}
.mv:where(.mv--home) .mv__inner {
  align-items: center;
  padding-bottom: 30px;
}
.mv:where(.mv--home) .mv__content {
  width: 554px;
  padding-left: 0;
  padding-right: 20px;
}
.mv:where(.mv--home) .mv__img {
  width: calc(100% - 554px);
  padding-right: 35px;
}
.mv:where(.-id206) .mv__inner {
  padding-top: 22px;
  padding-bottom: 22px;
  background-image: url(../img/img_id206-mv.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 513px;
}
.mv:where(.-id206) .mv__content {
  margin-left: 113px;
}
.mv:where(.-id206-cb) .mv__inner {
  padding-top: 22px;
  padding-bottom: 22px;
  background-image: url(../img/img_id206-cb-mv-l.png);
  background-position: right 2% center;
  background-repeat: no-repeat;
  background-size: 488px;
}
.mv:where(.-id206-cb) .mv__content {
  margin-left: 113px;
}
.mv:where(.-mt-100) .mv__inner {
  padding-top: 22px;
  padding-bottom: 22px;
  background-image: url(../img/img_mt-100-cb-mv-l.png);
  background-position: right 4% center;
  background-repeat: no-repeat;
  background-size: 500px;
}
.mv:where(.-mt-100) .mv__content {
  margin-left: 113px;
}

@media screen and (max-width: 1280px) {
  .mv .mv__content {
    width: 50%;
  }
  .mv .mv__content .mv__logo {
    width: 255px;
  }
  .mv .mv__content .mv__deco {
    font-size: 3.8rem;
    margin-bottom: 12px;
  }
  .mv .mv__content .mv__item-name {
    font-size: 2.8rem;
    margin-top: 26px;
    padding: 5px 24px;
  }
  .mv:where(.mv--home) .mv__img {
    width: 50%;
    padding-right: 25px;
  }
  .mv:where(.-id206) .mv__inner {
    background-position: right -4% center;
    background-size: 48%;
  }
  .mv:where(.-id206) .mv__content {
    margin-left: clamp(15px, 8vw, 60px);
  }
  .mv:where(.-id206-cb) .mv__inner {
    background-size: 43%;
  }
  .mv:where(.-id206-cb) .mv__content {
    margin-left: clamp(15px, 8vw, 60px);
  }
  .mv:where(.-mt-100) .mv__inner {
    background-size: 43%;
  }
  .mv:where(.-mt-100) .mv__content {
    margin-left: clamp(15px, 8vw, 60px);
  }
}
@media screen and (max-width: 1024px) {
  .mv .mv__inner {
    padding-bottom: 30px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .mv .mv__content {
    max-width: 540px;
    width: 100%;
    text-align: center;
  }
  .mv .mv__content .mv__heading {
    justify-content: center;
    align-items: center;
  }
  .mv .mv__content .mv__heading .mv__deco {
    margin-bottom: 0;
  }
  .mv:where(.mv--home) .mv__inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .mv:where(.mv--home) .mv__content {
    padding-right: 0;
  }
  .mv:where(.mv--home) .mv__img {
    margin-bottom: 20px;
    max-width: 360px;
    width: 66%;
    padding-right: 0;
  }
  .mv:where(.-id206) .mv__inner {
    padding-top: 40%;
    background-position: center top 5%;
    background-size: 57%;
  }
  .mv:where(.-id206) .mv__content {
    margin-left: 0;
  }
  .mv:where(.-id206-cb) .mv__inner {
    padding-top: 40%;
    background-image: url(../img/img_id206-cb-mv-s.png);
    background-position: center top -6%;
    background-size: 58%;
  }
  .mv:where(.-id206-cb) .mv__content {
    margin-left: 0;
  }
  .mv:where(.-mt-100) .mv__inner {
    padding-top: 40%;
    background-image: url(../img/img_mt-100-cb-mv-s.png);
    background-position: center top -9%;
    background-size: 58%;
  }
  .mv:where(.-mt-100) .mv__content {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    background-position: left -10px top -10px;
  }
  .mv:where(.mv--home) .mv__content .mv__deco {
    margin-bottom: 0;
  }
  .mv:where(.mv--home) .mv__img {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .mv .mv__content .mv__heading {
    margin-left: auto;
    margin-right: auto;
    width: 96.8%;
    -moz-column-gap: clamp(10px, 3.4vw, 22px);
    column-gap: clamp(10px, 3.4vw, 22px);
  }
  .mv .mv__content .mv__logo {
    width: clamp(100px, 48.5vw, 255px);
  }
  .mv .mv__content .mv__deco {
    font-size: clamp(2rem, 9.07vw, 4rem);
    margin-bottom: 0.32em;
    white-space: nowrap;
  }
  .mv .mv__content .mv__lead {
    margin-top: 28px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .mv .mv__content .mv__item-name {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-top: 16px;
    padding: 5px 28px;
  }
  .mv .mv__content .mv__item-name br {
    display: block;
  }
  .mv:where(.mv--home) .mv__inner {
    padding-top: 4px;
    padding-bottom: 10px;
  }
  .mv:where(.mv--home) .mv__content .mv__heading {
    width: 81.6%;
  }
  .mv:where(.mv--home) .mv__content .mv__lead {
    margin-top: 18px;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .mv:where(.mv--home) .mv__content .mv__deco {
    font-size: clamp(2rem, 7.47vw, 4rem);
  }
  .mv:where(.-id206) .mv__inner {
    padding-top: 65%;
    padding-bottom: 20px;
    background-position: center top 1%;
    background-size: 90%;
  }
  .mv:where(.-id206) .mv__content {
    margin-left: 0;
  }
  .mv:where(.-id206) .mv__content .mv__lead {
    margin-top: 12px;
  }
  .mv:where(.-id206-cb) .mv__inner {
    padding-top: 65%;
    padding-bottom: 20px;
    background-position: left top -5%;
    background-size: 94%;
  }
  .mv:where(.-id206-cb) .mv__content {
    margin-left: 0;
  }
  .mv:where(.-mt-100) .mv__inner {
    padding-top: 65%;
    padding-bottom: 20px;
    background-position: left top -8%;
    background-size: 94%;
  }
  .mv:where(.-mt-100) .mv__content {
    margin-left: 0;
  }
}
/* -------------------------------
// reference
------------------------------- */
.reference {
  background-color: var(--bg-color-02);
  margin: 80px calc(50% - 50vw) 0;
  padding: 80px 32px;
  position: relative;
  width: 100vw;
  z-index: 1;
}
.reference::before {
  content: "";
  background-color: #fff;
  display: block;
  -webkit-mask-image: url(../img/bg_dots.svg);
  -webkit-mask-position: center top;
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: 26px;
  mask-image: url(../img/bg_dots.svg);
  mask-position: center top;
  mask-repeat: repeat;
  mask-size: 26px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.reference__inner {
  margin: auto;
  max-width: 960px;
  width: 100%;
}

.reference__more {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 32px 0px rgba(108, 184, 196, 0.16);
  color: var(--text-base);
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  margin: auto;
  max-width: 960px;
  padding: 50px 40px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  width: 600px;
}
.reference__more br {
  display: none;
}
.reference__more::after {
  content: "";
  background-color: var(--accent-color);
  display: block;
  margin: auto;
  -webkit-mask-image: url(../img/arrow.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/arrow.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  transition: background-color 0.3s, transform 0.3s;
  width: 35px;
  height: 22px;
}
.reference__more:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.reference__more:hover::after {
  background-color: #fff;
  transform: translateX(10px);
}

@media screen and (max-width: 1024px) {
  .reference {
    margin-top: 37px;
    padding: 60px 16px;
  }
  .reference__more {
    border-radius: 8px;
    font-size: 1.8rem;
    max-width: 560px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .reference__more::after {
    right: 18px;
    width: 23px;
    height: 15px;
  }
}
@media screen and (max-width: 640px) {
  .reference .reference__more {
    width: auto;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .reference .reference__more br {
    display: block;
  }
}
/* -------------------------------
// home
------------------------------- */
.home-section {
  margin-top: 15px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .home-section {
    margin-top: 0;
    margin-bottom: 0;
  }
}
/* -------------------------------
// home - menu
------------------------------- */
.home-menu {
  padding: 0 56px;
  position: relative;
  z-index: 1;
}
.home-menu::before, .home-menu::after {
  content: "";
  border-radius: 20px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 76px);
  z-index: -1;
}
.home-menu::before {
  background-color: var(--bg-color-02);
  position: absolute;
}
.home-menu::after {
  background-color: #fff;
  -webkit-mask-image: url(../img/bg_dots.svg);
  -webkit-mask-position: center top;
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: 26px;
  mask-image: url(../img/bg_dots.svg);
  mask-position: center top;
  mask-repeat: repeat;
  mask-size: 26px;
}

.home-menu__lists {
  display: flex;
  justify-content: space-between;
  gap: clamp(15px, 2.81vw, 54px);
  margin: auto;
  padding-bottom: 90px;
  max-width: 1160px;
  width: 100%;
}

.home-menu__item {
  width: 33.33%;
  overflow: hidden;
}

.menu__supple {
  margin-top: 16px;
}

.home-menu__notes {
  font-size: 1.8rem;
}
.home-menu__notes:last-child {
  margin-bottom: 16px;
}
.home-menu__notes li {
  margin-left: 22px;
  position: relative;
}
.home-menu__notes li::before {
  content: "※";
  position: absolute;
  left: -22px;
}

@media screen and (max-width: 1024px) {
  .home-menu {
    padding-right: 40px;
    padding-left: 40px;
  }
  .home-menu::before, .home-menu::after {
    border-radius: 20px 20px 0 0;
  }
  .home-menu__lists {
    padding-bottom: 50px;
  }
  .home-menu__notes {
    font-size: 1.4rem;
  }
  .home-menu__notes li {
    margin-left: 16px;
  }
  .home-menu__notes li::before {
    left: -16px;
  }
}
@media screen and (max-width: 768px) {
  .home-menu {
    padding-right: 28px;
    padding-left: 28px;
  }
  .home-menu::before, .home-menu::after {
    height: calc(100% - max(9.6vw, 36px));
  }
}
@media screen and (max-width: 768px) and (max-width: 640px) {
  .home-menu::before, .home-menu::after {
    border-radius: 10px 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .home-menu__lists {
    padding-bottom: 45px;
    flex-direction: column;
    gap: 12px;
  }
  .home-menu__item {
    width: 100%;
  }
  .menu__supple {
    margin-top: 14px;
  }
  .home-menu__notes:last-child {
    margin-bottom: initial;
  }
}
@media screen and (max-width: 640px) {
  .home-menu {
    margin-left: -16px;
    margin-right: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }
  .home-menu::before, .home-menu::after {
    border-radius: 10px 10px 0 0;
  }
}/*# sourceMappingURL=style.css.map */