@charset "UTF-8";
html {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4vw;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  line-height: 2;
  background-color: #f7f7f9;
  color: #231815;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: clip;
  }
}

a {
  color: #231815;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

img {
  display: inherit;
}

a:hover {
  filter: contrast(0.5) brightness(1.5);
}

.spView {
  display: none;
}
@media screen and (max-width: 767px) {
  .spView {
    display: inherit;
  }
}

@media screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
}
.arrowLink a {
  background: url(../img/linkArrow.svg) no-repeat left center;
  padding-left: 1.5em;
}

.mainWrap {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .mainWrap {
    overflow-x: clip;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.alignRight {
  text-align: right;
}

.alignCenter {
  text-align: center;
}

.alignLeft {
  text-align: left;
}

.flexFrame,
.flexFrameAlt {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.flexFrame iframe,
.flexFrame video,
.flexFrameAlt iframe,
.flexFrameAlt video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flexFrameAlt {
  aspect-ratio: 3/2;
}

.nFlexFrame iframe,
.nFlexFrame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

[data-disabled] {
  pointer-events: none;
}

.basicParallax {
  position: relative;
  overflow: clip;
}
.basicParallax > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  animation: basicParallax linear both;
  animation-timeline: view();
}

.reverseParallax {
  position: relative;
  overflow: clip;
}
.reverseParallax > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  animation: reverseParallax linear both;
  animation-timeline: view();
  animation-range: cover -50% cover 100%;
}

#mainHeader {
  position: fixed;
  width: 100%;
  top: 0;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background-color: #f7f7f9;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #mainHeader {
    height: 16vw;
    padding: 0 1rem;
  }
}
#mainHeader #headLogo {
  padding-top: 1rem;
  z-index: 20;
}
#mainHeader #headLogo img {
  height: 40px;
}
@media screen and (max-width: 767px) {
  #mainHeader #headLogo img {
    height: 6.8vw;
  }
}
#mainHeader #headMenu {
  margin-left: auto;
  font-size: 0.9rem;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  #mainHeader #headMenu {
    display: none;
  }
}
#mainHeader #headMenu .menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 2.5rem;
}
#mainHeader #headMenu .menu > li {
  position: relative;
  line-height: 3;
}
#mainHeader #headMenu .menu > li a {
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4em;
  text-decoration-color: #AFA8CF;
}
#mainHeader #headMenu .menu > li a[href="#"] {
  pointer-events: none;
}
#mainHeader #headMenu .menu > li.nActive > a, #mainHeader #headMenu .menu > li:hover > a {
  color: #7162CF;
}
#mainHeader #headMenu .menu > li .sub-menu {
  list-style: disc;
  position: absolute;
  width: auto;
  top: 100%;
  left: -1.5rem;
  background-color: #FFFFFF;
  padding: 1rem 1.5rem 1rem 2.5rem;
  white-space: nowrap;
  border-radius: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  line-height: 2;
  transform: translateY(-0.5rem);
}
#mainHeader #headMenu .menu > li .sub-menu > li::marker {
  color: #7162CF;
}
#mainHeader #headMenu .menu > li .sub-menu > li a {
  text-decoration: none;
}
#mainHeader #headMenu .menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#mainHeader #menuCheck {
  display: none;
}
#mainHeader #menuCheck:checked ~ #menuButton span {
  transform: rotate(360deg);
  opacity: 0;
}
#mainHeader #menuCheck:checked ~ #menuButton:before {
  transform: rotate(135deg);
  top: 50%;
  height: 2px;
}
#mainHeader #menuCheck:checked ~ #menuButton:after {
  transform: rotate(-135deg);
  top: 50%;
  height: 2px;
}
#mainHeader #menuCheck:checked ~ #mainMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: unset;
}
#mainHeader #menuButton {
  width: 4rem;
  height: 2rem;
  border-radius: 5rem;
  background-color: black;
  position: relative;
  z-index: 20;
  cursor: pointer;
}
#mainHeader #menuButton span, #mainHeader #menuButton:before, #mainHeader #menuButton:after {
  content: "";
  display: block;
  position: absolute;
  width: 0.8rem;
  left: calc(50% - 0.4rem);
  height: 1px;
  background-color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
#mainHeader #menuButton span {
  top: 50%;
}
#mainHeader #menuButton:before {
  top: 68%;
}
#mainHeader #menuButton:after {
  top: 32%;
}
#mainHeader #mainMenu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  transition: all 0.3s ease-in-out;
  transform: scale(200%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #mainHeader #mainMenu {
    overflow-y: auto;
  }
}
#mainHeader #mainMenu .menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 25%;
  list-style: none;
  padding: calc(100px + 2rem) 1rem 1rem;
}
@media screen and (max-width: 767px) {
  #mainHeader #mainMenu .menu {
    display: flex;
    flex-direction: column;
    padding-top: 14vw;
    gap: 1rem;
  }
}
#mainHeader #mainMenu .menu > li {
  position: relative;
  line-height: 2.2;
}
#mainHeader #mainMenu .menu > li > a {
  color: #7162CF;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #mainHeader #mainMenu .menu > li > a {
    font-size: 4vw;
  }
}
#mainHeader #mainMenu .menu > li > a[href="#"] {
  pointer-events: none;
}
#mainHeader #mainMenu .menu > li .sub-menu {
  list-style: disc;
  white-space: nowrap;
  padding-left: 1.5rem;
}
#mainHeader #mainMenu .menu > li .sub-menu > li::marker {
  color: #7162CF;
}
@media screen and (max-width: 767px) {
  #mainHeader #mainMenu .menu > li .sub-menu > li {
    line-height: 1.8;
  }
}
#mainHeader #mainMenu .menu > li .sub-menu > li a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #mainHeader #mainMenu .menu > li .sub-menu > li a {
    font-size: 4vw;
  }
}

#mainFooter {
  border-radius: 5rem 5rem 0 0;
  z-index: 5;
  position: relative;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  #mainFooter {
    padding-top: 5rem;
  }
}
#mainFooter #footCont {
  display: flex;
  justify-content: space-between;
  padding: 80px 10px;
}
@media screen and (max-width: 767px) {
  #mainFooter #footCont {
    text-align: center;
    padding: 3rem 1rem;
    justify-content: center;
    align-items: center;
  }
}
#mainFooter #footCont #footTitle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  #mainFooter #footCont #footTitle {
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
#mainFooter #footCont #footTitle #footLogo {
  margin-bottom: 1rem;
}
#mainFooter #footCont #footTitle #footLogo img {
  height: 40px;
}
@media screen and (max-width: 767px) {
  #mainFooter #footCont #footTitle #footLogo img {
    height: 8vw;
  }
}
#mainFooter #footCont #footTitle #footSNS {
  display: flex;
  gap: 1rem;
}
#mainFooter #footCont #footTitle #footSNS a {
  width: 3rem;
}
#mainFooter #footCont #footTitle #footAddress {
  margin-top: auto;
}
#mainFooter #footCont #footTitle #footAddress p {
  margin: 0;
}
#mainFooter #footCont #footTitle #footAddress address {
  font-style: normal;
  font-size: 0.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #mainFooter #footCont #footTitle #footAddress address {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  #mainFooter #footCont #footMenu {
    display: none;
  }
}
#mainFooter #footCont #footMenu .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  font-size: 0.8rem;
  line-height: 2;
}
#mainFooter #footCont #footMenu .menu > li {
  padding: 0 1rem;
  min-width: 360px;
}
#mainFooter #footCont #footMenu .menu > li:nth-of-type(n+3) {
  border-top: 1px solid #B1B1B1;
  padding-top: 1.5rem;
}
#mainFooter #footCont #footMenu .menu > li > a {
  color: #7162CF;
  font-size: 1rem;
}
#mainFooter #footCont #footMenu .menu > li .sub-menu {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}
#mainFooter #footCont #footMenu .menu > li .sub-menu a {
  background: url(../img/linkArrow.svg) no-repeat left center;
  padding-left: 1.5em;
}
#mainFooter #copyRight {
  background-color: #AFA8CF;
  line-height: 4;
}
#mainFooter #copyRight p {
  font-size: 0.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #mainFooter #copyRight p {
    font-size: 2.6vw;
    text-align: center;
  }
}

.sectionNote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .sectionNote {
    gap: 0;
    flex-direction: column;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }
}
.sectionNote > div {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .sectionNote > div {
    width: 100%;
    margin-bottom: 0;
  }
}
.sectionNote > div h2 {
  font-size: 2.2rem;
  font-weight: 700;
  overflow: hidden;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.2em;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sectionNote > div h2 {
    font-size: 1.8rem;
  }
}
.sectionNote > div h2 span {
  font-size: 0.8rem;
}
.sectionNote > div p {
  font-size: 0.8rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .sectionNote > div p {
    padding-right: 0;
  }
}
.sectionNote > div > div {
  text-align: right;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .sectionNote > div > div {
    margin-bottom: 2rem;
  }
}
.sectionNote > div > div a {
  display: inline-block;
  text-align: left;
  color: #FFFFFF;
  font-size: 0.8rem;
  border-radius: 1.5em;
  padding: 0 2em;
  width: 360px;
  line-height: 2.6;
  background: #000000 url(../img/whiteArrow.svg) no-repeat right 0.8rem center/0.8em auto;
}
@media screen and (max-width: 767px) {
  .sectionNote > div > div a {
    width: 100%;
  }
}
.sectionNote > div > div a:hover {
  animation: linkArrowAnime 1s forwards ease-in-out;
}
.sectionNote > figure {
  overflow: hidden;
  border-radius: 2rem;
}

.sectionTitle {
  margin-bottom: 4rem;
  font-weight: 700;
  overflow: hidden;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.2em;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 2rem;
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  .sectionTitle {
    gap: 0;
    flex-direction: column;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }
}
.sectionTitle:before {
  content: attr(title);
  font-size: 2.2rem;
}

.commonPage {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .commonPage {
    padding-top: 16vw;
  }
}
.commonPage > section:nth-of-type(n+2) {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .commonPage > section:nth-of-type(n+2) {
    padding: 3rem 0;
  }
}
.commonPage #pageTop {
  position: relative;
}
.commonPage #pageTop figure {
  margin: 0 2rem;
  height: calc(100vh - 100px - 2rem);
}
@media screen and (max-width: 767px) {
  .commonPage #pageTop figure {
    margin: 0 1rem;
    height: calc(100vh - 10vw - 3rem);
  }
}
.commonPage #pageTop figure > img {
  overflow: hidden;
  border-radius: 1rem;
  width: 100%;
  object-fit: cover;
}
.commonPage #pageTop h1 {
  font-size: 1.2rem;
  margin: 0;
  position: absolute;
  left: 6rem;
  bottom: 3rem;
  line-height: 1.5;
  text-shadow: 0 0 0.2rem #FFFFFF, 0 0 0.3rem #FFFFFF, 0 0 0.2rem #FFFFFF, 0 0 0.3rem #FFFFFF;
}
@media screen and (max-width: 767px) {
  .commonPage #pageTop h1 {
    left: 3rem;
    font-size: 5vw;
    bottom: 2rem;
    max-width: 80%;
  }
}
.commonPage #pageTop h1:after {
  content: attr(title);
  font-size: 2rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .commonPage #pageTop h1:after {
    font-size: 6vw;
  }
}
.commonPage .pageHeader {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .commonPage .pageHeader {
    margin: 0 0 3rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.commonPage .commonContent h2 {
  font-size: 1.2rem;
}

.imageContList > article {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .imageContList > article {
    margin-top: 3rem;
    flex-direction: column;
    gap: 1rem;
  }
}
.imageContList > article .imageContListImage {
  width: 40%;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .imageContList > article .imageContListImage {
    width: 80%;
  }
}
.imageContList > article .imageContListImage > figure {
  margin-bottom: 0;
}
.imageContList > article .imageContListImage > figure img {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}
.imageContList > article .imageContListText {
  width: 40%;
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  .imageContList > article .imageContListText {
    width: 100%;
  }
}
.imageContList > article:nth-of-type(1) {
  margin-top: 0;
}
.imageContList > article:nth-of-type(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .imageContList > article:nth-of-type(odd) {
    flex-direction: column;
  }
}

.numberCircle > dt,
.numberCircle > summary {
  position: relative;
}
.numberCircle > dt > span,
.numberCircle > summary > span {
  position: absolute;
  display: block;
  color: #7162CF;
  width: 2.5em;
  height: 1.5em;
  text-align: center;
  font-weight: bold;
  margin-left: -4em;
  margin-top: 0.3em;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .numberCircle > dt > span,
  .numberCircle > summary > span {
    margin-left: -3em;
  }
}
.numberCircle > dt > span:before,
.numberCircle > summary > span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #7162CF;
  border-radius: 50%;
  transform: skew(30deg, -30deg);
}

/* アコーディオンアニメーション */
details {
  /* --------アコーディオンの中身のスタイル-------- */
  /* --------アコーディオンの中身のスタイル（開いている時）-------- */
  /* アコーディオンが開いた時のスタイル */
}
details::details-content {
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
}
details[open]::details-content {
  opacity: 1;
}
details[open]::after {
  transform: rotate(180deg);
}
details summary {
  cursor: pointer;
  list-style: none;
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
}
details summary::marker {
  display: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details > * {
  overflow: clip;
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords; /* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
  }
  details[open]::details-content {
    height: auto;
  }
}
/* allow-keywords が使えないときの対処 */
@supports not (interpolate-size: allow-keywords) {
  details[open]::details-content {
    height: auto;
    overflow-y: scroll; /* 溢れる場合はスクロール可能にする */
  }
}
.commonButton {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.commonButton a,
.commonButton button,
.commonButton input[type=button],
.commonButton input[type=submit] {
  color: #FFF;
  width: 100%;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  padding: 0.8em;
  border-radius: 1em;
  background: #6658ff url(../img/whiteArrowCircle.svg) no-repeat right 1.5rem center/1.5em auto;
}
.commonButton a:hover,
.commonButton button:hover,
.commonButton input[type=button]:hover,
.commonButton input[type=submit]:hover {
  animation: linkArrowAnimeShort 1s forwards ease-in-out;
}
.commonButton .buttonOrange {
  background-color: #f15a24;
}

.faqList details {
  background-color: transparent;
  margin-bottom: 0.5rem;
}
.faqList details summary {
  background-color: #f2f2f9;
  position: relative;
  padding: 1em 3em 1em 8em;
  border-radius: 5em;
}
@media screen and (max-width: 767px) {
  .faqList details summary {
    padding: 1em 2.5em 1em 2.5em;
    border-radius: 2em;
  }
}
.faqList details summary > span {
  margin-left: -6rem;
}
@media screen and (max-width: 767px) {
  .faqList details summary > span {
    display: none;
  }
}
.faqList details summary:before {
  content: "Q";
  position: absolute;
  color: #7162CF;
  margin-left: -2em;
  font-size: 1.1rem;
  margin-top: -0.2em;
}
@media screen and (max-width: 767px) {
  .faqList details summary:before {
    margin-left: -1.3em;
  }
}
.faqList details summary:after {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  background: url(../img/blackArrow.svg) no-repeat center/contain;
  right: 3rem;
  top: 1.6rem;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .faqList details summary:after {
    right: 1.2rem;
    top: calc(50% - 0.4rem);
  }
}
.faqList details .faqCont {
  overflow: hidden;
  position: relative;
  padding: 1.5em 3em 4em 8em;
}
@media screen and (max-width: 767px) {
  .faqList details .faqCont {
    padding: 1em 2.5em 1em 2.5em;
  }
}
.faqList details .faqCont p:nth-of-type(1) {
  margin-top: 0;
}
.faqList details .faqCont:before {
  content: "A";
  position: absolute;
  color: #7162CF;
  margin-left: -2em;
  font-size: 1.1rem;
  margin-top: -0.2em;
}
@media screen and (max-width: 767px) {
  .faqList details .faqCont:before {
    margin-left: -1.3em;
  }
}
.faqList details[open] summary::after {
  transform: rotate(-90deg);
}

.paginate {
  text-align: center;
}
.paginate a {
  padding: 0.2em 0.5em;
  background-color: #EEEEEE;
  border: 1px solid #CCC;
  border-radius: 0.5rem;
}
.paginate span {
  border: 1px solid #CCC;
  padding: 0.2em 0.5em;
  border-radius: 0.5rem;
}

#catList {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #catList {
    font-size: 0.9rem;
  }
}
#catList > a {
  border: 1px solid #CCC;
  background-color: #EEEEEE;
  border-radius: 1rem;
  padding: 0 1em;
}
#catList > span {
  border: 1px solid #CCC;
  border-radius: 1rem;
  padding: 0 1em;
}

/*# sourceMappingURL=common.css.map */
