@charset "UTF-8";
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

:root {
  --white: #ffffff;
  --gray-50: #F8F8F8;
  --gray-120: #E4E4E4;
  --gray-150: #C3C3C3;
  --gray-200: #999999;
  --gray-300: #585858;
  --gray-500: #444444;
  --gray-900: #333333;
  --primary-main: #76A1AC;
  --primary-right: #9EC5D0;
  --font-family_noto: noto-sans-jp-regular;
  --font-family_eb: "EB Garamond", sans-serif;
  --font-family_mincyo: ShipporiMincho-Medium;
  --font-weight_normal: 400;
  --font-weight_medium: 500;
  --font-weight_semibold: 600;
  --font-weight_bold: 700;
}

@font-face {
  font-family: noto-sans-jp-regular;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: ShipporiMincho-Medium;
  src: url("../fonts/ShipporiMincho-Medium.woff2") format("woff2"), url("../fonts/ShipporiMincho-Medium.woff") format("woff");
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

body {
  font-family: var(--font-family_noto);
}

.l-main {
  max-width: 100%;
  width: 100%;
}

.l-contents {
}
@media screen and (max-width: 766px) {
  .l-contents {
    padding-bottom: 50px;
  }
}

.l-container, .l-container--mobileNone {
  max-width: 960px;
  width: 100%;
  padding: 0 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 766px) {
  .l-container--mobileNone {
    padding: 0;
  }
}

.c-headingCenter {
  text-align: center;
}
.c-headingCenter__main {
  color: var(--gray-900);
  font-family: var(--font-family_eb);
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 766px) {
  .c-headingCenter__main {
    font-size: 28px;
  }
}
.c-headingCenter__sub {
  margin-top: 5px;
  color: var(--gray-300);
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (max-width: 766px) {
  .c-headingCenter__sub {
    margin-top: 3px;
  }
}

.c-sampleCard {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 30px;
  padding: 0 25px;
}
@media screen and (max-width: 766px) {
  .c-sampleCard {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 20px;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .c-sampleCard {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.c-sampleCard--addTitle {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 30px;
  padding: 0 25px;
}
@media screen and (max-width: 766px) {
  .c-sampleCard--addTitle {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 15px 20px;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .c-sampleCard--addTitle {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.c-sampleCard__title {
  margin-top: 6px;
  color: var(--gray-300);
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (max-width: 766px) {
  .c-sampleCard__title {
    margin-top: 3px;
  }
}

.c-toggleBox, .c-toggleBox--borderTop {
  border-bottom: 1px solid var(--gray-120);
}
.c-toggleBox--borderTop {
  border-top: 1px solid var(--gray-120);
}
.c-toggleBox__heading {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__heading {
    padding: 18px 20px;
  }
}
.c-toggleBox__heading.is-open .c-toggleBox__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-toggleBox__headingText {
  font-family: var(--font-family_mincyo);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.66;
  color: var(--gray-900);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__headingText {
    font-size: 20px;
    line-height: 1.8;
  }
}
.c-toggleBox__headingNum {
  font-family: var(--font-family_eb);
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__headingNum {
    font-size: 24px;
  }
}
.c-toggleBox__iconBox {
  width: 16px;
  height: 9px;
}
.c-toggleBox__icon {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-toggleBox__contents {
  padding: 0px 60px 50px;
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__contents {
    padding: 0px 40px 40px;
    margin-top: 0;
  }
}
.c-toggleBox__text, .c-toggleBox__text--mTopNone {
  font-family: var(--font-family_mincyo);
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__text, .c-toggleBox__text--mTopNone {
    font-size: 15px;
  }
}
.c-toggleBox__text--mTopNone {
  margin-top: 0;
}
.c-toggleBox__btnBox {
  margin-top: 40px;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__btnBox {
    margin-top: 20px;
  }
}
.c-toggleBox__subText, .c-toggleBox__subText--mTopPcNone {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray-300);
  margin-top: 15px;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__subText, .c-toggleBox__subText--mTopPcNone {
    margin-top: 20px;
  }
}
.c-toggleBox__subText--mTopPcNone {
  margin-top: 0;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__subText--mTopPcNone {
    margin-top: 10px;
  }
}
.c-toggleBox__grid, .c-toggleBox__grid--mobileColum {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 90px));
  gap: 10px 20px;
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__grid, .c-toggleBox__grid--mobileColum {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 20px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 766px) {
  .c-toggleBox__grid--mobileColum {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-toggleBox__grid--widthNormal {
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__grid--widthNormal {
    max-width: 100%;
  }
}
.c-toggleBox__grid--mTopPCNone {
  margin-top: 0;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__grid--mTopPCNone {
    margin-top: 30px;
  }
}
.c-toggleBox__gridText {
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray-300);
  text-align: center;
  margin-top: 2px;
}
.c-toggleBox__gridSubText {
  display: block;
  font-size: 10px;
  line-height: 1.8;
  color: var(--gray-300);
}
@media screen and (max-width: 600px) {
  .c-toggleBox__gridSubText {
    font-size: 9px;
    white-space: nowrap;
  }
}
.c-toggleBox__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.c-toggleBox__flexContents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 766px) {
  .c-toggleBox__flexContents {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.c-toggleBox__gridLink {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
@media (min-width: 767px) {
  .c-toggleBox__gridLink:hover {
    opacity: 0.6;
  }
}
@media (min-width: 767px) {
  .c-toggleBox__gridLink:hover .c-toggleBox__gridIconBox {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.c-toggleBox__gridLinkBox {
  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;
  gap: 4px;
  margin-top: 6px;
}
.c-toggleBox__gridLinkText {
  font-size: 14px;
  line-height: 1.6;
  color: var(--primary-main);
}
.c-toggleBox__gridIconBox {
  width: 18px;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.c-contactButton {
  width: 100%;
  max-width: 193px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 766px) {
  .c-contactButton {
    max-width: 178px;
  }
}
.c-contactButton--left {
  width: 193px;
  max-width: 100%;
  margin-right: auto;
}
@media screen and (max-width: 766px) {
  .c-contactButton--left {
    max-width: 178px;
  }
}
.c-contactButton__text {
  color: var(--primary-main);
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 766px) {
  .c-contactButton__text {
    font-size: 15px;
  }
}
.c-contactButton__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-contactButton__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--primary-right);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 766px) {
  .c-contactButton__link {
    gap: 15px;
  }
}

.c-roundButton, .c-roundButton--large {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
}
.c-roundButton--large {
  max-width: 300px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .c-roundButton--large {
    max-width: 316px;
  }
}
.c-roundButton--large .c-roundButton__link {
  padding: 12px 32px 15px 32px;
}
@media screen and (max-width: 766px) {
  .c-roundButton--large .c-roundButton__link {
    padding: 11px 32px 14px 32px;
  }
}
@media (min-width: 767px) {
  .c-roundButton--large .c-roundButton__link:hover .c-roundButton__iconBox {
    -webkit-transform: translate(5px, -50%);
            transform: translate(5px, -50%);
  }
}
.c-roundButton--large .c-roundButton__text {
  font-size: 16px;
}
.c-roundButton--large .c-roundButton__iconBox {
  position: absolute;
  top: 50%;
  right: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-roundButton__link {
  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;
  gap: 16px;
  padding: 8px 5px 8px 30px;
  border: 1px solid var(--primary-right);
  border-radius: 100px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 767px) {
  .c-roundButton__link:hover .c-roundButton__iconBox {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
}
.c-roundButton__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--primary-main);
}
@media screen and (max-width: 766px) {
  .c-roundButton__text {
    font-size: 16px;
  }
}
.c-roundButton__iconBox {
  width: 24px;
  height: 24px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-modal__bg {
  position: fixed;
  z-index: 10009;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.c-modal__bg.is-active {
  opacity: 1;
  visibility: visible;
}
.c-modal__inner {
  position: fixed;
  z-index: 10010;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  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;
  margin: auto;
  padding: 0 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
@media screen and (max-width: 766px) {
  .c-modal__inner {
    padding: 0;
  }
}
.c-modal__inner.is-active {
  opacity: 1;
  visibility: visible;
}

.c-modalCard, .c-modalCard--small {
  max-width: 660px;
  width: 100%;
  position: absolute;
  z-index: 1;
  -webkit-transform: translate3d(0, 48px, 0);
          transform: translate3d(0, 48px, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.3s ease-in-out;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 766px) {
  .c-modalCard, .c-modalCard--small {
    width: calc(100% - 30px);
  }
}
.c-modalCard--small {
  max-width: 500px;
}
.c-modalCard.is-active, .is-active.c-modalCard--small {
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.c-modalCard__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: -35px;
  right: -35px;
  cursor: pointer;
}
@media screen and (max-width: 766px) {
  .c-modalCard__close {
    top: -45px;
    right: 20px;
  }
}
.c-modalCard__close::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 22px;
  height: 3px;
  background: var(--white);
  border-radius: 5px;
}
.c-modalCard__close::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 22px;
  height: 3px;
  background: var(--white);
  border-radius: 5px;
}
.c-modalCard__imgBox {
  cursor: pointer;
}
.c-modalCard__img {
  width: 100%;
}