/* ========== common ======================================== */

:root {
  --primary-font-set: "Roboto", "Noto Sans JP", sans-serif;
  --font-Viga: "Viga", sans-serif;
  --font-BokutoB: "BokutohN+ B JIS2004 AP", sans-serif;
  --font-RobotC: "Roboto Condensed", sans-serif;
  --Pink: 227 0 127;
  --dBlue: 43 72 107;
  --mBlue: 0 123 198;
  --lBlue: 95 182 224;
  --lYellow: 255 212 0;
  --dYellow: 242 167 0;
  --Green: 0 169 113;
}

*:hover {
  transition: .3s;
}

html {
  font-family: var(--primary-font-set);
  font-weight: 400;
  font-size: 100%;
  font-feature-settings : "palt";
  font-optical-sizing: auto;
  line-height: 1.5;
  letter-spacing: 0.06em;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  color: #000;
  font-size: clamp(1rem, 0.636rem + 1.82vw, 1.25rem); /* 20-16px */
  font-style: normal;
  background-color: rgba(var(--lYellow) /.2);
  height: 100vh;
}

@media (width > 980px) {
  body {
    background-image: url(../images/bg_pc.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
    width: 100%;
    height: 100vh;
  }
}

img {
  max-width: 100%;
}

a {
  transition: .3s;
}

a:hover {
  opacity: 0.8;
}

h2 {
  text-align: center;
  font-family: var(--font-BokutoB);
  font-weight: 700;
}

@media (width >= 440px) {
  .dpn__min440 {
    display: none;
  }
}

/* ========== header ======================================== */

header {
  position: fixed;
  z-index: 1000;
  width: 100%;
}

@media (width > 980px) {
  header {
    position: initial;
    display: none;
  }
}

.header__group {
  width: 100%;
  height: 70px;
  margin-inline: auto;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}

@media (width > 980px) {
  .header {
    display: none;
  }
}

.header__logo {
  width: calc(100% - 70px);
  padding-left: 4%;
  display: grid;
  place-content: center start;
}

.header__logo a {
  display: flex;
  gap: clamp(0.625rem, 0.473rem + 0.76vw, 0.938rem); /* 15-10px */
  align-items: center;
}

.header__logo img {
  width: clamp(9.375rem, 6.345rem + 15.15vw, 15.625rem); /* 250-150px */
}

.header__logo p {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.25rem); /* 20-14px */
  color: rgb(var(--dBlue));
  line-height: 1;
  padding-top: clamp(0.625rem, 0.473rem + 0.76vw, 0.938rem); /* 15-10px */
}

.header__navi-icon {
  background-color: rgb(var(--Pink));
  width: 70px;
  padding: 0 10px;
  cursor: pointer;
  text-align: center;
  transition: .3s;
}

.header__navi-icon:hover {
  opacity: .8;
}

.header__navi-icon .material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 40;
  color: #fff;
  font-size: 40px;
}

.openbtn {
  position: relative;
}

.openbtn span{
  display: block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background-color: #fff;
}

.openbtn span:nth-of-type(1) {
  top:40%;
  width: 50%;
}

.openbtn span:nth-of-type(2) {
  top:60%;
  width:50%;
}

.openbtn.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.header__navi-modal {
  position: fixed;
  top: -100%;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* 初期状態は透明 */
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 999;
}

.header__navi-modal.show {
  opacity: 1; /* 表示状態は不透明 */
  top: 70px;
  visibility: visible;
  transition: all 0.5s ease;
}

@media (width > 980px) {
  .header__navi-modal {
    display: none;
  }
}

.header__navi-modal-content {
  background-color: #fff;
  overflow-y: auto;
}

@media (width > 980px) {
  .header__navi-modal-content.pc {
    position: sticky;
    top: 70px;
    left: auto;
    transform: none;
    border-radius: 40px;
    margin-right: clamp(1.875rem, -17.723rem + 31.96vw, 6.25rem); /* 100-30px */
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    min-width: 364px;
    max-width: 480px;
  }
}

@media (width <= 980px) {
  .header__navi-modal-content.pc {
    display: none;
  }
  .header__navi-modal-content {
    height: calc(100% - 70px);
    overflow-y: scroll;
  }
}

.header__navi-modal-content {
  padding: 30px 40px;
}

.header__navi-modal-logo {
  text-align: center;
  margin-bottom: 30px;
}

.header__navi-modal-logo img {
  width: min(300px, 100%);
  margin-bottom: 20px;
}

.header__navi-menu {
  border-top: 2px solid rgb(var(--mBlue));
  border-bottom: 2px solid rgb(var(--mBlue));
  margin-bottom: 30px;
}

.header__navi-menu a {
  display: block;
  padding: 20px;
}

.header__navi-menu a:hover {
  color: rgb(var(--mBlue));
}

.header__navi-menu li:not(:last-of-type) {
  position: relative;
  background-image: url('../images/dot.svg');
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: 7px 7px;
}

.header__navi-address p {
  font-size: 16px;
  margin-bottom: 30px;
}

/* SNSボタン */
.sns-links {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.sns-links li {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.circle-container {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .circle-container {
  background-color: #FDD001;
}

.sns-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  z-index: 10;
}

.sns-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #FFD600 0%, #FF7A00 30%, #FF0069 50%, #D300C5 70%, #7638FA 100%);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: -1;
}

.sns-link:hover::before,
.sns-link:focus-visible::before {
  transform: scale(1);
  opacity: 1;
}

.fa-instagram {
  font-size: 24px;
  color: #000;
  transition: color 0.3s ease;
}

.sns-link:hover .fa-instagram,
.sns-link:focus-visible .fa-instagram {
  color: #ffffff;
}

.caption {
  margin-top: 8px;
  font-size: 0.875rem;
  color: #333;
  text-align: center;
  max-width: 100%;
}

.sns-link:focus-visible {
  outline: 2px solid #333;
  outline-offset: 2px;
}

.sns-link:focus:not(:focus-visible)::before {
  transform: scale(0);
  opacity: 0;
}

.sns-link:focus:not(:focus-visible) .fa-instagram {
  color: #000;
}

footer .sns-links {
  margin: 1.5em auto;
}

a.sns-link:hover {
  opacity: 1;
}

/* ========== trial ======================================== */

.trial {
  padding: 20px;
  text-align: center;
}

.trial img {
  max-width: 480px;
}

/* ========== wrapper ======================================== */

div.content-wrapper {
  padding-top: 70px;
}

@media (width > 980px) {
  div.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 70px clamp(1.875rem, -54.118rem + 91.32vw, 14.375rem) 0; /* 230-30px */
  }
}

/* ========== main ======================================== */

main {
  width: 540px;
  min-width: 540px;
  /* margin-inline: auto; */
  background-color: #fff;
  border-radius: 30px 30px 0 0;
  margin-right: clamp(0rem, -43.899rem + 71.6vw, 18.75rem); /* 300-0px */
}

@media (width <= 980px) {
  main {
    width: 100%;
    max-width: 540px;
    min-width: auto;
    margin-inline: auto;
  }
}

main .material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'GRAD' 0,
  'opsz' 24;
}

/* ========== hero ======================================== */

@media (width > 980px) {
  .hero__heading img {
    border-radius: 30px 30px 0 0;
  }
}

.hero__heading img {
  width: 100%;
}

.slantedbg {
  margin-inline: auto;
  text-align: center;
  background:repeating-linear-gradient(
    -45deg,
    #FFD400,
    #FFD400 5px,
    #fff 0,
    #fff 10px
  );
}

.hero__banner img {
  width: 85%;
  text-align: center;
  margin-top: -40px;
  margin-bottom: 20px;
  -webkit-filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2)); 
  outline: none;
}


/* ========== content ======================================== */
/* ---------- 01 --------------------------------------------- */

section#section01 {
  background: rgba(var(--lBlue) /.6);
  padding: 40px 6%;
}

h2.section01__heading {
  font-size: clamp(1.438rem, -0.017rem + 7.27vw, 2.438rem); /* 39-23px */
  color: #1D3352;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
  margin-bottom: 30px;
  text-align: left;
}

.section01__text p {
  margin-bottom: 30px;
}

h3.section01__subheading {
  text-align: center;
  font-family: var(--font-BokutoB);
  font-weight: 700;
  font-size: 26px;
  color: rgb(var(--dBlue));
  margin-bottom: 35px;
}

.section01__subheading > span {
  background: linear-gradient(
    transparent 70%,
    #FFDC4A 70%
  );
  display: inline-block;
  line-height: 1;
}

@media (width < 440px) {
  .section01__subheading > span {
    background: linear-gradient(
      transparent 80%,
      #FFDC4A 80%
    );
    display: inline-block;
    line-height: 1;
  }
  .section01__subheading span > span:first-of-type {
    background: linear-gradient(
      transparent 55%,
      #FFDC4A 55%
    );
    display: inline-block;
    line-height: 1.5;
  }
}

.section01__subheading span > span:nth-of-type(2) {
  font-family: var(--font-Viga);
  font-size: 50px;
}

.section01__contents {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  counter-reset: number 0;
}

.section01__contents-item {
  width: 95%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: clamp(4.375rem, 1.648rem + 13.64vw, 6.25rem); /* 100-70px */
  background-color: #fff;
  border-radius: 100vh;
}

.section01__contents-item > div {
  font-size: clamp(1rem, 0.364rem + 3.18vw, 1.438rem); /* 23-16px */
  font-weight: 600;
  padding: 10px 10px 8px 0;
}

.section01__contents-item::before {
  content: counter(number);
  counter-increment: number 1;
  font-family: var(--font-RobotC);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(5rem, 3.182rem + 9.09vw, 6.25rem); /* 100-80px */
  color: rgb(var(--Pink));
  position: absolute;
  left: clamp(0.625rem, -0.284rem + 4.55vw, 1.25rem); /* 20-10px */
  bottom: clamp(1.625rem, 0.989rem + 3.18vw, 2.063rem); /* 33-26px */
  transform: translateY(50%);
}

/* ---------- 02 --------------------------------------------- */

section.section02 {
  padding: 30px 20px;
}

h2.section02__heading {
  margin-inline: auto;
  background-color: rgb(var(--mBlue));
  color: #fff;
  font-size: clamp(1.25rem, 0.614rem + 3.18vw, 1.688rem); /* 27-20px */
  padding: 15px 10px;
  border-radius: 20px 20px 0 0;
  margin-bottom: 30px;
}

h3.section02__contents-heading {
  text-align: center;
  color: rgb(var(--mBlue));
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 1.5rem); /* 24-20px */
  font-weight: 500;
  margin-bottom: 20px;
}

.section02__contents-text {
  margin: 15px 0 30px;
}

.section02__separator {
  border-top: 2px solid rgb(var(--dBlue));
  margin-bottom: 30px;
}

/* ---------- 03 --------------------------------------------- */

section#section03 {
  background-color: rgba(var(--lYellow) /.75);
  padding: 30px clamp(0.75rem, -0.886rem + 8.18vw, 1.875rem); /* 30-12px */
}

h2.section03__heading {
  margin-bottom: 30px;
  font-size: clamp(1.813rem, 1.267rem + 2.73vw, 2.188rem); /* 35-29px */
}

.section03__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section03__text {
  margin-bottom: 40px;
}

.section03__contents {
  background-color: #fff;
  border: 5px solid #000;
  border-radius: 20px;
}

.section03__contents-heading {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 1.5rem); /* 24-20px */
  font-weight: 500;
  padding: 6px;
  border-radius: 14px 14px 0 0;
}

.section03__contents-logo {
  margin: 30px 6% clamp(0.938rem, -0.426rem + 6.82vw, 1.875rem); /* 30-15px */
  text-align: center;
}

.section03__contents-logo img {
  max-height: 60px;
}

.section03__contents-text {
  padding: 0 20px;
  margin-bottom: 20px;
}

.section03__contents-text p {
  margin-bottom: 20px;
}

.section03__contents-btn.rakuto {
  background: linear-gradient(45deg, rgba(102,203,170,1) 0%, rgba(0,169,113,1) 100%);
  box-shadow: 0px 4px 0px 0px rgba(0, 109, 70, 1);
}

.section03__contents-btn.mpecs {
  background: linear-gradient(45deg, rgba(247,202,102,1) 0%, rgba(242,167,0,1) 100%);
  box-shadow: 0px 4px 0px 0px rgba(170, 109, 0, 1);
}

.section03__contents-btn.mirailab {
  background: linear-gradient(45deg, rgba(171,187,216,1) 0%, rgba(117,143,192,1) 100%);
  box-shadow: 0px 4px 0px 0px rgba(71, 100, 154, 1);
  margin-bottom: 30px;
}

.section03__contents-btn {
  margin-inline: auto;
  margin: 10px 15px;
  border-radius: 10px;
  padding: 5px;
  transition: .3s;
}

.section03__contents-btn:hover {
  opacity: 0.6;
}

.section03__contents-btn a {
  display: block;
  font-size: clamp(1.125rem, 0.761rem + 1.82vw, 1.375rem); /* 22-18px */
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 2px 36px 0 40px;
  line-height: 1.2;
}

.section03__contents-btn a span {
  font-size: clamp(0.813rem, 0.631rem + 0.91vw, 0.938rem); /* 15-13px */
}

.section03__contents-btn a::before {
  font-family: "Material Symbols Rounded";
  content: "\e5e1";
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.section03__contents-btn a::after {
  font-family: "Material Symbols Rounded";
  content: "\e89e";
  font-variation-settings: 'wght' 300;
  font-size: 22px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.section03__contents-text:is(.rakuto, .mpecs, .mirailab) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 3px;
}

.section03__contents-text:is(.rakuto, .mpecs, .mirailab) > div {
  font-size: 15px;
  position: relative;
}

.section03__contents-text.rakuto > div:first-of-type {
  background-color: #CCEEE3;
}

.section03__contents-text.mpecs > div:first-of-type {
  background-color: #FFF6CC;
}

.section03__contents-text.mirailab > div:first-of-type {
  background-color: #E3E8F2;
}

.section03__contents-text > div:first-of-type {
  border-radius: 100vh;
  padding: 1px 12px 0;
  flex-shrink: 0;
}

.section03__contents-text > div:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.section03__contents-text > div:nth-of-type(2) > div {
  padding: 0 15px;
  border-right: 1px solid #000;
  letter-spacing: 0;
}

.section03__contents-text > div:nth-of-type(2) > div:last-of-type {
  border-right: none;
}

@media (width < 440px) {
  .section03__contents-text > div:nth-of-type(2) {
    flex-direction: column;
  }
  .section03__contents-text > div:nth-of-type(2) > div {
    border-right: none;
  }
  .section03__contents-text > div:nth-of-type(2) > div::before {
    content: "・";
    padding-right: 8px;
  }
}

.section03__reserva-heading {
  text-align: center;
  margin-top: 40px;
  font-weight: 500;
  position: relative;
}

.section03__reserva-heading h3 {
  background: linear-gradient(transparent 55%, #FFDC4A 55%);
  display: inline-block;
  line-height: 1.4;
  padding: 0;
}

.section03__reserva-heading::before {
  content: "";
  background-image: url(../images/icon_dslash.svg);
  position: absolute;
  width: clamp(1.125rem, 0.398rem + 3.64vw, 1.625rem); /* 26-18px */
  height: clamp(1.125rem, 0.398rem + 3.64vw, 1.625rem); /* 26-18px */
  top: 50%;
  left: clamp(0.938rem, -3.75rem + 25vw, 4.688rem); /* 75-15px */
  transform: translateY(-50%);
}

.section03__reserva-heading::after {
  content: "";
  background-image: url(../images/icon_dslash.svg);
  position: absolute;
  width: clamp(1.125rem, 0.398rem + 3.64vw, 1.625rem); /* 26-18px */
  height: clamp(1.125rem, 0.398rem + 3.64vw, 1.625rem); /* 26-18px */
  position: absolute;
  top: 50%;
  right: clamp(0.938rem, -3.75rem + 25vw, 4.688rem); /* 75-15px */
  transform: translateY(-50%) scaleX(-1);
}

@media (width < 300px) {
  .section03__reserva-heading::before,
  .section03__reserva-heading::after {
    display: none;
  }
}

.section03__reserva {
  width: 95%;
  margin-bottom: 30px;
}

.section03__reserva > div {
  width: 100%;
  max-width: 100%;
  margin: 0 10px;
}

.section03__reserva > div iframe {
  width: 100% !important;
  height: 560px;
}

.section03__contents-close {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 20px;
  font-size: 16px;
}

.section03__contents-close button {
  width: min(180px, 90%);
  transition: .3s;
}

.section03__contents-close button:hover {
  opacity: 0.8;
}

.section03__contents-close button span {
  display: block;
  color: #fff;
  background-color: #000;
  border-radius: 100vh;
  padding: 2px 12px 0;
}

.section03__contents-close button span::before {
  font-family: "Material Symbols Rounded";
  content: "\e5cd";
  font-variation-settings: 'wght' 300;
  font-size: 22px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  padding-right: 8px;
}

.section03__contents-open, .section03__contents-link {
  text-align: center;
  color: #fff;
  border-radius: 0 0 14px 14px;
  padding: 15px 10px 10px;
  line-height: 1;
  cursor: pointer;
  transition: .3s;
}

.section03__contents-open:hover, .section03__contents-link:hover {
  opacity: .8;
}

.section03__contents-open::before {
  font-family: "Material Symbols Rounded";
  content: "\e145";
  font-variation-settings: 'wght' 300;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 5px;
}

.section03__contents-link::before {
  font-family: "Material Symbols Rounded";
  content: "\e5e1";
  font-variation-settings: 'wght' 300;
  font-size: 22px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 5px;
}

.section03__contents-open.rakuto {
  background-color: rgb(var(--Green));
}

.section03__contents-open.mpecs {
  background-color: rgb(var(--dYellow));
}

.section03__contents-link.mirailab {
  background-color: #758FC0;
}

.section03__contents-link a::after {
  font-family: "Material Symbols Rounded";
  content: "\e89e";
  font-variation-settings: 'wght' 300;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  padding: 0 0 3px 10px;
}

.section03__contents.mirailab {
  position: relative;
}

.section03__contents03-text {
  text-align: center;
  font-size: clamp(1.125rem, 0.398rem + 3.64vw, 1.625rem); /* 26-18px*/
}

.section03__contents.mirailab > img {
  width: 100vw;
  border-radius: 15px;
}

/* ---------- 04 --------------------------------------------- */

section#section04 {
  background-color: rgba(var(--lBlue) /.6);
  overflow: hidden;
}

.section04__heading {
  --x-gradient: linear-gradient(90deg, #2B486B 0 40px, transparent 0 calc(100% - 40px), #2B486B calc(100% - 40px));
  --y-gradient: linear-gradient(#2B486B 0 40px, transparent 0 calc(100% - 40px), #2B486B calc(100% - 40px));
  position: relative;
  padding: 8px 8px 20px;
  background-image:
    var(--x-gradient),
    var(--y-gradient),
    var(--x-gradient),
    var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 6px, 6px 100%, 100% 6px, 6px 100%;
  background-position: top, right, bottom, left;
  font-size: clamp(1.375rem, 0.648rem + 3.64vw, 1.875rem); /* 30-22px */
  color: rgb(var(--dBlue));
  margin: 40px clamp(0.625rem, -3.466rem + 20.45vw, 3.438rem);
  line-height: 1.8;
}

.section04__heading span {
  display: inline-block;
  font-family: var(--font-Viga);
  font-size: clamp(1rem, 0.455rem + 2.73vw, 1.375rem); /* 22-16px */
  background-color: #fff;
  padding: 4px 12px 2px;
  line-height: 1;
}

.section04__text {
  margin: 0 clamp(0.625rem, -3.466rem + 20.45vw, 3.438rem);
}

.section04__text p:not(:last-of-type) {
  margin-bottom: 30px;
}

/* ---------- 05 --------------------------------------------- */

section#section05 {
  background-color: rgba(var(--mBlue));
  padding: 30px 0;
}

.section05__heading {
  color: #fff;
  font-size: clamp(1.375rem, 0.648rem + 3.64vw, 1.875rem); /* 30-22px */
  margin-bottom: 30px;
}

.section05__contents {
  background-color: #fff;
  margin-bottom: 30px;
  padding: clamp(1.25rem, 0.341rem + 4.55vw, 1.875rem) clamp(1.563rem, 0.199rem + 6.82vw, 2.5rem); /* 30-20px, 40-25px */
}

.section05__contents:nth-of-type(odd) {
  margin-right: 30px;
  border-radius: 0 20px 20px 0;
}

.section05__contents:nth-of-type(even) {
  margin-left: 30px;
  border-radius: 20px 0 0 20px;
}

.section05__contents-title {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}

/* ---------- 06 --------------------------------------------- */

.section06__heading {
  font-size: clamp(1.375rem, 0.648rem + 3.64vw, 1.875rem); /* 30-22px */
  color: rgb(var(--dYellow));
  padding: 30px 0;
}

.section06__container {
  background-color: rgba(var(--lYellow) /.75);
}

.section06__image {
  display: flex;
  padding: 20px;
  gap: 10px;
  justify-content: space-between;
}

.section06__contents01 {
  background-color: #fff;
  border-radius: 20px;
  margin: 0 20px 20px;
  padding: 20px clamp(1.25rem, 0.341rem + 4.55vw, 1.875rem); /* 30-20px */
}

.section06__contents01-text p {
  margin-bottom: clamp(1.25rem, 0.341rem + 4.55vw, 1.875rem); /* 30-20px */
}

.section06__contents01-map {
  margin-top: 15px;
  width: 100%;
}

.section06__contents01-map iframe {
  width: 100%;
  height: 310px;
}

.section06__inquiry {
  text-align: center;
  padding: 0 10px;
}

.section06__inquiry-title {
  font-weight: 500;
}

.section06__inquiry-tel {
  font-size: clamp(1.875rem, 1.42rem + 2.27vw, 2.188rem); /* 35-30px */
  font-weight: 700;
  line-height: 1.2;
}

@media (width < 320px) {
  .section06__inquiry-tel {
    font-size: 12vw;
  }
}

.section06__inquiry-text {
  font-size: 16px;
}

@media (pointer: fine), (hover: hover) {
  a:where([href^="tel:"]) {
    pointer-events: none;
  }
}

/* ========== footer ======================================== */

footer {
  margin-inline: auto;
  background-color: rgba(var(--lYellow) /.75);
  text-align: center;
  font-size: 16px;
  padding: 3.3vh 1.65vh;
}

footer a {
  transition: .3s;
}

footer a:hover {
  opacity: 0.6;
  transition: .3s;
}

footer .schools {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

footer div ul {
  display: flex;
  justify-content: center;
  margin: 10px auto 20px;
}

footer div ul li {
  border-left: 1px solid #000;
  padding: 0 20px;
  font-size: 14px;
}

footer div ul li:last-of-type {
  border-right: 1px solid #000;
}

/* footer a::after {
  font-family: "Material Symbols Rounded";
  content: "\e89e";
  font-variation-settings: 'wght' 300;
  font-size: 14px;
  color: #000;
  display: inline-block;
  vertical-align: middle;
} */