@charset "UTF-8";
/******************************************************************
Theme Name: kagayakikodomoen theme
Theme URI: https://kagayakikodomoen.org/
Description: かがやき認定こども園様用のオリジナルテーマです。
Version: 1.0.0
******************************************************************/
/* ========================================
   CSS Variables
======================================== */
:root {
  --black: #444;
  --black-hover: #A4A4A4;
  --primary: #ED7F64;
  --primary-hover: #FCAE9B;
  --secondary: #F9F5F1;
  --secondary02: #4199C8;
  --secondary02-hover: #80C5EA;
  --secondary03: #7CAA4B;
  --secondary04: #E3AF2D;
  --secondary04-hover: #FCE492;
  --secondary05: #FDD23E;
  --secondary05-hover: #FCE492;
  --key: #db7734;
  --sanpo: #7B8D41;
  --sanpo-hover: #C38F43;
  --timeline-gray: #A8A0A0;
  --brown: #574D0F;
}
.bg-primary {
  background-color: var(--primary);
}
.text-primary {
  color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.text-secondary {
  color: var(--secondary);
}
.bg-secondary-1 {
  background-color: var(--secondary02);
}
.text-secondary-1 {
  color: var(--secondary02);
}
.bg-secondary-2 {
  background-color: var(--secondary03);
}
.text-secondary-2 {
  color: var(--secondary03);
}
.bg-secondary-3 {
  background-color: var(--secondary04);
}
.text-secondary-3 {
  color: var(--secondary04);
}
/* ========================================
   Theme Default Classes
======================================== */
body::after {
  background-image: url(./library/images/content/background.jpg);
}
#breadcrumb {
  font-size: 60%;
  margin: 7px auto 0;
}
#breadcrumb ol {
  display: flex;
  align-items: center;
  max-width: calc(100%);
  list-style: none;
  overflow: auto;
  white-space: nowrap;
  padding-left: 0;
}
#breadcrumb ol li {
  margin-left: 0.5em;
}
#breadcrumb ol li:first-child {
  margin-left: 0;
}
#breadcrumb ol li a::after {
  color: var(--black);
  content: "＞";
  display: inline-block;
  line-height: 1.7;
  margin-left: 5px;
}
#breadcrumb ol li a:hover {
  opacity: .5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}
#breadcrumb li a {
  text-decoration: none;
}
input[type="submit"] {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
input[type="text"] {
  display: block;
  padding: 10px 2%;
  font-size: 1em;
  color: var(--black);
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--bs-gray-400);
}
input[type="email"] {
  display: block;
  padding: 10px 2%;
  font-size: 1em;
  color: var(--black);
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--bs-gray-400);
}
input[type="url"] {
  display: block;
  padding: 10px 2%;
  font-size: 1em;
  color: var(--black);
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--bs-gray-400);
}
textarea {
  display: block;
  padding: 10px 2%;
  font-size: 1em;
  color: var(--black);
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--bs-gray-400);
  resize: vertical;
}
.asterisk {
  color: var(--bs-red);
}
input[type="search"] {
  display: block;
  padding: 10px 2%;
  font-size: 16px;
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: calc(100% - 70px);
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--bs-gray-400);
}
.searchform button {
  height: 40px;
  width: 50px;
  cursor: pointer;
  position: relative;
  border: none;
  border-radius: 4px;
  background: var(--bs-gray-100);
}
.searchform button::before {
  content: " ";
  background-image: url(./library/images/icon/search.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  width: 23px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
table {
  border-collapse: collapse;
}
table th, table td {
  width: 100%;
  display: inline-block;
  padding: .85em 0;
  text-align: left;
}
table th + td {
  padding-top: 0;
}
table td {
  border-bottom: 1px solid var(--bs-gray-400);
}
.policy ul {
  list-style: none;
  padding-left: 0;
}
.policy ul li {
  position: relative;
  padding-left: 25px;
}
.policy ul li span {
  position: absolute;
  left: 0;
}
#page-top {
  right: 10px;
  z-index: 2;
  cursor: pointer;
}
#page-top img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.2);
}
#not-found {
  border: 1px solid var(--primary);
  padding: 40px 20px;
  border-radius: 20px;
}
#not-found ul {
  list-style-type: disc;
  margin-left: 15px;
}
#not-found ul::marker {
  color: var(--primary);
}
#not-found ul li a {
  text-decoration: underline;
}
#not-found h2 {
  font-size: 2em;
  line-height: 1.2;
}
#not-found h3 {
  border-bottom: 2px solid var(--bs-gray-400);
  color: var(--black);
  position: relative;
  padding-left: 25px;
  line-height: 1.2;
  padding-bottom: 5px;
}
#not-found h3::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: var(--bs-gray-600) transparent transparent transparent;
  position: absolute;
  left: 0;
  top: calc(50% - 2.5px);
  transform: translateY(-50%);
}
#post-not-found {
  border: 1px solid var(--primary);
  padding: 40px 20px;
  border-radius: 20px;
}
#post-not-found ul {
  list-style-type: disc;
  list-style-type: disc;
  list-style-type: disc;
  margin-left: 15px;
  margin-left: 15px;
  margin-left: 15px;
}
#post-not-found ul::marker {
  color: var(--primary);
}
#post-not-found ul li a {
  text-decoration: underline;
  text-decoration: underline;
  text-decoration: underline;
}
#post-not-found h2 {
  font-size: 2em;
  line-height: 1.2;
}
#post-not-found h3 {
  border-bottom: 2px solid var(--bs-gray-400);
  color: var(--black);
  position: relative;
  padding-left: 25px;
  line-height: 1.2;
  padding-bottom: 5px;
}
#post-not-found h3::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: var(--bs-gray-600) transparent transparent transparent;
  position: absolute;
  left: 0;
  top: calc(50% - 2.5px);
  transform: translateY(-50%);
}
table.form {
  margin-top: -15px;
}
table.form tr th {
  vertical-align: text-top;
  padding: 15px 0 0;
}
table.sp-block-table tr th {
  display: block;
  width: 100%;
  text-align: left;
}
table.sp-block-table tr td {
  display: block;
  width: 100%;
  text-align: left;
}
.contact-btn-flex-box {
  display: flex;
  justify-content: center;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.contact-btn-flex-box button {
  margin: 0 7.5px;
}
.category-name {
  padding: .2em .5em;
  opacity: .9;
  filter: alpha(opacity=90);
  -ms-filter: "alpha(opacity=90)";
  font-size: 65%;
}

@media print, screen and (min-width: 768px) {
  #breadcrumb {
    font-size: 70%;
    margin: 1em auto 0;
  }
  #page-top {
    right: 20px;
  }
  #page-top img {
    height: 50px;
    width: 50px;
  }
  #not-found {
    padding: 40px;
  }
  #not-found h2 {
    font-size: 2.5em;
  }
  #post-not-found {
    padding: 40px;
  }
  #post-not-found h2 {
    font-size: 2.5em;
  }
  table th, table td {
    display: table-cell;
    width: auto;
  }
  table tr {
    border-bottom: 1px solid var(--bs-gray-400);
  }
  table th + td {
    padding-top: .85em;
  }
  table td {
    border-bottom: none;
  }
  table.sp-block-table tr th {
    display: table-cell;
    width: auto;
  }
  table.sp-block-table tr td {
    display: table-cell;
    width: auto;
  }
  table.form.sp-block-table tr th {
    padding: 20px 10px 20px 0;
    font-size: 20px;
    line-height: 1.2;
    width: 280px;
  }
  .company-table th {
    width: 40%;
  }
}
/* ========================================
   Title Classes
======================================== */
.primary-ttl01 {
  font-size: 1.428rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
}
@media print, screen and (min-width: 768px) {
  .primary-ttl01 {
    font-size: clamp(1.428rem, 6.5vw, 2rem);
  }
}
@media print, screen and (min-width: 1400px) {
  .primary-ttl01 {
    font-size: 2rem;
  }
}
/* ========================================
   Button Classes
======================================== */
.primary-btn01 {
  background: var(--primary);
  color: var(--bs-white);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--primary);
  border-radius: 60px;
  padding: .75rem 1.5rem;
  position: relative;
  --svg-fill-color: var(--bs-white);
  --svg-fill-opacity: .5;
  transition: all .3s;
}
.primary-btn01::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><path fill="%23ffffff" fill-opacity=".5" d="M3.1,11.5c0,.2,0,.4.2.5s.3.2.5.2h8.9v-1.4H3.8c-.4,0-.7.3-.7.7Z"/><path fill="%23ffffff" d="M12.7,5.7c0-.1,0-.3.1-.4,0-.1.2-.2.3-.3.1,0,.3,0,.4,0,.1,0,.3,0,.4.2l5.8,5.8c.1.1.2.3.2.5s0,.4-.2.5l-5.8,5.7c-.1.1-.2.2-.4.2-.1,0-.3,0-.4,0-.1,0-.2-.1-.3-.3,0-.1-.1-.3-.1-.4V5.7Z"/></svg>');
  width: 23px;
  height: 23px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  transition: all .3s;
}
.primary-btn01:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  --svg-fill-color: var(--bs-white);
  --svg-fill-opacity: 1;
  opacity: 1;
}
.primary-btn01.rev {
    background: var(--bs-white);
    color: var(--primary);
    --svg-fill-color: var(--primary);
    --svg-fill-opacity: .5;
}
.primary-btn01.rev:hover {
    background: var(--primary-hover);
    color: var(--bs-white);
    --svg-fill-color: var(--bs-white);
    --svg-fill-opacity: 1;
}
.primary-btn01:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    --svg-fill-color: var(--bs-white);
    --svg-fill-opacity: 1;
    opacity: 1;
}
.primary-btn01.bg-secondary-1 {
  background: var(--secondary02);
  border-color: var(--secondary02);
}
.primary-btn01.bg-secondary-1:hover {
  background-color: var(--secondary02-hover);
  border-color: var(--secondary02-hover);
}
.primary-btn02 {
  color: var(--primary);
  background-color: var(--bs-white);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--primary);
  border-radius: 60px;
  padding: .75rem 1.5rem;
  position: relative;
  --svg-fill-color: var(--primary);
  --svg-fill-opacity: .5;
  transition: all .3s;
 }
.primary-btn02::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><path fill="%23ed7f64" fill-opacity=".5" d="M3.1,11.5c0,.2,0,.4.2.5s.3.2.5.2h8.9v-1.4H3.8c-.4,0-.7.3-.7.7Z"/><path fill="%23ed7f64" d="M12.7,5.7c0-.1,0-.3.1-.4,0-.1.2-.2.3-.3.1,0,.3,0,.4,0,.1,0,.3,0,.4.2l5.8,5.8c.1.1.2.3.2.5s0,.4-.2.5l-5.8,5.7c-.1.1-.2.2-.4.2-.1,0-.3,0-.4,0-.1,0-.2-.1-.3-.3,0-.1-.1-.3-.1-.4V5.7Z"/></svg>');
  width: 23px;
  height: 23px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto 0;
  transition: all .3s;
}
.primary-btn02:hover {
  color: var(--bs-white);
  background: var(--primary);
  border-color: var(--primary);
  --svg-fill-color: var(--bs-white);
  --svg-fill-opacity: 1;
  opacity: 1;
}
.primary-btn02:hover:after, .primary-btn02.bg-secondary-3:hover:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><path fill="%23fff" fill-opacity=".5" d="M3.1,11.5c0,.2,0,.4.2.5s.3.2.5.2h8.9v-1.4H3.8c-.4,0-.7.3-.7.7Z"/><path fill="%23fff" d="M12.7,5.7c0-.1,0-.3.1-.4,0-.1.2-.2.3-.3.1,0,.3,0,.4,0,.1,0,.3,0,.4.2l5.8,5.8c.1.1.2.3.2.5s0,.4-.2.5l-5.8,5.7c-.1.1-.2.2-.4.2-.1,0-.3,0-.4,0-.1,0-.2-.1-.3-.3,0-.1-.1-.3-.1-.4V5.7Z"/></svg>');
}
.primary-btn02.bg-secondary-3 {
  color: var(--secondary04);
  border-color: var(--secondary04);
}
.primary-btn02.bg-secondary-3::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><path fill="%23e3af2d" fill-opacity=".5" d="M3.1,11.5c0,.2,0,.4.2.5s.3.2.5.2h8.9v-1.4H3.8c-.4,0-.7.3-.7.7Z"/><path fill="%23e3af2d" d="M12.7,5.7c0-.1,0-.3.1-.4,0-.1.2-.2.3-.3.1,0,.3,0,.4,0,.1,0,.3,0,.4.2l5.8,5.8c.1.1.2.3.2.5s0,.4-.2.5l-5.8,5.7c-.1.1-.2.2-.4.2-.1,0-.3,0-.4,0-.1,0-.2-.1-.3-.3,0-.1-.1-.3-.1-.4V5.7Z"/></svg>');
}
.primary-btn02.bg-secondary-3:hover {
  color: var(--bs-white);
  background: var(--secondary04);
  border-color: var(--secondary04);
}
.external-btn {
  background: var(--bs-white);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--black);
  border-radius: 60px;
  padding: .75rem 1.5rem;
  position: relative;
  --icon-fill-color: var(--black);
  transition: all .3s;
}
.external-btn::after {
  content: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="%23444" d="M11.7,13.8H2.3c-.6,0-1.1-.2-1.5-.6s-.6-.9-.6-1.5V2.3c0-.6.2-1.1.6-1.5s.9-.6,1.5-.6h3.3c.4,0,.8.3.8.8s-.3.8-.8.8h-3.3c-.2,0-.3,0-.4.2s-.2.3-.2.4v9.3c0,.2,0,.3.2.4s.3.2.4.2h9.3c.2,0,.3,0,.4-.2s.2-.3.2-.4v-3.3c0-.4.3-.8.8-.8s.8.3.8.8v3.3c0,.6-.2,1.1-.6,1.5s-.9.6-1.5.6ZM8,6.8c-.2,0-.4,0-.5-.2-.3-.3-.3-.8,0-1.1l3.7-3.7h-1.5c-.4,0-.8-.3-.8-.8s.3-.8.8-.8h3.3c.1,0,.2,0,.3,0,0,0,.2,0,.2.2s.1.2.2.2c0,0,0,.2,0,.3v3.3c0,.4-.3.8-.8.8s-.8-.3-.8-.8v-1.5l-3.7,3.7c-.1.1-.3.2-.5.2Z"/></svg>');
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 14px;
  height: 14px;
  transition: all .3s;
  transform: translateY(-50%);
}
.external-btn.rev::after {
  content: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="%23fff" d="M11.7,13.8H2.3c-.6,0-1.1-.2-1.5-.6s-.6-.9-.6-1.5V2.3c0-.6.2-1.1.6-1.5s.9-.6,1.5-.6h3.3c.4,0,.8.3.8.8s-.3.8-.8.8h-3.3c-.2,0-.3,0-.4.2s-.2.3-.2.4v9.3c0,.2,0,.3.2.4s.3.2.4.2h9.3c.2,0,.3,0,.4-.2s.2-.3.2-.4v-3.3c0-.4.3-.8.8-.8s.8.3.8.8v3.3c0,.6-.2,1.1-.6,1.5s-.9.6-1.5.6ZM8,6.8c-.2,0-.4,0-.5-.2-.3-.3-.3-.8,0-1.1l3.7-3.7h-1.5c-.4,0-.8-.3-.8-.8s.3-.8.8-.8h3.3c.1,0,.2,0,.3,0,0,0,.2,0,.2.2s.1.2.2.2c0,0,0,.2,0,.3v3.3c0,.4-.3.8-.8.8s-.8-.3-.8-.8v-1.5l-3.7,3.7c-.1.1-.3.2-.5.2Z"/></svg>');
}
@media print, screen and (min-width: 768px) {
  .primary-btn01 {
    max-width: 370px;
  }
  .primary-btn02 {
    max-width: 370px;
  }
}

@media print, screen and (min-width: 1200px) {
  .primary-btn01 {
    padding: 1rem 2.5rem;
  }
  .primary-btn01::after {
    right: 1.25rem;
  }
  .primary-btn02 {
    padding: 1rem 2.5rem;
  }
}
/* ========================================
   Header
======================================== */
.header {
  z-index: 10;
}
.header-container {
  background: var(--bs-white);
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 64px;
  padding: 1rem clamp(1rem, 2.03vw, 2.6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.page-template-frontpage .header-container {
  background-color: transparent;
}
.page-template-frontpage .smaller .header-container {
  background-color: var(--bs-white);
}
.page-template-frontpage .smaller .header-logo-sub, .page-template-frontpage .smaller .header-logo-main {
  color: var(--black);
}
.header.smaller .header-container .header-menu-btn {
  background-color: transparent;
}
.header-logo {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.header-logo-sub, .header-logo-main {
  font-weight: 700;
}
.page-template-frontpage .header-logo-sub, .page-template-frontpage .header-logo-main {
  color: var(--bs-white);
}
.header-logo-sub {
  font-size: clamp(0.625rem, 1.73vw, 0.875rem);
  letter-spacing: 0.14em;
}
.header-logo-main {
  font-size: clamp(1.125rem, 2.67vw, 2rem);
  letter-spacing: 0.2em;
  line-height: 1;
}
.header-menu-btn {
  position: relative;
  width: clamp(2.5rem, 3.49vw, 3.125rem);
  height: clamp(2.5rem, 3.49vw, 4rem);
  background: transparent;
  border-radius: 50%;
  padding: 0;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 11;
  transition: all 0.3s ease;
}
.page-template-frontpage .header-menu-btn {
  position: absolute;
  right: -15px;
  top: -15px;
  padding: 2.25rem 1.5rem 1.25rem 1.5rem;
  background-color: var(--bs-white);
  width: 86px;
  height: 86px;
}
.header-menu-btn.is-active {
  justify-content: center;
}
.page-template-frontpage .header-menu-btn.is-active {
  background-color: transparent;
  padding: 1.5rem;
}
.header-menu-btn-bars {
  width: clamp(1.875rem, 2.6vw, 3.125rem);
  height: clamp(1.25rem, 1.46vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.header-menu-btn-bar {
  height: 0.125rem;
  background: var(--secondary02);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header-menu-btn-bar:nth-child(1) {
  width: 80%;
}
.header-menu-btn-bar:nth-child(2) {
  width: 100%;
  background-color: var(--secondary04);
}
.header-menu-btn-bar:nth-child(3) {
  width: 80%;
  margin-left: auto;
  text-align: right;
}
.header-menu-btn.is-active .header-menu-btn-bar:nth-child(1), .header-menu-btn.is-active .header-menu-btn-bar:nth-child(2), .header-menu-btn.is-active .header-menu-btn-bar:nth-child(3) {
  width: 100%;
}
.header-menu-btn.is-active .header-menu-btn-bar:nth-child(1) {
  transform: translateY(.7rem) rotate(45deg);
  background: var(--secondary04);
}
.header-menu-btn.is-active .header-menu-btn-bar:nth-child(2) {
  opacity: 0;
}
.header-menu-btn.is-active .header-menu-btn-bar:nth-child(3) {
  transform: translateY(-.5rem) rotate(-45deg);
  background: var(--secondary02);
  margin-left: 0;
}
.header-menu-btn-text {
  color: var(--secondary03);
  font-size: clamp(0.625rem, 0.73vw, 0.875rem);
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
}
.header-menu-btn.is-active .header-menu-btn-text {
  display: none;
}
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}
.header-nav.is-active {
  opacity: 1;
  visibility: visible;
}
.header-nav-content {
  position: absolute;
  width: 100%;
  max-width: clamp(50rem, 65.63vw, 85rem);
  padding: clamp(6.56rem, 7.66vw, 8.571rem) clamp(1.5rem, 2.6vw, 3.28rem) clamp(6.56rem, 5.21vw, 8.571rem);
  background: var(--bs-white);
  min-height: 100%;
  top: 0;
  right: 0;
}
.header-nav-menu {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 2.92vw, 3.75rem);
  margin-bottom: clamp(3rem, 5.21vw, 6.56rem);
}
.header-nav-menu-col {
  width: 100%;
}
.header-nav-menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0 20%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.56vw, 2rem);
}
.header-nav-menu-list #menu-sp-menu li, .header-nav-menu-list #menu-sp-menu li a {
  min-width: calc(100% / 2);
  margin-left: auto;
  margin-right: auto;
}
.header-nav-menu-list li a:hover {
  color: var(--black-hover);
}
.header-nav-menu-list li a {
  font-size: clamp(1.4286rem, 1.04vw, 1.25rem);
  transition: color 0.3s ease;
}
.header-nav-contact {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 2.6vw, 3.28rem);
}
.header-nav-contact-info {
  display: none;
}
.header-nav-contact-label {
  color: var(--secondary02);
  font-size: clamp(1.2rem, 1.35vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin: 0;
}
.header-nav-contact-time {
  font-size: clamp(0.75rem, 0.95vw, 0.875rem);
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0;
}
.header-nav-contact-tel-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  margin-top: 0.5rem;
}
.header-nav-contact-tel-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.header-nav-contact-tel {
  color: var(--secondary02);
  font-size: clamp(1.75rem, 2.75vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}
.header-nav-contact-tel:hover {
  opacity: 0.7;
}
.header-nav-buttons {
  display: flex;
  gap: clamp(0.75rem, 3vw, 3rem);
  width: 100%;
  justify-content: center;
}
.header-nav-btn {
  width: 135px;
  height: 127px;
  color: var(--bs-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .125rem;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%234199c8" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
  clip-path: path('M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z');
  -webkit-clip-path: path('M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 0 .5rem .5rem;
}
.header-nav-btn.header-nav-btn-reservation {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23e3af2d" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
}
.header-nav-btn.header-nav-btn-recruit {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23ed7f64" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
}
a.header-nav-btn:hover, a.header-nav-btn:hover img {
  opacity: 1;
}
.header-nav-btn.header-nav-btn-contact:hover {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%2380C5EA" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
}
.header-nav-btn.header-nav-btn-reservation:hover {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23FCE492" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
}
.header-nav-btn.header-nav-btn-recruit:hover {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23FCAE9B" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
}
.header-nav-btn-contact {
  display: none;
}
.header-nav-btn img.home {
  width: 50px;
  height: 50px;
}
.header-nav-btn img.contact {
  width: 45px;
  height: 50px;
}
.header-nav-btn img.search {
  width: 40px;
  height: 50px;
}
.header-nav-support-outer {
  margin-top: clamp(4rem, 8vw, 4.06rem);
}
.header-nav-support {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: clamp(2.5rem, 3.65vw, 4.6rem);
  padding: clamp(0.75rem, 1.25vw, 1.56rem) clamp(1.5rem, 2.19vw, 2.73rem);
  text-decoration: none;
  overflow: hidden;
}
.header-nav-support-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1;
}
.header-nav-support-label {
  font-size: clamp(.7em, .83vw, .95rem);
}
.header-nav-support-name {
  font-size: clamp(1rem, .83vw, 1.3rem);
}
.header-social-txt {
  font-size: 10px;
  letter-spacing: 0.05em;
}
.header-nav-illustration {
  position: absolute;
  right: 2.575rem;
  bottom: 0;
  width: clamp(5.5rem, 90vw, 7rem);
  height: auto;
  pointer-events: none;
}

.header-nav-illustration img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .header-container {
    height: 147px;
    padding: 2.44rem 2.485rem;
    background-color: var(--bs-white);
  }
  .page-template-frontpage .header-container {
    background-color: var(--bs-white);
  }
  .page-template-frontpage .header-logo-sub, .page-template-frontpage .header-logo-main {
    color: var(--black);
  }
  .header-menu-btn, .page-template-frontpage .header-menu-btn {
    position: relative;
    right: inherit;
    top: inherit;
    background-color: transparent;
    width: 80px;
    height: 80px;
    padding: 1.25rem;
  }
  .header-nav-content {
    max-width: 50%;
  }
  .header-nav {
    top: 147px;
    height: calc(100% - 147px);
  }
  .header-nav-menu {
    flex-direction: row;
    gap: clamp(3rem, 5.21vw, 6.56rem);
  }
  
  .header-nav-menu-col {
    width: auto;
  }
  .header-nav-menu-list ul {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 3rem;
    row-gap: 1rem;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
  }
  .header-nav-menu-list > ul > li.menu-item {
    text-align: left;
  }
  .header-nav-menu-list #menu-sp-menu li, .header-nav-menu-list #menu-sp-menu li a {
    margin-left: initial;
    margin-right: initial;
  }
  .header-nav-menu-list > ul > li.menu-item > a {
    display: block;
    white-space: nowrap;
    text-decoration: none;
  }
  .header-nav-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }
  .header-nav-contact-tel-wrap {
    margin-top: 0;
  }
  .header-contact-btn {
    position: absolute;
    right: clamp(7.5rem, 8.33vw, 10.5rem);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(2.5rem, 3.49vw, 4.375rem);
    height: clamp(2.5rem, 3.49vw, 4.375rem);
    background: var(--bs-white);
    border: 0.0625rem solid var(--secondary02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .header-contact-btn:hover {
    background: var(--secondary02);
    color: var(--bs-white);
  }
  a.header-contact-btn:hover {
    opacity: 1;
  }
  .header-contact-btn-icon {
    width: clamp(1.25rem, 1.56vw, 1.875rem);
    height: clamp(1.25rem, 1.56vw, 1.875rem);
    color: var(--primary);
    transition: color 0.3s ease;
  }
  .header-contact-btn:hover .header-contact-btn-icon {
    color: var(--bs-white);
  }
  .header-nav-btn-contact {
    display: flex;
  }
  header .header-nav-btn-reservation {
    display: none;
  }
  .header-nav-support-outer {
    gap: 1rem;
  }
  .header-nav-support {
    max-width: 16rem;
    margin-right: 0;
    margin-left: 0;
  }
  .header-nav-sns-content {
    display: flex;
    gap: 0.45rem;
    flex-direction: column;
    align-items: center;
  }
  .header-nav-sns-content img {
    width: 30px;
    height: 30px;
  }
  .header-nav-btn-txt {
    font-size: 12px;
    font-weight: 700;
  }
}

@media (min-width: 992px) {
  .header-logo-sub {
    font-size: 0.875rem;
  }
  .header-logo-main {
    font-size: 2rem;
  }
  .header-nav-content {
    max-width: calc(50% - 1rem);
    padding: 2rem 3rem 3rem;
  }
  .header-nav-btn-txt {
    font-size: 1rem;
  }
  .header-nav-support-outer {
    padding-bottom: 5rem;
  }
  .header-nav-support {
    width: 56%;
    margin-left: 0;
  }
  .header-nav-sns img {
    width: 2.96rem;
    height: 2.96rem;
  }
}

@media (min-width: 1200px) {
  .header-contact-btn {
    right: clamp(7rem, 8.33vw, 10.5rem);
  }
  .header-menu-btn, .page-template-frontpage .header-menu-btn, .page-template-frontpage .header-menu-btn.is-active {
    padding: 1rem;
  }
}
@media (min-width: 1400px) {
  .header-nav-btn img {
    width: 3rem;
    height: 3rem;
  }
  .header-social-txt {
    font-size: 0.75rem;
  }
}
@media (min-width: 1441px) {
  .header-container {
    height: 196px;
  }
  .header-nav {
    top: 184px;
    height: calc(100% - 184px);
  }
  .header-nav-menu-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-menu-btn, .page-template-frontpage .header-menu-btn, .page-template-frontpage .header-menu-btn.is-active {
    padding: .5rem;
  }
  .header-nav-btn {
    width: 196px;
    height: 185px;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 195.6 185"><path fill="%234199c8" d="M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z"/></svg>');
    clip-path: path('M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z');
  -webkit-clip-path: path('M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z');
  }
  .header-nav-btn.header-nav-btn-contact:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 195.6 185"><path fill="%2380C5EA" d="M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z"/></svg>');
  }
  .header-nav-btn.header-nav-btn-recruit {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 195.6 185"><path fill="%23ed7f64" d="M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z"/></svg>');
  }
  .header-nav-btn.header-nav-btn-recruit:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 195.6 185"><path fill="%23FCAE9B" d="M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z"/></svg>');
  }
  .header-nav-btn-txt {
    font-size: .777rem;
  }
}
@media (min-width: 1600px) {
  .header-nav-contact-info {
    flex-direction: row;
    align-items: center;
  }
  .header-nav-contact-tel {
    font-size: 2.85vw;
  }
  .header-nav-support-outer {
    padding-bottom: 0;
  }
  .header-nav-support {
    width: 45%;
  }
  .header-nav-illustration {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 1800px) {
  .header-nav-content {
    padding: 5rem 5rem 0;
  }
  .header-nav-menu-list li a {
    font-size: clamp(1.75rem, 1.25vw, 2rem);
  }
  .header-nav-support {
    max-width: 18rem;
  }
  .header-nav-illustration {
    right: 1rem;
  }
}

/* ========================================
   Footer
======================================== */
.footer {
  position: relative;
}
.footer-decoration {
  position: relative;
}
.footer-decoration img {
  position: absolute;
  top: -2.75rem;
  right: 1.43rem;
  pointer-events: none;
  z-index: 3;
}
.page-template-frontpage .footer-decoration img {
  width: 12.1055rem;
  height: 5.778rem;
}
.program .footer-decoration img {
  width: 187px;
  height: 97px;
  top: -3.5rem;
}
.footer-main {
  position: relative;
  padding-bottom: 2rem;
  background-color: var(--bs-white);
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 1.143rem;
  padding-right: 1.143rem;
}
.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.footer-logo-sub {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
}
.footer-logo-main {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
}
.footer-nav-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-nav-list li {
  width: 50%;
  max-width: calc(50% - .25rem);
}
.footer-nav-list li a {
  font-size: 14px;
  transition: opacity 0.3s ease;
  line-height: 1.2;
  letter-spacing: .09em;
}
.footer-nav-list li a:hover {
  color: var(--black-hover);
  opacity: 1;
}
.footer-contact-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
}
.footer-contact-label {
  margin: 0;
  color: var(--secondary02);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 2;
}
.footer-contact-tel-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
}
.footer-contact-tel-label {
  font-size: clamp(1.25rem, 5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
}
.footer-contact-tel {
  color: var(--secondary02);
  font-size: clamp(2.2rem, 8.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}
.footer-contact-hours {
  margin: 0;
  line-height: 1.2;
}
.footer-buttons-area {
  display: flex;
  gap: .75rem;
  align-items: flex-end;
}
.footer-btn-support {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.7rem 1.5rem;
  border-radius: 4.375rem;
  transition: background-color 0.3s ease;
  position: relative;
  margin-top: 1.72rem;
  max-width: 196px;
}
.footer-btn-support:hover {
  background-color: #3687b0;
}
.footer-btn-text-small {
  color: var(--bs-white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.footer-btn-text-large {
  color: var(--bs-white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.footer-btn-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 1.125rem;
  height: 1.125rem;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: .45rem;
  flex: 1;
}
.footer-social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.07rem;
  height: 3.07rem;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}
.footer-social-txt {
  font-size: 10px;
  letter-spacing: .05em;
}
.footer-social-icon:hover {
  opacity: 0.7;
}
.footer-btn-icon-area {
  gap: 1rem;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1.75rem;
}
.footer-btn {
  width: 50%;
  max-width: calc(100% / 2 - .5rem);
  border-radius: 3rem;
}
.footer-btn-contact, .footer-btn-recruit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
}
.footer-btn-contact {
  background-color: var(--secondary02);
}
.footer-btn-contact:hover {
  background-color: var(--secondary02-hover);
  opacity: 1;
}
.footer-btn-recruit {
  background-color: var(--primary);
}
.footer-btn-recruit:hover {
  background-color: var(--primary-hover);
  opacity: 1;
}
.footer-btn-icon-mail, .footer-btn-icon-recruit {
  width: 1.5rem;
  height: 1.5rem;
}
.footer-btn-text {
  color: var(--bs-white);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-align: center;
}
.footer-links-area {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
}
.footer-link-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem .75rem 1rem;
  border-radius: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  transition: all 0.3s ease;
  position: relative;
  min-width: 7rem;
}
.footer-link-btn.external-btn::after {
  right: 1rem;
}
.footer-link-btn-sanpo {
  background-color: var(--sanpo);
  color: var(--bs-white);
  border: 1px solid var(--sanpo);
}
.footer-link-btn-sanpo:hover {
  background-color: var(--sanpo-hover);
  border: 1px solid var(--sanpo-hover);
}
.footer-link-btn-external {
  background-color: transparent;
  border: 1px solid var(--black);
  width: auto;
}
.footer-link-btn-external:hover {
  background-color: rgba(68, 68, 68, 0.05);
}
.footer-link-icon {
  width: 0.75rem;
  height: 0.75rem;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
}
.footer-copyright {
  background-color: var(--bs-white);
  padding: 0 0 1.25rem;
}
.footer-copyright-text {
  margin: 0;
  color: var(--black);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 2;
  text-align: center;
}
@media print, screen and (min-width: 576px) {
  .footer-btn-support {
    max-width: 75%;
  }
  .footer-nav-list li a {
    letter-spacing: .16em;
  }
}
@media (min-width: 768px) {
  .page-template-frontpage .footer-decoration img {
    top: -3rem;
    right: 10%;
    width: 15rem;
    height: 7rem;
  }
  .program .footer-decoration img {
    top: -9.75rem;
    width: 21.39rem;
    height: 11.215rem;
  }
  .footer {
    margin-top: 3rem;
  }
  .footer-content {
    padding-right: 0;
  }
  .footer-logo img {
    width: 5.9375rem;
    height: 5.9375rem;
  }
  .footer-logo-sub {
    font-size: 0.875rem;
  }
  .footer-nav-area {
    gap: 2rem;
  }
  .footer-buttons-area {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-btn-support {
    max-width: 197px;
  }
  .footer-btn-icon-area {
    border-bottom: none;
  }
  .footer-btn {
    width: 147px;
    height: 139px;
    color: var(--bs-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%234199c8" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
    clip-path: path('M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z');
    -webkit-clip-path: path('M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    padding: 0 .5rem .5rem;
  }
  .footer-btn.footer-btn-recruit {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23ed7f64" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
  }
  .footer-btn.footer-btn-admission {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23fdd23e" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
  }
  a.footer-btn:hover, a.footer-btn:hover img {
    opacity: 1;
  }
  .footer-btn.footer-btn-contact:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%2380C5EA" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
  }
  .footer-btn.footer-btn-recruit:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23FCAE9B" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
  }
  .footer-btn.footer-btn-admission:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23fce492" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
  }
  .footer-btn-contact, .footer-btn-recruit {
    flex-direction: column;
  }
  .footer-btn-icon-mail, .footer-btn-icon-recruit {
    width: 2rem;
    height: 2rem;
  }
  .footer-copyright-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-nav-list li {
    letter-spacing: .005em;
  }
}
@media (min-width: 992px) {
  .footer-main {
    padding-bottom: 1rem;
  }
  .footer-content {
    padding-left: 1.5rem;
  }
  .footer-logo-area {
    margin-top: 2rem;
    flex-direction: row;
  }
  .footer-logo-text {
    justify-content: center;
  }
  .footer-nav-area {
    flex-direction: row;
    gap: 3rem;
  }
  .footer-nav-list li a {
    line-height: 2.25;
  }
  .footer-contact-area {
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: none;
    padding-right: 1.5rem;
  }
  .footer-contact-label {
    font-size: 1.25rem;
    line-height: 2.5;
  }
  .footer-contact-tel {
    font-size: clamp(3rem, 2.5vw, 2.5rem);
  }
  .footer-contact-hours {
    font-size: 1.125rem;
    margin-top: 0.5rem;
    font-weight: 700;
  }
  .footer-btn-support {
    margin: 0;
  }
  .footer-social-icon {
    margin: 0;
  }
  .footer-buttons-area {
    gap: 1.5rem;
    padding-left: 1.5rem;
    margin-top: 1.5rem;
  }
  .footer-btn-support {
    padding: 0.9375rem 2.5rem;
  }
  .footer-btn-icon-area {
    padding-right: 1.5rem;
    margin-top: 1.5rem;
  }
  .footer-btn-text-small {
    font-size: 1rem;
  }
  .footer-btn-text-large {
    font-size: 1.25rem;
  }
  .footer-btn-contact, .footer-btn-recruit {
    padding: 2.5rem 1.5rem;
  }
  .footer-links-area {
    gap: 1.5rem;
    align-items: center;
    padding-left: 1.5rem;
  }
  .footer-link-btn {
    flex: 1;
    min-width: 14.875rem;
  }
  .footer-link-btn-sanpo {
    min-width: 17rem;
    padding: 1.5rem 2.5rem;
  }
  .footer-link-btn-external {
    min-width: 9rem;
    justify-content: center;
    padding: .75rem;
  }
}
@media (min-width: 1400px) {
  .page-template-frontpage .footer-decoration img {
    top: -6rem;
    width: clamp(16rem, 20vw, 22.125rem);
    height: auto;
  }
  .footer-content, .footer-buttons-area, .footer-links-area {
    padding-left: 5.125rem;
  }
  .footer-contact-area, .footer-btn-icon-area {
    padding-right: 2.5rem;
  }
  .footer-nav-list li a {
    font-size: 1.125rem;
  }
  .footer-link-btn-sanpo {
    max-width: clamp(172px, 20vw, 433px);
  }
  .footer-social-txt {
    font-size: .75rem;
  }
  .footer-link-btn-external {
    min-width: 12.9375rem;
  }
  .footer-btn-icon-area {
    gap: 2.5rem;
  }
  .footer-btn {
    width: 168px;
    height: 159px;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 159"><path fill="%234199c8" d="M119.3,3.9c-35.5-9.4-61.9,0-86.6,14.4C20.9,28.5-2.2,55.5.2,82.1c3,33.3,19.6,44.3,32.5,60.3,12.9,16,55,21.9,93.4,10.9,38.4-11,37.7-52.1,41.4-71.1,3.7-19-12.7-68.8-48.2-78.3Z"/></svg>');
    clip-path: path('M119.3,3.9c-35.5-9.4-61.9,0-86.6,14.4C20.9,28.5-2.2,55.5.2,82.1c3,33.3,19.6,44.3,32.5,60.3,12.9,16,55,21.9,93.4,10.9,38.4-11,37.7-52.1,41.4-71.1,3.7-19-12.7-68.8-48.2-78.3Z');
    -webkit-clip-path: path('M119.3,3.9c-35.5-9.4-61.9,0-86.6,14.4C20.9,28.5-2.2,55.5.2,82.1c3,33.3,19.6,44.3,32.5,60.3,12.9,16,55,21.9,93.4,10.9,38.4-11,37.7-52.1,41.4-71.1,3.7-19-12.7-68.8-48.2-78.3Z');
    gap: .75rem;
  }
  .footer-btn.footer-btn-recruit {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 159"><path fill="%23ed7f64" d="M119.3,3.9c-35.5-9.4-61.9,0-86.6,14.4C20.9,28.5-2.2,55.5.2,82.1c3,33.3,19.6,44.3,32.5,60.3,12.9,16,55,21.9,93.4,10.9,38.4-11,37.7-52.1,41.4-71.1,3.7-19-12.7-68.8-48.2-78.3Z"/></svg>');
  }
  .footer-btn.footer-btn-contact:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 159"><path fill="%2380C5EA" d="M119.3,3.9c-35.5-9.4-61.9,0-86.6,14.4C20.9,28.5-2.2,55.5.2,82.1c3,33.3,19.6,44.3,32.5,60.3,12.9,16,55,21.9,93.4,10.9,38.4-11,37.7-52.1,41.4-71.1,3.7-19-12.7-68.8-48.2-78.3Z"/></svg>');
  }
  .footer-btn.footer-btn-recruit:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 159"><path fill="%23FCAE9B" d="M119.3,3.9c-35.5-9.4-61.9,0-86.6,14.4C20.9,28.5-2.2,55.5.2,82.1c3,33.3,19.6,44.3,32.5,60.3,12.9,16,55,21.9,93.4,10.9,38.4-11,37.7-52.1,41.4-71.1,3.7-19-12.7-68.8-48.2-78.3Z"/></svg>');
  }
  .footer-btn-icon-mail {
    width: 2.2rem;
    height: 2.2rem;
  }
  .footer-btn-icon-recruit {
    height: 2.5rem;
    width: 2.5rem;
  }
  .footer-btn-text {
    font-size: clamp(0.875rem, 1vw, 1.25rem);
  }
}
@media (min-width: 1441px) {
  .footer-content, .footer-buttons-area, .footer-links-area {
    padding-left: clamp(1.5rem, 5vw, 6.83rem);
  }
  .footer-contact-tel {
    white-space: nowrap;
  }
  .footer-btn {
    width: 224px;
    height: 212px;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 224 212"><path fill="%234199c8" d="M159.1,5.1c-47.3-12.6-82.5,0-115.5,19.2C27.8,38-2.9,74,.2,109.5c3.9,44.3,26.1,59.1,43.3,80.4,17.2,21.3,73.4,29.2,124.6,14.5,51.2-14.7,50.2-69.5,55.2-94.9,4.9-25.4-17-91.8-64.3-104.3Z"/></svg>');
    clip-path: path('M159.1,5.1c-47.3-12.6-82.5,0-115.5,19.2C27.8,38-2.9,74,.2,109.5c3.9,44.3,26.1,59.1,43.3,80.4,17.2,21.3,73.4,29.2,124.6,14.5,51.2-14.7,50.2-69.5,55.2-94.9,4.9-25.4-17-91.8-64.3-104.3Z');
    -webkit-clip-path: path('M159.1,5.1c-47.3-12.6-82.5,0-115.5,19.2C27.8,38-2.9,74,.2,109.5c3.9,44.3,26.1,59.1,43.3,80.4,17.2,21.3,73.4,29.2,124.6,14.5,51.2-14.7,50.2-69.5,55.2-94.9,4.9-25.4-17-91.8-64.3-104.3Z');
  }
  .footer-btn.footer-btn-recruit {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 224 212"><path fill="%23ed7f64" d="M159.1,5.1c-47.3-12.6-82.5,0-115.5,19.2C27.8,38-2.9,74,.2,109.5c3.9,44.3,26.1,59.1,43.3,80.4,17.2,21.3,73.4,29.2,124.6,14.5,51.2-14.7,50.2-69.5,55.2-94.9,4.9-25.4-17-91.8-64.3-104.3Z"/></svg>');
  }
  .footer-btn.footer-btn-contact:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 224 212"><path fill="%2380C5EA" d="M159.1,5.1c-47.3-12.6-82.5,0-115.5,19.2C27.8,38-2.9,74,.2,109.5c3.9,44.3,26.1,59.1,43.3,80.4,17.2,21.3,73.4,29.2,124.6,14.5,51.2-14.7,50.2-69.5,55.2-94.9,4.9-25.4-17-91.8-64.3-104.3Z"/></svg>');
  }
  .footer-btn.footer-btn-recruit:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 224 212"><path fill="%23FCAE9B" d="M159.1,5.1c-47.3-12.6-82.5,0-115.5,19.2C27.8,38-2.9,74,.2,109.5c3.9,44.3,26.1,59.1,43.3,80.4,17.2,21.3,73.4,29.2,124.6,14.5,51.2-14.7,50.2-69.5,55.2-94.9,4.9-25.4-17-91.8-64.3-104.3Z"/></svg>');
  }
  .footer-btn-text-small, .footer-link-btn {
    font-size: .75rem;
  }
  .footer-btn-text-large, .footer-btn-text {
    font-size: .94rem;
  }
}
/* ========================================
   slider CSS
======================================== */
.slider-swiper,
.slider-swiper * {
  pointer-events: none;
}
.swiper-section-inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1600px;
  margin: 0 auto;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media {
  position: relative;
  overflow: hidden;
}
.slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.swiper-section {
  overflow: hidden;
}
.swiper-section .swiper {
  overflow: visible;
}
.swiper-section .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.swiper-section .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.swiper-section .slide {
  width: 12rem;
}
.swiper-section .slide-media {
  padding-top: 100%;
}
.swiper-section .slide-media img {
  height: calc(100% - 10px);
}
.recruit-flow .swiper-pagination-bullet {
  background: #D9D9D9;
  opacity: 1;
}
.recruit-flow .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-button-prev, .swiper-button-next {
  width: 30px !important;
}
.swiper-button-next svg, .swiper-button-prev svg {
  display: none;
}
.swiper-button-prev {
  left: 1rem !important;
}
.swiper-button-next {
  right: 1rem !important;
}
@media only screen and (min-width: 768px) {
  .swiper-section .slide {
    width: 20rem;
  }
}
/* ========================================
   フローティングバナー用CSS
======================================== */
.floating-banner {
  display: none;
  position: fixed;
  right: 2rem;
  top: calc(50% + 64px);
  transform: translateY(-50%);
  z-index: 1000;
  gap: 1.67vw;
  flex-direction: column;
  z-index: 3;
}
.floating-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 3.33vw;
  min-width: 2.75rem;
  height: auto;
  border-radius: 2rem;
  padding-top: 1.67vw;
  padding-bottom: 1.67vw;
  text-decoration: none;
  gap: .5rem;
}
a.floating-banner-item:hover, a.floating-banner-item:hover img {
  opacity: 1;
}
.floating-banner-visit {
  background-color: var(--secondary04);
}
.floating-banner-visit:hover {
  background-color: var(--secondary04-hover);
}
.floating-banner-recruit {
  background-color: var(--primary);
}
.floating-banner-recruit:hover {
  background-color: var(--primary-hover);
}
.floating-banner-icon {
  margin-bottom: 0.83vw;
  width: 1.94vw;
  height: 1.46vw;
}
.floating-banner-icon svg {
  width: 100%;
  height: 100%;
}
.floating-banner-text {
  writing-mode: vertical-rl;
  color: var(--bs-white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 992px) {
  .floating-banner {
    display: flex;
  }
}
@media (min-width: 1400px) {
  .floating-banner-item {
    width: clamp(2.91625rem, 3.24vw, 3rem);
    padding-top: clamp(1.46rem, 1.62vw, 1.95rem);
    padding-bottom: clamp(1.46rem, 1.62vw, 1.95rem);
  }
  .floating-banner-icon {
    margin-bottom: clamp(0.72625rem, 0.81vw, 0.975rem);
    width: clamp(1.69875rem, 1.89vw, 2.26875rem);
    height: clamp(1.278125rem, 1.42vw, 1.70625rem);
  }
}
/* ========================================
   フロントページ・共通用CSS
======================================== */
.section {
  padding: 2rem 0 4rem;
}
.border-radius-md {
  border-radius: 20px;
}
.page-template-frontpage main {
  padding-top: 0;
}
.first-view-bg {
  max-width: 100%;
  margin: 0px auto;
  position: relative;
  z-index: -2;
}
.first-view-text-box-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 100%;
}
.first-view-text-box {
  position: absolute;
  background-color: var(--bs-white);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.first-view-text-box-01 {
  bottom: -1rem;
  right: 1.75rem;
}
.first-view-text-box-02 {
  bottom: -2.5rem;
  right: 6rem;
}

.first-view-text {
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.35rem;
  margin: 0;
  padding: 1.25rem 1rem;
}
.section-deco-top::before, .section-deco-bottom::before {
  content: "";
  position: absolute;
  background-image: url(./library/images/content/background-deco01.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
  left: 0;
  width: 100%;
  height: 6vw;
}
.section-deco-top::before {
  top: -6vw;
  background-position: center bottom;
  z-index: -2;
}
.section-deco-bottom::before {
  bottom: -1px;
  background-position: center top;
  z-index: -1;
}
.background-deco-white::before, .background-deco-white::after, .background-deco-white-top::before, .background-deco-white-bottom::before {
  content: "";
  position: absolute;
  background-repeat: repeat-x;
  background-size: auto 100%;
  left: 0;
  width: 100%;
  height: 6vw;
}
.background-deco-white::before, .background-deco-white-top::before {
  top: -6vw;
  background-image: url(./library/images/content/background-deco-white01.svg);
  background-position: center bottom;
  z-index: -2;
}
.background-deco-white::after, .background-deco-white-bottom::before {
  bottom: -6vw;
  background-image: url(./library/images/content/background-deco-white02.svg);
  background-position: center top;
  z-index: -2;
}
.news-section {
  padding: 4rem 0;
}
.news-section::after {
  content: "";
  position: absolute;
  background-image: url(./library/images/content/news-section-deco.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 187px;
  height: 113px;
  top: -6rem;
  left: 6vw;
}
.news-item {
  display: block;
  text-decoration: none;
}

.news-item-inner {
  position: relative;
  border-radius: 3.1875rem;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 6.625rem;
}
.news-item-label {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.14em;
}
.news-item-dots {
  display: none;
}
.news-item-content {
  flex: 1;
}
.news-item-title {
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.43;
  letter-spacing: 0.14em;
  margin: 0;
  word-break: break-word;
}
.news-item-arrow {
  display: none;
}
.icon-arrow-coral, .coral-st1 {
  fill: var(--primary);
}
.icon-arrow-st0 {
  fill-rule: evenodd;
  isolation: isolate;
  opacity: .5;
}
a.icon-arrow.icon-arrow-coral:hover {
  fill: var(--primary-hover);
}
.philosophy-section {
  padding: 0 0 3.5rem;
  position: relative;
}
.life-section-deco01 {
  bottom: 0;
  left: 1rem;
}
.life-section-deco01 {
  bottom: -4rem;
  left: 2.858rem;
  z-index: 2;
  width: 124px;
}
.life-section-deco02 {
  display: none;
}
.philosophy-content {
  position: relative;
  padding: 3rem 1.5rem;
  min-height: 31.25rem;
}
.philosophy-inner {
  position: relative;
  z-index: 2;
}
.philosophy-title {
  color: var(--primary);
  font-size: clamp(1.5rem, 6.1vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 1.5rem;
}
.philosophy-text {
  color: var(--black);
  font-size: clamp(1rem, 4.07vw, 1.125rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 2rem;
}
.move-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.philosophy-inner .primary-btn01 {
  max-width: 19.857rem;
}
.move-btn:hover::after {
  right: .755rem;
}
.move-btn-text {
  color: var(--bs-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 2;
}
.philosophy-deco {
  position: absolute;
  z-index: 1;
  display: block;
}
.philosophy-deco img {
  width: 100%;
  height: auto;
  display: block;
}
.philosophy-deco-1 {
  width: 105px;
  top: -3rem;
  left: -.5rem;
}
.philosophy-deco-2 {
  width: 82px;
  top: -.75rem;
  right: 1rem;
}
.philosophy-deco-3 {
  width: 55px;
  top: 5rem;
  right: -1rem;
}
.philosophy-deco-4 {
  width: 86px;
  bottom: -1.5rem;
  left: .75rem;
}
.philosophy-deco-5 {
  width: 129px;
  bottom: -3rem;
  right: -1rem;
}
.life-section {
  position: relative;
  padding: 3rem 0 0;
  background-color: var(--bs-white);
}
.life-section-title-decoration {
  width: 10rem;
  height: .85rem;
  margin: 0 auto 4rem;
  position: relative;
}
.life-section-cards {
  margin-bottom: 3rem;
}
.life-section-card {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.life-section-card-label {
  position: absolute;
  top: -1.25rem;
  left: 0;
  z-index: 2;
  width: 7.8rem;
  height: 6.7rem;
}
.life-section-card-image {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  margin-bottom: 1.5rem;
}
.life-section-card-arrow {
  transform: rotate(90deg);
  width: 1.4375rem;
  height: 1.4375rem;
  flex-shrink: 0;
}
.life-section-card-link:hover {
  opacity: 0.8;
}
.section {
  padding: 4rem 0;
}
/*** お問い合わせセクション ***/
.contact-section {
  position: relative;
  padding: 3rem 0 4rem;
  z-index: 1;
}
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.contact-title {
  color: var(--secondary02);
  font-size: clamp(1.25rem, 5.33vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  margin-bottom: 0.83rem;
}
.contact-decoration {
  width: clamp(10.44rem, 43.75vw, 15.13rem);
  height: clamp(0.66rem, 2.92vw, 0.88rem);
  margin: 0 auto 1.67rem;
  position: relative;
}
.contact-description {
  color: var(--black);
  font-size: clamp(0.88rem, 3.67vw, 1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.12em;
}
.contact-card {
  border-radius: 1.88rem;
  padding: 2rem 1.5rem;
}
.contact-phone-area {
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.contact-phone-icon {
  width: 1.63rem;
  height: 1.63rem;
  flex-shrink: 0;
  border-radius: 50%;
}
.contact-phone-content {
  flex: 1;
}
.contact-phone-label {
  color: var(--secondary02);
  font-size: clamp(0.88rem, 3.67vw, 1.13rem);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}
.contact-phone-number {
  color: var(--secondary02);
  font-size: clamp(1.5rem, 6.25vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}
.contact-phone-tel-label {
  color: var(--black);
  font-size: clamp(0.88rem, 3.67vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.contact-phone-hours {
  color: var(--black);
  font-size: clamp(0.88rem, 1.25vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.12em;
}
.contact-divider {
  display: none;
}
.contact-form-btn {
  gap: 0.5rem;
  background-color: var(--secondary02);
  color: var(--bs-white);
  border-radius: 2rem;
  padding: .75rem 2.13rem .75rem 1rem;
  font-size: 1.143rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.09em;
  transition: background-color 0.3s ease;
}
.contact-form-btn:hover {
  background-color: #3688b0;
}
.contact-form-arrow {
  width: 1.44rem;
  height: 1.44rem;
  transform: rotate(90deg);
}
.nav-btns {
  gap: 1rem;
  justify-content: center;
}
.nav-btn {
  width: 135px;
  height: 127px;
  color: var(--bs-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .125rem;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23ed7f64" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
  clip-path: path('M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z');
  -webkit-clip-path: path('M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 0 .5rem .5rem;
}
.nav-btn.nav-btn-admission {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23fdd23e" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
}
a.nav-btn:hover, a.nav-btn:hover img {
  opacity: 1;
}
.nav-btn:hover {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23FCAE9B" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
}
.nav-btn.nav-btn-admission:hover {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147 139"><path fill="%23fce492" d="M104.4,3.3c-31-8.2-54.1,0-75.8,12.6C18.2,24.8-1.9,48.5.1,71.8c2.6,29.1,17.1,38.8,28.4,52.8,11.3,14,48.2,19.1,81.8,9.5,33.6-9.6,33-45.6,36.2-62.3,3.2-16.7-11.1-60.2-42.2-68.5Z"/></svg>');
}
.nav-btn img {
  width: 30px;
  height: 30px;
}
.nav-btn-text {
  color: var(--bs-white);
  font-size: clamp(1.143rem, 1.25vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.16em;
  text-align: center;
}
/*** アクセスセクション ***/
.access-section {
  position: relative;
  padding: 4rem 0 6rem;
}
.access-section-decoration img {
  right: .5rem;
  top: 2.5rem;
  width: 74px;
  height: 79px;
}
.access-title {
  color: var(--secondary04);
  font-size: clamp(1.25rem, 5.33vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align: center;
}
.access-decoration {
  width: clamp(10.44rem, 43.75vw, 20.13rem);
  height: clamp(0.66rem, 2.92vw, 0.88rem);
  margin: 0 auto 2.08rem;
  position: relative;
}
.access-details {
  display: flex;
  flex-direction: column;
  gap: 1.67rem;
  text-align: center;
}
.access-organization {
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.12em;
  font-size: clamp(1.286rem, 4.69vw, 1.5rem);
}
.access-address {
  color: var(--black);
  font-size: clamp(0.88rem, 3.67vw, 1rem);
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.12em;
}
.access-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.access-phone-number {
  color: var(--secondary04);
  font-size: clamp(1.5rem, 6.25vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.12em;
}
.access-phone-label {
  color: var(--black);
  font-size: clamp(0.88rem, 3.67vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
}
.access-phone-hours {
  color: var(--black);
  font-size: clamp(0.88rem, 3.67vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
}
.access-method {
  padding-top: 1rem;
}
.access-method-header {
  gap: 0.83rem;
  justify-content: center;
  margin-bottom: 0.42rem;
}
.access-method-icon {
  width: 1.25rem;
}
.access-method-title {
  color: var(--secondary04);
  font-size: clamp(0.88rem, 3.67vw, 1rem);
  font-weight: 900;
  line-height: 1.94;
  letter-spacing: 0.12em;
}
.access-method-text {
  color: var(--black);
  font-size: clamp(0.88rem, 3.67vw, 1rem);
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.12em;
}
.access-wrapper {
  padding-right: calc(var(--bs-gutter-x) * 1.143);
  padding-left: calc(var(--bs-gutter-x) * 1.143);
}
.access-map-wrapper {
  width: 100%;
}
.access-map {
  width: 100%;
  border-radius: 1.88rem;
  overflow: hidden;
}
.access-map iframe {
  width: 100%;
  height: 289px;
}
/*** ページヘッダー ***/
.page-top-visual {
  position: relative;
  padding-top: 64px;
  overflow: hidden;
}
.page-top-visual.section-deco-bottom::before {
  bottom: -3px;
}
.page-top-visual-image {
  position: relative;
  width: 100%;
  height: 9.78rem;
  object-fit: cover;
  z-index: -2;
  object-position: center bottom;
}

.page-top-visual-circle {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 10.625rem;
  height: 10.625rem;
  border-radius: 50%;
}
.page-top-visual-title {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bs-white);
  font-size: 1rem;
  text-align: center;
  margin: 0;
  max-width: 12rem;
}
.spacer-bottom {
  margin-bottom: 3rem;
}
.spacer-bottom-sp {
  margin-bottom: inherit;
}
.sp {
  display: none;
}
.contact-date-wrapper {
  width: 80%;
  display: flex;
  gap: 15px;
}
.contact-submit-btn{
  width: inherit;
}
@media screen and (max-width: 767px){
  .spacer-bottom-sp {
    margin-bottom: 3rem;
  }
  .sp {
    display: block;
  }
  .contact-date-wrapper {
    width: 100%;
    gap: 15px;
  }
  .contact-submit-btn{
    width: 100%;
  }
}
@media print, screen and (min-width: 576px) {
  .philosophy-deco-1 {
    width: clamp(150px, 23vw, 22.5rem);
    left: clamp(-4rem, -8vw, -1rem);
  }
  .philosophy-deco-2 {
    width: clamp(100px, 18vw, 17.5rem);
    right: clamp(-2rem, -8vw, -1rem);
  }
  .philosophy-deco-3 {
    width: clamp(70px, 6vw, 11.125rem);
    top: 10rem;
    right: -6rem;
  }
  .philosophy-deco-4 {
    width: clamp(100px, 15vw, 16.75rem);
    bottom: 0.5rem;
  }
  .philosophy-deco-5 {
    width: clamp(160px, 25vw, 23.75rem);
    bottom: 0;
    right: -6rem;
  }
}

@media print, screen and (min-width: 768px) {
  .page-template-frontpage main {
    padding-top: 147px;
  }
  .section {
    padding: 4.5rem 0;
  }
  .first-view-text-box-wrap {
    left: inherit;
    width: auto;
  }
  .first-view-text-box-01 {
    left: 5rem;
    bottom: inherit;
    right: inherit;
    top: calc(50% - 15%);
    transform: translateY(-50%);
  }
  .first-view-text-box-02 {
    left: 0;
    bottom: inherit;
    right: inherit;
    top: calc(50% + 10%);
    transform: translateY(-50%);
  }
  .first-view-text {
    font-size: 1.75rem;
  }
  .news-section {
    padding: 5rem 0;
  }
  .news-section::after {
    width: 15rem;
    height: 9rem;
    top: -8rem;
    left: 21vw;
  }
  .news-item-inner {
    border-radius: 2.03125rem;
    padding: 1.25rem 2.5rem;
    min-height: 4.0625rem;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  .news-item-label {
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.16em;
    flex-shrink: 0;
  }
  .news-item-dots {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex-shrink: 0;
    padding: 0 0.5rem;
  }
  .news-item-dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: var(--black);
    border-radius: 50%;
  }
  .news-item-content {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .news-item-title {
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.16em;
  }
  .news-item-arrow {
    display: block;
    flex-shrink: 0;
    width: 1.9375rem;
    height: 1.9375rem;
  }
  .page-top-visual {
    padding-top: 147px;
  }
  .page-top-visual-image {
    height: 19.5rem;
  }
  .page-top-visual-circle {
    width: 18rem;
    height: 18rem;
    top: -1rem;
  }
  .page-top-visual-title {
    bottom: 14.85rem;
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    max-width: 15rem;
  }
  .philosophy-deco-3 {
    width: clamp(70px, 10vw, 11.125rem);
  }
  .philosophy-content {
    padding: 4rem 2rem;
    min-height: 35rem;
  }
  .philosophy-title {
    font-size: clamp(1.75rem, 2.34vw, 2rem);
    margin-bottom: 2rem;
  }
  .philosophy-text {
    font-size: clamp(1.125rem, 1.46vw, 1.25rem);
    line-height: 2.5;
    max-width: clamp(25rem, 32vw, 26rem);
    margin-left: auto;
    margin-right: auto;
  }
  .contact-section {
    padding: 7.78rem 0 5.56rem;
  }
  .contact-divider {
    display: block;
    width: 1px;
    height: auto;
    background-color: var(--black);
    margin: 0 1.5rem;
  }
  .access-section {
    padding: 9.8125rem 0 9.8125rem;
  }
  .access-section-decoration img {
    right: 10%;
    width: 10rem;
    height: 10rem;
  }
  .access-title {
    margin-bottom: 0.83rem;
  }
  .access-details {
    text-align: left;
    flex-direction: row;
    align-items: flex-end;
  }
  .access-decoration {
    margin-left: 0;
  }
  .access-organization, .access-phone {
    align-items: flex-start;
  }
  .access-method-header {
    justify-content: flex-start;
  }
  .access-method-header:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: var(--secondary04);
    margin-left: 1rem;
  }
  .access-map {
    display: flex;
    height: 100%;
  }
  .access-map iframe {
    width: 100%;
    height: 100%;
    min-height: 566px;
    flex: 1;
  }
}
@media (min-width: 992px) {
  .life-section-deco01 {
    top: -11rem;
    left: 16vw;
    bottom: inherit;
    width: 14.35rem;
  }
  .life-section-deco02 {
    display: block;
    right: 8vw;
    top: -10rem;
    width: 12.375rem;
  }
  .contact-section {
    padding: 8rem 0 7.5rem;
  }
  .contact-decoration {
    margin: 0 0 1.67rem;
  }
  .contact-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .contact-section-decoration img {
    left: 16vw;
    top: -5rem;
    width: 11.2rem;
    height: 11.95rem;
  }
  .access-wrapper {
    display: flex;
    gap: 3rem;
  }
  .access-details {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
  }
  .access-map-wrapper {
    width: 42.25rem;
  }
  .page-top-visual-title {
    max-width: 16rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .section {
    padding: 5rem 0;
  }
  .contact-card {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .contact-phone-area {
    margin-bottom: 0;
  }
  .contact-form-btn {
    min-width: 300px;
  }
  .contact-divider {
    min-height: 10rem;
  }
}
@media print, screen and (min-width: 1400px) {
  .first-view-text {
    font-size: 2rem;
  }
  .news-section::after {
    width: 18.68rem;
    height: 11.255rem;
    top: -9rem;
    left: 22vw;
  }
  .philosophy-section {
    padding: 3rem 0;
  }
  .philosophy-content {
    padding: 4.938rem 0;
    min-height: 41.688rem;
  }
  .philosophy-deco-1 {
    top: clamp(-2rem, -15vw, -1rem);
    left: 1.5rem;
  }
  .philosophy-deco-2 {
    top: inherit;
    right: inherit;
    left: -7rem;
    bottom: 5.5rem;
  }
  .philosophy-deco-3 {
    top: inherit;
    left: 12rem;
    bottom: 10rem;
  }
  .philosophy-deco-4 {
    bottom: inherit;
    left: inherit;
    top: 2rem;
    right: 8rem;
  }
  .philosophy-deco-5 {
    bottom: 5rem;
    right: -6.5rem;
  }
  .philosophy-title {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.16em;
    margin-bottom: 2.313rem;
  }
  .philosophy-text {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.16em;
    margin-bottom: 2.5rem;
    max-width: 26.875rem;
    margin-left: auto;
    margin-right: auto;
  }
  .move-btn-wrapper {
    margin-top: 3.5rem;
  }
  .life-section {
    padding: 5.5rem 0;
  }
  .life-section-title-decoration {
    width: 13.1875rem;
    height: 1.0625rem;
    margin-bottom: 4rem;
  }
  .life-section-cards {
    margin-bottom: 0;
  }
  .life-section-card {
    margin-bottom: 0;
    padding-right: calc(var(--bs-gutter-x) * 1.143);
    padding-left: calc(var(--bs-gutter-x) * 1.143);
  }
  .life-section-card-label {
    top: -2rem;
    left: 0;
    width: 8.6875rem;
    height: 7.5625rem;
  }
  .life-section-card-image {
    aspect-ratio: 519 / 328;
    margin-bottom: 2rem;
  }
  .contact-section {
    padding: 11.67rem 0 9.72rem;
  }
  .contact-title {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.16em;
  }
  .contact-decoration {
    width: 15.13rem;
    height: 0.88rem;
    margin-bottom: 2.5rem;
  }
  .contact-description {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.12em;
  }
  .contact-phone-icon {
    width: 1.88rem;
    height: 1.88rem;
  }
  .contact-phone-label {
    font-size: 1.25rem;
    line-height: 2;
  }
  .contact-phone-number {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .contact-phone-tel-label,
  .contact-phone-hours {
    font-size: 1rem;
  }
  .contact-form-btn {
    font-size: 1rem;
    padding: 0.75rem 2.5rem;
    max-width: max-content;
  }
  .contact-section-decoration img {
    top: -1rem;
  }
  .nav-btns {
    gap: 1.5rem;
  }
  .nav-btn {
    max-width: 11.75rem;
    padding: 2.5rem 1.25rem;
  }
  .nav-btn img {
    width: 2rem;
    height: 2rem;
  }
  .nav-btn-text {
    font-size: 1.25rem;
  }
  .access-wrapper {
    gap: 4rem;
  }
  .access-section {
    padding: 13.89rem 0;
  }
  .access-title {
    font-size: 2rem;
    max-width: 16rem;
  }
  .access-decoration {
    width: 15.13rem;
    height: 0.88rem;
    margin-bottom: 2.92rem;
  }
  .access-details {
    gap: 2rem;
  }
  .access-organization {
    font-size: 1.185rem;
  }
  .access-address {
    font-size: 1rem;
    line-height: 1.44;
  }
  .access-phone {
    flex-direction: row;
    align-items: baseline;
    gap: 0;
    flex-wrap: wrap;
  }
  .access-phone-number {
    font-size: 1.5rem;
  }
  .access-phone-label, .access-phone-hours {
    font-size: clamp(0.88rem, 1vw, 1rem);
  }
  .access-method-title {
    font-size: 1rem;
  }
  .access-method-text {
    font-size: 1rem;
  }
}
@media (min-width: 1441px) {
  .page-top-visual, .page-template-frontpage main {
    padding-top: 196px;
  }
  .page-top-visual-image {
    height: clamp(22.4375rem, 23.33vw, 29.5rem);
  }
  .page-top-visual-title {
    top: 250px;
    bottom: inherit;
    max-width: 20rem;
  }
  .page-top-visual-title.vertical {
    top: 235px;
    bottom: inherit;
  }
  .section {
    padding: 6rem 0;
  }
  .first-view-text-box-01 {
    left: 6rem;
  }
  .first-view-text {
    font-size: clamp(2rem, 2.08vw, 2.6667rem);
    line-height: clamp(2.5rem, 2.6vw, 3.3333rem);
    letter-spacing: clamp(0.32rem, 0.42vw, 0.4267rem);
  }
  .philosophy-content {
    padding: clamp(4.938rem, 5.21vw, 6.563rem) 0;
    min-height: clamp(41.688rem, 43.4vw, 55.583rem);
  }
  .philosophy-title {
    font-size: clamp(2rem, 2.08vw, 2.667rem);
    line-height: clamp(2.8rem, 2.92vw, 3.733rem);
    letter-spacing: clamp(0.32rem, 0.33vw, 0.427rem);
    margin-bottom: clamp(2.313rem, 2.4vw, 3.083rem);
  }
  .philosophy-text {
    font-size: clamp(1.25rem, 1.3vw, 1.667rem);
    line-height: clamp(2.5rem, 2.6vw, 3.333rem);
    letter-spacing: clamp(0.2rem, 0.21vw, 0.267rem);
    max-width: clamp(26.875rem, 27.97vw, 35.833rem);
  }
  .move-btn {
    min-width: clamp(17.375rem, 18.08vw, 23.167rem);
    height: clamp(3.688rem, 3.84vw, 4.917rem);
    border-radius: clamp(1.844rem, 1.92vw, 2.458rem);
  }
  .move-btn-text {
    font-size: clamp(1rem, 1.04vw, 1.333rem);
    line-height: clamp(2rem, 2.08vw, 2.667rem);
    letter-spacing: clamp(0.16rem, 0.17vw, 0.213rem);
  }
  .access-organization {
    font-size: 1.25rem;
  }
  .life-section {
    padding: clamp(5.5rem, 6.15vw, 8.875rem) 0;
  }
  .life-section-title {
    font-size: clamp(2rem, 2.24vw, 3.227rem);
  }
  .life-section-title-decoration {
    width: clamp(13.1875rem, 14.76vw, 21.31rem);
    height: clamp(1.0625rem, 1.19vw, 1.718rem);
  }
  .life-section-card-label {
    width: clamp(8.6875rem, 9.72vw, 14.03rem);
    height: clamp(7.5625rem, 8.46vw, 12.22rem);
  }
  .contact-section {
    padding: clamp(11.67rem, 12.15vw, 14rem) 0 clamp(9.72rem, 10.1vw, 11.67rem);
  }
  .nav-btn {
    width: 196px;
    height: 185px;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 195.6 185"><path fill="%23ed7f64" d="M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z"/></svg>');
    clip-path: path('M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z');
  -webkit-clip-path: path('M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z');
  }
  .nav-btn.nav-btn-recruit:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 195.6 185"><path fill="%23FCAE9B" d="M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z"/></svg>');
  }
  .nav-btn.nav-btn-admission {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 195.6 185"><path fill="%23fdd23e" d="M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z"/></svg>');
  }
  .nav-btn.nav-btn-admission:hover {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 195.6 185"><path fill="%23fce492" d="M138.9,4.4c-41.3-11-72.1,0-100.9,16.8C24.3,33.1-2.6,64.6.2,95.6c3.4,38.7,22.8,51.6,37.9,70.2,15.1,18.6,64.1,25.5,108.8,12.6,44.7-12.8,43.9-60.7,48.2-82.9,4.3-22.2-14.8-80.2-56.1-91.1Z"/></svg>');
  }
  .nav-btn-txt {
    font-size: .777rem;
  }
}
@media print, screen and (min-width: 1600px) {
  .philosophy-deco-1 {
    width: 22.5rem;
    top: -3rem;
    left: -2.5rem;
  }
  .philosophy-deco-2 {
    width: 17.5rem;
    left: -10rem;
    bottom: 3.5rem;
  }
  .philosophy-deco-3 {
    width: 11.125rem;
    left: 10rem;
    bottom: 9rem;
  }
  .philosophy-deco-4 {
    width: 16.75rem;
    right: 4rem;
    top: -2rem;
  }
  .philosophy-deco-5 {
    width: 23.75rem;
    bottom: 4rem;
    right: -8.5rem;
  }
  .access-phone-hours {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 2000px) {
  .page-top-visual-circle {
    width: 20rem;
    height: 20rem;
    top: 0;
  }
}
/* ========================================
   下層ページ用CSS
======================================== */
/*** 園についてページ ***/
.about-page {
  position: relative;
  background-color: var(--bs-white);
  overflow: hidden;
}
.about-main {
  position: relative;
  z-index: 1;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  margin-top: -2.5rem;
}
.about-philosophy-section {
  position: relative;
  padding: 4rem 1rem;
}
.about-main::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  background-image: url(./library/images/content/bg-about-philosophy-sp.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 90%;
  height: 90%;
  z-index: -2;
}
.about-decoration {
  position: absolute;
}
.about-decoration img {
  width: 100%;
  height: 100%;
}
.about-decoration-1 {
  top: 0;
  left: -.75rem;
  width: 117px;
}
.about-decoration-2 {
  top: -.5rem;
  right: 0;
  width: 58px;
}
.about-decoration-3 {
  bottom: -.5rem;
  left: 0;
  width: 95px;
}
.about-decoration-4 {
  bottom: -.5rem;
  right: 0;
  width: 97.36px;
}
.about-catchphrase {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 3rem;
}
.about-philosophy {
  text-align: center;
}
.about-philosophy-title {
  font-size: 1.143rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.16rem;
  margin-bottom: 1.5rem;
}

.about-philosophy-text {
  color: var(--black);
  letter-spacing: 0.14rem;
  line-height: 2;
  margin: 0;
}
/* 教育・保育理念セクション */
.about-philosophy-goals-section {
  padding: 3rem 0;
  position: relative;
}
.about-philosophy-goals-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.about-philosophy-goals-title {
  font-weight: 700;
  color: var(--secondary03);
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}
.about-philosophy-goals-subtitle {
  font-weight: 500;
  letter-spacing: 0.14rem;
  line-height: 2;
  margin: 0;
}
.about-philosophy-goal-item {
  position: relative;
  margin-bottom: 1rem;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.about-philosophy-goal-decoration {
  width: 8.3125rem;
  height: 2.5rem;
  margin: 0 auto 2rem;
  overflow: hidden;
}
.about-philosophy-goal-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-philosophy-goal-illustration {
  width: 10.4375rem;
  height: 7.0575rem;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.about-philosophy-goal-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-philosophy-goal-text {
  font-weight: 900;
  letter-spacing: 0.14rem;
  line-height: 1.4;
  margin: 0;
  min-height: 3.65rem;
}
/* 教育・保育方針セクション */
.about-policy-section {
  width: 100%;
  padding: 3.5rem 0 2rem;
  position: relative;
}
.about-policy-title {
  font-weight: 700;
  color: var(--secondary02);
  letter-spacing: 0.2rem;
  text-align: center;
  margin-bottom: 3rem;
}
.about-policy-item {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}
.about-policy-item-1 .about-policy-image,
.about-policy-item-3 .about-policy-image {
  width: calc(100% - 2.857rem);
  height: auto;
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  object-fit: cover;
  margin-right: 2.857rem;
  display: block;
}
.about-policy-item-2 .about-policy-image {
  width: calc(100% - 2.857rem);
  height: auto;
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  object-fit: cover;
  margin-left: 2.857rem;
  display: block;
}
.about-policy-content {
  padding: 1rem 3.25rem 1rem 0;
    position: relative;
    max-width: calc(100% - 1.714rem);
    margin-left: auto;
}
.about-policy-item-2 .about-policy-content {
  max-width: calc(100% - 2.857rem);
}
.about-policy-text {
  letter-spacing: 0.07rem;
  line-height: 1.82;
  margin-bottom: 0;
}
.about-policy-item-1 .about-policy-text,
.about-policy-item-3 .about-policy-text {
  margin-left: auto;
}
.about-policy-item-2 .about-policy-text {
  margin-right: auto;
}
.about-policy-decoration {
  width: 100%;
  position: relative;
}
/* 施設紹介セクション */
.about-facilities-section {
  margin-top: 5rem;
}
.about-facilities-title {
  font-weight: 700;
  color: var(--secondary04);
  letter-spacing: 0.24rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-facilities-text {
  letter-spacing: 0.16rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2.3rem;
}
.about-section-title {
  margin-bottom: 1rem;
}
/* 園の概要テーブル */
.about-overview-section {
  padding: 6rem 0;
}
.about-overview-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary04);
  letter-spacing: 0.24rem;
}
.about-overview-table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.border-bottom-table {
  width: 100%;
  border-collapse: collapse;
}
.border-bottom-table tr {
  border-bottom: 0.0625rem solid #cfc8c0;
  display: flex;
  align-items: center;
}
.border-bottom-table th, .border-bottom-table td {
  text-align: left;
  vertical-align: top;
}
.border-bottom-table th {
  color: var(--secondary03);
  font-weight: 400;
  letter-spacing: 0.04375rem;
  line-height: 1.57;
  width: 24%;
  padding: clamp(1.5rem, 6.56vw, 1.71rem) clamp(.5rem, 1.04vw, 1.25rem) clamp(1.5rem, 6.56vw, 1.71rem) 0;
}
.recruit .border-bottom-table th {
  color: var(--primary);
}
.border-bottom-table td {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  width: 100%;
  padding: clamp(1.5rem, 6.56vw, 1.71rem) 0;
  flex: 1;
}
table.border-bottom-table td {
  border-bottom: none;
}
.border-bottom-table td.text-nowrap {
  letter-spacing: 0;
}
/*** 保育プログラムページ ***/
.program-activities {
  position: relative;
  padding: 2rem 0 3rem;
}
.program-activities-title {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.program-activities-description {
  line-height: 1.75rem;
  letter-spacing: 0.16em;
  margin-bottom: 0;
}
.program-decoration-green {
  position: absolute;
  top: -.5rem;
  right: -2rem;
  width: clamp(7.775rem, 13vw, 12.9625rem);
  transform: rotate(18deg);
}
.program-cards-wrapper {
  position: relative;
  padding: 1.5rem 0;
  border-radius: 1.875rem;
}
.program-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.64rem 1rem;
}
.program-card-img {
  width: 14.375rem;
  height: auto;
}
.program-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}
.program-card-title {
  font-size: 1.285rem;
  font-weight: 700;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 0;
}
.program-card-title-green {
  color: var(--secondary03);
}
.program-card-title-yellow {
  color: var(--secondary04);
}
.program-card-title-blue {
  color: var(--secondary02);
}
.program-card-text {
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0;
}
.program-other-activities {
  position: relative;
  padding: 3rem 0 4rem;
}
.program-other-title {
  color: var(--secondary04);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 1.7rem;
}
.program-other-img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
}
.program-decoration-blue {
  position: absolute;
  bottom: -1.75rem;
  left: -0.75rem;
  width: 5.838rem;
  z-index: 1;
}
.program-decoration-blue::before,
.program-decoration-blue::after {
  content: "";
  position: absolute;
}
.program-decoration-blue::before {
  width: 1.8rem;
  height: 3rem;
  top: 0;
  left: 0.7rem;
}
.program-decoration-blue::after {
  width: 2.4rem;
  height: 2.25rem;
  top: 1.25rem;
  left: 0.6rem;
}
.program-decoration-children {
  position: absolute;
  bottom: 5rem;
  right: 7rem;
  width: 11.7rem;
  height: 6rem;
  z-index: 1;
  opacity: 0.8;
}
.program-decoration-children img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*** 園生活・行事ページ ***/
.dayflow {
  padding: 3rem 0;
}
.dayflow-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.dayflow-tab {
  border: none;
  width: 135px;
  height: 129px;
  transition: 0.3s;
  background-color: transparent;
  appearance: none;
}
button.dayflow-tab {
  -webkit-tap-highlight-color: transparent;
}
.dayflow-tab.flow-0-2, .dayflow-tab.flow-0-2.active, .dayflow-tab.flow-3-5, .dayflow-tab.flow-3-5.active {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dayflow-tab.flow-0-2 {
  background-image: url(./library/images/content/dayflow-tab-0-2.svg);
}
.dayflow-tab.flow-0-2.active {
  background-image: url(../../../wp-content/uploads/2025/12/dayflow-tab-0-2-hover.png);
}
.dayflow-tab.flow-3-5 {
  background-image: url(./library/images/content/dayflow-tab-3-5.svg);
}
.dayflow-tab.flow-3-5.active {
  background-image: url(../../../wp-content/uploads/2025/12/dayflow-tab-3-5-hover.png);
}
.dayflow-content {
  display: none;
  position: relative;
}
.dayflow-content::before {
  content: "";
  position: absolute;
  left: .857rem;
  top: 8px;
  width: 3px;
  height: 100%;
  border-radius: 0.2rem;
  background-image: repeating-linear-gradient(180deg, var(--timeline-gray), var(--timeline-gray) 8px, transparent 8px, transparent 16px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 3px 100%;
}
.dayflow-content.is-active {
  display: flex;
  flex-direction: column;
  gap: 2.285rem;
}
.dayflow-row {
  display: flex;
  flex-direction: column;
  gap: .57rem;
  margin-left: 3rem;
  position: relative;
}
.dayflow-row-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dayflow-info {
  display: flex;
  flex-direction: column;
  gap: .93rem;
  flex: 1;
}
#flow-0-2 .dayflow-row .dayflow-time, #flow-0-2 .dayflow-row .dayflow-label {
  color: var(--secondary03);
}
#flow-0-2 .dayflow-row .dayflow-line {
  background-color: var(--secondary03);
}
#flow-3-5 .dayflow-row .dayflow-time, #flow-3-5 .dayflow-row .dayflow-label {
  color: var(--secondary02);
}
#flow-3-5 .dayflow-row .dayflow-line {
  background-color: var(--secondary02);
}
.dayflow-row-ttl {
  position: relative;
}
.dayflow-row-ttl::before, .dayflow-row-ttl::after {
  content: "";
  position: absolute;
}
.dayflow-row-ttl::before {
  left: -2.92rem;
  top: .5rem;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.714rem;
  height: 1.714rem;
}
#flow-0-2 .dayflow-row-ttl::before {
  background-image: url(./library/images/content/dot-green.svg);
}
#flow-3-5 .dayflow-row-ttl::before {
  background-image: url(./library/images/content/dot-cyan.svg);
}
.dayflow-row-ttl::after {
  top: 1.25rem;
  left: -2.14rem;
  width: 1.714rem;
  height: 3px;
  background-color: var(--secondary03);
}
#flow-0-2 .dayflow-row-ttl::after {
  background-color: var(--secondary03);
}
#flow-3-5 .dayflow-row-ttl::after {
  background-color: var(--secondary02);
}
.dayflow-time {
  font-size: clamp(1.714rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: .228rem;
}
.dayflow-label {
  font-size: 1.143rem;
  font-weight: 700;
  margin-bottom: 0;
}
.dayflow-text {
  line-height: 1.5;
  letter-spacing: .06em;
  font-weight: 400;
}
.dayflow-img-wrap {
  width: 9.64rem;
}
.dayflow-img-wrap img.dayflow-img {
  width: 100%;
  height: auto;
  border-radius: .714rem;
  object-fit: cover;
  aspect-ratio: 135 / 124;
}
.clear-box {
  min-height: 3rem;
}
.annual-events-section {
  position: relative;
  padding: 3rem 0 6rem;
}
.event-decoration {
  position: absolute;
  top: 0;
  right: 25%;
  width: 5.5rem;
  height: 3.285rem;
}
.title-mb {
  margin-bottom: 1.72rem;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-left: 1.143rem;
  padding-right: 1.143rem;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: .75rem 0;
}
.event-month {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.month-badge {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.month-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.month-badge.month-red {
  background-color: var(--primary);
}
.month-badge.month-yellow {
  background-color: var(--secondary04);
}
.month-number {
  color: var(--bs-white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.month-label {
  color: var(--bs-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-right: -.25rem;
}
.event-items {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.event-items li {
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  position: relative;
  padding-left: 1.25rem;
}
.event-items li + li {
  margin-top:  0.5rem;
}
.event-items.no-dot {
  padding-left: 0;
}
.event-items li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.event-items.no-dot li::before {
  content: "";
}
/*** 入園案内 ***/
.admission-requirements {
  padding: 3rem 0;
}
.admission-title {
  text-align: center;
  color: var(--secondary04);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  margin-bottom: clamp(0rem, 2.78vw, 2.5rem);
}
.border-bottom-table {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.22vw, 2rem);
}
.border-bottom-table.primary04 th {
  color: var(--secondary04);
}
.border-bottom-table.primary04 + .admission-title,
.admission-title {
  color: var(--secondary04);
}
.table-row {
  display: flex;
  gap: 1rem;
  padding-bottom: clamp(1.5rem, 2.22vw, 2rem);
  border-bottom: 1px solid #cfc8c0;
}
.table-row:last-child {
  border-bottom: none;
}
.table-label {
  flex-shrink: 0;
  width: 3.69rem;
  color: var(--secondary04);
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.table-content {
  flex: 1;
  color: var(--black);
  font-size: 1.143rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.small-text {
  font-size: 1rem;
  line-height: 1.71;
}
.admission-visit {
  padding: 0 0 6rem;
}
.fs-md {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.16em;
}
.pc-break {
  display: none;
}
/*** 採用情報ページ ***/
.recruit-header {
  padding: 2rem 0;
}
.recruit-header-title {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-bottom: 3rem;
}
.recruit-header-text {
  line-height: 2;
  text-align: center;
  margin-bottom: 3rem;
}
.recruit-features {
  padding: 3rem 0 2rem;
  position: relative;
}
.recruit-deco-top {
  width: 5.5rem;
  position: absolute;
  top: -4rem;
  right: 1.5rem;
}
.recruit-deco-bottom {
  width: 7.25rem;
  position: absolute;
  bottom: -3rem;
  left: 1rem;
}
.recruit-feature-card {
  margin-bottom: 2.75rem;
  display: flex;
  flex-direction: column;
}
.recruit-feature-card.feature-blue {
  align-items: flex-end;
}
.recruit-feature-card.feature-blue .recruit-feature-img {
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}
.recruit-feature-card.feature-green {
  align-items: flex-start;
}
.recruit-feature-card.feature-green .recruit-feature-img {
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
}
.recruit-feature-card.feature-yellow {
  align-items: flex-end;
}
.recruit-feature-card.feature-yellow .recruit-feature-img {
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}
.recruit-feature-img {
  width: 100%;
  max-width: 22rem;
  height: 11.75rem;
  object-fit: cover;
  margin-bottom: 1rem;
}
.recruit-feature-title {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.feature-blue .recruit-feature-title {
  color: var(--secondary02);
}
.feature-green .recruit-feature-title {
  color: var(--secondary03);
}
.feature-yellow .recruit-feature-title {
  color: var(--secondary04);
}
.recruit-feature-text {
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.82;
  letter-spacing: 0.07em;
  max-width: 20.5625rem;
  margin-bottom: 1rem;
}
.recruit-feature-decoration {
  width: 20.5625rem;
  height: 0.4375rem;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}
.recruit-requirements {
  padding: 6rem 0 3rem;
}
.section-title {
  color: var(--primary);
  font-size: clamp(1.25rem, 5.1vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
}
.recruit-flow {
  padding: 3rem 0;
}
.recruit-flow-wrapper {
  margin-top: 2rem;
}
.recruit-flow-swiper {
  padding-bottom: 2rem !important;
}
.recruit-flow-box {
  border-radius: 1.25rem;
  text-align: center;
}
.recruit-flow-icon {
  width: 11.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.recruit-flow-icon img {
  width: 100%;
  height: auto;
}
.recruit-flow-step-title {
  color: var(--primary);
  font-size: clamp(1.428rem, 1.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}
.recruit-flow-step-text {
  line-height: 1.82;
  letter-spacing: 0.16em;
}
.recruit-flow-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.recruit-cta {
  padding: 3rem 0 6rem;
}
.recruit-cta-text {
  line-height: 2;
  letter-spacing: 0.16em;
  margin-bottom: 2rem;
}
.recruit-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--bs-white);
  font-size: 1.143rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.875rem 2.5rem;
  border-radius: 31.3125rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 20rem;
  margin-left: 1.143rem;
  margin-right: 1.143rem;
}
.recruit .recruit-cta-btn, .contact .recruit-cta-btn {
  justify-content: flex-start;
  padding: 0.875rem 1rem;
  margin-left: .75rem;
  margin-right: .75rem;
}
.recruit-cta-btn::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><path fill="%23ffffff" fill-opacity=".5" d="M0,6.5c0,.2,0,.4.2.5s.3.2.5.2h8.9v-1.4H.7c-.4,0-.7.3-.7.7Z"/><path fill="%23ffffff" d="M9.6.7c0-.1,0-.3.1-.4,0-.1.2-.2.3-.3.1,0,.3,0,.4,0,.1,0,.3,0,.4.2l5.8,5.8c.1.1.2.3.2.5s0,.4-.2.5l-5.8,5.7c-.1.1-.2.2-.4.2-.1,0-.3,0-.4,0-.1,0-.2-.1-.3-.3,0-.1-.1-.3-.1-.4V.7Z"/></svg>');
  width: 23px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  transition: all .3s;
}
.recruit .recruit-cta-btn::after, .contact .recruit-cta-btn::after {
  right: 0.1rem;
}
.recruit-cta-btn:hover {
  background-color: var(--primary-hover);
  color: var(--bs-white);
}
.recruit-cta-arrow {
  font-size: 1.25rem;
}
@media (min-width: 393px) {
  .recruit-header-text {
    letter-spacing: 0.16em;
  }
  .recruit-cta-btn, .recruit .recruit-cta-btn, .contact .recruit-cta-btn {
    max-width: 22.35rem;
  }
  .recruit .recruit-cta-btn, .contact .recruit-cta-btn {
    padding: 0.875rem 1.5rem;
    margin-left: 1.143rem;
    margin-right: 1.143rem;
  }
  .recruit .recruit-cta-btn::after, .contact .recruit-cta-btn::after {
    right: 1rem;
  }
}
@media (min-width: 576px) {
  .about-policy-content {
    max-width: 100%;
  }
  .about-policy-item-1 .recruit-feature-title, .about-policy-item-1 .about-policy-text, .about-policy-item-3 .recruit-feature-title, .about-policy-item-3 .about-policy-text {
    margin-left: 2.85rem;
  }
  .about-policy-item-2 .recruit-feature-title {
    max-width: 100%;
  }
  .about-policy-item-2 .about-policy-text {
    margin-right: 0;
    max-width: 100%;
  }
  .about-policy-text {
    max-width: calc(100% - 2.857rem);
  }
  .about-policy-decoration {
    width: calc(100% - 2rem);
    height: auto;
    margin-left: auto;
  }
  .about-policy-item-2 .about-policy-decoration {
    margin-left: 0;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .about-main::after {
    background-image: url(./library/images/content/bg-about-philosophy.svg);
    width: 110%;
    height: 110%;
  }
  .about-philosophy-section {
    padding: 4rem 1rem 6rem;
  }
  .about-philosophy-goals-section {
    padding: 3rem 0 6rem;
  }
  .about-catchphrase {
    letter-spacing: 0.28rem;
  }
  .about-philosophy-title {
    font-size: 1.25rem;
    letter-spacing: 0.2rem;
  }
  .about-philosophy-text {
    font-size: 1rem;
    letter-spacing: 0.16rem;
  }
  .about-policy-section {
        padding: 3.5rem 0 6rem;
  }
  .about-policy-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 100vw;
    gap: 1rem;
  }
  .about-policy-item-1 .recruit-feature-title, .about-policy-item-1 .about-policy-text, .about-policy-item-3 .recruit-feature-title, .about-policy-item-3 .about-policy-text {
    margin-left: 0;
  }
  .about-policy-item.about-policy-item-3 {
    margin-bottom: 0;
  }
  .about-policy-item-1,
  .about-policy-item-3 {
    flex-direction: row;
  }
  .about-policy-item-1 .about-policy-image,
  .about-policy-item-3 .about-policy-image {
    width: 31.75rem;
    margin-right: 0;
  }
  .about-policy-item-2 {
    flex-direction: row-reverse;
  }
  .about-policy-item-2 .about-policy-image {
    width: 31.75rem;
    margin-left: 0;
  }
  .about-policy-content {
    padding: 1rem 0;
    margin-right: auto;
  }
  .about-policy-text {
    font-size: 1rem;
    letter-spacing: 0.14rem;
  }
  .recruit .about-policy-item-2 .recruit-feature-title,.about-policy-item-2 .about-policy-text {
    max-width: 100%;
    margin-left: 4.857rem;
  }
  .about-policy-decoration {
    max-width: calc(100% - 1rem);
    height: auto;
    margin-top: 1rem;
    margin-right: auto;
    margin-left: 0;
  }
  .about-policy-item-2 .about-policy-decoration {
    margin-left: 2rem;
    max-width: 100%;
  }
  .about-facilities-section {
    margin-top: 8rem;
  }
  .about-facilities-title {
    letter-spacing: 0.32rem;
    margin-bottom: 3rem;
  }
  .about-facilities-text {
    letter-spacing: 0.2rem;
    line-height: 2;
    max-width: 61vw;
    margin-left: auto;
    margin-right: auto;
  }
  .about-decoration-1 {
    top: 0;
    left: -1.5rem;
    width: clamp(16.5vw, 5vw, 21.1875rem);
  }
  .about-decoration-2 {
    top: 1rem;
    right: 0;
    width: 14.5vw;
  }
  .about-decoration-3 {
    bottom: 0;
    left: -2rem;
    width: 16.5vw;
    }
  .about-decoration-4 {
    bottom: 0.5rem;
    right: -1rem;
    width: 16.5vw;
  }
  .about-philosophy-goals-title {
    font-size: 1.5rem;
    letter-spacing: 0.24rem;
  }
  .about-philosophy-goals-subtitle {
    letter-spacing: 0.16rem;
  }
  .about-philosophy-goal-decoration {
    width: 12.625rem;
    height: 3.8125rem;
  }
  .about-philosophy-goal-illustration {
    width: clamp(12rem, 15vw, 15.125rem);
    height: clamp(7.55rem, 15vw, 9.25rem);
  }
  .about-philosophy-goal-text {
    letter-spacing: 0.16rem;
  }
  .about-overview-title {
    font-size: 2rem;
    letter-spacing: 0.32rem;
  }
  .border-bottom-table th {
    font-size: 1rem;
    letter-spacing: 0.04375rem;
    padding: clamp(1.5rem, 1.56vw, 1.875rem) clamp(.85rem, 1.04vw, 1.25rem) clamp(1.5rem, 1.56vw, 1.875rem) 0;
  }
  .border-bottom-table td {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    padding: clamp(1.5rem, 1.56vw, 1.875rem) 0;
  }
  .program-activities {
    padding: 3rem 0 4rem;
  }
  .program-activities-title {
    margin-bottom: 2rem;
  }
  .program-activities-description {
    line-height: 2rem;
  }
  .program-cards-wrapper {
    padding: 4rem 0;
  }
  .program-card {
    flex-direction: row;
    justify-content: space-evenly;
    gap: 3rem;
    padding: 0 4rem;
  }
  .program-card-content {
    align-items: flex-start;
    gap: 1.25rem;
    max-width: 29.375rem;
    flex: 1;
  }
  .program-card-title {
    font-size: 1.5rem;
    line-height: 2.5rem;
    text-align: left;
  }
  .program-card-text {
    font-size: 1rem;
    line-height: 2rem;
    text-align: left;
  }
  .program-other-activities {
    padding: 4rem 0 8rem;
  }
  .program-other-title {
    margin-bottom: 2.5rem;
  }
  .program-other-img {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  }
  .event-decoration {
    top: -0.5rem;
    right: 32%;
    width: 11rem;
    height: 6.4375rem;
  }
  .schedule-details {
    gap: 1.5rem;
  }

  .schedule-img {
    width: clamp(8.4375rem, 14.06vw, 12rem);
    height: clamp(7.75rem, 12.92vw, 11rem);
  }
  /*** 入園案内 ***/
  .annual-events-section {
    padding: 3rem 0 8rem;
  }
  .table-content {
    font-size: 1rem;
  }
  .table-label {
    font-size: 1rem;
    line-height: 2;
  }
  .fs-md {
    font-size: clamp(1rem, 1.39vw, 1.25rem);
  }
  .recruit-cta-btn {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    padding: 1.2rem 2.5rem;
    max-width: 26rem;
  }
  .recruit-cta-btn::after {
    width: 23px;
    height: 20px;
  }
  .recruit-header {
    padding: 3rem 0 6rem;
  }
  .recruit-features {
    padding: 6rem 0 4rem;
  }
  .recruit-requirements {
    padding: 8rem 0 3rem;
  }
  .recruit-flow {
    padding: 4rem 0;
  }
  .recruit-cta {
    padding: 4rem 0 8rem;
  }
  .recruit-deco-top {
    width: 8.5rem;
    right: 4.5rem;
  }
  .recruit-deco-bottom {
    width: 12rem;
    left: 2rem;
    bottom: -5rem;
  }
}
@media (min-width: 992px) {
  .about-policy-content {
    margin-left: 0;
  }
  .about-policy-item-1 .recruit-feature-title, .about-policy-item-1 .about-policy-text, .about-policy-item-3 .recruit-feature-title, .about-policy-item-3 .about-policy-text {
    margin-left: 0.85rem;
  }
  .about-policy-item-2 .about-policy-content {
    margin-right: .85rem;
    margin-left: auto;
  }
  .about-policy-item {
    gap: 3rem;
  }
  .about-overview-section {
    padding: 10rem 0;
  }
  .program-cards-wrapper {
    width: calc(100% - clamp(5rem, 9.5vw, 10rem));
    margin-left: auto;
    margin-right: auto;
  }
  /*** 園生活・行事ページ ***/
  .title-mb {
    margin-bottom: 2.5rem;
  }
  .dayflow {
    padding: 3rem 0 6rem;
  }
  .dayflow-tabs {
    gap: 8rem;
  }
  .dayflow-tab {
    width: 11.718rem;
    height: 11.109rem;
  }
  .dayflow-content {
    margin-top: 5rem;
  }
  .dayflow-content::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .dayflow-row {
    display: grid;
    grid-template-columns: 1fr 8.75rem 1fr;
    grid-template-rows: 5.75rem auto;
    align-items: start;
    gap: 0;
    margin-left: 0;
    margin-bottom: 0;
    position: relative;
  }
  .dayflow-row:last-child {
    margin-bottom: 0;
  }
  .dayflow-row.right .dayflow-time {
    padding-left: 3.5vw;
  }
  .dayflow-row-ttl::before {
    top: 2.25rem;
    width: 3rem;
    height: 2.8125rem;
    left: -5.75rem;
  }
  .dayflow-row.right .dayflow-row-ttl::before {
    left: inherit;
    right: -5.75rem;
  }
  .dayflow-row-ttl::after {
    top: 3.5rem;
    left: -3.5rem;
    width: calc(100% + 3.5rem);
  }
  .dayflow-row.right .dayflow-row-ttl::after {
    left: inherit;
    right: -3.5rem;
  }
  .dayflow-label {
    font-size: clamp(1.143rem, 1.8vw, 1.5rem);
  }
  .dayflow-info {
    gap: 1.5rem;
  }
  .dayflow-text {
    line-height: 2;
  }
  .dayflow-row.left .dayflow-img-wrap {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }
  .dayflow-row.left .dayflow-row-ttl {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
  }
  .dayflow-row.left .dayflow-info {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    padding-right: 3.5vw;
  }
  .dayflow-row.right .dayflow-row-ttl {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }
  .dayflow-row.right .dayflow-info {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    padding-left: 3.5vw;
  }
  .dayflow-row.right .dayflow-img-wrap {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: start;
  }
  .dayflow-img-wrap {
    width: 100%;
  }
  .dayflow-row-content {
    display: contents;
  }
  .dayflow-content.is-active {
    gap: 6rem;
  }
  .dayflow-img-wrap img.dayflow-img {
    width: 33.125rem;
    border-radius: 1.25rem;
    object-fit: cover;
    aspect-ratio: 135 / 74;
  }
  .clear-box {
    display: none;
  }
  .admission-requirements {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  .admission-visit {
    padding: 2rem 0 8rem;
  }
  /*** 採用情報ページ ***/
  .recruit-header-text {
    margin-bottom: 6rem;
  }
  .recruit-deco-bottom {
    bottom: -6rem;
  }
  .recruit-flow-swiper {
    padding-bottom: 0 !important;
  }
  .recruit-flow .swiper-slide {
    width: calc(100% / 3 - 10px);
  }
  .recruit-flow .swiper-slide::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    background-image: url(./library/images/icon/next-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 3rem;
    height: 2.3rem;
    z-index: 1;
  }
  .recruit-flow .swiper-slide:last-child:after {
    content: none;
  }
  .swiper-pagination, .recruit-flow .swiper-button-prev, .recruit-flow .swiper-button-next {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    gap: 1.75rem;
  }
  .events-grid .event-month:nth-child(-n+6) {
    grid-column: 1;
  }
  .events-grid .event-month:nth-child(n+7) {
    grid-column: 2;
  }
  .month-badge.month-red.chenge-coler-2col {
    background-color: var(--secondary04);
  }
  .month-badge.month-yellow.chenge-coler-2col {
    background-color: var(--primary);
  }
}
@media (min-width: 1200px) {
  .about-main {
    padding-top: 3rem;
    padding-bottom: 0;
    margin-top: 4.5rem;
  }
  .about-main::after {
    width: 100%;
    height: 100%;
  }
  .about-philosophy-goals-section {
    padding: 6rem 0 8rem;
  }
  .about-section-title {
    margin-bottom: 2.5rem;
  }
  .about-policy-item-1 .about-policy-image,
  .about-policy-item-3 .about-policy-image {
    width: 42.08vw;
    height: 22.43vw;
    border-radius: 0;
    border-top-right-radius: 1.39vw;
    border-bottom-right-radius: 1.39vw;
  }
  .about-policy-content {
    max-width: 60%;
  }
  .about-policy-item-1 .about-policy-content,
  .about-policy-item-3 .about-policy-content {
    text-align: left;
  }
  .about-policy-item-1 .recruit-feature-title, .about-policy-item-1 .about-policy-text, .about-policy-item-3 .recruit-feature-title, .about-policy-item-3 .about-policy-text {
    margin-left: 0;
  }
  .about-policy-item-1 .about-policy-text,
  .about-policy-item-3 .about-policy-text {
    margin-left: 0;
    padding: 2rem 0 2rem 2rem;
    padding-right: 5.476vw;
  }
  .about-policy-item-1 .about-policy-decoration,
  .about-policy-item-3 .about-policy-decoration {
    margin-left: 0;
  }
  .about-policy-item-2 .about-policy-image {
    width: 42.08vw;
    height: 22.43vw;
    border-radius: 0;
    border-top-left-radius: 1.39vw;
    border-bottom-left-radius: 1.39vw;
    margin-right: 0;
  }
  .about-policy-item-2 .about-policy-content {
    padding-left: 8.333vw;
    text-align: left;
  }
  .about-policy-item-2 .about-policy-text {
    margin-right: 0;
    padding: 2rem 2rem 2rem 0;
  }
  .about-facilities-text {
    margin-bottom: 3.5rem;
  }
  .events-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.8fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas:
      "m1 m2 m3"
      "m4 m5 m6"
      "m7 m8 m9"
      "m10 m11 m12";
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .event-month:nth-child(-n+4) {
    grid-column: 1;
  }
  .event-month:nth-child(n+5):nth-child(-n+8) {
    grid-column: 2;
  }
  .event-month:nth-child(n+9) {
    grid-column: 3;
  }
  .event-month:nth-child(1)  { grid-area: m1; }
  .event-month:nth-child(5)  { grid-area: m2; }
  .event-month:nth-child(9)  { grid-area: m3; }
  .event-month:nth-child(2)  { grid-area: m4; }
  .event-month:nth-child(6)  { grid-area: m5; }
  .event-month:nth-child(10) { grid-area: m6; }
  .event-month:nth-child(3)  { grid-area: m7; }
  .event-month:nth-child(7)  { grid-area: m8; }
  .event-month:nth-child(11) { grid-area: m9; }
  .event-month:nth-child(4)  { grid-area: m10; }
  .event-month:nth-child(8)  { grid-area: m11; }
  .event-month:nth-child(12) { grid-area: m12; }
  .month-badge.month-red.chenge-coler-3col {
    background-color: var(--secondary04);
  }
  .month-badge.month-yellow.chenge-coler-3col {
    background-color: var(--primary);
  }
  .program-card-img {
    width: 22.5rem;
    flex-shrink: 0;
  }
  .program-decoration-green {
    top: -.75rem;
  }
  .recruit-feature-title {
    padding-left: 2rem;
    margin-bottom: 0;
  }
  .about-policy-item-2 .recruit-feature-title {
    padding-left: 0;
    padding-right: 2rem;
  }
  .recruit-cta-btn {
    max-width: 33.625rem;
  }
 }
@media (min-width: 1400px) {
  .about-main::after {
    width: 110%;
    height: 110%;
  }
  .about-catchphrase {
    letter-spacing: 0.32rem;
  }
  .about-philosophy-title {
    font-size: 1.5rem;
    letter-spacing: 0.24rem;
  }
  .about-philosophy-text {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    letter-spacing: 0.2rem;
    line-height: 2;
    max-width: 72.86vw;
    margin-left: auto;
    margin-right: auto;
  }
  .about-decoration-1 {
    top: -7rem;
    left: 0.5vw;
    width: 21.1875rem;
  }
  .about-decoration-2 {
    top: -3rem;
    right: 1.5vw;
    width: 13.073rem;
  }
  .about-decoration-3 {
    bottom: -4rem;
    left: -1vw;
    width: 16.5rem;
  }
  .about-decoration-4 {
    bottom: -1.5rem;
    right: -.5vw;
    width: 14.7725vw;
  }
  .about-philosophy-goals-section {
    padding: 10rem 0;
  }
  .about-philosophy-goals-header {
    margin-bottom: 4rem;
  }
  .about-philosophy-goal-decoration {
    width: 11.5vw;
    height: 3.5vw;
  }
  .about-decoration-1 {
    top: -4rem;
    left: 2.5vw;
    height: auto;
  }
  .about-policy-title {
    letter-spacing: 0.36vw;
    margin-bottom: 4rem;
  }
  .about-policy-text {
    letter-spacing: 0.12rem;
  }
  .about-policy-decoration {
    width: 45.35vw;
    height: 1.18vw;
  }
  .program-activities {
    padding: 5rem 0 6rem;
  }
  .program-activities-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  .program-activities-description {
    line-height: 2.5rem;
  }
  .program-other-title {
    margin-bottom: 4.8rem;
  }
  .program-other-activities {
    padding: 5rem 0 8rem;
  }
  .program-decoration-children {
    bottom: 8rem;
    right: 10rem;
    width: 21.4rem;
    height: 11.2rem;
  }
  .daily-schedule-section {
    padding: 4rem 0;
  }
  .annual-events-section {
    padding: 4rem 0 8rem;
  }
  .section-title {
    font-size: clamp(1.5rem, 1.56vw, 1.875rem);
  }
  /*** 園生活・行事ページ ***/
  .dayflow-tabs {
    gap: 10rem;
  }
  .dayflow-tab {
    width: 15.625rem;
    height: 14.8125rem;
  }
  .dayflow-img-wrap img.dayflow-img {
    height: 18.25rem;
    aspect-ratio: 530 / 292;
  }
  .month-badge {
    width: clamp(3.75rem, 6.25vw, 6rem);
    height: clamp(3.75rem, 6.25vw, 6rem);
  }
  .month-number {
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  }
  .month-label {
    font-size: clamp(1rem, 1.67vw, 1.6rem);
  }
  .border-bottom-table {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    gap: 2rem;
  }
  .program-card {
    justify-content: space-between;
    padding: 0 4rem;
  }
  .program-card-content {
    gap: 2.5rem;
    max-width: 100%;
  }
  .table-row {
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .table-label {
    width: 10.25rem;
  }
  .recruit-header {
    padding: 5rem 0;
  }
  .recruit-header-title {
    font-size: clamp(2rem, 2.22vw, 2rem);
    line-height: 1.4;
    margin-bottom: 2.5rem;
  }
  .recruit-features {
    padding: 6rem 0;
  }
  .recruit-feature-card {
    align-items: center !important;
    margin-bottom: 0;
  }
  .recruit-feature-img {
    max-width: 100%;
    height: clamp(11.75rem, 13.06vw, 14.688rem);
    border-radius: 1.25rem !important;
  }
  .recruit-feature-title {
    max-width: 100%;
  }
  .recruit-feature-text {
    font-size: clamp(0.875rem, 1.11vw, 1.25rem);
    line-height: 1.82;
    text-align: center;
    max-width: 100%;
  }
  .recruit-feature-decoration {
    width: 100%;
    max-width: 20.5625rem;
    margin: 0 auto;
  }
  .recruit-requirements {
    padding: 10rem 0 3rem;
  }
  .recruit-flow {
    padding: 6rem 0;
  }
  .recruit-flow-wrapper {
    margin-top: 3rem;
  }
  .recruit-flow-box {
    padding: 0 1.5rem;
  }
  .recruit-flow-icon {
    width: clamp(11.75rem, 13.75vw, 15.438rem);
  }
  .recruit-flow-icon img {
    width: clamp(5.75rem, 10.14vw, 11.396rem);
  }
  .recruit-flow-step-title {
    font-size: clamp(1.25rem, 1.67vw, 1.875rem);
    margin-bottom: 1.5rem;
  }
  .recruit-flow-step-text {
    font-size: 1rem;
    line-height: 1.82;
  }
  .recruit-cta {
    padding: 6rem 0;
  }
  .recruit-cta-text {
    font-size: clamp(1.25rem, 1.39vw, 1.25rem);
    margin-bottom: 3rem;
  }
  .recruit-cta-btn::after {
    width: 2rem;
    height: 1.25rem;
  }
}
@media (min-width: 1441px) {
  .border-bottom-table th {
    width: 24%;
  }
  .program-card-img {
    width: clamp(22.5rem, 18.75vw, 27rem);
  }
  .program-other-img {
    height: clamp(14.25rem, 11.88vw, 17.1rem);
  }
  .recruit-feature-img {
    height: clamp(14.688rem, 13.06vw, 19.584rem);
  }
  .recruit-flow-icon {
    width: clamp(15.438rem, 13.75vw, 20.584rem);
  }
  .recruit-flow-icon img {
    width: clamp(11.396rem, 10.14vw, 15.195rem);
  }
}
@media (min-width: 1600px) {
  .about-policy-text {
    max-width: 46vw;
    width: 40.82rem;
  }
 }
/* ========================================
   投稿用CSS
======================================== */
.wp-block-search__inside-wrapper {
  display: flex;
}
.news-archive-header {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.news-archive-title {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.news-archive-list {
  padding-top: 1rem;
  padding-bottom: 6rem;
}
.news-archive-item:first-child {
  padding-top: 0;
}
.news-archive-item + .news-archive-item {
  padding-top: 1rem;
}
.news-archive-link {
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid #cfc8c0;
  padding-bottom: 1rem;
}
.news-archive-link:hover {
  opacity: 0.7;
}
.news-archive-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.news-archive-date {
  color: var(--primary);
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.news-archive-text {
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.news-archive-not-found {
  padding: 3rem 0;
  text-align: center;
}
.news-archive-not-found h2 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.news-archive-not-found p {
  color: var(--black);
  font-size: 1rem;
}
@media (min-width: 768px) {
  .related-box {
    padding-bottom: 6rem;
  }
  .news-archive-header {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .news-archive-title {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }
  .news-archive-list {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
  .news-archive-content {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .news-archive-date {
    min-width: 10.25rem;
    flex-shrink: 0;
  }
  .news-archive-text {
    flex: 1;
  }
}

@media (min-width: 1400px) {
  .news-archive-header {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .news-archive-title {
    font-size: 2rem;
    letter-spacing: 0.16em;
    line-height: 1.4;
  }
  .news-archive-list {
    padding-top: 3.125rem;
    padding-bottom: 8rem;
  }
  .news-archive-item {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .news-archive-item + .news-archive-item {
    padding-top: 2rem;
  }
  .news-archive-link {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1441px) {
  .news-archive-title {
    font-size: clamp(2rem, 2.22vw, 3.2rem);
    letter-spacing: clamp(0.16em, 0.35vw, 0.512em);
  }

  .news-archive-date,
  .news-archive-text {
    font-size: clamp(1rem, 1.11vw, 1.6rem);
  }
}
/* ========================================
   フォーム用CSS
======================================== */
.mb-intro {
  margin-bottom: 1.72rem;
}
.contact-intro {
  margin-bottom: 3.4285rem;
}
.recruit-cta-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3.4285rem;
}
.contact-recruit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--primary);
  color: var(--bs-white);
  padding: 0.875rem 2.5rem;
  border-radius: 31.3125rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.3s;
  min-height: 2.75rem;
}
.contact-recruit-btn:hover {
  background-color: var(--primary-hover);
  color: var(--bs-white);
}
.contact-recruit-arrow {
  width: 1.4375rem;
  height: 1.4375rem;
  transform: rotate(90deg);
}
.contact-form-title {
  font-size: clamp(1.428rem, 1.46vw, 1.5rem);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 2;
  margin-bottom: 2rem;
}
.contact-form-table {
  width: 100%;
  margin-bottom: 2rem;
}
table.contact-form-table tr, table.contact-form-table td {
  border-bottom: none;
}
.contact-form-table th {
  padding: 1rem 0 0;
  vertical-align: top;
  color: var(--secondary02);
  font-size: clamp(14px, 4.5vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.contact-form-table td {
  padding: 1rem 0;
  align-items: center;
}
.contact-label-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.contact-required, .contact-optional {
  display: inline-block;
  padding: 0.5rem 1.57rem;
  border-radius: 1.3125rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  width: 5.75rem;
  text-align: center;
}
.contact-required {
  background-color: var(--secondary02);
  color: var(--bs-white);
}
.contact-optional {
  background-color: #d9d9d9;
  color: #707070;
}
.contact-form-table input[type="text"],
.contact-form-table input[type="email"],
.contact-form-table input[type="tel"],
.contact-form-table select,
.contact-form-table textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--bs-white);
  border: none;
  font-size: 1rem;
  color: var(--black);
}
.contact-form-table .mwform-tel-field input[type="text"] {
  display: inline-block;
  width: auto;
}
.contact-form-table input::placeholder,
.contact-form-table textarea::placeholder {
  color: #d9d9d9;
}
.contact-form-table textarea {
  min-height: 9.6875rem;
  resize: vertical;
}
select.is-hide-first option:first-child {
  display: none;
}
.contact-date-wrapper select {
  flex: 1;
  background-color: var(--bs-white);
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 8px;
  padding-right: 2rem;
  appearance: none;
  width: auto;
}
.contact-radio-wrapper {
  display: flex;
  gap: 1.5rem;
}
.mwform-checkbox-field label, .mwform-radio-field label {
  display: flex;
  align-items: center;
}
.contact-radio-wrapper.sp-column {
  flex-direction: column;
  gap: .5rem;
  align-items: flex-start;
  padding-left: 1.64rem;
}
.mw_wp_form .contact-radio-wrapper.sp-column .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.contact-form-table input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.75rem;
  accent-color: var(--secondary02);
  border: 1px solid var(--secondary02);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.contact-form-table input[type="radio"]:checked {
  background-color: var(--bs-white);
}
.contact-form-table input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--secondary02);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.mw_wp_form_confirm .mwform-radio-field label, .mw_wp_form_confirm .contact-radio-wrapper.sp-column {
  padding-left: 0;
}
.mwform-radio-field-text {
  color: var(--brown);
}
.contact-privacy-wrapper {
  margin-bottom: 1.5rem;
}
.contact-privacy-scroll {
  max-height: 10.5rem;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  background-color: var(--bs-white);
  border: 0.0625rem solid var(--black);
  border-radius: 0.3125rem;
  letter-spacing: .02rem;
}
.contact-privacy-scroll h3 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-privacy-scroll h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.contact-privacy-scroll p {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.contact-privacy-check {
  margin-bottom: 2rem;
  text-align: center;
}
.contact-privacy-check .mwform-checkbox-field {
  display: inline-block;
}
.contact-privacy-check input[type="checkbox"] {
  width: 0.8125rem;
  height: 0.8125rem;
  margin-right: 0.75rem;
  accent-color: var(--secondary02);
}
.contact-privacy-check label {
  color: var(--secondary02);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.29;
  letter-spacing: 0.05em;
}
.contact-submit-wrapper {
  text-align: center;
}
.contact-submit-btn,
.contact-back-btn {
  display: inline-block;
  padding: 0.8125rem 2rem;
  border-radius: 0.3125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  min-width: 21.5625rem;
}
.contact-submit-btn {
  background-color: var(--secondary02);
  color: var(--bs-white);
}
.contact-submit-btn:hover {
  opacity: 0.8;
}
.contact-back-submit-wrapper {
  display: none;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.contact-back-btn {
  background-color: #e0e0e0;
  color: var(--black);
}
.contact-back-btn:hover {
  opacity: 0.8;
}
.entry-form .contact-form-table th, .entry-form .contact-privacy-check label {
  color: var(--primary);
}
.entry-form .contact-form-table .contact-required, .entry-form .contact-submit-btn {
  background-color: var(--primary);
}
.entry-form .contact-form-table select {
  background-image: url(./library/images/material/select-arrow-recruit.svg);
  background-size: 14px;
}
.entry-form .contact-form-table input[type="radio"] {
  accent-color: var(--primary);
  border: 1px solid var(--primary);
}
.entry-form .contact-form-table input[type="radio"]:checked::after {
  background-color: var(--primary);
}
.entry-form .contact-privacy-check input[type="checkbox"] {
  accent-color: var(--primary);
}
.mw_wp_form .error {
  margin-top: .25rem;
  margin-bottom: .5rem;
}
.contact-date-wrapper select {
  color: #222;
}
.contact-date-wrapper select.is-placeholder {
  color: #bdbdbd;
}
.contact-date-wrapper select option {
  color: #222;
}
.contact-date-wrapper select option[value=""] {
  color: #bdbdbd;
}
@media (min-width: 480px) {
  .contact-required, .contact-optional {
    padding: 0.4375rem 1.375rem;
    width: 5.14rem;
  }
  .contact-form-table th {
    font-size: clamp(16px, 1.46vw, 1rem);
  }
}
@media (min-width: 768px) {
  .mb-intro {
    margin-bottom: 3rem;
  }
  .recruit .recruit-cta-btn, .contact .recruit-cta-btn {
    justify-content: center;
    padding: 1.2rem 2.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 33.625rem;
  }
  table.sp-block-table.contact-form-table th, table.sp-block-table.contact-form-table td {
    display: block;
    width: 100%;
  }
  .recruit-cta-btn-wrapper, .contact-intro {
    margin-bottom: 4rem;
  }
  .contact-radio-wrapper {
    flex-direction: row;
    gap: 2rem;
  }
  .contact-privacy-scroll p {
    line-height: 2;
  }
}
@media (min-width: 992px) {
  table.sp-block-table.contact-form-table th, table.sp-block-table.contact-form-table td {
    display: table-cell;
    vertical-align: middle;
  }
  table.sp-block-table.contact-form-table th.text-top {
    vertical-align: text-top;
  }
  .contact-recruit-btn {
    padding: 1.2rem 4rem;
    font-size: 1.125rem;
    min-height: 4.875rem;
  }
  .contact-form-title {
    margin-bottom: 3rem;
  }
  table.sp-block-table.contact-form-table th {
    padding: .75rem 0;
    width: 33%;
  }
  table.sp-block-table.contact-form-table td {
    padding: .75rem 0 .75rem 2rem;
    width: 67%;
  }
  .contact-label-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .contact-radio-wrapper.sp-column {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    padding-left: 0;
  }
  .mw_wp_form .contact-radio-wrapper.sp-column .horizontal-item + .horizontal-item {
    margin-left: 10px;
  }
}
@media (min-width: 1400px) {
  .recruit-cta-btn-wrapper {
    margin-bottom: 5rem;
  }
  .contact-recruit-btn {
    min-width: 33.625rem;
    font-size: 1.25rem;
  }
  .contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
  .contact-form-table {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
  }
  table.sp-block-table.contact-form-table th {
    width: 30%;
  }
  table.sp-block-table.contact-form-table td {
    width: 70%;
  }
}
@media (min-width: 1441px) {
  table.sp-block-table.contact-form-table th {
    min-width: 33%;
  }
  table.sp-block-table.contact-form-table td {
    width: auto;
  }
}