@charset "UTF-8";
/* ///////////////////////////////////////////////

　サイト全般のスタイル
　header,footer,modules

/////////////////////////////////////////////// */
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
/*
  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-text-base: #2B006F;
  --color-purple: #8B1D69;
  --color-pink: #FFE5EF;
  --color-bg-light: #EFF0F6;
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-montserrat: "Montserrat Alternates", sans-serif;
  --font-outfit: "Outfit", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text-base);
  font-size: 14rem;
  font-family: var(--font-gothic);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

:is(p) {
  line-height: 2;
}

:is(li, dt, dd, th, td) {
  line-height: 1.7;
}

:is(input, textarea, select) {
  font-size: 16px;
}

:is(a) {
  color: inherit;
}
:is(a):hover {
  text-decoration: none;
}

/*
  LAYOUT
----------------------------------------------- */
body {
  background: url(../img/bg-body.jpg) no-repeat center bottom/100%;
  background-attachment: fixed;
}
@media screen and (max-width: 960px) {
  body {
    background: none;
    position: relative;
  }
  body::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 0;
    background: url(../img/bg-body.jpg) no-repeat center bottom/1300px;
  }
}
@media screen and (max-width: 960px) {
  body.isMenuOpen {
    overflow: hidden;
  }
}

.main-contents {
  overflow: hidden;
}

/*
  HEADER
----------------------------------------------- */
.header {
  display: flex;
}
@media screen and (min-width: 961px) {
  .header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    flex-direction: column;
    gap: 60px;
    width: 380px;
    padding-block: 70px;
    padding-left: 60px;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .header::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 25px;
    height: 76px;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
  }
  .header.scrolled {
    background-color: #fff;
  }
}
.header .logo {
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .header .logo {
    width: 220px;
    position: relative;
    z-index: 20;
  }
}
.header .logo a {
  display: grid;
  gap: 6px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .header .logo a {
    font-size: 15.5px;
  }
}
@media screen and (max-width: 960px) {
  .header .logo a {
    font-size: 10px;
  }
}

.isMenuOpen .header {
  background-color: #fff;
}

/*
  MENU
----------------------------------------------- */
@media screen and (min-width: 961px) {
  .gnav {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
@media screen and (max-width: 960px) {
  .gnav {
    position: fixed !important;
    z-index: 10;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0px 20px 35px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    background: #fff url(../img/bg-body.jpg) no-repeat center bottom/100%;
    background-size: 1300px;
    transition: 0.4s;
  }
}
@media screen and (min-width: 961px) {
  .gnav-menu {
    grid-area: 1/2/3/3;
    margin-left: auto;
    margin-right: 60px;
  }
}
.gnav-list {
  display: grid;
}
@media screen and (min-width: 961px) {
  .gnav-list {
    gap: 0.7em;
  }
}
@media screen and (max-width: 960px) {
  .gnav-list {
    gap: 2px;
  }
}
.gnav-list > li {
  position: relative;
}
.gnav-list > li > a {
  align-items: center;
  font-weight: 600;
  text-decoration: none;
}
.gnav-list > li > a::before {
  content: "";
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
}
@media screen and (min-width: 961px) {
  .gnav-list > li > a {
    display: inline-flex;
    gap: 15px;
    font-size: 16rem;
  }
  .gnav-list > li > a::before {
    width: 10px;
  }
}
@media screen and (max-width: 960px) {
  .gnav-list > li > a {
    display: flex;
    gap: 9px;
    height: 50px;
    padding-left: 18px;
    background-color: var(--color-bg-light);
    font-size: 18px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }
  .gnav-list > li > a::before {
    width: 18px;
    background-image: url(../img/mrk-right-w.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
}
.gnav .btnOpenMenu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-text-base);
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 961px) {
  .gnav .btnOpenMenu {
    display: none;
  }
}
.gnav .btnOpenMenu::before, .gnav .btnOpenMenu::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.gnav .btnOpenMenu::before {
  content: "\f107";
}
.gnav .btnOpenMenu.active::before {
  content: "\f106";
}
@media screen and (min-width: 961px) {
  .gnav-subpage {
    display: none;
  }
}
.gnav-subpage li {
  margin-left: 25px;
}
.gnav-subpage li:not(:last-child) {
  border-bottom: 1px solid #BBD5A5;
}
.gnav-subpage li a {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 45px;
  background: url(../img/mrk-right-b.svg) no-repeat center left;
  padding-left: 17px;
  text-decoration: none;
}
.gnav-sns {
  display: flex;
  gap: 1.2em;
}
@media screen and (min-width: 961px) {
  .gnav-sns {
    padding-block: 40px;
    font-size: 22rem;
  }
}
@media screen and (max-width: 960px) {
  .gnav-sns {
    justify-content: center;
    padding-block: 40px;
    font-size: 26px;
  }
}
.gnav-link a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 400;
}
.gnav-link a::before {
  content: "";
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
}
@media screen and (min-width: 961px) {
  .gnav-link a {
    gap: 15px;
    font-size: 14rem;
  }
  .gnav-link a::before {
    width: 10px;
  }
}
@media screen and (max-width: 960px) {
  .gnav-link {
    text-align: center;
  }
  .gnav-link a {
    gap: 10px;
    font-size: 16px;
  }
  .gnav-link a::before {
    width: 18px;
    background-image: url(../img/mrk-right-w.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
}
.gnav .debug {
  opacity: 1;
  pointer-events: inherit;
}
.gnav-copyright {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  font-feature-settings: "pkna";
  font-size: 10rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .gnav-copyright {
    display: none;
  }
}
.gnav-scroll {
  margin-top: auto;
  display: flex;
  align-items: center;
  height: 170px;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  font-size: 11rem;
  font-family: var(--font-montserrat);
  font-weight: bold;
  position: relative;
}
.gnav-scroll::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background-color: currentColor;
  width: 1px;
  height: 120px;
}
.gnav-scroll::after {
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
  content: "";
  background-color: currentColor;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: scrollIndicator 2s infinite;
}
@media screen and (max-width: 960px) {
  .gnav-scroll {
    display: none;
  }
}

@keyframes scrollIndicator {
  0% {
    bottom: 120px;
  }
  100% {
    bottom: 0px;
  }
}
.isMenuOpen .gnav {
  opacity: 1;
  pointer-events: inherit;
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  z-index: 20;
  place-items: center;
  width: 30px;
  height: 30px;
  display: none;
  transition: 0.2s;
}
.btnMenu::before, .btnMenu::after, .btnMenu span {
  grid-area: 1/1;
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-text-base);
  transition: 0.2s;
}
.btnMenu::before {
  translate: 0 -6px;
}
.btnMenu::after {
  translate: 0 6px;
}
@media screen and (max-width: 960px) {
  .btnMenu {
    display: grid;
  }
}

.isMenuOpen .btnMenu::before {
  rotate: 45deg;
  translate: 0;
}
.isMenuOpen .btnMenu::after {
  rotate: -45deg;
  translate: 0;
}
.isMenuOpen .btnMenu span {
  opacity: 0;
}

/*
  FOOTER
----------------------------------------------- */
.footer {
  position: relative;
}
@media screen and (min-width: 961px) {
  .footer {
    margin-left: 380px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 960px) {
  .footer {
    padding-top: 200px;
    padding-bottom: 30px;
  }
}
.footer-cta {
  max-width: 830px;
  margin: auto;
  background-color: var(--color-text-base);
  border-radius: 75px;
  display: grid;
  color: #fff;
}
@media screen and (min-width: 961px) {
  .footer-cta {
    padding: 40px 58px;
    grid-template-columns: 1fr 274px;
    gap: 40px;
    align-items: center;
  }
}
@media screen and (max-width: 1240px) {
  .footer-cta {
    grid-template-columns: inherit;
    justify-items: center;
    margin: 0 20px;
  }
}
@media screen and (max-width: 960px) {
  .footer-cta {
    position: fixed;
    z-index: 5;
    left: 25px;
    right: 25px;
    bottom: 60px;
    bottom: 10px;
    margin: 0;
    padding: 25px 23px;
    border-radius: 40px;
    gap: 15px;
    transition: bottom 0.4s;
  }
  .footer-cta.scrolled {
    bottom: 60px;
  }
}
.footer-cta .nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 30px;
}
.footer-cta .nav a::after {
  background-image: url(../img/mrk-right-p.svg);
}
@media screen and (max-width: 960px) {
  .footer-cta .nav {
    gap: 15px 17px;
    font-size: 12px;
  }
}
.footer-cta .phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 274px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-outfit);
  font-weight: bold;
}
.footer-cta .phone i {
  font-size: 85%;
}
@media screen and (min-width: 961px) {
  .footer-cta .phone {
    height: 70px;
    font-size: 24rem;
  }
}
@media screen and (max-width: 960px) {
  .footer-cta .phone {
    height: 50px;
    font-size: 24px;
  }
}
.footer-copyright {
  display: block;
  text-align: center;
  font-weight: 400;
}
@media screen and (min-width: 961px) {
  .footer-copyright {
    margin-top: 30px;
    font-size: 10rem;
  }
}
@media screen and (max-width: 960px) {
  .footer-copyright {
    font-size: 10px;
  }
}
.footer .pagetop {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-purple);
  aspect-ratio: 1;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
@media screen and (min-width: 961px) {
  .footer .pagetop {
    width: 75px;
    border-top-left-radius: 30px;
    font-size: 23rem;
  }
}
@media screen and (max-width: 960px) {
  .footer .pagetop {
    width: 50px;
    font-size: 20px;
    border-top-left-radius: 15px;
  }
}
.footer .pagetop:hover {
  padding-bottom: 10px;
}

/*
  PARTS
----------------------------------------------- */
@media screen and (min-width: 961px) {
  .container {
    padding-inline: 380px 25px;
  }
  .container > * {
    max-width: 905px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 960px) {
  .container {
    padding-inline: 25px;
  }
}

.news-list a {
  display: grid;
  text-decoration: none;
  line-height: 2;
}
.news-list a + a {
  border-top: 1px solid #AEB3D5;
}
@media screen and (min-width: 961px) {
  .news-list a {
    grid-template-columns: 6.1em 85px 1fr;
    gap: 1.3em;
    padding-block: 1.3em;
  }
}
@media screen and (max-width: 960px) {
  .news-list a {
    grid-template-columns: 7.3em 1fr;
    gap: 10px 20px;
    padding-block: 20px;
  }
}
.news-list .date {
  font-family: var(--font-outfit);
}
@media screen and (min-width: 961px) {
  .news-list .date {
    font-size: 16rem;
  }
}
@media screen and (max-width: 960px) {
  .news-list .date {
    font-size: 16px;
  }
}
.news-list .category {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.5em;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
  line-height: 1.1;
}
@media screen and (min-width: 961px) {
  .news-list .category {
    height: 32px;
    font-size: 13rem;
  }
}
@media screen and (max-width: 960px) {
  .news-list .category {
    min-width: 80px;
    width: fit-content;
    height: 32px;
    font-size: 13px;
  }
}
@media screen and (min-width: 961px) {
  .news-list .title {
    font-size: 14rem;
  }
}
@media screen and (max-width: 960px) {
  .news-list .title {
    grid-area: 2/1/3/3;
    font-size: 14px;
  }
}

.mrk {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  text-decoration: none;
}
.mrk.right::after {
  display: inline-block;
  background-color: currentColor;
  aspect-ratio: 1;
  border-radius: 50%;
  width: 17px;
  content: "";
  background-image: url(../img/mrk-right-w.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s;
}
.mrk:hover::after {
  translate: 10px;
}

.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-purple);
}
.button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: inline-block;
  background-color: currentColor;
  aspect-ratio: 1;
  border-radius: 50%;
  width: 20px;
  content: "";
  background-image: url(../img/mrk-right-w.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.button:hover::after {
  animation: buttonHover 2s infinite;
}
@media screen and (min-width: 961px) {
  .button {
    width: 260px;
    height: 60px;
    font-size: 16rem;
  }
}
@media screen and (max-width: 960px) {
  .button {
    height: 50px;
    font-size: 16px;
  }
}

@keyframes buttonHover {
  0% {
    translate: -10px;
  }
  10% {
    translate: -10px;
  }
  100% {
    translate: 0px;
  }
}