@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  リセット
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.6;
  letter-spacing: 0.6px;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  vertical-align: top;
  border: 0;
  width: auto;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style-type: none;
  padding-inline-start: 0;
  list-style-position: inside;
}

#root,
#__next {
  isolation: isolate;
}

/* Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
-------------------------------------------------------------------*/
/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  メイン
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
html {
  scroll-behavior: smooth;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  font-style: normal;
}
html p {
  line-height: 2;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  リンク
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
a {
  transition: all ease 0.6s;
}

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

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

a:hover {
  color: inherit;
  text-decoration: none;
  transition: all ease 0.6s;
}

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

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  PC、SP切り替え
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: block;
  }
}

.only-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  フォント
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.text-md {
  font-size: 3.2710280374vw;
}
@media screen and (min-width: 768px) {
  .text-md {
    font-size: 14px;
  }
}

.text-lg {
  font-size: 3.738317757vw;
}
@media screen and (min-width: 768px) {
  .text-lg {
    font-size: 16px;
  }
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.btn {
  background: #000000;
  border-radius: 50px;
  color: #fff !important;
  display: block;
  position: relative;
  width: 100%;
  transition: all 0.4s ease;
  padding: 16px 32px;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.btn::before {
  display: inline-block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  position: static;
  top: auto;
  left: auto;
  width: 40px;
  height: 36px;
  aspect-ratio: 1/1;
}
.btn::after {
  display: grid;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 14px;
  height: 10px;
}
.btn:hover {
  color: #f39939 !important;
}
.btn.arrow::after {
  background-image: url(../images/arrow.svg);
}
.btn.member {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.btn.member::before {
  background-image: url(../images/icon-member.png);
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  アコーディオン
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.accordion {
  background-color: #f9f9f9;
  border-radius: 10px;
}

.details-summary {
  position: relative;
  display: block;
  padding: 16px;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.details-summary .btn-accordion {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}
.details-summary .btn-accordion:before, .details-summary .btn-accordion:after {
  content: "";
  background-color: #f39939;
  border-radius: 4px;
  width: 14px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.details-summary .btn-accordion:before {
  width: 2px;
  height: 14px;
}
.details-summary.is-active .btn-accordion:before {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.details-summary::-webkit-details-marker {
  display: none;
}

.details-content {
  padding-bottom: 16px;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  汎用部品
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.rainbow-bar::before {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #e6002d, #eb6d8e, #f39939, #b963a4, #20aee5, #3eb370);
}

.list-doted {
  padding: 0 16px;
  text-align: justify;
}
.list-doted li {
  position: relative;
  padding-left: 1em;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
}
.list-doted li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  line-height: inherit;
}
.list-doted li.list-none {
  padding-left: 0;
  margin: 8px 0;
}
.list-doted li.list-none::before {
  content: "";
}/*# sourceMappingURL=common.css.map */