@charset "UTF-8";

:root {
  --inner-width: 1200px;
  /* --background-color: #f0f3f8; */
  --background-color: #fff;
  --sp-width: 768px;
  --serif: "Noto Sans JP", sans-serif;
  --round: "M PLUS Rounded 1c", sans-serif;
}

body {
  font-size: 18px;
  line-height: 32px;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: #434343;
}

@media only screen and (max-width: 760px) {
  body {
    font-size: 16px;
    line-height: 26px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

a {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
}

.header {
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 8px 0;
  width: 100%;
}

@media (max-width: 767px) {
  .header-menu {
    padding: 8px 0 10px 0;
  }
}

.header-menu a,
.header-menu a:visited {
  color: #222;
  text-decoration: none;
}

.header-menu a:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  .header-menu a {
    width: 100%;
    display: inline-block;

    margin: auto;
    margin-bottom: 16px;
  }
}

.header-menu-logo {
  flex-basis: 40%;
  flex-grow: 2;
}

@media (max-width: 767px) {
  .header-menu-logo {
    margin-bottom: 16px;
  }
}

.header-menu-logo img {
  height: 72px;
  width: auto;
}

.header-menu-link a {
  padding: 0 6px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

@media only screen and (max-width: 760px) {
  .header-menu-link a {
    margin-top: 8px;
  }
}

.header-base {
  background-color: white;
}

.main {
  width: 100%;
  margin: auto;
}

.h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  padding: 32px 16px 20px 16px;
  text-align: center;
}

@media only screen and (max-width: 680px) {
  .h1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    padding: 32px 16px 20px 16px;
    text-align: center;
  }
}

.h2 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 36px;
  padding: 32px 16px 20px 16px;
  text-align: center;
}

.article-h2 {
  border-radius: 60px;
  background: rgba(255, 144, 104, 0.5);
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 10px 24px;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  margin: 24px auto;
}

.point {
  background-color: rgba(255, 144, 104, 0.2);
  border-radius: 12px;
  padding: 20px 30px;
  text-align: left;
  margin: 32px 24px;
  display: flex;
  font-size: 17px;
  line-height: 23px;
  gap: 24px;
  flex-grow: 0;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (max-width: 760px) {
  .point {
    flex-direction: column;
  }
}

.point:before {
  content: "POINT!";
  flex-basis: 85px;
  height: 85px;
  flex-grow: 0;
  min-width: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-size: 16px;
  font-weight: 600;
  color: #fd746c;
}

@media only screen and (max-width: 760px) {
  .point:before {
    display: flex;
    flex-basis: 60px;
    width: 60px;
    height: 40px;
    flex-grow: 1;
    font-size: 12px;
  }
}

.point>*:nth-child(2) {
  flex-basis: auto;
  flex-grow: 2;
}

.footer {
  width: 100%;
  margin-top: 48px;
  background-color: #f0f3f8;
}

.footer iframe {
  display: block;
}

.container {
  width: 100%;
  margin: auto;
}

.inner {
  max-width: var(--inner-width);
  width: 100%;
  margin: auto;
  padding: 0 24px;
}

@media only screen and (max-width: 768px) {
  .inner {
    padding: 0 16px;
  }
}

.autoscroll {
  overflow: auto;
  width: 100%;
}

.header-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  background-color: white;
}

.nav-menu {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  margin: 48px auto;
}

@media only screen and (max-width: 768px) {
  .nav-menu {
    gap: 16px;
  }
}

.here {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}

.here:after {
  content: "閲覧中";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}

.nav-menu>* {
  position: relative;
  flex-basis: 300px;
  flex-grow: 1;
  height: 140px;
  background-color: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  background-position: right bottom;
  background-size: 240px 160px;
  background-repeat: no-repeat;

  z-index: 1;
  overflow: hidden;
}

.nav-menu>*::after {
  content: "";
  display: block;
  background-color: white;
  transform: rotate(-50deg);
  width: 400px;
  height: 400px;
  position: absolute;
  right: 140px;
  top: -240px;
  bottom: -20px;
  z-index: 2;
}

.nav-menu a,
.nav-menu a:visited {
  color: #222;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 6;
  position: relative;
  padding: 12px 16px;
}

.nav-menu a:hover {
  opacity: 0.5;
}

.nav-menu h3 {
  line-height: 24px;
  font-size: 20px;
  font-weight: 600;
}

.nav-menu p {
  line-height: 22px;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 12px;
}

/*---------------------
footer
---------------------*/
.footer-map {
  margin: 0;
}

.footer-section01 {
  background-color: white;
}

.footer-section02 {
  padding: 32px 0;
}

.footer .inner {
  max-width: 1200px;
}

.footer-buttons {
  display: flex;
  gap: 16px;
  margin: auto;
  max-width: var(--inner-width);
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .footer-buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
  }
}

.footer-buttons>*:first-child {
  flex: 1 1 45%;
}

.footer-info-wrapper {
  background-color: #fcfaf5;
  padding: 48px 24px;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: auto;
  max-width: 1200px;
  gap: 24px;
}

@media (max-width: 767px) {
  .footer-info {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.footer-info h2 {
  color: #ec7a00;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 36px;
  line-height: 140%;
}

.footer-info p {
  color: #533434;

  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 36px */
}

@media (max-width: 767px) {
  .footer-info p {
    text-align: center;
  }
}

.footer-info h3 {
  color: #533434;
  text-align: left;
  margin-top: 32px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  /* 250% */
}

.footer-info>* {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .footer-info>* {
    width: 100%;
  }
}

.footer-info .open {
  width: 90%;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .footer-info .open {
    max-width: none;
    width: 100%;
  }
}

.footer-info .open dt {
  background: #ffdebb;
  color: #533434;
  font-weight: 600;
  padding: 8px 16px;
}

.footer-info .open dd {
  color: #533434;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 3.6px;
  background: rgba(217, 217, 217, 0.3);
  padding: 8px 16px;
}

.footer-info-access {
  padding-top: 24px;
}

.footer-info-access img {
  max-width: 520px;
}

.footer-info .tel {
  color: #ec7a00;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 44.8px */
  letter-spacing: 3.2px;
}

.footer-logo img {
  width: 580px;
}

@media (max-width: 767px) {
  .footer-logo img {
    max-width: 580px;
    width: 100%;
  }
}

.button-orange {
  white-space: nowrap;
  background: linear-gradient(90deg, #fd746c 0%, #ff9068 100%);
  border-radius: 50px;
  display: inline-block;
  font-size: 20px;
  line-height: 100%;
  padding: 10px 32px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: white !important;
  margin-left: 12px;
}

@media (max-width: 767px) {
  .button-orange {
    padding: 14px 32px;

    margin: auto;
  }
}

.site-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  gap: 24px;
  padding: 12px 0;
  max-width: 1200px;
}

@media only screen and (max-width: 860px) {
  .site-buttons {
    flex-direction: column;
    gap: 16px;
  }
}

.site-buttons>*:nth-child(1) {
  flex-grow: 2;
  flex-basis: auto;
  font-size: 15px;
  line-height: 20px;
}

@media only screen and (max-width: 768px) {
  .site-buttons>*:nth-child(1) {
    font-size: 14px;
    line-height: 20px;
  }
}

.site-buttons>*:nth-child(2) {
  flex-grow: 2;
  display: flex;
  justify-content: right;
}

.site-buttons a {
  display: inline-block;
  margin-left: 16px;
}

.sitemenu {
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.sitemenu>* {
  font-size: 17px;
  line-height: 20px;
  flex-grow: 1;
}

@media only screen and (max-width: 768px) {
  .sitemenu {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

.sitemenu a {
  text-decoration: none;
  color: #222;
  display: block;
  margin-bottom: 16px;
}

.sitemenu-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(auto, auto);
  gap: 32px;
}

.sitemenu-links ul li {
  flex: 1 1 31%;
}

.sitemenu-links h3 {
  font-size: 21px;
  line-height: 160%;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .sitemenu-links ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

.sidemenu h3 {
  color: #fff;
  display: block;
  margin: 40px auto 16px auto;
  font-size: 20px;
  line-height: 30px;
  padding: 10px 0;
  border-bottom: #ffffff26;
}

.sidemenu a {
  text-decoration: none;
  color: #fff;
  display: block;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 22px;
}

.sidemenu ul {
  display: flex;
  flex-direction: column;
}

.banner-select {
  width: 100%;
}

.banner-select img {
  width: 100%;
}

.head-visual {
  position: relative;
  z-index: 1;
  background-position: center center;
}

.head-visual .inner {
  background-position: right;
  background-repeat: no-repeat;
  background-size: auto 120px;
  height: 120px;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.head-visual:after {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(30px) brightness(1.1);
  backdrop-filter: blur(30px) brightness(1.1);
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
  z-index: 1;
}

.drawer__btn {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 10002;
  width: 48px;
  height: 48px;
  background-color: #555;
  overflow: hidden;
  cursor: pointer;
}

.drawer__btn span {
  display: block;
  width: 50%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}

.drawer__btn span:nth-child(1) {
  transform: translate(-50%, -12px);
}

.drawer__btn span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.drawer__btn span:nth-child(3) {
  transform: translate(-50%, 12px);
}

.drawer__btn.active span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.drawer__btn.active span:nth-child(2) {
  transform: translate(100%, 0);
  opacity: 0;
}

.drawer__btn.active span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.drawer__menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: 300px;
  height: 100vh;
  overflow-y: auto;
  background-color: #000;
  transition: 0.3s;
  transform: translateX(100%);
  opacity: 0;
}

.drawer__menu.active {
  transform: translateX(0);
  opacity: 1;
}

.drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
  transform: translateX(100%);
  opacity: 0;
  cursor: pointer;
}

.drawer__bg.active {
  transform: translateX(0);
  opacity: 1;
}

.shareon {
  position: fixed;
  bottom: 100px;
  right: 6px;
  display: flex;
  flex-direction: column;
  z-index: 99;
  gap: 16px;
}

.shareon a {}

.shareon img {
  width: 40px;
  height: 40px;
}

@media only screen and (max-width: 768px) {
  .sp-column {
    flex-direction: column;
  }

  .sp-wrap {
    flex-wrap: wrap;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

/*202506追記*/
.main-menu {
  display: flex;
  gap: 0;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

@media (max-width: 767px) {
  .main-menu {
    display: none;
  }
}

.main-menu li {
  flex: 1 1 auto;
}

.main-menu li>a {
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  padding: 20px 24px;
}

.main-menu li>a:hover {
  background-color: #ffccca;
  opacity: 1;
}

#menuPanel {
  display: block;

  background-color: #f0f3f8;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

#menuPanel .inner {
  width: 100%;
  max-width: 1200px;
}

#menuPanel.show {
  max-height: 800px;
  /* 適当な最大値。内容に合わせて大きめに */
  opacity: 1;
  border-bottom: 3px solid #ff9068;
}

#menuBtn {
  cursor: pointer;
}

#menuBtn::after {
  content: "▼";
  display: inline-block;
  font-size: 14px;
  padding: 0 6px;
}

.sub-menu {
  padding: 32px;
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.sub-menu>li:nth-child(1) {
  grid-column-end: span 2;
}

/* .sub-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;

  list-style: none;
}

.sub-menu li {
  flex: 1 1 calc((100% - 48px) / 3); 
  min-width: 0;
  box-sizing: border-box;
}
.sub-menu li {
  flex: 1 1 32%;
}
  */
.sub-menu ul {
  gap: 12px;
  display: grid;
  grid-auto-flow: column;
  /* 縦方向に流して列に並べる */
  grid-template-rows: repeat(4, auto);
  /* 4行 */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5em;
  margin-top: 20px;
}

.sub-menu h3 {
  font-size: 18px;
  line-height: 160%;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.sub-menu a {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  text-decoration: none;
  padding: 6px 0;
}

/*wpブロックエディタ全幅用*/
.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/*wpブロックエディタワイド幅用*/
.alignwide {
  width: min(1360px, 90vw);
  /* 最大1200px、ウィンドウ幅の90%まで広げる */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}