@charset "UTF-8";
@import url("../css/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.fontawesome.com/releases/v5.5.0/css/all.css");
/*-------------------------------------------/
ページ共通要素
/-------------------------------------------*/
/* 表示切替 ----------------------------- */
@media screen and (max-width: 1200px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* Font設定 ---------------------------------*/
/* カラー設定 ---------------------------------*/
:root {
  --black: #000;
  --black-11: #111111;
  --white: #ffffff;
  --gray: #f9f9f9;
  --blue-light: #ebfaff;
  --green: #18b66c;
  --green-light: #f1fff8;
  --bg-green: #0ea300;
  --yellow: #ffcc00;
  --yellow-green: #c2e300;
  --yellow-light: #fffeed;
  --orange: #ff8c2f;
  --perple: #9c58e4;
  --pink: #ff8181;
  --red: #ff383c;
  --link: #279af1;
  --border: #eeeeee;
  --clr01: var(--orange);
  --clr02: var(--green);
  --clr03: var(--link);
  --clr04: var(--perple);
  --clr05: var(--pink);
  --clr06: #9ad31a;
  --clr07: #333333;
  --clr08: var(--yellow);
  --clr09: var(--red);
}

.txt-blue {
  color: var(--link);
}

.txt-red {
  color: var(--red);
}

.txtLink {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* フォント設定 ---------------------------------*/
/* 基本設定　----------------------------------*/
html {
  scroll-behavior: auto !important;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  font-size: clamp(13px, 1.1111111111vw, 16px);
  overflow-x: hidden;
  width: 100%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(4.2666666667vw, 16px);
  }
}

/* アンカー（#）がついた要素の「到着地点」をヘッダー分だけ上にずらす */
[id] {
  scroll-margin-top: 5rem;
}
@media screen and (max-width: 1023px) {
  [id] {
    scroll-margin-top: 3.125rem;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  color: var(--black-11);
  animation: fade 0.8s ease forwards;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*=================================================
		tel　リンク
==================================================*/
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    cursor: pointer;
  }
}
.nolink,
.nolink a {
  pointer-events: none;
}

a.linkTxt {
  color: var(--link);
}

/*-------------------------------------------/
    レイアウト
/-------------------------------------------*/
ul,
li {
  list-style: none;
}

.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/*-------------------------------------------/
    ヘッダー
/-------------------------------------------*/
#header {
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: var(--white);
}
#header a,
#header img {
  transition: all 0.4s ease;
}
@media screen and (min-width: 1024px) {
  #header {
    height: 4.375rem;
    padding: 0 6.25rem 0 2.5rem;
  }
  #header .site-branding {
    width: 10.625rem;
  }
  #header .site-branding .logo a {
    display: block;
  }
  #header .site-branding .logo img {
    width: 100%;
    vertical-align: middle;
  }
  #header #gnav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #header #gnav > ul.pc-navigation {
    font-size: 1.25rem;
    font-weight: 500;
    font-style: normal;
  }
  #header #gnav > ul.pc-navigation > li {
    position: relative;
    display: inline-flex;
    align-items: center;
  }
  #header #gnav > ul.pc-navigation > li > a {
    position: relative;
    height: 4.375rem;
    padding: 0 1.25rem;
  }
  #header #gnav > ul.pc-navigation > li > a:hover span {
    position: relative;
    color: var(--link);
  }
  #header #gnav > ul.pc-navigation > li > a.btn_trigger {
    cursor: pointer;
  }
  #header #gnav > ul.pc-navigation > li .menu-panel {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 4.375rem 0 0 0;
    opacity: 0;
    pointer-events: none;
    color: var(--black-11);
    transition: 0.3s all;
  }
  #header #gnav > ul.pc-navigation > li .menu-panel .child-menu-wrap {
    display: flex;
    gap: 1.25rem;
    background: var(--white);
    border-radius: 0.625rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
  #header #gnav > ul.pc-navigation > li .menu-panel ul.child-menu {
    width: auto;
    position: relative;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    clip-path: inset(0 0 round 0.625rem);
  }
  #header #gnav > ul.pc-navigation > li .menu-panel ul.child-menu li.menu-item-child {
    width: 100%;
  }
  #header #gnav > ul.pc-navigation > li .menu-panel ul.child-menu li.menu-item-child:not(:last-child) {
    border-bottom: 1px solid var(--border, #eee);
  }
  #header #gnav > ul.pc-navigation > li .menu-panel ul.child-menu li.menu-item-child a {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 1em;
    font-weight: 500;
    padding: 1.5rem 1rem;
  }
  #header #gnav > ul.pc-navigation > li .menu-panel ul.child-menu li.menu-item-child a::before {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--link);
    background-image: url("../images/common/icon-arrow_w.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 0.25rem auto;
    border-radius: 50%;
    transition: 0.4s all;
    flex-shrink: 0;
  }
  #header #gnav > ul.pc-navigation > li .menu-panel ul.child-menu li.menu-item-child a:hover {
    opacity: 0.8;
  }
  #header #gnav > ul.pc-navigation > li.menu-item a {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
  }
  #header #gnav > ul.pc-navigation > li.menu-item a .fas {
    display: inline-block;
    margin-left: 0.2em;
    vertical-align: baseline;
  }
  #header #gnav > ul.pc-navigation > li:hover a.btn_trigger::after {
    opacity: 1;
  }
  #header #gnav > ul.pc-navigation > li:hover .menu-panel {
    opacity: 1;
    pointer-events: auto;
  }
  #header #navigation {
    position: fixed;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: -100%;
    left: auto;
    width: min(100%, 82.5rem);
    background: var(--white);
    padding: 6.875rem 3.75rem 2.5rem;
    transition: 0.3s all ease;
    overflow-y: auto;
  }
  #header #navigation .main-navigation {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: var(--black-11);
  }
  #header #navigation .main-navigation .menu-item {
    width: min((100% - 6rem) / 4, 16.25rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  #header #navigation .main-navigation .menu-item .menu-image {
    aspect-ratio: 250/150;
  }
  #header #navigation .main-navigation .menu-item > a {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 2;
  }
  #header #navigation .main-navigation .menu-item > a.link-item:hover {
    color: var(--link);
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul {
    padding-left: 1.25em;
    font-size: 1rem;
    line-height: 2;
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul li {
    position: relative;
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul li::before {
    position: absolute;
    content: "ー";
    left: -1.25em;
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul li a {
    display: block;
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul li a:hover {
    color: var(--link);
  }
  #header #navigation .main-navigation .menu-item .other-menu-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.25rem;
  }
  #header #navigation .main-navigation .menu-item .other-menu-wrap a {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 2;
  }
  #header #navigation .main-navigation .menu-item .other-menu-wrap a .fas {
    display: inline-block;
    margin-left: 0.2em;
    vertical-align: baseline;
  }
  #header #navigation .main-navigation .menu-item .other-menu-wrap a:hover {
    color: var(--link);
  }
  #header #navigation .menu-footer {
    width: 100%;
    border-top: 1px solid var(--border);
    margin-top: 1.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5625rem;
    padding-top: 1.5625rem;
    padding-bottom: 2.5rem;
  }
  #header #navigation .menu-footer .logo {
    width: 11.25rem;
  }
  #header #navigation .menu-footer .tel-free {
    font-family: "Jost", sans-serif;
  }
  #header #navigation .menu-footer .tel-free a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }
  #header #navigation .menu-footer .tel-free .icon {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    padding: 0.25rem 1rem;
    color: var(--white);
    background: var(--bg-green);
  }
  #header #navigation .menu-footer .tel-free .telNum {
    font-size: 1.5rem;
    font-weight: 500;
  }
  #header #navigation .menu-footer .tel {
    font-family: "Jost", sans-serif;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1023px) {
  #header {
    z-index: 9999;
    height: 4.375rem;
    padding: 0 4.375rem 0 1.25rem;
  }
  #header .site-branding {
    width: 10.625rem;
    pointer-events: auto;
  }
  #header .site-branding h1.logo a {
    display: block;
  }
  #header .site-branding h1.logo img {
    width: 100%;
  }
  #header #gnav {
    display: none;
  }
  #header #navigation {
    position: fixed;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: -100%;
    left: auto;
    width: 100%;
    background: var(--white);
    padding: 4.375rem 0.9375rem 0.9375rem;
    transition: 0.3s all ease;
    overflow-y: auto;
  }
  #header #navigation .main-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--black-11);
  }
  #header #navigation .main-navigation .menu-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }
  #header #navigation .main-navigation .menu-item > a {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2;
    padding: 1.25rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  #header #navigation .main-navigation .menu-item > a:hover {
    color: var(--link);
  }
  #header #navigation .main-navigation .menu-item .menu-image {
    display: none;
  }
  #header #navigation .main-navigation .menu-item .btn_trigger {
    position: relative;
    cursor: pointer;
  }
  #header #navigation .main-navigation .menu-item .btn_trigger::before, #header #navigation .main-navigation .menu-item .btn_trigger::after {
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 1.25rem;
    height: 0.125rem;
    background: var(--link);
    transition: 0.3s all ease;
  }
  #header #navigation .main-navigation .menu-item .btn_trigger::after {
    transform: translateY(-50%) rotate(90deg);
  }
  #header #navigation .main-navigation .menu-item.is-current .btn_trigger::after {
    transform: translateY(-50%) rotate(0);
  }
  #header #navigation .main-navigation .menu-item .menu-panel {
    display: none;
    padding-left: 1.25rem;
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul {
    padding-left: 1.25em;
    font-size: 1rem;
    line-height: 2;
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul li {
    position: relative;
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul li::before {
    position: absolute;
    content: "ー";
    left: -1.25em;
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul li a {
    display: block;
  }
  #header #navigation .main-navigation .menu-item .child-menu-wrap ul li a:hover {
    color: var(--link);
  }
  #header #navigation .main-navigation .menu-item .other-menu-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  #header #navigation .main-navigation .menu-item .other-menu-wrap a {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.5;
  }
  #header #navigation .main-navigation .menu-item .other-menu-wrap a:hover {
    color: var(--link);
  }
  #header #navigation .main-navigation .menu-item .other-menu-wrap .inner {
    padding: 0.625rem;
  }
  #header #navigation .main-navigation .menu-item .other-menu-wrap .inner:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  #header #navigation .menu-footer {
    width: 100%;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.625rem;
    padding-bottom: 0.9375rem;
  }
  #header #navigation .menu-footer .logo {
    display: none;
  }
  #header #navigation .menu-footer .tel-free {
    font-family: "Jost", sans-serif;
  }
  #header #navigation .menu-footer .tel-free a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }
  #header #navigation .menu-footer .tel-free .icon {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    padding: 0.25rem 1rem;
    color: var(--white);
    background: var(--bg-green);
  }
  #header #navigation .menu-footer .tel-free .telNum {
    font-size: 1.5rem;
    font-weight: 500;
  }
  #header #navigation .menu-footer .tel {
    font-family: "Jost", sans-serif;
    font-size: 1.125rem;
  }
}

/* メニューオープン */
#header.open {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #header.open #navigation {
    right: 0;
  }
}
@media screen and (max-width: 1023px) {
  #header.open #navigation {
    right: 0;
  }
}

/*-------------------------------------
　ハンバーガー
-------------------------------------*/
.nav_toggle {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 4.375rem;
  height: 4.375rem;
  cursor: pointer;
  z-index: 999;
  background: var(--link);
  pointer-events: auto;
}
.nav_toggle div.toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  aspect-ratio: 1/1;
}
.nav_toggle div.toggle span {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 0.125rem;
  background: var(--white);
  transition: 0.3s all;
}
@media screen and (max-width: 1023px) {
  .nav_toggle {
    width: 4.375rem;
    height: 4.375rem;
  }
  .nav_toggle div.toggle {
    gap: 0.75rem;
  }
  .nav_toggle div.toggle span {
    width: 2.5rem;
    height: 0.125rem;
  }
}

#header.open .nav_toggle div.toggle span {
  position: absolute;
}
#header.open .nav_toggle div.toggle span:first-child {
  transform: rotate(45deg);
}
#header.open .nav_toggle div.toggle span:nth-child(2) {
  display: none;
}
#header.open .nav_toggle div.toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

/*-------------------------------------------/
    footer
/-------------------------------------------*/
#footer {
  position: relative;
  color: var(--black-11);
  background: var(--gray);
  padding: 4.375rem 5rem 5rem 5rem;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 1.875rem 0.9375rem 4.375rem 0.9375rem;
  }
}
#footer {
  /* フッター */
}
#footer .site-footer-01 {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#footer .site-footer-01 .footer_inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 1.25rem;
}
#footer .site-footer-01 .footer-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 50rem;
}
#footer .site-footer-01 .footer-txt .logo {
  width: 24.5rem;
}
#footer .site-footer-01 .footer-txt .logo img {
  max-width: 100%;
}
#footer .site-footer-01 .footer-txt .info-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  font-size: 1.125rem;
}
#footer .site-footer-01 .footer-txt .info-box .infoItem {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.25rem;
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTitle {
  width: 9.375rem;
  align-self: stretch;
  align-content: center;
  flex-shrink: 0;
  padding: 0.5rem 0.25rem;
  border-right: 1px solid var(--green);
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt {
  padding: 0.5rem 1rem;
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free {
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free .icon {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  padding: 0.25rem 1rem;
  color: var(--white);
  background: var(--bg-green);
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free .telNum {
  font-size: 1.5rem;
  font-weight: 500;
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free .smallTxt {
  font-size: 0.9375rem;
  line-height: 1.8;
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel {
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel .smallTxt {
  font-size: 0.9375rem;
  line-height: 1.8;
}
#footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .time {
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
}
#footer .site-footer-01 {
  /* ナビゲーション*/
}
#footer .site-footer-01 #f-navigation {
  width: 25rem;
}
#footer .site-footer-01 #f-navigation .f-navigation__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.0625rem;
  font-size: 1rem;
  line-height: 2;
}
#footer .site-footer-01 #f-navigation .f-navigation__inner ul li a {
  display: block;
}
#footer .site-footer-01 #f-navigation .f-navigation__inner ul li a:hover {
  color: var(--link);
}
@media screen and (max-width: 1023px) {
  #footer .site-footer-01 .footer_inner {
    flex-direction: column;
    gap: 1.25rem;
  }
  #footer .site-footer-01 .footer-txt {
    width: 100%;
  }
  #footer .site-footer-01 #f-navigation {
    width: 100%;
  }
  #footer .site-footer-01 #f-navigation .f-navigation__inner {
    justify-content: flex-end;
  }
  #footer .site-footer-01 #f-navigation .f-navigation__inner .f-menu-item {
    max-width: unset;
  }
}
@media screen and (max-width: 767px) {
  #footer .site-footer-01 .footer-txt {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
  }
  #footer .site-footer-01 .footer-txt .logo {
    width: 7.9375rem;
  }
  #footer .site-footer-01 .footer-txt .logo img {
    max-width: 100%;
  }
  #footer .site-footer-01 .footer-txt .info-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    font-size: 0.9375rem;
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.25rem;
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTitle {
    width: 100%;
    align-self: stretch;
    align-content: center;
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    border-right: none;
    border-bottom: 1px solid var(--green);
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt {
    padding: 0.5rem 0.75rem;
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free {
    font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free .icon {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    padding: 0.25rem 1rem;
    color: var(--white);
    background: var(--bg-green);
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free .telNum {
    font-size: 1.5rem;
    font-weight: 500;
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel-free .smallTxt {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel {
    font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
    font-size: 1.125rem;
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .tel .smallTxt {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  #footer .site-footer-01 .footer-txt .info-box .infoItem .itemTxt .time {
    font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  }
}
#footer .site-footer-02 {
  width: 100%;
  margin-top: 2.5rem;
}
#footer .site-footer-02 .footer_inner {
  width: 100%;
  margin: 0 auto;
}
#footer .site-footer-02 .footer_inner .copyright {
  font-family: "Jost", sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer .site-footer-02 {
    margin-top: 1.5625rem;
  }
  #footer .site-footer-02 .footer_inner .copyright {
    font-size: 0.75rem;
  }
}

/*-------------------------------------------/
    クイックメニュー
/-------------------------------------------*/
.fixedBottom-Menu {
  position: fixed;
  bottom: 0;
  right: 2.0833333333vw;
  width: 25rem;
  display: flex;
  flex-direction: column;
  height: 3.75rem;
  max-height: 3.75rem;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  .fixedBottom-Menu {
    right: unset;
    width: 21.5625rem;
    height: 3.125rem;
    max-height: 3.125rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fixedBottom-Menu .btn-fixedMenu {
  cursor: pointer;
  pointer-events: auto;
}
.fixedBottom-Menu .titleBox {
  display: flex;
  height: 3.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  border-radius: 1.25rem 1.25rem 0 0;
  background: #ffea00;
  flex-shrink: 0;
}
.fixedBottom-Menu .titleBox .icon {
  width: 1.25rem;
  height: auto;
}
.fixedBottom-Menu .titleBox .ttl {
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .fixedBottom-Menu .titleBox {
    height: 3.125rem;
  }
  .fixedBottom-Menu .titleBox .icon {
    width: 1rem;
    height: auto;
  }
  .fixedBottom-Menu .titleBox .ttl {
    font-size: 1rem;
  }
}
.fixedBottom-Menu .menuBox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  flex-grow: 1;
  align-self: stretch;
  padding: 2.5rem 2.25rem 1.25rem;
  background: #fff8aa;
  overflow-y: auto;
}
.fixedBottom-Menu .menuBox .menuList01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  align-self: stretch;
}
.fixedBottom-Menu .menuBox .menuList01 .menuItem {
  display: flex;
  width: 5rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.fixedBottom-Menu .menuBox .menuList01 .menuItem .icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.fixedBottom-Menu .menuBox .menuList01 .menuItem .icon img {
  width: auto;
  height: 2.5rem;
}
.fixedBottom-Menu .menuBox .menuList01 .menuItem .txt {
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}
.fixedBottom-Menu .menuBox .menuList01 .menuItem:hover {
  opacity: 0.8;
}
.fixedBottom-Menu .menuBox .menuList02 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem {
  display: flex;
  height: 5rem;
  padding: 0 1rem;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 0.625rem;
  background: var(--white, #fff);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem .icon {
  width: 1.75rem;
  height: auto;
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem.smallTxt {
  font-size: 1.375rem;
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem.clr01 {
  color: var(--clr01);
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem.clr02 {
  color: var(--clr02);
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem.clr03 {
  color: var(--clr03);
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem.clr04 {
  color: var(--clr04);
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem.clr05 {
  color: var(--clr05);
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem.clr06 {
  color: var(--clr08);
}
.fixedBottom-Menu .menuBox .menuList02 .menuItem:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1023px) {
  .fixedBottom-Menu .menuBox {
    padding: 1.25rem;
  }
  .fixedBottom-Menu .menuBox .menuList01 .menuItem .icon {
    width: 4.375rem;
    height: 4.375rem;
  }
  .fixedBottom-Menu .menuBox .menuList01 .menuItem .icon img {
    width: auto;
    height: 2.5rem;
  }
  .fixedBottom-Menu .menuBox .menuList01 .menuItem .txt {
    font-size: 0.9375rem;
  }
  .fixedBottom-Menu .menuBox .menuList01 .menuItem:hover {
    opacity: 0.8;
  }
  .fixedBottom-Menu .menuBox .menuList02 {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.625rem;
  }
  .fixedBottom-Menu .menuBox .menuList02 .menuItem {
    width: calc(50% - 0.3125rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 1.25rem 0;
    align-items: center;
    gap: 0.5rem;
    align-self: stretch;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.625rem;
    background: var(--white, #fff);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .fixedBottom-Menu .menuBox .menuList02 .menuItem.smallTxt {
    font-size: 1.125rem;
  }
  .fixedBottom-Menu .menuBox .menuList02 .menuItem .icon img {
    width: auto;
    height: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .fixedBottom-Menu.is-active, .fixedBottom-Menu.is-clicked {
    height: calc(100vh - 6.25rem);
    max-height: calc(100vh - 6.25rem);
  }
}
@media screen and (max-width: 1023px) {
  .fixedBottom-Menu.is-active, .fixedBottom-Menu.is-clicked {
    height: auto;
    max-height: calc(100vh - 6.25rem);
  }
}
@media screen and (min-width: 1024px) {
  .fixedBottom-Menu.is-noScroll {
    height: calc(100vh - 6.25rem);
    max-height: calc(100vh - 6.25rem);
  }
}
@media screen and (max-width: 1023px) {
  .fixedBottom-Menu.is-noScroll {
    height: 3.125rem !important;
    max-height: 3.125rem !important;
  }
}

/*topのみの調整*/
@media screen and (min-width: 1024px) {
  .index header:not(.scroll) ~ .fixedBottom-Menu.is-noScroll .btn-fixedMenu {
    cursor: default;
    pointer-events: none;
  }
}
/*-------------------------------------------/
    ボタン・リンク
/-------------------------------------------*/
a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
a.btn:hover {
  opacity: 0.8;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

.btn-nomal {
  position: relative;
  width: 18.75rem;
  display: flex;
  padding: 1rem 1.875rem;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--link);
  border-radius: 100vmax;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}
.btn-nomal::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.84375rem;
  content: "";
  width: 0.375rem;
  aspect-ratio: 6/10;
  background: url("../images/common/icon-arrow_w.svg") center center no-repeat;
  background-size: 100% 100%;
}
.btn-nomal:hover {
  background: var(--yellow-green);
}

/*-------------------------------------------/
    共通
/-------------------------------------------*/
/* ここで、各クラスに応じた変数をセットする */
.clr01 {
  --local-clr: var(--clr01);
}

.clr02 {
  --local-clr: var(--clr02);
}

.clr03 {
  --local-clr: var(--clr03);
}

.clr04 {
  --local-clr: var(--clr04);
}

.clr05 {
  --local-clr: var(--clr05);
}

.clr06 {
  --local-clr: var(--clr06);
}

.clr07 {
  --local-clr: var(--clr07);
}

.clr08 {
  --local-clr: var(--clr08);
}

.clr09 {
  --local-clr: var(--clr09);
}

#page-header {
  width: 100%;
  padding: 7.5rem 2.5rem;
  background: linear-gradient(90deg, #eafff8 0%, #fff6c0 100%);
}
@media screen and (max-width: 1023px) {
  #page-header {
    padding: 5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  #page-header {
    padding: 2.5rem 1.25rem;
  }
}
#page-header .innerBox {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  #page-header .innerBox {
    padding-left: 1.875rem;
  }
}
#page-header .pageTitle {
  position: relative;
  gap: 1.25rem;
  font-size: 3.5rem;
  font-weight: 700;
  display: flex;
  align-items: first center;
}
#page-header .pageTitle::before {
  content: "";
  position: absolute;
  left: -3.125rem;
  width: 1.875rem;
  height: 0.1875rem;
  background: var(--black-11);
}
@media screen and (max-width: 767px) {
  #page-header .pageTitle {
    gap: 0.625rem;
    font-size: 1.5rem;
  }
  #page-header .pageTitle::before {
    left: -1.875rem;
    width: 1.25rem;
  }
}
#page-header .breadcrumb ul {
  font-size: 0.875rem;
  line-height: 1.5;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
#page-header .breadcrumb ul li {
  position: relative;
}
#page-header .breadcrumb ul li span {
  display: inline-block;
}
#page-header .breadcrumb ul li a {
  display: inline-block;
}
#page-header .breadcrumb ul li a:hover {
  opacity: 0.7;
}
#page-header .breadcrumb ul li:not(:last-child) {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
}
#page-header .breadcrumb ul li:not(:last-child)::after {
  position: relative;
  display: inline-block;
  content: ">";
}
@media screen and (max-width: 767px) {
  #page-header .breadcrumb ul {
    font-size: 0.625rem;
    line-height: 1.8;
    font-weight: 500;
  }
}

.pageContentwrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5rem;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.pageContentwrap .primary {
  width: 60rem;
}
.pageContentwrap .primary .content:not(:first-child) {
  margin-top: 6.25rem;
}
.pageContentwrap .primary .content .innerBox {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
}
.pageContentwrap .primary .content .innerBox > .inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}
.pageContentwrap .primary .content .innerBox > .inner > .inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.625rem;
}
.pageContentwrap .secondary {
  position: relative;
  width: 22.5rem;
  flex-shrink: 0;
}
.pageContentwrap .secondary .sidebar {
  width: 100%;
  padding: 2.5rem 2.1875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-self: flex-start;
  border-radius: 0.625rem;
  background: var(--white, #fff);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .pageContentwrap .secondary .sidebar {
    position: sticky;
    top: 7.5rem;
  }
}
.pageContentwrap .secondary .catTitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--local-clr, #111111);
}
.pageContentwrap .secondary .catTitle .icon {
  display: inline-flex;
  align-self: center;
}
.pageContentwrap .secondary .catTitle .icon img {
  width: auto;
  height: 2.5rem;
}
.pageContentwrap .secondary .list-menu {
  width: min(100%, 25rem);
  margin: 0 auto;
  pointer-events: auto;
}
.pageContentwrap .secondary .list-menu > li {
  border-bottom: 1px solid var(--border);
}
.pageContentwrap .secondary .list-menu > li > a {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  display: flex;
  padding: 1.5rem 0;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}
.pageContentwrap .secondary .list-menu > li > a::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/common/icon-arrow_w.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0.25rem auto;
  background-color: var(--local-clr, #ccc);
  border-radius: 50%;
  flex-shrink: 0;
}
.pageContentwrap .secondary .list-menu > li > a:hover {
  opacity: 0.7;
}
.pageContentwrap .secondary .list-menu > li.current > a {
  color: var(--local-clr, inherit);
}
.pageContentwrap .secondary .list-menu ul.child-menu {
  display: flex;
  padding: 0 0 1.5rem 2.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1rem;
  align-self: stretch;
  font-size: 1.25rem;
  font-weight: 500;
}
.pageContentwrap .secondary .list-menu ul.child-menu li a {
  display: block;
}
.pageContentwrap .secondary .list-menu ul.child-menu li a:hover {
  opacity: 0.7;
}
.pageContentwrap .secondary .list-menu ul.child-menu li.is-active {
  color: var(--local-clr, inherit);
}
.pageContentwrap:not(:has(.secondary)) .primary {
  width: min(100%, 87.5rem);
}
@media screen and (max-width: 1023px) {
  .pageContentwrap {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2.5rem;
  }
  .pageContentwrap .primary {
    width: 100%;
  }
  .pageContentwrap .secondary {
    width: 100%;
  }
  .pageContentwrap .secondary .sidebar {
    padding: 2.5rem 1.25rem;
  }
  .pageContentwrap .secondary .list-menu {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .pageContentwrap {
    width: 100%;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .pageContentwrap .secondary .catTitle {
    font-size: 1.75rem;
  }
  .pageContentwrap .secondary .catTitle .icon img {
    width: auto;
    height: 2rem;
  }
  .pageContentwrap .secondary .list-menu > li > a {
    font-size: 1.0625rem;
    padding: 1rem 0;
  }
  .pageContentwrap .secondary .list-menu > li > a::before {
    content: "";
    width: 1rem;
    height: 1rem;
  }
  .pageContentwrap .secondary .list-menu ul.child-menu {
    font-size: 0.9375rem;
  }
}

.contentTitle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  font-size: 2.5rem;
  font-weight: 500;
  color: #111111;
  padding-top: 0.8em;
}
.contentTitle::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.25rem;
  background: var(--border);
}
.contentTitle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6.25rem;
  height: 0.25rem;
  background: var(--local-clr, #333333);
}
@media screen and (max-width: 767px) {
  .contentTitle {
    font-size: 1.5rem;
  }
  .contentTitle::after {
    width: 3.125rem;
    height: 0.1875rem;
  }
}

.contentSubTitle {
  font-size: 1.5rem;
  font-weight: 500;
}

.boxTitle {
  font-size: 2rem;
  font-weight: 500;
  color: var(--local-clr);
}
@media screen and (max-width: 767px) {
  .boxTitle {
    font-size: 1.5rem;
  }
}

.bnrContent {
  padding: 2.5rem 0.9375rem;
  border-top: 1px solid var(--border, #eee);
  border-bottom: 1px solid var(--border, #eee);
}
@media screen and (max-width: 767px) {
  .bnrContent {
    padding: 1.25rem 0.9375rem;
  }
}
.bnrContent .bnrBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .bnrContent .bnrBox {
    gap: 0.625rem;
  }
}

ul.list-dash {
  padding-left: 2.25rem;
  font-size: 1.25rem;
  line-height: 1.8;
}
ul.list-dash li {
  position: relative;
  padding: 0.5rem 0;
}
ul.list-dash li::before {
  position: absolute;
  content: "ー";
  left: -1.8em;
}
@media screen and (max-width: 767px) {
  ul.list-dash {
    font-size: 1.125rem;
  }
  ul.list-dash li {
    padding: 0.25rem 0;
  }
}

ul.list-dot {
  font-size: 1.125rem;
  line-height: 1.8;
  padding-left: 1em;
}
ul.list-dot li {
  position: relative;
}
ul.list-dot li::before {
  content: "・";
  position: absolute;
  left: -1em;
}

ul.list-double-circle {
  font-size: 1.125rem;
  line-height: 1.8;
  padding-left: 1em;
}
ul.list-double-circle li {
  position: relative;
}
ul.list-double-circle li::before {
  content: "◎";
  position: absolute;
  left: -1em;
}
ul.list-double-circle.ml-1em {
  margin-left: 1em;
}

.list-check {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  align-self: stretch;
}
.list-check li {
  width: 50%;
  position: relative;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  border: 1px solid var(--border, #eee);
  background: var(--white, #fff);
}
@media screen and (max-width: 767px) {
  .list-check li {
    width: 100%;
  }
}
.list-check li p {
  padding: 0.5rem 1rem;
}
.list-check li::before {
  content: "";
  display: flex;
  width: 3.125rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background-color: var(--green);
  background-image: url("../images/common/icon_check_bgw.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
  flex-shrink: 0;
}

ol.list-indent {
  font-size: 1.125rem;
  padding-left: 1em;
}

ol.list-number {
  font-size: 1.125rem;
  counter-reset: my-counter;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
ol.list-number li {
  counter-increment: my-counter;
  display: flex;
  align-items: first baseline;
  padding: 0.5em 0;
}
ol.list-number li::before {
  content: counter(my-counter) ".";
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  flex-shrink: 0;
  margin-right: 0.5em;
  display: inline-block;
  white-space: nowrap;
}

ol.list-number-default {
  font-size: 1.125rem;
  counter-reset: my-counter;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
ol.list-number-default li {
  counter-increment: my-counter;
  display: flex;
  align-items: first baseline;
}
ol.list-number-default li::before {
  content: counter(my-counter) ".";
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  flex-shrink: 0;
  margin-right: 0.5em;
  display: inline-block;
  white-space: nowrap;
}

dl.txtTable {
  display: flex;
  flex-wrap: wrap;
  align-items: first baseline;
  justify-content: stretch;
}
dl.txtTable dt {
  min-width: 5em;
  flex-shrink: 0;
}
dl.txtTable dd {
  min-width: calc(100% - 5em);
}

/*-------------------------------------------/
    Index トップページ
/-------------------------------------------*/
#mv {
  position: relative;
  padding-left: 2.0833333333vw;
  padding-right: 2.0833333333vw;
  width: calc(100% - 25rem);
}
#mv .mv-box {
  position: relative;
}
#mv .mv-box .mv-slider {
  width: calc(100% - 2.0833333333vw);
  height: 51.25rem;
  clip-path: inset(0 0 round 1.25rem);
  margin-right: auto;
}
#mv .mv-box .mv-slider .slick-list,
#mv .mv-box .mv-slider .slick-track,
#mv .mv-box .mv-slider .slider-item {
  width: 100%;
  height: 100%;
}
#mv .mv-box .mv-slider .slider-item {
  overflow: hidden;
}
#mv .mv-box .mv-slider .slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.15);
  transition: transform 100s linear;
}
#mv .mv-box .mv-slider .slider-item.is-active img {
  transform: scale(1) !important;
  transition: transform 12s linear !important;
}
#mv .mv-box .copy {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  color: var(--white);
  font-size: min(3.3333333333vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0 5rem;
}
#mv .mv-box .copy > span {
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  #mv {
    width: 100%;
  }
  #mv .mv-box .mv-slider {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #mv {
    padding: 0.9375rem;
    width: 100%;
  }
  #mv .mv-box {
    position: relative;
  }
  #mv .mv-box .mv-slider {
    width: 100%;
    height: 21.5625rem;
    clip-path: inset(0 0 round 1.25rem);
    margin-right: auto;
  }
  #mv .mv-box .mv-slider .slick-list,
  #mv .mv-box .mv-slider .slick-track,
  #mv .mv-box .mv-slider .slider-item {
    width: 100%;
    height: 100%;
  }
  #mv .mv-box .copy {
    position: absolute;
    left: 0;
    top: auto;
    transform: unset;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    padding: 0 1rem;
  }
  #mv .mv-box .copy > span {
    display: inline-block;
  }
}

#indexNews {
  padding: 4.1666666667vw 2.0833333333vw;
}
#indexNews .layoutBox {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#indexNews .news_gallely {
  display: flex;
  width: 100%;
  padding: 1rem 2.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1.25rem;
  border: 2px solid var(--link, #279af1);
  background: var(--white, #fff);
}
#indexNews .news_gallely a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--link);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
}
#indexNews .news_gallely a::before {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: url("../images/common/icon-arrow_blue-circle.svg") no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  font-style: 0;
}
@media screen and (max-width: 767px) {
  #indexNews .news_gallely {
    padding: 0.5rem 1.25rem;
  }
}
#indexNews .news {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 1rem 9.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1.25rem;
  border: 2px solid var(--green, #18b66c);
  background: var(--white, #fff);
}
#indexNews .news .newsBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2.5rem;
}
#indexNews .news .newsBox .title {
  font-size: 1.25rem;
  line-height: 1.8;
  display: inline-block;
  color: var(--green, #18b66c);
  flex-shrink: 0;
}
#indexNews .news .newsBox .postItem {
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: first baseline;
  gap: 1.25rem;
}
#indexNews .news .newsBox .postItem .postDate {
  display: inline-block;
  font-family: "Jost", sans-serif;
  line-height: 1;
  flex-shrink: 0;
}
#indexNews .news .newsBox .postItem .postCat {
  font-weight: 500;
  flex-shrink: 0;
}
#indexNews .news .newsBox .postItem .postCat.cat-gyouji {
  color: var(--pink);
}
#indexNews .news .newsBox .postItem .postCat.cat-recruit {
  color: var(--red);
}
#indexNews .news .newsBox .postItem .postCat.cat-houmikai {
  color: var(--perple);
}
#indexNews .news .newsBox .postItem .postCat.cat-iin {
  color: var(--link);
}
#indexNews .news .newsBox .postItem .postCat.cat-gairai {
  color: var(--orange);
}
#indexNews .news .newsBox .postItem .postCat.cat-nyuin {
  color: var(--green);
}
#indexNews .news .newsBox .postItem .postTitle {
  line-height: 1.8;
}
#indexNews .news .btn-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  position: absolute;
  right: 3.125rem;
  bottom: 1.25rem;
}
#indexNews .news .btn-list::after {
  content: "";
  width: 0.4375rem;
  aspect-ratio: 7/13;
  background: url("../images/common/icon-arrow_black.svg") center center no-repeat;
  background-size: 100% auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #indexNews .news {
    flex-direction: column;
    align-items: stretch;
    padding: 0.625rem 1.25rem;
  }
  #indexNews .news .newsBox {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
  #indexNews .news .newsBox .postItem {
    font-size: 1.125rem;
    gap: 0.25rem;
    width: 100%;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0 1.25rem;
  }
  #indexNews .news .newsBox .postItem .postTitle {
    width: 100%;
  }
  #indexNews .news .btn-list {
    position: static;
    right: unset;
    bottom: unset;
    margin-left: auto;
  }
}

#pageLink {
  padding-bottom: 6.7708333333vw;
}
@media screen and (max-width: 767px) {
  #pageLink {
    padding-bottom: 3.75rem;
  }
}
#pageLink .pageLink-slider {
  width: 100%;
}
#pageLink .pageLink-slider .slider-item {
  margin: 0 1.0416666667vw;
}
#pageLink .pageLink-slider .slider-item img {
  width: 100%;
}
#pageLink .pageLink-slider .slick-dots {
  bottom: -1.875rem;
}

#indexService {
  background: url("../images/index/bg_01.jpg") center center no-repeat;
  background-size: cover;
  padding: 6.25vw 4.1666666667vw;
}
#indexService .layoutBox {
  width: min(100%, 110rem);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2.0833333333vw;
}
#indexService .layoutBox .inBox {
  position: relative;
  width: 29.1666666667vw;
  clip-path: inset(0 0 round 1.25rem);
  background: var(--white);
  display: flex;
  align-items: stretch;
  align-content: flex-end;
}
#indexService .layoutBox .inBox .pc-noLink {
  pointer-events: none;
}
#indexService .layoutBox .inBox.inBox_01 {
  width: 60.4166666667vw;
}
#indexService .layoutBox .inBox.inBox_01 .bgBox {
  width: 31.25vw;
  align-self: stretch;
  background: url("../images/index/bg_outpatient.jpg") center center no-repeat;
  background-size: cover;
}
#indexService .layoutBox .inner {
  width: 29.1666666667vw;
  background: var(--white);
  padding: 4.1666666667vw 2.0833333333vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
#indexService .layoutBox .inner .title {
  display: flex;
  justify-content: center;
  align-items: first baseline;
  gap: 0.5rem;
  align-self: stretch;
  font-size: 2.0833333333vw;
  color: var(--local-clr, #111111);
}
#indexService .layoutBox .inner .title .icon {
  flex-shrink: 0;
}
#indexService .layoutBox .inner .title .icon img {
  width: auto;
  height: 2.5rem;
}
#indexService .layoutBox .inner .list-menu {
  width: min(100%, 25rem);
  margin: 0 auto;
  pointer-events: auto;
}
#indexService .layoutBox .inner .list-menu li {
  border-bottom: 1px solid var(--border);
}
#indexService .layoutBox .inner .list-menu a {
  font-size: 1.375rem;
  position: relative;
  display: flex;
  padding: 1.5rem 0;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}
#indexService .layoutBox .inner .list-menu a::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/common/icon-arrow_w.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0.25rem auto;
  background-color: var(--local-clr, #eee);
  border-radius: 50%;
}
#indexService .layoutBox .inner .list-menu a:hover {
  color: var(--local-clr, inherit);
}
#indexService .layoutBox .inBox:nth-child(n+3) .inner {
  padding: 2.9166666667vw 1.6666666667vw;
}
@media screen and (max-width: 1023px) {
  #indexService .layoutBox .inBox,
  #indexService .layoutBox .inBox.inBox_01 {
    width: calc(50% - 1.0416666667vw);
  }
  #indexService .layoutBox .inBox .bgBox,
  #indexService .layoutBox .inBox.inBox_01 .bgBox {
    display: none;
  }
  #indexService .layoutBox .inner {
    width: 100%;
  }
  #indexService .layoutBox .inner .title {
    font-size: 2.5rem;
    color: var(--local-clr, #111111);
  }
  #indexService .layoutBox .inner .title .icon img {
    width: auto;
    height: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  #indexService .layoutBox {
    gap: 0.9375rem;
  }
  #indexService .layoutBox .inBox,
  #indexService .layoutBox .inBox.inBox_01 {
    position: relative;
    width: calc(50% - 0.46875rem);
  }
  #indexService .layoutBox .inBox .pc-noLink,
  #indexService .layoutBox .inBox.inBox_01 .pc-noLink {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: auto;
  }
  #indexService .layoutBox .inBox:hover,
  #indexService .layoutBox .inBox.inBox_01:hover {
    opacity: 0.8;
  }
  #indexService .layoutBox .inner {
    padding: 2rem 0;
    justify-content: center;
    text-align: center;
  }
  #indexService .layoutBox .inner .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    align-self: stretch;
    font-size: 1.25rem;
    color: var(--local-clr, #111111);
  }
  #indexService .layoutBox .inner .title .icon img {
    width: auto;
    height: 1.5rem;
  }
  #indexService .layoutBox .inner .list-menu {
    display: none;
  }
  #indexService .layoutBox .inBox:nth-child(n+3) .inner {
    padding: 2rem 0;
  }
}

#indexInformation {
  background: var(--gray);
  padding: 7.5rem 5rem;
}
@media screen and (max-width: 1023px) {
  #indexInformation {
    padding: 5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  #indexInformation {
    padding: 5rem 0.9375rem 1.25rem;
  }
}
#indexInformation .layoutBox {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.0833333333vw;
}
#indexInformation .title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
}
#indexInformation .contentBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
  flex-grow: 1;
}
#indexInformation .tableBox {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  flex-grow: 1;
  font-size: 1.25rem;
}
#indexInformation .tableBox .itemTitle {
  color: var(--white);
  line-height: 1.8;
  padding: 1rem 0.84375rem;
  background: var(--orange);
  text-align: center;
  outline: 1px solid #b3b3b3;
}
#indexInformation .tableBox .itemContent {
  padding: 1rem 0.84375rem;
  outline: 1px solid #b3b3b3;
  background: #fff;
}
#indexInformation .tableBox .itemContent .time {
  font-family: "Jost", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
}
#indexInformation .tableBox .itemContent .inner:not(:last-child) {
  margin-bottom: 1em;
}
#indexInformation .tableBox .table01 .rowItem {
  display: flex;
}
#indexInformation .tableBox .table01 .rowItem .itemTitle {
  width: 17.34375vw;
}
#indexInformation .tableBox .table01 .rowItem .itemContent {
  flex: 1 0 0;
}
#indexInformation .tableBox .table02 {
  display: flex;
  align-items: stretch;
}
#indexInformation .tableBox .table02 .rowItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
#indexInformation .tableBox .table02 .rowItem .itemContent {
  text-align: center;
  flex-grow: 1;
  align-content: center;
}
@media screen and (max-width: 1023px) {
  #indexInformation .tableBox {
    width: 100%;
    flex-grow: unset;
  }
}
@media screen and (max-width: 767px) {
  #indexInformation .tableBox {
    font-size: 1.125rem;
  }
  #indexInformation .tableBox .itemTitle {
    padding: 0.5rem 0.84375rem;
  }
  #indexInformation .tableBox .itemContent {
    padding: 0.5rem 0.84375rem;
  }
  #indexInformation .tableBox .itemContent .time {
    font-size: 1.125rem;
  }
  #indexInformation .tableBox .table01 .rowItem {
    flex-direction: column;
    align-items: stretch;
  }
  #indexInformation .tableBox .table01 .rowItem .itemTitle {
    width: 100%;
  }
  #indexInformation .tableBox .table02 {
    flex-wrap: wrap;
  }
  #indexInformation .tableBox .table02 .rowItem {
    flex: unset;
  }
  #indexInformation .tableBox .table02 .rowItem:nth-child(odd) {
    width: 6.25rem;
  }
  #indexInformation .tableBox .table02 .rowItem:nth-child(even) {
    width: calc(100% - 6.25rem);
  }
}
#indexInformation .bnrBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-self: stretch;
}
#indexInformation .inBox {
  background-color: rgba(17, 17, 17, 0.3);
  width: 22.5rem;
  aspect-ratio: 1/1;
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8125rem;
  color: var(--white);
}
#indexInformation .inBox.contact {
  background-image: url("../images/index/bg_contact.jpg");
  background-position: center center;
  background-size: cover;
}
#indexInformation .inBox.access {
  position: relative;
  background-image: url("../images/index/bg_access.jpg");
  background-position: center center;
  background-size: cover;
}
#indexInformation .inBox.access .block-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  border-radius: 1.25rem;
}
#indexInformation .inBox.access .block-link:hover {
  background: rgba(255, 255, 255, 0.2);
}
#indexInformation .inBox .ttl {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}
#indexInformation .inBox .tel {
  text-align: center;
}
#indexInformation .inBox .tel a {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}
#indexInformation .inBox .tel span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #indexInformation .inBox {
    width: 21.5625rem;
    aspect-ratio: 345/200;
  }
  #indexInformation .inBox .ttl {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
  }
  #indexInformation .inBox .tel {
    text-align: center;
  }
  #indexInformation .inBox .tel a {
    font-family: "Jost", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
  }
  #indexInformation .inBox .tel span {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
  }
}

#indexContent {
  padding: 7.5rem 5rem;
}
@media screen and (max-width: 1023px) {
  #indexContent {
    padding: 5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  #indexContent {
    padding: 1.25rem 0.9375rem 5rem;
  }
}
#indexContent .layoutBox {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  #indexContent .layoutBox {
    gap: 1.25rem;
  }
}
#indexContent .layoutBox .bnrBox {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  #indexContent .layoutBox .bnrBox {
    gap: 0.3125rem;
  }
}

.streetView01 {
  width: min(100%, 56.25rem);
  aspect-ratio: 900/360;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .streetView01 {
    aspect-ratio: 345/200;
  }
}
.streetView01 iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------------------------------------/
   下層共通
/-------------------------------------------*/
.lower .contactBox {
  padding: 2.5rem 1.875rem;
  border-radius: 1.25rem;
  border: 1px solid var(--yellow, #ffea00);
  background: var(--gradation_by02, linear-gradient(270deg, #fbf8cb 0%, #fffeed 100%));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lower .contactBox {
    padding: 2.5rem 1.1875rem;
    align-items: flex-start;
    gap: 0;
  }
}
.lower .contactBox .title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lower .contactBox .title {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }
}
.lower .contactBox p.fs22 {
  font-size: 1.375rem;
  line-height: 1.8;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lower .contactBox p.fs22 {
    font-size: 0.9375rem;
  }
}
.lower .contactBox p.tel-free, .lower .contactBox p.tel-txt {
  font-family: "Jost", sans-serif;
}
.lower .contactBox p.tel-free a, .lower .contactBox p.tel-txt a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.lower .contactBox p.tel-free .icon, .lower .contactBox p.tel-txt .icon {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 0.5rem;
  color: var(--white);
  background: var(--bg-green);
}
.lower .contactBox p.tel-free .icon > span, .lower .contactBox p.tel-txt .icon > span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .lower .contactBox p.tel-free .icon, .lower .contactBox p.tel-txt .icon {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
  }
  .lower .contactBox p.tel-free .icon > span, .lower .contactBox p.tel-txt .icon > span {
    font-size: 0.8125rem;
  }
}
.lower .contactBox p.tel-free .telNum, .lower .contactBox p.tel-txt .telNum {
  font-size: 3.375rem;
  line-height: 1;
  font-weight: 500;
  color: var(--orange);
}
@media screen and (max-width: 767px) {
  .lower .contactBox p.tel-free .telNum, .lower .contactBox p.tel-txt .telNum {
    font-size: 2rem;
  }
}
.lower .contactBox p.tel {
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  line-height: 1.8;
}
.lower .contactBox p.tel span {
  font-size: 0.875rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .lower .contactBox p.tel {
    font-size: 1rem;
  }
}
.lower .contactBox p.txt {
  font-size: 1.375rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .lower .contactBox p.txt {
    font-size: 1.125rem;
  }
}
.lower .contactBox p.subttl {
  font-size: 1.375rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .lower .contactBox p.subttl {
    font-size: 1.25rem;
  }
}
.lower .contactBox .info-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.lower .contactBox .info-box .inbox01 {
  padding-right: 1.25rem;
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-right: 2px solid var(--yellow);
}
.lower .contactBox .info-box .inbox02 {
  width: 21.5625rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  flex-shrink: 0;
}
.lower .contactBox .info-box .inbox02 .btn-nomal {
  width: min(100%, 20.3125rem);
}
@media screen and (max-width: 1199px) {
  .lower .contactBox .info-box {
    flex-direction: column;
    align-items: center;
  }
  .lower .contactBox .info-box .inbox01 {
    width: 100%;
    padding: 0 0 0.625rem 0;
    border-right: none;
  }
  .lower .contactBox .info-box .inbox02 {
    width: 100%;
    padding: 0.0625rem 0 0 0;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .lower .contactBox .info-box .inbox01 {
    align-items: flex-start;
    padding: 0 0 0.25rem 0;
  }
  .lower .contactBox .info-box .inbox02 {
    padding: 0.25rem 0 0 0;
  }
}
.lower .contactBox .inner {
  width: min(100%, 37.5rem);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .lower .contactBox .inner.sp-mt {
    margin-top: 1.25rem;
  }
}
.lower ul.list {
  font-size: 1.125rem;
  line-height: 1.8;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.lower ul.list li {
  display: flex;
  padding: 1rem;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.625rem;
}
.lower ul.list.col2 {
  flex-direction: row;
  flex-wrap: wrap;
}
.lower ul.list.col2 li {
  width: calc(50% - 0.3125rem);
}
@media screen and (max-width: 767px) {
  .lower ul.list.col2 li {
    width: 100%;
  }
}
.lower ul.list.bg-yellowl li {
  background: var(--yellow-light);
}
.lower ul.list.bg-bluel li {
  background: var(--blue-light);
}
.lower ul.list.bg-greenl li {
  background: var(--green-light);
}
.lower ul.list.bg-greenl.border li {
  border: 1px solid var(--green);
}
.lower p {
  font-size: 1.125rem;
  line-height: 1.8;
  line-height: 1.8;
}
.lower p.txt {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .lower p.txt {
    font-size: 1.125rem;
  }
}
.lower p.caption {
  font-size: 1rem;
  text-align: center;
}
.lower p.readTxt {
  font-weight: 500;
}
.lower p.copyTxt {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lower p.copyTxt {
    font-size: 1.25rem;
    text-align: left;
  }
}
.lower p.txtCenter {
  text-align: center;
}
.lower p.txtRight {
  text-align: right;
}
.lower .fw500 {
  font-weight: 500;
}

/*-------------------------------------------/
    下層ページ コンテンツ
/-------------------------------------------*/
.tableBox {
  width: 100%;
  font-size: 1.125rem;
  font-weight: 400;
}
.tableBox .itemTitle,
.tableBox .itemTitle02 {
  line-height: 1.8;
  padding: 1rem 0.84375rem;
  background: var(--yellow-light);
  text-align: center;
  outline: 1px solid var(--border);
}
.tableBox .itemContent {
  padding: 1rem 0.84375rem;
  outline: 1px solid var(--border);
  background: #fff;
}
.tableBox .itemContent .time {
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  line-height: 1.8;
}
.tableBox .table01 .rowItem {
  display: flex;
}
.tableBox .table01 .rowItem .itemTitle {
  width: 17.34375vw;
}
.tableBox .table01 .rowItem .itemTitle02 {
  width: 15.625vw;
  text-align: left;
}
.tableBox .table01 .rowItem .itemContent {
  flex: 1 0 0;
}
.tableBox .table01 .rowItem .itemContent .inner {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.tableBox .table02 {
  display: flex;
  align-items: stretch;
}
.tableBox .table02 .rowItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.tableBox .table02 .rowItem .itemContent {
  text-align: center;
  flex-grow: 1;
  align-content: center;
}
.tableBox .table03 {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.tableBox .table03 .rowItem {
  width: 100%;
  display: flex;
}
.tableBox .table03 .rowItem .w550 {
  width: 57.2916666667%;
}
.tableBox .table03 .rowItem .w410 {
  width: 42.7083333333%;
}
.tableBox .table03 .rowItem .itemTitle {
  text-align: left;
}
.tableBox .table03 .rowItem .itemTitle02 {
  background: #fffabd;
}
.tableBox .table03 .rowItem .itemContent {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .tableBox .table03 .rowItem {
    flex-direction: column;
  }
  .tableBox .table03 .rowItem .w550 {
    width: 100%;
  }
  .tableBox .table03 .rowItem .w410 {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .tableBox {
    width: 100%;
    flex-grow: unset;
  }
}
@media screen and (max-width: 767px) {
  .tableBox {
    font-size: 1.125rem;
  }
  .tableBox .itemTitle {
    padding: 0.5rem 0.84375rem;
  }
  .tableBox .itemContent {
    padding: 0.5rem 0.84375rem;
  }
  .tableBox .itemContent .time {
    font-size: 1.125rem;
  }
  .tableBox .table01 .rowItem {
    flex-direction: column;
    align-items: stretch;
  }
  .tableBox .table01 .rowItem .itemTitle,
  .tableBox .table01 .rowItem .itemTitle02 {
    width: 100%;
  }
  .tableBox .table02 {
    flex-wrap: wrap;
  }
  .tableBox .table02 .rowItem {
    flex: unset;
  }
  .tableBox .table02 .rowItem:nth-child(odd) {
    width: 6.25rem;
  }
  .tableBox .table02 .rowItem:nth-child(even) {
    width: calc(100% - 6.25rem);
  }
}

.tableBox02 {
  width: 100%;
  font-size: 1.125rem;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.tableBox02 .w01 {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .tableBox02 .w01 {
    width: 100%;
  }
}
.tableBox02 .w02 {
  width: 25%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .tableBox02 .w02 {
    width: 100%;
  }
}
.tableBox02 .w03 {
  width: 37.5%;
}
@media screen and (max-width: 767px) {
  .tableBox02 .w03 {
    width: 100%;
  }
}
.tableBox02 .w04 {
  flex-grow: 1;
}
.tableBox02 .rowItem {
  width: 50%;
  display: flex;
}
.tableBox02 .rowItem.wide {
  flex-grow: 1;
}
@media screen and (max-width: 1200px) {
  .tableBox02 .rowItem {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .tableBox02 .rowItem {
    flex-direction: column;
  }
}
.tableBox02 .itemTitle {
  display: flex;
  padding: 1rem 0.5rem;
  align-self: stretch;
  justify-content: center;
  outline: 1px solid var(--border, #eee);
  background: #fffabd;
  text-align: center;
}
.tableBox02 .itemSubTitle {
  display: flex;
  padding: 1rem 0.84375rem;
  align-self: stretch;
  justify-content: flex-start;
  outline: 1px solid var(--border, #eee);
  background: var(--yellow-light, #fffeed);
  text-align: left;
}
.tableBox02 .itemContent {
  display: flex;
  padding: 1rem 0.84375rem;
  align-self: stretch;
  justify-content: flex-end;
  outline: 1px solid var(--border, #eee);
  background: var(--white);
}

.tableBox03 {
  width: 100%;
  font-size: 1.125rem;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.tableBox03 .rowItem01 {
  width: 56.5217391304%;
  display: flex;
}
.tableBox03 .rowItem01 .itemTitle {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .tableBox03 .rowItem01 {
    width: 100%;
  }
}
.tableBox03 .rowItem02 {
  width: 43.4782608696%;
  display: flex;
}
.tableBox03 .rowItem03 {
  width: 21.7391304348%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .tableBox03 .rowItem03 {
    width: 50%;
  }
}
.tableBox03 .rowItem04 {
  width: 78.2608695652%;
  display: flex;
  flex-wrap: wrap;
}
.tableBox03 .rowItem04 .w01 {
  width: 44.4444444444%;
}
.tableBox03 .rowItem04 .w02 {
  width: 55.5555555556%;
}
@media screen and (max-width: 767px) {
  .tableBox03 .rowItem04 {
    width: 50%;
  }
  .tableBox03 .rowItem04 .w01 {
    width: 100%;
  }
  .tableBox03 .rowItem04 .w02 {
    width: 100%;
  }
}
.tableBox03 .itemTitle {
  display: flex;
  padding: 1rem 0.5rem;
  align-self: stretch;
  justify-content: center;
  outline: 1px solid var(--border, #eee);
  background: #fffabd;
  text-align: center;
  flex-grow: 1;
}
.tableBox03 .itemSubTitle {
  display: flex;
  padding: 1rem 0.84375rem;
  align-self: stretch;
  justify-content: flex-start;
  outline: 1px solid var(--border, #eee);
  background: var(--yellow-light, #fffeed);
  text-align: left;
  flex-grow: 1;
}
.tableBox03 .itemContent {
  display: flex;
  padding: 1rem 0.84375rem;
  align-self: stretch;
  justify-content: flex-end;
  outline: 1px solid var(--border, #eee);
  background: var(--white);
  flex-grow: 1;
}

table.default {
  width: 100%;
  border-collapse: collapse;
}
table.default tr th {
  font-weight: normal;
  padding: 0.5em;
  outline: 1px solid var(--border);
}
table.default tr td {
  padding: 0.5em;
  outline: 1px solid var(--border);
  vertical-align: middle;
}
table.default tr td.txtCenter {
  text-align: center;
}

.imageBox {
  width: min(100%, 960px);
}
.imageBox img {
  width: 100%;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .imageBox img {
    border-radius: 0.625rem;
  }
}

.flowBox {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
}
.flowBox .flowItem {
  position: relative;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #eee);
  background: var(--white, #fff);
}
.flowBox .flowItem .flowNumber {
  font-family: "Jost", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  width: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--green);
  flex-shrink: 0;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .flowBox .flowItem .flowNumber {
    font-size: 1.25rem;
    width: 2.5rem;
  }
}
.flowBox .flowItem .flowContent {
  padding: 1rem 1rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.flowBox .flowItem .flowContent p.subttl {
  font-size: 1.25rem;
  font-weight: 500;
}
.flowBox .flowItem .flowContent p.subttl.green {
  color: var(--green);
}

.col2Box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  align-self: stretch;
}
.col2Box .txtBox {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.col2Box .txtBox p.txt {
  font-size: 1.125rem;
}
.col2Box .imageBox {
  width: 25rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.col2Box .imageBox img {
  border-radius: 0.625rem;
}
@media screen and (max-width: 1199px) {
  .col2Box {
    flex-direction: column;
    align-items: center;
  }
  .col2Box .txtBox {
    width: 100%;
  }
  .col2Box .imageBox {
    width: min(100%, 25rem);
  }
}

.messageBox {
  width: 100%;
  display: flex;
  padding: 4rem 2.5rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--green, #18b66c);
}
.messageBox .title {
  color: var(--green);
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .messageBox {
    padding: 2.5rem 1.25rem;
    gap: 0.625rem;
  }
  .messageBox .title {
    font-size: 1.25rem;
  }
}

.areaMap {
  text-align: center;
}

.col2Box-01 {
  width: min(100%, 60rem);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.col2Box-01 .inBox {
  width: min(50% - 1.25rem, 28.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.col2Box-01 .inBox .imageBox img {
  border-radius: 0.625rem;
}
.col2Box-01 .inBox.w500 {
  width: min(50% - 1.25rem, 31.25rem);
}
.col2Box-01 .space-40 {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .col2Box-01 {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
  .col2Box-01 .inBox {
    width: min(100%, 18.75rem);
  }
  .col2Box-01 .inBox.w500 {
    width: min(100%, 31.25rem);
  }
}

.col2Box-02 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
}
.col2Box-02 .inBox {
  width: min(50% - 1.25rem, 28.75rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  padding: 2.5rem;
  border-radius: 1.25rem;
  border: 2px solid var(--border, #eee);
  background: var(--white, #fff);
}
.col2Box-02 .inBox .title {
  color: var(--green);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.col2Box-02 .inBox .imageBox {
  text-align: center;
}
.col2Box-02 .inBox p.txt {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .col2Box-02 {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .col2Box-02 .inBox {
    width: 100%;
    padding: 1.25rem;
    gap: 0.625rem;
  }
  .col2Box-02 .inBox .title {
    font-size: 1.25rem;
  }
}

.col2Box-03 {
  width: min(100%, 65rem);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.col2Box-03 .inBox {
  width: min(50% - 1.25rem, 31.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.col2Box-03 .inBox .imageBox img {
  border-radius: 0.625rem;
}
.col2Box-03 .space-40 {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .col2Box-03 {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .col2Box-03 .inBox {
    width: min(100%, 25rem);
  }
}

.timeTable {
  width: min(100%, 60rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-self: stretch;
  gap: 1.25rem;
}
.timeTable .inBox {
  position: relative;
  display: flex;
  width: min(100% - 1.4285714286rem, 6.25rem);
  padding: 1.5rem 1rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-radius: 0.625rem;
  border: 1px solid var(--green, #18b66c);
  background: var(--green-light, #f1fff8);
}
.timeTable .inBox span {
  display: inline-block;
}
.timeTable .inBox span.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeTable .inBox span.icon img {
  width: 3.75rem;
}
.timeTable .inBox span.icon .time {
  font-family: "Jost", sans-serif;
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.8;
  color: var(--green);
}
.timeTable .inBox span.ttl {
  writing-mode: vertical-rl;
  font-size: 1.25vw;
  font-weight: 500;
}
.timeTable .inBox:not(:last-child)::after {
  position: absolute;
  top: 5.8125rem;
  left: 100%;
  content: "";
  width: 0.625rem;
  height: 0.75rem;
  background: var(--green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 767px) {
  .timeTable {
    flex-direction: column;
    align-items: stretch;
  }
  .timeTable .inBox {
    width: 100%;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    padding: 1rem;
  }
  .timeTable .inBox span {
    display: inline-block;
  }
  .timeTable .inBox span.icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
  }
  .timeTable .inBox span.icon img {
    width: 3.75rem;
  }
  .timeTable .inBox span.icon .time {
    font-size: 1.25rem;
  }
  .timeTable .inBox span.ttl {
    writing-mode: horizontal-tb;
    font-size: 1.25rem;
    font-weight: 500;
  }
  .timeTable .inBox:not(:last-child)::after {
    position: absolute;
    top: 100%;
    left: calc(50% - 0.375rem);
    content: "";
    width: 0.75rem;
    height: 0.625rem;
    background: var(--green);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}

.flowAbout {
  display: flex;
  padding: 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
  border-radius: 1.25rem;
  border: 1px solid var(--green, #18b66c);
}
.flowAbout p.title {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .flowAbout {
    padding: 1.25rem;
  }
  .flowAbout p.title {
    font-size: 1.25rem;
  }
}

.streetView02 {
  width: min(100%, 45.125rem);
  margin: 0 auto;
  aspect-ratio: 722/400;
  overflow: hidden;
}
.streetView02 iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.imageBox-chart {
  width: min(100%, 37.5rem);
  margin: 0 auto;
}

.imageBox-OrganizationalChart {
  width: min(100%, 41.875rem);
  margin: 0 auto;
}

.contGroup {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
}
.contGroup .group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.contGroup .title-bg-greenl {
  font-size: 1.5rem;
  line-height: 1.8;
  display: flex;
  padding: 0.5rem 1.25rem;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.625rem;
  border: 1px solid var(--green, #18b66c);
  background: var(--green-light, #f1fff8);
}
.contGroup .innerTxt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0 1.25rem;
}

.leadBox {
  width: min(100%, 60rem);
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 2.5rem;
  align-self: stretch;
}
.leadBox .txtBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
  flex-shrink: 0;
}
.leadBox .txtBox .title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--green);
}
.leadBox .txtBox p.name {
  font-size: 1.25rem;
  font-weight: 500;
}
.leadBox .imageBox {
  text-align: center;
}
.leadBox .imageBox img {
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .leadBox {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
  .leadBox .txtBox {
    align-items: center;
    gap: 0;
  }
  .leadBox .txtBox .title {
    font-size: 1.5rem;
    text-align: center;
  }
  .leadBox .txtBox p.name {
    font-size: 1.125rem;
  }
}

.col3Box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.875rem;
}
.col3Box .inBox {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.25rem;
  border: 1px solid var(--local-clr);
  padding: 2.5rem;
}
.col3Box .inBox .numBox {
  font-family: "Jost", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  text-align: center;
  color: var(--local-clr);
}
@media screen and (max-width: 767px) {
  .col3Box {
    flex-direction: column;
  }
  .col3Box .inBox {
    padding: 1.5rem;
  }
  .col3Box .inBox .numBox {
    font-size: 2.5rem;
  }
}

.accessBox {
  width: min(100%, 60rem);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
}
.accessBox .gmap {
  width: 23.9583333333vw;
  clip-path: inset(0 0 round 1.25rem);
  background: lightgray;
}
.accessBox .gmap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.accessBox .txtBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  flex: 1 0 0;
}
.accessBox .txtBox .infoItem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  align-self: stretch;
}
.accessBox .txtBox .infoItem .infoTitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green);
  display: flex;
  padding: 0.25rem 1.5rem;
  align-items: center;
  justify-content: baseline;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.625rem;
  background: var(--green-light, #f1fff8);
}
@media screen and (max-width: 1023px) {
  .accessBox .gmap {
    width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .accessBox {
    flex-direction: column;
  }
  .accessBox .gmap {
    width: 100%;
    height: 18.75rem;
  }
}

.staffBox {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
}
.staffBox .staffProfile {
  width: calc(50% - 0.9375rem);
  padding: 2.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--local-clr, #279af1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.staffBox .staffProfile .nameBox01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--local-clr, #279af1);
}
.staffBox .staffProfile .nameBox01 .tag {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 700;
  width: 11.25rem;
  display: flex;
  padding: 0.25rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  background: var(--local-clr, #279af1);
}
.staffBox .staffProfile .nameBox01 .name {
  font-size: 2rem;
  font-weight: 500;
  color: var(--local-clr, #279af1);
}
.staffBox .staffProfile .nameBox02 {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid var(--local-clr, #279af1);
}
.staffBox .staffProfile .nameBox02 .name {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--local-clr, #279af1);
}
@media screen and (max-width: 767px) {
  .staffBox .staffProfile {
    width: 100%;
    padding: 1.25rem;
  }
  .staffBox .staffProfile .nameBox01 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    gap: 0.625rem;
    padding-bottom: 0.3125rem;
    border-bottom: 1px solid var(--local-clr, #279af1);
  }
  .staffBox .staffProfile .nameBox01 .tag {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 700;
    width: 5rem;
    display: flex;
    padding: 0 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    color: var(--white);
    background: var(--local-clr, #279af1);
  }
  .staffBox .staffProfile .nameBox01 .name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--local-clr, #279af1);
  }
  .staffBox .staffProfile .nameBox02 .name {
    font-size: 1.25rem;
  }
}

.historyBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
}
.historyBox .historyItem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  align-self: stretch;
}
.historyBox .historyItem::before {
  display: inline-block;
  content: "";
  width: 1rem;
  height: 1rem;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.historyBox .historyItem:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 0.125rem;
  height: calc(100% + 0.625rem);
  background: var(--green);
  top: 50%;
  left: 0.4375rem;
}
.historyBox .historyItem .itemYear {
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--green);
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 4.4375rem;
}
.historyBox .historyItem .itemYear span {
  font-size: 0.9375rem;
}
.historyBox .historyItem .itemTxt {
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .historyBox .historyItem {
    gap: 0.625rem;
  }
  .historyBox .historyItem .itemYear {
    font-size: 1.25rem;
  }
}

.box-line {
  padding: 3.125rem;
  border: 2px solid var(--border);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .box-line {
    padding: 3.125rem 1.25rem;
  }
}

.galleryBox {
  width: min(100%, 60rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
}
.galleryBox .synchro-slider {
  width: min(100%, 57.5rem);
}
.galleryBox .synchro-slider-nav {
  width: min(100%, 57.5rem);
  margin: 0.625rem auto;
}
.galleryBox .synchro-slider-nav .slick-list {
  padding: 0 !important;
  margin: 0 -0.3125rem;
}
.galleryBox .synchro-slider-nav.is-short .slick-track {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  transform: none !important;
}
.galleryBox .synchro-slider-nav.is-short .slick-slide {
  width: 20% !important;
  max-width: 11.5rem;
}
.galleryBox .synchro-slider-nav.is-slider .slick-slide {
  padding: 0 0.3125rem;
}
.galleryBox .synchro-slider-nav .slick-slide {
  cursor: pointer;
  padding: 0 0.3125rem;
}
.galleryBox .synchro-slider-nav .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
}
.galleryBox .synchro-slider-nav .slick-slide.slick-current img, .galleryBox .synchro-slider-nav .slick-slide.slick-center img {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .galleryBox .synchro-slider-nav {
    width: 100%;
    margin: 0.3125rem auto;
  }
  .galleryBox .synchro-slider-nav .slick-slide {
    padding: 0 0.15625rem;
  }
}
.galleryBox .slick-prev,
.galleryBox .slick-next {
  width: 0.625rem;
  height: 1.125rem;
}
.galleryBox .slick-prev:before,
.galleryBox .slick-next:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0.625rem;
  height: 1.125rem;
  background: url("../images/common/icon-arrow_blue.svg") center center no-repeat;
  background-size: cover;
}
.galleryBox .slick-prev {
  left: -1.25rem;
}
.galleryBox .slick-prev::before {
  transform: scale(-1);
}
.galleryBox .slick-next {
  right: -1.25rem;
}

.col3Box-wrap {
  width: min(100%, 60rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}
.col3Box-wrap .col3Box-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.875rem;
}
.col3Box-wrap .inBox {
  width: calc((100% - 3.75rem) / 3);
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 0.625rem;
}
.col3Box-wrap .inBox .imageBox img {
  border-radius: 0;
}
.col3Box-wrap .inBox .ttl {
  font-size: 1rem;
  line-height: 1.8;
}
.col3Box-wrap {
  /* 最初は隠しておく */
}
.col3Box-wrap .inBox:nth-child(n+7) {
  display: none;
}
.col3Box-wrap {
  /* ボタンのスタイル */
}
.col3Box-wrap .btn-trigger.is-open {
  background-color: #666; /* 閉じるときは色を変えるなど */
}
.col3Box-wrap .btn-trigger.is-open::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .col3Box-wrap .col3Box-list {
    width: min(100%, 345px);
  }
  .col3Box-wrap .inBox {
    width: 100%;
  }
}

/* ポップアップの設定 */
.fancybox-container {
  width: min(95%, 70rem);
  height: 100% !important;
  max-height: 49.6875rem !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 1.25rem #ccc;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .fancybox-container {
    max-height: calc(100% - 10rem) !important;
  }
}

.fancybox-bg {
  opacity: 1;
  background: #fff;
}

.fancybox-inner {
  display: flex;
  flex-direction: column;
}

.fancybox-stage {
  flex: 1;
  position: relative !important;
  transform: none !important;
}

.fancybox-slide--image {
  padding: 1.5rem 3.75rem 0 !important;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .fancybox-slide--image {
    padding: 1.5rem 1.5rem 0 !important;
  }
}
.fancybox-slide--image .fancybox-content {
  position: relative !important;
  transform: none !important;
  top: 0 !important;
  left: 0 !important;
  width: 62.5rem !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 1000/667 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}
.fancybox-slide--image .fancybox-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 切り替え時のフェード用 */
.fancybox-slide {
  transition: opacity 1000ms ease !important;
}

/* キャプション */
.fancybox-caption {
  position: static !important;
  background: #fff !important;
  color: #333 !important;
  padding: 0.625rem 0 1.5rem !important;
  margin: 0 auto;
  width: 62.5rem;
  max-width: calc(100% - 7.5rem);
}
@media screen and (max-width: 767px) {
  .fancybox-caption {
    max-width: calc(100% - 3rem);
  }
}

.fancybox-caption__body {
  max-width: 100%;
}

.fancy-custom-layout.left-align {
  text-align: left;
  padding: 0;
}

/* 閉じるボタン */
.fancy-close-btn {
  font-size: 1rem;
  display: flex;
  justify-content: baseline;
  align-items: center;
  gap: 0.5em;
  margin: 0.625rem auto 0;
  padding: 0 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
.fancy-close-btn::before {
  content: "✕";
}

/* 閉じる時は transition を 0 にして即座に消す */
.fancybox-is-closing .fancybox-slide,
.fancybox-is-closing .fancybox-content,
.fancybox-is-closing .fancybox-bg {
  transition: opacity 100ms !important;
  opacity: 0 !important;
}

/* ズームアイコン（虫眼鏡）を非表示にする */
.fancybox-is-zoomable .fancybox-content {
  cursor: default !important; /* カーソルを虫眼鏡から矢印に戻す */
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: default !important;
}

/* 矢印ボタン自体の設定 */
.fancybox-navigation .fancybox-button {
  background: none !important; /* 背景色（黒など）を完全に消す */
  opacity: 1 !important; /* 透明度をリセット */
  cursor: pointer;
}

.fancybox-navigation .fancybox-button div,
.fancybox-navigation .fancybox-button svg {
  display: none !important;
}

.fancybox-navigation .fancybox-button {
  width: 3.4375rem !important;
  height: 4.1875rem !important;
  padding: 0 !important;
  padding: 1.25rem !important;
}
@media screen and (max-width: 767px) {
  .fancybox-navigation .fancybox-button {
    width: 1.5rem !important;
    height: 4.1875rem !important;
    padding: 1.25rem 0.28125rem !important;
  }
}

/* 左矢印 */
.fancybox-button--arrow_left::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 1.6875rem;
  background-image: url("../../assets/images/common/icon-arrow_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: scaleX(-1);
}

/* 右矢印 */
.fancybox-button--arrow_right::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 1.6875rem;
  background-image: url("../../assets/images/common/icon-arrow_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.faqBox {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3.125rem;
}
.faqBox .faqItem .faqTitle {
  position: relative;
  color: var(--green);
  font-weight: 500;
  background: var(--green-light);
  border-radius: 0.625rem;
  cursor: pointer;
  padding-right: 3.125rem;
}
.faqBox .faqItem .faqTitle::after {
  position: absolute;
  right: 1.25rem;
  top: calc(50% - 0.625rem);
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/common/icon-arrow_black.svg") center center no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}
.faqBox .faqItem .faqTitle.is-active::after {
  transform: rotate(-90deg);
}
.faqBox .faqItem .faqTitle .inner {
  position: relative;
  display: flex;
  align-items: first baseline;
  gap: 1.25rem;
  padding: 0.625rem 1.25rem 0.625rem 3.125rem;
}
.faqBox .faqItem .faqTitle .inner::before {
  position: absolute;
  top: 0.3125rem;
  left: 0.9375rem;
  font-size: 1.5625rem;
  content: "Q.";
  font-family: "Jost", sans-serif;
}
.faqBox .faqItem .faqTxt {
  display: none;
}
.faqBox .faqItem .faqTxt .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem 0.625rem 3.125rem;
}
.faqBox .faqItem .faqTxt .inner::before {
  position: absolute;
  top: 0.3125rem;
  left: 0.9375rem;
  font-size: 1.5625rem;
  content: "A.";
  font-family: "Jost", sans-serif;
}

/*-------------------------------------------/
    NEWS お知らせ
/-------------------------------------------*/
.secNewsContent {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* お知らせ一覧 ---------------------------------------------*/
.newsList {
  font-size: 1.125rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.newsList .newsItem {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  padding: 0.625rem;
  border-bottom: 1px solid var(--border);
}
.newsList .newsItem span {
  display: inline-block;
}
.newsList .newsItem span.postCat {
  font-weight: 500;
}
.newsList .newsItem span.postCat.cat-gyouji {
  color: var(--pink);
}
.newsList .newsItem span.postCat.cat-recruit {
  color: var(--red);
}
.newsList .newsItem span.postCat.cat-houmikai {
  color: var(--perple);
}
.newsList .newsItem span.postCat.cat-iin {
  color: var(--link);
}
.newsList .newsItem span.postCat.cat-gairai {
  color: var(--orange);
}
.newsList .newsItem span.postCat.cat-nyuin {
  color: var(--green);
}
.newsList .newsItem span.postDate {
  font-family: "Jost", sans-serif;
}
.newsList .newsItem span.postTitle {
  width: 100%;
}

.posts-link {
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin: 0 auto;
}

/* お知らせ詳細 ---------------------------------------------*/
.newsDetailContent {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.post-single {
  display: flex;
  width: min(100%, 60rem);
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.125rem;
}
.post-single .post-header,
.post-single .post-mainBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.post-single .postTitle {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .post-single .postTitle {
    font-size: 1.5rem;
  }
}
.post-single .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}
.post-single .post-meta span {
  display: inline-block;
}
.post-single .post-meta span.postDate {
  font-family: "Jost", sans-serif;
}
.post-single .post-meta span.postCat {
  font-weight: 500;
}
.post-single .post-meta span.postCat.cat-gyouji {
  color: var(--pink);
}
.post-single .post-meta span.postCat.cat-recruit {
  color: var(--red);
}
.post-single .post-meta span.postCat.cat-houmikai {
  color: var(--perple);
}
.post-single .post-meta span.postCat.cat-iin {
  color: var(--link);
}
.post-single .post-meta span.postCat.cat-gairai {
  color: var(--orange);
}
.post-single .post-meta span.postCat.cat-nyuin {
  color: var(--green);
}
.post-single p {
  font-size: 1.125rem;
}
.post-single p.post-date {
  font-family: "Jost", sans-serif;
}
.post-single .post-mainBox img {
  max-width: 100%;
  height: auto;
}
.post-single .post-footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

/* @ pagenation ---------------------------------------------*/
.pagenation {
  padding-top: 4rem;
  text-align: center;
}
.pagenation ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 0.625em;
}
.pagenation ul li {
  display: inline-block;
  list-style: none;
  font-size: 1rem;
}
.pagenation ul li span,
.pagenation ul li a {
  display: inline-block;
  line-height: 1.25rem;
  min-width: 2.5rem;
  outline: none;
  text-align: center;
  border-radius: 0.3125rem;
  background: transparent;
  text-decoration: none;
  padding: 0.625rem;
}
.pagenation ul li span:hover,
.pagenation ul li a:hover {
  background: #fff;
}
.pagenation ul li span.is-current,
.pagenation ul li a.is-current {
  color: #fff !important;
}

/*-------------------------------------------/
    サイトマップ
/-------------------------------------------*/
.sitemap-list {
  width: min(100%, 87.5rem);
  margin: 0 auto;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 5rem 2.5rem;
}
.sitemap-list .listBox {
  width: min((100% - 8rem) / 3);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}
.sitemap-list .listBox a {
  display: block;
}
.sitemap-list .listBox a:hover {
  color: var(--local-clr, inherit);
}
@media screen and (max-width: 1023px) {
  .sitemap-list .listBox {
    width: min((100% - 4rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .sitemap-list {
    gap: 2.5rem;
  }
  .sitemap-list .listBox {
    width: 100%;
  }
}

/* WPForms　調整用*/
.wpforms-container,
.wpforms-container.wpforms-container-full,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full {
  width: 100%;
}
.wpforms-container .progressbar,
.wpforms-container .wpforms-field .progressbar,
.wpforms-container.wpforms-container-full .progressbar,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar {
  width: 100%;
}
.wpforms-container .progressbar ul,
.wpforms-container .wpforms-field .progressbar ul,
.wpforms-container.wpforms-container-full .progressbar ul,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul {
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  margin: 1.875rem auto;
  padding: 0;
  list-style: none !important;
}
.wpforms-container .progressbar ul li,
.wpforms-container .wpforms-field .progressbar ul li,
.wpforms-container.wpforms-container-full .progressbar ul li,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li {
  position: relative;
  flex: 1;
  list-style: none !important;
  padding: 1em;
  text-align: center;
  padding-right: 1.5625rem;
}
.wpforms-container .progressbar ul li::before,
.wpforms-container .wpforms-field .progressbar ul li::before,
.wpforms-container.wpforms-container-full .progressbar ul li::before,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, calc(100% - 1.5625rem) 0, 100% 50%, calc(100% - 1.5625rem) 100%, 0 100%);
  background: var(--white);
}
.wpforms-container .progressbar ul li::after,
.wpforms-container .wpforms-field .progressbar ul li::after,
.wpforms-container.wpforms-container-full .progressbar ul li::after,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -2;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  clip-path: polygon(0 0, calc(100% - 1.5625rem) 0, 100% 50%, calc(100% - 1.5625rem) 100%, 0 100%);
  background: #333333;
}
.wpforms-container .progressbar ul li:last-child::before,
.wpforms-container .wpforms-field .progressbar ul li:last-child::before,
.wpforms-container.wpforms-container-full .progressbar ul li:last-child::before,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li:last-child::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li:last-child::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li:last-child::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.wpforms-container .progressbar ul li:last-child::after,
.wpforms-container .wpforms-field .progressbar ul li:last-child::after,
.wpforms-container.wpforms-container-full .progressbar ul li:last-child::after,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li:last-child::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li:last-child::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li:last-child::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.wpforms-container .progressbar ul li.active,
.wpforms-container .wpforms-field .progressbar ul li.active,
.wpforms-container.wpforms-container-full .progressbar ul li.active,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li.active,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li.active,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li.active {
  color: var(--white);
}
.wpforms-container .progressbar ul li.active::before,
.wpforms-container .wpforms-field .progressbar ul li.active::before,
.wpforms-container.wpforms-container-full .progressbar ul li.active::before,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li.active::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li.active::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li.active::before {
  background: #333333;
}
.wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit,
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-next,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-submit-container .wpforms-submit,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-submit-container .wpforms-submit,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next {
  position: relative;
  letter-spacing: 0.05em;
  min-width: 16.25rem;
  height: auto;
  font-size: 1.25rem;
  line-height: 1;
  display: block;
  border: 1px solid var(--link);
  background-color: var(--link);
  text-align: center;
  color: var(--white);
  border-radius: 100vmax;
  padding: 1rem 1.875rem;
  margin: 1.875rem auto;
  cursor: pointer;
}
.wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit:hover,
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-next:hover,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-submit-container .wpforms-submit:hover,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next:hover,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-submit-container .wpforms-submit:hover,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit,
  .wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-next,
  .wpforms-container.wpforms-container-full .wpforms-form .wpforms-submit-container .wpforms-submit,
  .wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next,
  .wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-submit-container .wpforms-submit,
  .wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next {
    font-size: 1rem;
    line-height: 3;
  }
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak {
  margin: 3.125rem auto;
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev {
  position: relative;
  letter-spacing: 0.05em;
  min-width: 7.5rem;
  height: auto;
  font-size: 1.25rem;
  line-height: 1;
  display: inline-block;
  border: 1px solid var(--border);
  background-color: #fff;
  text-align: center;
  color: var(--black-11);
  border-radius: 100vmax;
  padding: 1rem 1.875rem 1rem 3.75rem;
  margin: 0 0.3125rem;
  cursor: pointer;
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev::after,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev::after {
  content: "";
  position: absolute;
  left: 1.5625rem;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  width: 1em;
  height: 1em;
  background: url("../images/common/icon-arrow_black.svg");
  background-size: 100% 100%;
  transition: 0.3s ease all;
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:active, .wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:focus,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:active,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:focus,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:active,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:focus {
  background: transparent;
  background-color: #fff;
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:hover,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:hover,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev,
  .wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev,
  .wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev {
    font-size: 1rem;
    line-height: 3;
  }
}

/* 完了画面 */
div.wpforms-container-full .wpforms-confirmation-container-full,
div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.thanks-message {
  margin: 2.5rem auto;
}
.thanks-message .btn-box {
  width: 100%;
  margin: 2.5rem auto;
  text-align: center;
}
.thanks-message .btn-box .btn-nomal {
  position: relative !important;
  display: inline-flex !important;
  background: var(--link) !important;
  width: 18.75rem !important;
  padding: 1rem 1.875rem !important;
  justify-content: center !important;
  align-items: center !important;
  color: var(--white) !important;
  border-radius: 100vmax !important;
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}
.thanks-message .btn-box .btn-nomal:hover {
  background: var(--yellow-green) !important;
}

/*=====================================================
		アニメーション
======================================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */