/* ------------------------
  reset
------------------------ */
:where(.main-ctn) {
  height: 100%;
}
:where(.main-ctn) *,
:where(.main-ctn) *::after,
:where(.main-ctn) *::before {
  box-sizing: border-box;
}
:where(.main-ctn) * {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
:where(.main-ctn) pre,
:where(.main-ctn) textarea {
  overflow: auto;
}
:where(.main-ctn) template {
  display: none;
}
:where(.main-ctn) details,
:where(.main-ctn) main,
:where(.main-ctn) summary {
  display: block;
}
:where(.main-ctn) input[type=number] {
  width: auto;
}
:where(.main-ctn) input[type=search] {
  -webkit-appearance: textfield;
}
:where(.main-ctn) input[type=search]::-webkit-search-cancel-button,
:where(.main-ctn) input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
:where(.main-ctn) progress {
  display: inline-block;
}
:where(.main-ctn) small {
  font-size: 75%;
}
:where(.main-ctn) sub,
:where(.main-ctn) sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
:where(.main-ctn) sup {
  top: -0.5em;
}
:where(.main-ctn) sub {
  bottom: -0.25em;
}
:where(.main-ctn) textarea {
  resize: vertical;
}
:where(.main-ctn) audio,
:where(.main-ctn) canvas,
:where(.main-ctn) iframe,
:where(.main-ctn) img,
:where(.main-ctn) svg,
:where(.main-ctn) video {
  vertical-align: middle;
}
:where(.main-ctn) audio:not([controls]) {
  display: none;
}
:where(.main-ctn) img {
  border: 0;
  max-width: 100%;
  height: auto;
}
:where(.main-ctn) button,
:where(.main-ctn) input,
:where(.main-ctn) select,
:where(.main-ctn) textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}
:where(.main-ctn) button {
  overflow: visible;
}
:where(.main-ctn) button,
:where(.main-ctn) select {
  text-transform: none;
}
:where(.main-ctn) input {
  line-height: normal;
}
:where(.main-ctn) button,
:where(.main-ctn) html input[type=button],
:where(.main-ctn) input[type=reset],
:where(.main-ctn) input[type=submit] {
  border-style: none;
  cursor: pointer;
  background-color: transparent;

  -webkit-appearance: button;
}
:where(.main-ctn) button[disabled],
:where(.main-ctn) html input[disabled] {
  cursor: default;
}
:where(.main-ctn) button::-moz-focus-inner,
:where(.main-ctn) input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
:where(.main-ctn) code,
:where(.main-ctn) kbd,
:where(.main-ctn) pre,
:where(.main-ctn) samp {
  font-family: monospace;
}
:where(.main-ctn) ol,
:where(.main-ctn) ul {
  list-style: none;
}
:where(.main-ctn) select {
     -moz-appearance: none;
  -webkit-appearance: none;
}
:where(.main-ctn) table {
  border-spacing: 0;
  border-collapse: collapse;
}
:where(.main-ctn) fieldset {
  border: 0;
}

:root {
  --color-white-01: #fff;
  --color-white-02: #f2ecda;
  --color-white-03: #f6f4ed;
  --color-black: #333;
  --color-gold-01: #a39347;
  --color-gold-02: #d8d2b4;
  --color-gold-03: #f7f0e4;
  --color-gold-04: #c8bd81;
  --color-pink-gold-01: #eee4dc;
  --color-beige-01: #fffdf8cc;
  --color-pink-01: #f07e81;
  --color-pink-02: #ca8183;
  --base-easing: cubic-bezier(0.250, 0.460, 0.450, 0.940);
  --base-duration: 0.54s;
  --base-hover-easing: ease;
  --hover-alpha: 0.8;
}

/* ------------------------
  Base Settings
------------------------ */
:where(.main-ctn) {
  background-color: #fff;
  word-wrap: break-word;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: inherit;
  line-height: 1.6875;

  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
:where(.main-ctn) a {
  text-decoration: underline;
  color: #00f;
}
:where(.main-ctn) a:visited {
  color: #000080;
}
:where(.main-ctn) a:hover {
  text-decoration: none;
  color: #f00;
}
:where(.main-ctn) a:active {
  text-decoration: none;
  color: #ff8000;
}
:where(.main-ctn) a[href^="tel:"]:hover {
  color: #00f;
}
@media (min-width: 768px) {
  :where(.main-ctn) a[href^="tel:"] {
    cursor: text;
    text-decoration: none;
  }
}

.accordion-inner {
  display: flex;
  border: 1px solid var(--color-gold-02);
  border-top: none;

  gap: 1.0666666667vw;
}
@media (min-width: 768px) {
  .accordion-inner {
    gap: clamp(13.9027777778px, 22px, 1.5277777778vw);
  }
}
.accordion-inner > .answer {
  flex-shrink: 0;
  width: 4.2666666667vw;
}
@media (min-width: 768px) {
  .accordion-inner > .answer {
    width: clamp(16.4305555556px, 26px, 1.8055555556vw);
  }
}
.accordion-inner > .txt {
  font-size: 3.7333333333vw;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .accordion-inner > .txt {
    font-size: clamp(10.1111111111px, 16px, 1.1111111111vw);
  }
}

.accordion-ttl {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  border: 1px solid var(--color-gold-02);
  cursor: pointer;
  transition: opacity calc(var(--base-duration) - 0.1s) var(--base-hover-easing);
  background-color: var(--color-white-02);

  gap: 1.3333333333vw;
}
@media (min-width: 768px) {
  .accordion-ttl {
    gap: clamp(13.2708333333px, 21px, 1.4583333333vw);
  }
}
@media (hover: hover) and (pointer: fine) {
  .accordion-ttl:hover {
    opacity: var(--hover-alpha);
    transition: opacity var(--base-duration) var(--base-hover-easing);
  }
}
.accordion-ttl::-webkit-details-marker {
  display: none;
}
.accordion-ttl > .question {
  flex-shrink: 0;
  margin-top: -0.5333333333vw;
  width: 4.8vw;
}
@media (min-width: 768px) {
  .accordion-ttl > .question {
    margin-top: 0;
    width: clamp(16.4305555556px, 26px, 1.8055555556vw);

    translate: 0 liq(-2);
  }
}
.accordion-ttl > .txt {
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .accordion-ttl > .txt {
    font-size: clamp(10.1111111111px, 16px, 1.1111111111vw);
  }
}
.accordion-ttl > .icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 4vw;
  border-radius: 50vw;
  width: 5.3333333333vw;
  transform: translateY(-50%);
  background-color: color-mix(in srgb, var(--color-gold-01), transparent 30%);

  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .accordion-ttl > .icon {
    right: clamp(22.1180555556px, 35px, 2.4305555556vw);
    width: clamp(16.4305555556px, 26px, 1.8055555556vw);
  }
}
.accordion-ttl > .icon::before,
.accordion-ttl > .icon::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  width: 40%;
  height: 1px;
  transform-origin: 50%;
  background-color: var(--color-white-01);

  inset: 0;
}
.accordion-ttl > .icon::after {
  transition: rotate 0.3s ease;

  rotate: -90deg;
}
.-opened .accordion-ttl > .icon::after {
  rotate: 0deg;
}

/* ------------------------
  Components
------------------------ */
/* ------------------------
  utilities Classes
------------------------ */
:where(.main-ctn) .u-hidden {
  display: none !important;
  visibility: hidden;
}
@media (max-width: 767.98px) {
  :where(.main-ctn) .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}
:where(.main-ctn) .u-hidden-up-sm {
  display: none !important;
  visibility: hidden;
}
@media (max-width: 767.98px) {
  :where(.main-ctn) .u-hidden-down-sm {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1099.98px) {
  :where(.main-ctn) .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 768px) {
  :where(.main-ctn) .u-hidden-up-md {
    display: none !important;
    visibility: hidden;
  }
}
@media (max-width: 1099.98px) {
  :where(.main-ctn) .u-hidden-down-md {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1100px) and (max-width: 1439.98px) {
  :where(.main-ctn) .u-hidden-tb {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1100px) {
  :where(.main-ctn) .u-hidden-up-tb {
    display: none !important;
    visibility: hidden;
  }
}
@media (max-width: 1439.98px) {
  :where(.main-ctn) .u-hidden-down-tb {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1440px) and (max-width: 1919.98px) {
  :where(.main-ctn) .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1440px) {
  :where(.main-ctn) .u-hidden-up-lg {
    display: none !important;
    visibility: hidden;
  }
}
@media (max-width: 1919.98px) {
  :where(.main-ctn) .u-hidden-down-lg {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1920px) {
  :where(.main-ctn) .u-hidden-xl {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1920px) {
  :where(.main-ctn) .u-hidden-up-xl {
    display: none !important;
    visibility: hidden;
  }
}
:where(.main-ctn) .u-hidden-down-xl {
  display: none !important;
  visibility: hidden;
}
:where(.main-ctn) .u-visuallyhidden {
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
}
:where(.main-ctn) .u-visuallyhidden.focusable:active,
:where(.main-ctn) .u-visuallyhidden.focusable:focus {
  overflow: visible;
  clip: auto;
  position: static;
  margin: 0;
  width: auto;
  height: auto;
}
:where(.main-ctn) .u-invisible {
  visibility: hidden;
}
:where(.main-ctn) .clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*
* main.css
*
*/