@charset "UTF-8";
/* import */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 62.5%;
  scroll-padding-top: 70px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  color: #534741;
  line-height: 1.8;
  background: #fff;
  position: relative;
}

/* import */
img {
  width: 100%;
  height: auto;
}

.wrap {
  overflow: clip;
}

.mt-20 {
  margin-top: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #534741;
  font-weight: bold;
  line-height: 1.2;
}

section {
  padding-block: clamp(60px, 5vw, 120px);
}
@media (max-width: 768px) {
  section {
    padding-block: 60px;
  }
}

.section-title {
  position: relative;
  font-size: 50px;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}
.section-title span {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.bold {
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4%;
  padding-right: 4%;
  box-sizing: content-box;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 4%;
  padding-right: 4%;
  box-sizing: content-box;
}

.btn-primary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: linear-gradient(to right, #747d7e, #b4aaa5);
  color: #fff;
  font-size: 2rem;
  padding: 0.8em 2em;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .btn-primary {
    padding: 0.8em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    opacity: 0.6;
    box-shadow: none;
  }
}

.btn-secondary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: linear-gradient(to right, #8b7d7e, #b2aaa5);
  color: #fff;
  font-size: 2rem;
  padding: 0.8em 2em;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .btn-secondary {
    padding: 0.8em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover {
    opacity: 0.6;
    box-shadow: none;
  }
}

.arrow {
  position: relative;
  display: inline-block;
  width: clamp(50px, 5.2083333333vw, 100px);
  height: 1px;
  margin-top: 7.8px;
  border-radius: 9999px;
  background-color: #ffffff;
}

.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 12px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

.triangle {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #b4aaa5;
  border-radius: 50%;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}

.triangle::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 6px;
  background: #ffffff;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  top: 51%;
  left: 54%;
  transform: translate(-50%, -50%);
}

.down {
  position: relative;
  display: inline-block;
  background-color: #534741;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.down::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-top: 5px solid #fff;
  border-bottom: 0;
}

footer a {
  color: #9b9494;
  text-decoration: none;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  footer a:hover {
    opacity: 0.6;
  }
}

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

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

@media (max-width: 960px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 960px) {
  .tab_db {
    display: block;
  }
}

.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 768px) {
  .bread ul li a {
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .bread ul li a:hover {
    opacity: 0.6;
  }
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

.sub-header {
  position: relative;
}
.sub-header .sub-ttl-bg {
  display: flex;
  justify-content: center;
  align-items: end;
  position: absolute;
  width: 50%;
  bottom: 0;
  border-radius: 0 10px 0 0;
  background-color: #fff;
  min-height: clamp(140px, 10.4166666667vw, 200px);
}
@media (max-width: 768px) {
  .sub-header .sub-ttl-bg {
    min-height: 120px;
    width: 84%;
  }
}
.sub-header .sub-ttl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: clamp(48px, 3.125vw, 60px);
  letter-spacing: 0;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 4%;
  padding-right: 4%;
  line-height: 1.4;
  box-sizing: content-box;
}
.sub-header .sub-ttl span {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #9b9494;
  margin-right: 30px;
}

.overview {
  padding-bottom: 0;
}
.overview__copy {
  font-weight: 400;
  line-height: 1.5;
}

.anchor-links {
  padding: 20px 0;
  margin-top: clamp(20px, 5vw, 40px);
}
.anchor-links nav {
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  .anchor-links nav {
    margin-bottom: 0;
    gap: 0;
  }
}
.anchor-links nav a {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  color: #534741;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .anchor-links nav a {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .anchor-links nav a:hover {
    transform: translateY(3px);
  }
}

.common-flex {
  margin-bottom: clamp(40px, 4.1666666667vw, 80px);
}
.common-flex__left {
  flex-basis: 30%;
}
@media (max-width: 768px) {
  .common-flex__left {
    flex-basis: 100%;
  }
}
.common-flex__right {
  flex-basis: 70%;
}
@media (max-width: 768px) {
  .common-flex__right {
    flex-basis: 100%;
  }
}
.common-flex:last-child {
  margin-bottom: 0;
}

.common-heading {
  font-size: 34px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .common-heading {
    margin-bottom: 20px;
  }
}

.common-sub-heading {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .common-sub-heading {
    margin-bottom: 20px;
  }
}

.bg-gray {
  background-color: #f4f5f7;
}

.scroll-hint-icon-bg {
  background-color: #534741;
}

.accordion-item {
  border-top: 1px solid #534741;
}
.accordion-item:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #534741;
}

.accordion-header {
  width: 100%;
  border: none;
  padding: 30px 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .accordion-header {
    padding: 15px;
  }
}
.accordion-header .accordion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .accordion-content {
    padding: 0 15px;
  }
}
.accordion-content.active {
  border-top: 1px solid #b3b3b3;
  max-height: 5000px;
  padding: 0 20px 20px;
}
@media (max-width: 768px) {
  .accordion-content.active {
    padding: 15px;
  }
}

.c-table {
  width: 100%;
}
.c-table tr {
  border: none;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.c-table td:nth-child(even) {
  padding: 4px 20px;
}
@media (max-width: 768px) {
  .c-table td:nth-child(even) {
    padding: 4px 10px;
  }
}
.c-table td:nth-child(odd) {
  width: 26%;
  padding: 4px 20px;
}
@media (max-width: 768px) {
  .c-table td:nth-child(odd) {
    width: 30%;
    letter-spacing: 0;
    padding: 4px 8px;
  }
}
.c-table--gray-header td:nth-child(odd) {
  background-color: #f4f5f7;
}
.c-table--white-header td:nth-child(odd) {
  background-color: #fff;
}

.c-executive-table {
  width: 100%;
}
.c-executive-table .c-executive-table__head {
  background: linear-gradient(to right, #747d7e, #b4aaa5);
  color: #fff;
  border-bottom: 10px solid #f4f5f7;
}
.c-executive-table tr:nth-child(even) {
  background-color: #fff;
}
.c-executive-table td:nth-child(even) {
  padding: 4px 20px;
}
@media (max-width: 768px) {
  .c-executive-table td:nth-child(even) {
    padding: 4px 10px;
  }
}
.c-executive-table td:nth-child(odd) {
  width: 26%;
  padding: 4px 20px;
  border-right: 10px solid #f4f5f7;
}
@media (max-width: 768px) {
  .c-executive-table td:nth-child(odd) {
    width: 45%;
    letter-spacing: 0;
    padding: 4px 8px;
  }
}
.c-executive-table--alt .c-executive-table__head {
  border-bottom-color: #fff;
}
.c-executive-table--alt tr:nth-child(even) {
  background-color: #f4f5f7;
}
.c-executive-table--alt td:nth-child(odd) {
  width: 30%;
  border-right-color: #fff;
}

.c-content-box {
  border-radius: 10px;
  padding: 20px 30px;
  margin-top: clamp(40px, 4.1666666667vw, 80px);
}
@media (max-width: 768px) {
  .c-content-box {
    padding: 20px;
  }
}
.c-content-box:not(:first-child) {
  margin-top: 30px;
}
.c-content-box .common-sub-heading {
  margin-bottom: 10px;
  line-height: 1.4;
}
.c-content-box ul li {
  text-indent: -10px;
  padding-left: 10px;
}
.c-content-box--white {
  background-color: #fff;
}
.c-content-box--gray {
  background-color: #f4f5f7;
}

.c-sidebar-layout {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .c-sidebar-layout {
    flex-direction: column;
    gap: 40px;
  }
}

.c-sidebar-nav {
  flex: 0 0 280px;
  position: sticky;
  top: 120px;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .c-sidebar-nav {
    position: relative;
    top: 0;
    flex: 1;
  }
}
.c-sidebar-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .c-sidebar-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
@media (max-width: 768px) {
  .c-sidebar-nav__list li {
    width: calc(50% - 10px);
  }
}
.c-sidebar-nav__link {
  display: block;
  width: 100%;
  padding: 10px 30px;
  color: #9b9494;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .c-sidebar-nav__link {
    padding: 20px 0;
    text-align: center;
  }
}
.c-sidebar-nav__link:hover {
  color: #534741;
  border-left-color: #534741;
}
.c-sidebar-nav__link.active {
  color: #534741;
  border-left: 2px solid #534741;
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-sidebar-nav__link.active {
    border-left: 0;
    border-bottom: 2px solid #534741;
  }
}

.c-sidebar-content {
  flex: 1;
}

.c-tab-panel {
  display: none;
}
.c-tab-panel.active {
  display: block;
}

.c-page-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: clamp(30px, 2.0833333333vw, 40px);
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .c-page-title {
    font-size: 24px;
  }
}

.c-bordered-content {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}

input[type=date] {
  position: relative;
}

#calendar2 .fc-header-toolbar {
  margin-bottom: 2em;
  margin-top: 0.6em;
}

/* import */
header {
  width: 100%;
  background-color: #fff;
  padding-block: 10px;
  position: fixed;
  top: 0;
  z-index: 112;
  min-height: 70px;
  max-height: 90px;
}

.header-inner {
  gap: clamp(10px, 3.125vw, 60px);
}
@media (max-width: 768px) {
  .header-inner {
    gap: 10px;
  }
}
.header-inner .site-logo {
  width: clamp(125px, 13.0208333333vw, 250px);
}
@media (max-width: 768px) {
  .header-inner .site-logo {
    width: 160px;
  }
}
.header-inner .site-logo img {
  aspect-ratio: 125/36;
}

.global-nav {
  width: 100%;
  max-width: clamp(680px, 41.6666666667vw, 800px);
}

.nav-list {
  display: flex;
  justify-content: end;
  gap: clamp(6px, 1.5625vw, 30px);
}
@media (hover: hover) and (pointer: fine) {
  .nav-list a {
    display: block;
    transition: 0.3s;
    font-size: clamp(14px, 0.8333333333vw, 16px);
  }
  .nav-list a:hover {
    transform: translateY(-4px);
  }
}

.header-icons {
  display: none;
  align-items: center;
  gap: 10px;
}
.header-icons .header-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header-icons .header-icon:hover {
    opacity: 0.6;
  }
}
.header-icons .header-icon img {
  width: 30px;
}
.header-icons .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header-icons .hamburger span {
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}
.header-icons .hamburger span:nth-child(1) {
  transform: translateY(-8px);
}
.header-icons .hamburger span:nth-child(3) {
  transform: translateY(8px);
}
.header-icons .hamburger.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.header-icons .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header-icons .hamburger.active span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 960px) {
  .header-icons {
    display: flex;
  }
  .global-nav {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #ddd;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    z-index: 112;
    pointer-events: none;
  }
  .global-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .global-nav .nav-list {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  .global-nav .nav-list li {
    padding: 1em 0;
    border-bottom: 1px solid;
  }
  .global-nav .nav-list li:last-of-type {
    border-bottom: 0;
  }
}
.float_links {
  position: fixed;
  top: 75%;
  right: 2%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 111;
}
.float_links .join-btn {
  width: clamp(120px, 9.375vw, 180px);
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.35));
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .float_links .join-btn:hover {
    opacity: 0.6;
    filter: none;
  }
}
.float_links .float-btn-primary,
.float_links .float-btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(88px, 5.625vw, 108px);
  height: clamp(88px, 5.625vw, 108px);
  border-radius: 50%;
  font-size: clamp(10px, 0.8333333333vw, 16px);
  padding: 0;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .float_links .float-btn-primary:hover,
  .float_links .float-btn-secondary:hover {
    opacity: 0.6;
    box-shadow: none;
  }
}
.float_links .float-btn-primary {
  background: linear-gradient(330deg, #747d7e, #b4aaa5);
}
.float_links .float-btn-secondary {
  background: linear-gradient(330deg, #8b7d7e, #b2aaa5);
}

@media (max-width: 960px) {
  .float_links {
    display: none;
  }
}
.sub-header {
  margin-top: clamp(70px, 5.2083333333vw, 100px);
}

/* import */
.footer_link {
  background-color: #fff;
  padding: 26px 0;
}
.footer_link nav {
  gap: clamp(30px, 4.6875vw, 90px);
}
.footer_link nav a {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .footer_link nav a {
    margin-inline: 2em;
    padding: 10px 0;
    flex-basis: 100%;
  }
}
.footer_link nav a .triangle {
  width: clamp(20px, 1.5625vw, 30px);
  height: clamp(20px, 1.5625vw, 30px);
  right: clamp(-30px, -2.0833333333vw, -40px);
}
@media (max-width: 768px) {
  .footer_link nav a .triangle {
    right: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer_link nav a:hover {
    transform: translateX(3px);
  }
}

.footer_cta {
  position: relative;
  background: url("../images/bg_footer_cta.jpg") center/cover no-repeat;
  margin-bottom: clamp(60px, 5vw, 120px);
}
.footer_cta h3 {
  font-size: clamp(20px, 1.7708333333vw, 34px);
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
}
.footer_cta .footer_cta_bg {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  margin: 40px auto 0;
}
@media (max-width: 1200px) {
  .footer_cta .footer_cta_bg {
    width: 90%;
    margin: 20px auto 0;
  }
}
.footer_cta .multiply {
  grid-area: 1/1/2/2;
  background: linear-gradient(to right, rgba(116, 125, 126, 0.8), rgba(180, 170, 165, 0.8));
  mix-blend-mode: multiply;
  border-radius: 10px;
  pointer-events: none;
  height: 100%;
}
.footer_cta__links {
  grid-area: 1/1/2/2;
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .footer_cta__links {
    padding: 4rem 1rem;
  }
}
.footer_cta__links .sub_text {
  font-weight: 600;
}
.footer_cta__links .main_text {
  font-weight: 600;
  font-size: clamp(34px, 2.6041666667vw, 50px);
}
@media (max-width: 768px) {
  .footer_cta__links .main_text {
    line-height: 1.3;
  }
}
.footer_cta__links .btns {
  max-width: 1000px;
  margin: auto;
  padding-block: clamp(17px, 1.7708333333vw, 34px);
  gap: 3rem;
}
@media (max-width: 768px) {
  .footer_cta__links .btns {
    gap: 1.5rem;
  }
}
.footer_cta__links .btns a {
  width: calc(50% - 2rem);
  max-width: 400px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer_cta__links .btns a {
    width: 100%;
  }
}
.footer_cta__links .btns__join {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: url(../images/bg_btn_cta.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  color: #534741;
  font-size: 2rem;
  padding: 0.8em 2em;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .footer_cta__links .btns__join {
    padding: 1.2em 0.8em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer_cta__links .btns__join:hover {
    opacity: 0.6;
    box-shadow: none;
  }
}
.footer_cta__links .btns__tel {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background-color: #fff;
  color: #534741;
  font-size: 2rem;
  padding: 0.8em 2em;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .footer_cta__links .btns__tel {
    padding: 1.2em 0.8em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer_cta__links .btns__tel:hover {
    opacity: 0.6;
    box-shadow: none;
  }
}
.footer_cta__links .btns .arrow {
  background-color: #534741;
}
.footer_cta__links .btns .arrow:before {
  background-color: #534741;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 30px;
  }
}
.footer .footer-logo {
  flex-basis: 25%;
}
.footer .footer-sns {
  flex-basis: 20%;
}
.footer .footer-sns a img {
  width: 40px;
}
.footer .footer-menu {
  padding-block: clamp(16px, 1.5625vw, 30px);
  border-block: 1px solid;
}
@media (max-width: 768px) {
  .footer .footer-menu {
    border-block: 0;
  }
}
.footer .footer-menu a {
  color: #9b9494;
}
.footer .footer-menu .footer-menu-ttl {
  padding-block: 10px;
}
.footer .footer-menu .footer-menu-ttl button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #534741;
  font-weight: 600;
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.footer .footer-menu .footer-menu-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer .footer-menu .footer-menu-flex .footer-menu-flex-li {
  width: 25%;
}
.footer .footer-menu .footer-menu-flex .footer-menu-flex-li ul {
  list-style: none;
}
.footer .footer-menu .footer-menu-flex .footer-menu-flex-li-mt {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .footer .footer-menu .footer-menu-flex .footer-menu-flex-li-mt {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
  }
}
.footer .footer-menu .footer-menu-other {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer .footer-menu .footer-menu-other {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer .footer-menu .footer-menu-flex {
    flex-direction: column;
    margin: 0 calc(50% - 50vw) 20px;
  }
  .footer .footer-menu .footer-menu-flex .footer-menu-flex-li {
    width: 100%;
  }
  .footer .footer-menu .footer-menu-flex .footer-menu-flex-li ul {
    border-top: 1px solid #ddd;
    padding: 0;
  }
  .footer .footer-menu .footer-menu-flex .footer-menu-flex-li ul li:not(.footer-menu-ttl) {
    display: none;
    padding: 8px 0;
  }
  .footer .footer-menu .footer-menu-flex .footer-menu-flex-li ul.open li:not(.footer-menu-ttl) {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  .footer .footer-menu .footer-menu-flex .footer-menu-ttl button {
    font-size: 1.6rem;
  }
  .footer .footer-menu .footer-menu-flex .footer-menu-ttl button::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s;
  }
  .footer .footer-menu .footer-menu-flex .footer-menu-ttl button.open::after {
    content: "−";
  }
}
.footer .footer-menu .pamphlet-links {
  gap: 20px;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer .footer-menu .pamphlet-links {
    gap: 10px;
  }
}
.footer .footer-menu .pamphlet-link {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
@media (max-width: 768px) {
  .footer .footer-menu .pamphlet-link {
    width: calc(50% - 5px);
  }
}
.footer .footer-menu .pamphlet-link img {
  max-width: 160px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer .copyright {
  padding-block: 2rem;
}
@media (max-width: 768px) {
  .footer .copyright {
    font-size: 14px;
    justify-content: center;
    padding-bottom: 120px;
    gap: 10px;
  }
}

@media (max-width: 960px) {
  .footer-address {
    text-align: center;
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 960px) and (max-width: 768px) {
  .footer-address {
    text-align: left;
  }
}
@media (max-width: 960px) {
  .footer-logo,
  .footer-sns {
    width: 200px;
    margin: auto;
    justify-content: center;
  }
  address {
    margin-bottom: 10px;
  }
}
@media (max-width: 960px) and (max-width: 768px) {
  address {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
.footer-slider-border {
  border-bottom: 1px solid;
}
@media (max-width: 768px) {
  .footer-slider-border {
    border-bottom: 0;
  }
}

.footer-slider-wrap {
  position: relative;
  width: 100%;
  padding: 40px 0;
  max-width: 1000px;
  margin: auto;
  /* スライド要素 */
  /* 矢印 */
  /* 枠外に出す */
  /* アイコンサイズ */
  /* ドット無効化 */
}
@media (max-width: 768px) {
  .footer-slider-wrap {
    border-block: 1px solid;
  }
}
.footer-slider-wrap .footer-slider {
  width: 100%;
  margin: 0 auto;
}
.footer-slider-wrap .footer-slider .slick-track {
  float: none;
  display: flex;
  gap: 20px;
  left: -170px;
}
@media (max-width: 768px) {
  .footer-slider-wrap .footer-slider .slick-track {
    gap: 10px;
    left: -85px;
  }
}
.footer-slider-wrap .slide-item {
  box-sizing: border-box;
}
.footer-slider-wrap .slide-item img {
  width: 100%;
  max-width: 320px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .footer-slider-wrap .slide-item img {
    max-width: 160px;
    height: 70px;
  }
}
.footer-slider-wrap .slick-prev,
.footer-slider-wrap .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: transparent;
  color: #b3b3b3;
  width: 12px;
  height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.footer-slider-wrap .slick-prev {
  left: -40px;
}
@media (max-width: 768px) {
  .footer-slider-wrap .slick-prev {
    left: -10px;
  }
}
.footer-slider-wrap .slick-next {
  right: -40px;
}
@media (max-width: 768px) {
  .footer-slider-wrap .slick-next {
    right: -10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-slider-wrap .slick-prev:hover,
  .footer-slider-wrap .slick-next:hover {
    color: #888;
  }
}
.footer-slider-wrap .slick-prev i,
.footer-slider-wrap .slick-next i {
  font-size: 20px;
  line-height: 1;
}
.footer-slider-wrap .slick-dots {
  display: none !important;
}

.btm_bnr {
  display: none;
}
@media (max-width: 960px) {
  .btm_bnr {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #f4f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 222;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  }
  .btm_bnr.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .btm_bnr a {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: auto;
  }
  .btm_bnr a img {
    width: 300px;
    height: auto;
  }
}

/* import */
/* ファーストビュー */
.fv {
  position: relative;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 960px) {
  .fv {
    margin-top: 64px;
  }
}
.fv .scroll_down {
  display: none;
}
@media (max-width: 768px) {
  .fv .scroll_down {
    display: block;
    position: absolute;
    bottom: 0px;
    right: 10%;
  }
  .fv .scroll_down a {
    position: absolute;
    left: 5px;
    bottom: 87px;
    color: #000;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.2em;
    writing-mode: vertical-lr;
    text-decoration: none;
    text-transform: uppercase;
  }
  .fv .scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #000;
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
  @keyframes circlemove {
    0% {
      bottom: 160px;
    }
    100% {
      bottom: 0px;
    }
  }
  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  .fv .scroll_down:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 160px;
    background: #000;
  }
}

/* aboutセクション */
.top-about {
  position: relative;
  z-index: 2;
  transform: translateY(-50%);
  padding: 0;
  /* テキスト */
}
@media (max-width: 768px) {
  .top-about {
    transform: translateY(-10%);
  }
}
.top-about .inner {
  gap: 30px;
}
.top-about .top-about-img {
  width: clamp(250px, 26.0416666667vw, 500px);
}
@media (max-width: 768px) {
  .top-about .top-about-img {
    width: 80%;
    margin: auto;
  }
}
.top-about .top-about-block {
  margin-top: clamp(0px, -1.5625vw, -30px);
  width: calc(100% - clamp(250px, 26.0416666667vw, 500px) - 30px);
}
@media (max-width: 768px) {
  .top-about .top-about-block {
    width: 100%;
    margin-top: 20px;
  }
}
.top-about .top-about-lead {
  color: #fff;
  font-size: clamp(20px, 1.3541666667vw, 26px);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .top-about .top-about-lead {
    color: #534741;
    border-bottom: 1px solid #534741;
  }
}
.top-about .top-about-catch {
  color: #fff;
  font-size: clamp(24px, 1.7708333333vw, 34px);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .top-about .top-about-catch {
    color: #534741;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .top-about .top-about-content {
    display: block;
  }
}

.top-about-more {
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
  margin-top: -160px;
  margin-bottom: clamp(60px, 6.25vw, 120px);
}
@media (max-width: 768px) {
  .top-about-more {
    margin-top: -60px;
  }
}

.top-news {
  background-color: #f4f5f7;
}
.top-news .top-news-list {
  width: 70%;
}
@media (max-width: 768px) {
  .top-news .top-news-list {
    width: 100%;
    margin-top: 20px;
  }
}
.top-news .top-news-list ul {
  padding-bottom: clamp(60px, 6.25vw, 120px);
}
@media (max-width: 768px) {
  .top-news .top-news-list ul {
    padding-bottom: 30px;
  }
}
.top-news .top-news-list ul li {
  border-bottom: 1px solid;
  padding-block: clamp(32px, 2.9166666667vw, 56px);
}
@media (max-width: 768px) {
  .top-news .top-news-list ul li {
    padding-inline: 32px;
  }
}
.top-news .top-news-list ul li:first-of-type {
  border-top: 1px solid;
}
.top-news .news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75em;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .top-news .news-item {
    gap: 0.3em;
  }
}
.top-news .news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5em;
}
@media (max-width: 960px) {
  .top-news .news-meta {
    width: 100%;
  }
}
.top-news .news-cat {
  border: 1px solid;
  padding: 0.1em 0.6em;
  border-radius: 3px;
  line-height: 1.4;
}
.top-news .news-title {
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .top-news .news-item:hover .news-title {
    opacity: 0.6;
    transition: 0.3s;
  }
}
.top-news .news-more {
  margin-left: auto;
  margin-right: 0;
  width: 100%;
  max-width: 400px;
}
.top-news .news-more .btn-primary {
  max-width: 400px;
  width: 100%;
}

@media (max-width: 768px) {
  .top-news-content {
    display: block;
  }
}
.top-join {
  position: relative;
  background: url("../images/top/bg_join.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-inline: 4rem;
  /* コンテンツ部分 */
}
.top-join .top-join-bg {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1200px) {
  .top-join .top-join-bg {
    width: 100%;
    margin: 20px auto 0;
  }
}
.top-join .top-join-multiply {
  grid-area: 1/1/2/2;
  background: linear-gradient(to right, rgba(116, 125, 126, 0.8), rgba(180, 170, 165, 0.8));
  mix-blend-mode: multiply;
  border-radius: 10px;
  pointer-events: none;
  height: 100%;
}
.top-join .top-join-content {
  grid-area: 1/1/2/2;
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .top-join .top-join-content {
    padding: 4rem;
  }
}
.top-join .section-title {
  color: #fff;
  text-align: center;
  font-size: clamp(24px, 2.6041666667vw, 50px);
  margin: auto;
  padding: 0;
}
.top-join .top-join-img img {
  display: block;
  width: clamp(80px, 7.03125vw, 135px);
  aspect-ratio: 160/140;
  margin: 0 auto 1rem;
}
.top-join .top-join-list {
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.0416666667vw, 20px);
  padding-top: clamp(32px, 2.9166666667vw, 56px);
  margin: auto;
}
@media (max-width: 768px) {
  .top-join .top-join-list {
    gap: 20px;
  }
}
.top-join .top-join-list a {
  position: relative;
  width: calc(33.3333333333% - 2rem);
  background-color: #fff;
  border-radius: 8px;
  padding: 0.8em 1em;
  font-size: clamp(20px, 1.3541666667vw, 26px);
  color: #534741;
  font-weight: 600;
  text-align: left;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-join .top-join-list a .triangle {
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .top-join .top-join-list a {
    width: 100%;
    padding: 1em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-join .top-join-list a:hover .triangle {
    transform: translate(5px, -50%);
  }
}

.top-cta {
  background-color: #f4f5f7;
}
.top-cta .top-cta-content {
  max-width: 1000px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 0.8em 1em;
  gap: clamp(10px, 1.0416666667vw, 20px);
}
.top-cta .top-cta-content .top-cta-lead {
  position: relative;
  font-size: clamp(20px, 1.3541666667vw, 26px);
}
.top-cta .top-cta-content .top-cta-lead .triangle {
  right: 0;
}
.top-cta .top-cta-content a {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  width: calc(50% - 1rem);
  padding: 2em 1em;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top-cta .top-cta-content a {
    width: 100%;
    padding: 1em 0;
  }
}
.top-cta .top-cta-content a .triangle {
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-cta .top-cta-content a:hover .triangle {
    transform: translate(5px, -50%);
  }
}

.top-event .top-event-calender {
  margin-top: 30px;
}

.top-hall {
  padding-top: 0;
}
.top-hall .top-hall-bg {
  position: relative;
  background: url("../images/top/bg_aichikaikan.jpg") center/cover no-repeat;
  aspect-ratio: 16/5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .top-hall .top-hall-bg {
    aspect-ratio: 375/320;
    margin-bottom: 30px;
  }
}
.top-hall .top-hall-title {
  width: 100%;
  transform: translateY(7.8125vw);
}
@media (max-width: 768px) {
  .top-hall .top-hall-title {
    transform: translateY(0);
  }
}
.top-hall .top-hall-lead {
  text-align: center;
  padding-inline: 1rem;
  color: #fff;
  font-size: clamp(24px, 2.6041666667vw, 50px);
  margin-bottom: 11.4583333333vw;
}
@media (max-width: 768px) {
  .top-hall .top-hall-lead {
    margin-bottom: 20px;
  }
}
.top-hall .top-hall-links {
  max-width: 1000px;
  margin: auto;
  padding: 2em;
  border-radius: 15px;
  background-color: rgba(244, 245, 247, 0.7);
  gap: 3rem;
}
@media (max-width: 768px) {
  .top-hall .top-hall-links {
    padding: 2em;
    gap: 2rem;
  }
}
.top-hall .top-hall-links a {
  width: calc(50% - 2rem);
  max-width: 400px;
}
@media (max-width: 768px) {
  .top-hall .top-hall-links a {
    width: 100%;
    padding: 0.5em 1em;
  }
}
.top-hall .top-hall-detail {
  gap: clamp(10px, 1.5625vw, 30px);
}
@media (max-width: 768px) {
  .top-hall .top-hall-detail {
    flex-direction: column-reverse;
  }
}
.top-hall .top-hall-detail ul {
  flex-basis: 50%;
}
@media (max-width: 768px) {
  .top-hall .top-hall-detail ul {
    flex-basis: 100%;
    width: 100%;
  }
}
.top-hall .top-hall-detail ul li {
  border-bottom: 1px solid;
  padding-block: clamp(20px, 1.5625vw, 30px);
}
@media (max-width: 768px) {
  .top-hall .top-hall-detail .top-hall-detail-tel {
    display: none;
  }
}
.top-hall .top-hall-detail .top-hall-detail-img {
  flex-basis: calc(50% - 30px);
}
@media (max-width: 768px) {
  .top-hall .top-hall-detail .top-hall-detail-img {
    flex-basis: 100%;
  }
}
.top-hall .top-hall-detail .top-hall-detail-img p {
  margin-top: 2rem;
}

.top-gallery .section-title {
  padding-right: 50px;
}
.top-gallery .section-title .triangle {
  right: 0;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-gallery .section-title:hover .triangle {
    transform: translate(5px, -50%);
  }
}

.top-map .section-title {
  padding-right: 50px;
}
.top-map .section-title .triangle {
  right: 0;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-map .section-title:hover .triangle {
    transform: translate(5px, -50%);
  }
}
.top-map .top-map-gmap {
  position: relative;
  width: 100%;
  padding-top: 42.85%;
  height: 0;
}
@media (max-width: 768px) {
  .top-map .top-map-gmap {
    padding-top: 100%;
    width: 100vw;
    margin: 10px calc(50% - 50vw) 0;
  }
}
.top-map .top-map-gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-map .top-map-access {
  position: relative;
  padding-top: clamp(32px, 2.9166666667vw, 56px);
}
@media (max-width: 768px) {
  .top-map .top-map-access {
    gap: 80px;
  }
}
.top-map .top-map-access::after {
  content: "";
  width: 1px;
  height: 88%;
  background-color: #534741;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top-map .top-map-access::after {
    width: 100%;
    height: 1px;
    bottom: 35%;
    transform: translate(-50%, 50%);
  }
}
.top-map .top-map-access h3 {
  margin-block: 2rem;
  text-align: center;
  font-size: 2rem;
}
.top-map .top-map-access .notice {
  font-size: 1rem;
  margin-top: 1rem;
}
.top-map .top-map-access .top-map-access-train,
.top-map .top-map-access .top-map-access-car {
  width: 440px;
}
@media (max-width: 960px) {
  .top-map .top-map-access .top-map-access-train,
  .top-map .top-map-access .top-map-access-car {
    width: 43.75vw;
  }
}
@media (max-width: 768px) {
  .top-map .top-map-access .top-map-access-train,
  .top-map .top-map-access .top-map-access-car {
    width: 100%;
  }
}
.top-map .top-map-access .top-map-access-train img {
  display: block;
  max-width: clamp(32px, 2.7083333333vw, 52px);
  margin: auto;
}
.top-map .top-map-access .top-map-access-car img {
  display: block;
  max-width: clamp(38px, 3.0208333333vw, 58px);
  margin: auto;
}

.top-sns .top-sns-links {
  width: 67%;
  border-block: 1px solid;
  padding-block: clamp(32px, 3vw, 56px);
}
@media (max-width: 768px) {
  .top-sns .top-sns-links {
    width: 100%;
    gap: 20px;
  }
}
.top-sns .top-sns-links a {
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top-sns .top-sns-links a {
    width: 100%;
  }
}
.top-sns .top-sns-links a img {
  width: clamp(30px, 2.6041666667vw, 50px);
  margin-right: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .top-sns .top-sns-links a:hover {
    opacity: 0.6;
  }
}

/* import */
.sub-about {
  background: url("../images/about/sub_head_about.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-about {
    background: url("../images/about/sub_head_about_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.about-policy .common-flex__right {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
}
.about-policy .common-flex__right ul li {
  text-indent: -16px;
  padding-left: 16px;
  padding-block: 4px;
}
.about-policy .about-policy-purpose {
  gap: 20px;
}
@media (max-width: 768px) {
  .about-policy .about-policy-purpose {
    justify-content: center;
  }
}
.about-policy .about-policy-purpose__left {
  flex-basis: calc(50% - 10px);
}
@media (max-width: 768px) {
  .about-policy .about-policy-purpose__left {
    flex-basis: 100%;
  }
}
.about-policy .about-policy-purpose__right {
  flex-basis: calc(50% - 10px);
}
@media (max-width: 768px) {
  .about-policy .about-policy-purpose__right {
    flex-basis: 90%;
  }
}

.about-chairman-greeting .common-heading {
  margin-bottom: 20px;
}
.about-chairman-greeting .common-sub-heading {
  font-weight: 600;
  line-height: 1.5;
}
.about-chairman-greeting .common-flex {
  margin-top: clamp(15px, 1.5625vw, 30px);
  gap: 30px;
}
@media (max-width: 768px) {
  .about-chairman-greeting .common-flex {
    justify-content: center;
  }
}
.about-chairman-greeting .common-flex__left {
  flex-basis: calc(30% - 15px);
}
@media (max-width: 768px) {
  .about-chairman-greeting .common-flex__left {
    flex-basis: 70%;
  }
}
.about-chairman-greeting .common-flex__right {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
  flex-basis: calc(70% - 15px);
}
@media (max-width: 768px) {
  .about-chairman-greeting .common-flex__right {
    flex-basis: 100%;
  }
}
.about-chairman-greeting .chairman-name {
  text-align: right;
  margin-top: 10px;
}
.about-chairman-greeting .chairman-name span {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-history td {
    font-size: 14px;
  }
}
.about-history td:nth-child(odd) {
  width: 40%;
}
@media (max-width: 768px) {
  .about-history td:nth-child(odd) {
    width: 30%;
  }
}

.about-mark .common-heading {
  margin-bottom: 20px;
}
.about-mark .common-sub-heading {
  font-weight: 600;
  line-height: 1.5;
}
.about-mark .common-flex {
  margin-top: clamp(15px, 1.5625vw, 30px);
  gap: 100px;
}
@media (max-width: 768px) {
  .about-mark .common-flex {
    gap: 30px;
  }
}
.about-mark .common-flex__left {
  flex-basis: calc(30% - 50px);
}
@media (max-width: 768px) {
  .about-mark .common-flex__left {
    flex-basis: 100%;
    border-top: 1px solid;
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .about-mark .common-flex__left img {
    display: block;
    width: 70%;
    margin: auto;
  }
}
.about-mark .common-flex__right {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
  flex-basis: calc(70% - 50px);
}
@media (max-width: 768px) {
  .about-mark .common-flex__right {
    flex-basis: 100%;
    border-top: 0;
    padding-top: 0;
  }
}
.about-mark .chairman-name {
  text-align: right;
}
.about-mark .chairman-name span {
  font-size: 20px;
  font-weight: 600;
}

/* import */
.sub-structure {
  background: url("../images/structure/sub_head_structure.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-structure {
    background: url("../images/structure/sub_head_structure_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.about-us .common-sub-heading {
  font-weight: 600;
}
.about-us .organizational-chart {
  margin-bottom: 60px;
}
.about-us .organizational-chart h3 {
  font-size: 20px;
  margin-bottom: clamp(20px, 2.0833333333vw, 40px);
}
.about-us .branch-chief-list h3 {
  font-size: 20px;
  margin-bottom: clamp(20px, 2.0833333333vw, 40px);
}
.about-us .branch-chief-list .branch-item {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .about-us .branch-chief-list .branch-item {
    gap: 10px;
    padding: 15px 0;
    width: 720px;
  }
}
.about-us .branch-chief-list .branch-item:last-child {
  border-bottom: none;
}
.about-us .branch-chief-list .branch-name {
  flex: 0 0 200px;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .about-us .branch-chief-list .branch-name {
    flex: 0 0 30px;
    writing-mode: vertical-rl;
  }
}
.about-us .branch-chief-list .branch-info {
  flex: 1;
}
.about-us .branch-chief-list .branch-info a {
  text-decoration: underline;
}
.about-us .branch-chief-list .branch-info ul li {
  display: flex;
  padding-left: 20px;
  padding-block: 4px;
}
@media (max-width: 768px) {
  .about-us .branch-chief-list .branch-info ul li {
    padding-left: 10px;
  }
}
.about-us .branch-chief-list .branch-info ul li:nth-child(odd) {
  background-color: #f4f5f7;
}
.about-us .branch-chief-list .branch-info ul li span {
  flex: 0 0 160px;
}
@media (max-width: 768px) {
  .about-us .branch-chief-list .branch-info ul li span {
    flex: 0 0 116px;
  }
}

.instructor .common-sub-heading {
  font-weight: 600;
}
.instructor .c-executive-table tr:nth-child(even) {
  background-color: #fff;
}

.youth .common-sub-heading {
  font-weight: 600;
}
.youth .c-executive-table {
  margin-top: 30px;
}
.youth .c-executive-table .c-executive-table__head {
  border-bottom-color: #fff;
}
.youth .c-executive-table tr:nth-child(even) {
  background-color: #f4f5f7;
}
.youth .c-executive-table td:nth-child(odd) {
  width: 30%;
  border-right-color: #fff;
}
@media (max-width: 768px) {
  .youth .c-executive-table td:nth-child(odd) {
    width: 40%;
  }
}

/* import */
.sub-services {
  background: url("../images/services/sub_head_services.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-services {
    background: url("../images/services/sub_head_services_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.services-info {
  padding-block: clamp(40px, 4.1666666667vw, 80px);
  margin-top: clamp(40px, 4.1666666667vw, 80px);
}
@media (max-width: 768px) {
  .services-info .c-page-title {
    margin-bottom: 0;
  }
}

.services-content a {
  text-decoration: underline;
}
.services-content .btn-secondary {
  text-decoration: none;
  max-width: 390px;
  margin: 20px auto;
}
.services-content .accordion-content.active {
  border-top: 0;
}
.services-content__body {
  line-height: 1.8;
  background-color: #fff;
  margin-bottom: 30px;
}
.services-content__body .services-compensation {
  margin-bottom: 30px;
}
.services-content__body .services-compensation:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .services-content__body .services-compensation .common-flex__left img {
    max-width: 190px;
    display: block;
    margin: auto;
    width: 50%;
  }
}
.services-content__body .services-compensation .common-flex__right {
  padding-left: 20px;
}
@media (max-width: 768px) {
  .services-content__body .services-compensation .common-flex__right {
    padding-left: 0;
    margin-top: 20px;
  }
}
.services-content__body .services-compensation .kitsuke-list {
  width: 100%;
}
.services-content__body .services-compensation .kitsuke-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.services-content__body .services-compensation .kitsuke-list li h6 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  width: 40px;
  background: linear-gradient(to right, #747d7e, #b4aaa5);
  color: #fff;
  writing-mode: vertical-rl;
}
.services-content__body .services-compensation .kitsuke-list p {
  width: calc(100% - 50px);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  background-color: #f4f5f7;
  padding: 10px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .services-content__body .services-compensation .services-info__table {
    width: 640px;
  }
}
.services-content__body .services-compensation .school-list li {
  padding-block: 4px;
  padding-inline: 14px;
  border-top: 1px solid;
}
.services-content__body .services-compensation .school-list li:last-child {
  border-bottom: 1px solid;
}
@media (max-width: 768px) {
  .services-content__body .services-compensation .school-list li {
    padding-inline: 0;
  }
}
.services-content__body .services-compensation-amount {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
}
.services-content__body .services-compensation-amount h5 {
  margin-top: 30px;
}
.services-content .mutual-aid-item {
  border-top: 1px solid #534741;
  border-bottom: 1px solid #534741;
  padding: 30px 40px;
}

/* import */
.sub-facilities {
  background: url("../images/facilities/sub_head_facilities.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-facilities {
    background: url("../images/facilities/sub_head_facilities_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.facilities-page .btn-secondary {
  max-width: 560px;
  margin: auto;
  font-size: 28px;
  padding: 0.8em 1.5em;
}
@media (max-width: 768px) {
  .facilities-page .btn-secondary {
    font-size: 20px;
    width: 90%;
    align-items: center;
    line-height: 1.4;
    padding: 0.8em 2em;
  }
}

.facilities-info .common-flex__right {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
}
.facilities-info .facilities-slider {
  margin-block: clamp(30px, 3.125vw, 60px);
}
.facilities-info .facilities-slider div {
  margin: 0 4px;
}

.facilities-layout .common-flex__right {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
}
.facilities-layout .facilities-floor {
  margin-bottom: clamp(50px, 6.25vw, 120px);
}
.facilities-layout .facilities-floor h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.facilities-layout .facilities-floor p {
  margin-top: 10px;
}
.facilities-layout .facilities-floor-img-l {
  width: calc((100% - 36px) / 3);
}
.facilities-layout .facilities-floor-img-m {
  width: 100%;
  max-width: 327px;
}
@media (max-width: 768px) {
  .facilities-layout .facilities-floor-img-m {
    max-width: 163px;
  }
}
.facilities-layout .facilities-floor-img-s {
  width: 100%;
  max-width: 305px;
}
@media (max-width: 768px) {
  .facilities-layout .facilities-floor-img-s {
    max-width: 163px;
  }
}
@media (max-width: 768px) {
  .facilities-layout .facilities-floor-wrap {
    gap: 18px;
  }
}
.facilities-layout .floor-img-wrap2 {
  flex-direction: column;
}
@media (max-width: 768px) {
  .facilities-layout .floor-img-wrap2 {
    flex-direction: row;
    gap: 18px;
  }
}

/* import */
.sub-reserve {
  background: url("../images/reserve/sub_head_reserve.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-reserve {
    background: url("../images/reserve/sub_head_reserve_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.facilities-page .floor-guide__title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: clamp(30px, 3.125vw, 60px);
}
.facilities-page .floor-guide__content {
  margin-bottom: clamp(60px, 6.25vw, 120px);
}
.facilities-page .floor-guide__content:last-child {
  margin-bottom: 0;
}
.facilities-page .floor-guide__content-item {
  margin-bottom: 30px;
}
.facilities-page .floor-guide__content-item .floor-guide__content-item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .facilities-page .floor-guide__content-item .floor-guide__item-img-wrap {
    gap: 18px;
  }
}
.facilities-page .floor-guide__content-item .floor-guide__item-img-wrap .floor-guide__item-img-wrap-item {
  width: 100%;
  max-width: 662px;
}
.facilities-page .floor-guide__content-item .floor-guide__item-img-wrap2 {
  flex-direction: column;
}
@media (max-width: 768px) {
  .facilities-page .floor-guide__content-item .floor-guide__item-img-wrap2 {
    flex-direction: row;
    gap: 18px;
  }
}
.facilities-page .floor-guide__content-item .floor-guide__item-img-wrap2 img {
  width: 100%;
  max-width: 332px;
}
.facilities-page .price-table__note {
  font-size: 14px;
}
.facilities-page .price-table__note p {
  font-weight: 600;
}

.price-table {
  width: 100%;
  max-width: 660px;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .price-table {
    width: 430px;
  }
}
.price-table thead tr {
  background: linear-gradient(to right, #747d7e, #b4aaa5);
  color: #fff;
}
.price-table th,
.price-table td {
  height: 40px;
  padding: 8px 16px;
  border: 1px solid #b3b3b3;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .price-table th,
  .price-table td {
    padding: 8px;
    font-size: 14px;
  }
}
.price-table th {
  font-weight: 600;
}
.price-table td {
  text-align: right;
}
.price-table td:first-child {
  text-align: left;
}
.price-table td:first-child {
  text-align: left;
}
.price-table__note-small {
  font-size: 12px;
}
.price-table__note-link {
  color: #534741;
  text-decoration: underline;
}

.price-table2 {
  max-width: 100%;
}
@media (max-width: 768px) {
  .price-table2 {
    max-width: none;
    width: 730px;
  }
}

.price-table3 {
  max-width: 500px;
}
@media (max-width: 768px) {
  .price-table3 {
    max-width: 370px;
  }
}

.usage-example .common-flex__right {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
}
.usage-example .facilities-slider {
  margin-block: clamp(30px, 3.125vw, 60px);
}
.usage-example .facilities-slider div {
  margin: 0 4px;
}

.usage-guide .common-flex__right {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
}
.usage-guide .common-flex__right ul li {
  text-indent: -14px;
  padding-left: 14px;
}
.usage-guide .usage-guide-purpose {
  gap: 20px;
}
@media (max-width: 768px) {
  .usage-guide .usage-guide-purpose {
    justify-content: center;
  }
}
.usage-guide .usage-guide-purpose__left {
  flex-basis: calc(50% - 10px);
}
@media (max-width: 768px) {
  .usage-guide .usage-guide-purpose__left {
    flex-basis: 100%;
  }
}
.usage-guide .usage-guide-purpose__right {
  flex-basis: calc(50% - 10px);
}
@media (max-width: 768px) {
  .usage-guide .usage-guide-purpose__right {
    flex-basis: 90%;
  }
}

.usage-guide__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(40px, 4.1666666667vw, 80px);
}
.usage-guide__flow .flow-step {
  width: 482px;
  height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #b3b3b3;
  background: linear-gradient(to right, #747d7e, #b4aaa5);
}
@media (max-width: 768px) {
  .usage-guide__flow .flow-step {
    width: 100%;
    max-width: 482px;
    height: auto;
    min-height: 78px;
    padding: 16px;
  }
}
.usage-guide__flow .flow-step span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .usage-guide__flow .flow-step span {
    font-size: 14px;
  }
}
.usage-guide__flow .flow-step--last {
  background: url("../images/reserve/bg-flow-04.jpg") center/cover no-repeat;
}
.usage-guide__flow .flow-step--last span {
  color: #534741;
}
.usage-guide__flow .flow-arrow {
  color: #534741;
  font-size: 24px;
}
@media (max-width: 768px) {
  .usage-guide__flow .flow-arrow {
    font-size: 20px;
  }
}

.floor-guide__note {
  margin-bottom: 30px;
}
.floor-guide__note p {
  font-weight: 600;
}
.floor-guide__note ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}

.discount-plan .discount-plan__title {
  font-size: 20px;
  font-weight: 600;
}
.discount-plan .discount-plan__target {
  font-weight: 600;
}

/* import */
.sub-contact {
  background: url("../images/other/sub_head_contact.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-contact {
    background: url("../images/other/sub_head_contact_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.contact-links {
  margin-top: clamp(30px, 3.125vw, 60px);
  margin-bottom: clamp(50px, 5.2083333333vw, 100px);
}

.contact-links__list {
  gap: 20px;
}
@media (max-width: 768px) {
  .contact-links__list {
    gap: 20px;
  }
}

.contact-links__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 20px);
  aspect-ratio: 3/2;
  background: linear-gradient(to right, #747d7e, #b4aaa5);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .contact-links__item {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact-links__item:hover {
    opacity: 0.7;
  }
}
.contact-links__item p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.contact-links__item img {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}

/* import */
.sub-faq {
  background: url("../images/other/sub_head_faq.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-faq {
    background: url("../images/other/sub_head_faq_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.faq-list .accordion-item {
  border: 1px solid #534741;
  margin-bottom: 20px;
}
.faq-list .accordion-content.active {
  border-top: 0;
}
@media (max-width: 768px) {
  .faq-list .accordion-content.active {
    padding: 15px;
  }
}
.faq-list .c-content-box {
  margin-top: 0;
  margin-bottom: 20px;
}

/* import */
.sub-privacy {
  background: url("../images/other/sub_head_privacy.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-privacy {
    background: url("../images/other/sub_head_privacy_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.privacy-policy {
  margin-top: clamp(30px, 3.125vw, 60px);
  margin-bottom: clamp(50px, 5.2083333333vw, 100px);
}

.privacy-article {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
  margin-bottom: clamp(40px, 4.1666666667vw, 80px);
}
.privacy-article ol,
.privacy-article ul li {
  text-indent: -16px;
  padding-left: 16px;
  padding-block: 4px;
}
.privacy-article .mt-20 {
  margin-top: 20px;
}

/* import */
.sub-news {
  background: url("../images/other/sub_head_news.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-news {
    background: url("../images/other/sub_head_news_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.sub-members {
  background: url("../images/other/sub_head_news.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-members {
    background: url("../images/other/sub_head_news_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.members-logout {
  text-align: center;
  position: fixed;
  top: 90px;
  right: 10px;
  background-color: #fff;
  z-index: 1000;
}
.members-logout__btn {
  display: inline-block;
  padding: 8px 24px;
  font-size: 14px;
  color: #534741;
  text-decoration: none;
  border: 1px solid #534741;
  background-color: transparent;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .members-logout__btn {
    padding: 6px 20px;
    font-size: 13px;
  }
}
.members-logout__btn:hover {
  background-color: #534741;
  color: #fff;
}

.members-login-required {
  padding-top: clamp(40px, 4.1666666667vw, 80px);
  padding-bottom: clamp(60px, 6.25vw, 120px);
}
.members-login-required__content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.members-login-required__message {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #534741;
}
@media (max-width: 768px) {
  .members-login-required__message {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.members-login-required #wpmem_login,
.members-login-required form {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  text-align: left;
}
@media (max-width: 768px) {
  .members-login-required #wpmem_login,
  .members-login-required form {
    padding: 24px 20px;
  }
}
.members-login-required #wpmem_login fieldset,
.members-login-required form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.members-login-required #wpmem_login legend,
.members-login-required form legend {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 0;
  color: #534741;
  width: 100%;
}
@media (max-width: 768px) {
  .members-login-required #wpmem_login legend,
  .members-login-required form legend {
    font-size: 18px;
  }
}
.members-login-required #wpmem_login label,
.members-login-required form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #534741;
}
.members-login-required #wpmem_login input[type=text],
.members-login-required #wpmem_login input[type=password],
.members-login-required #wpmem_login input[type=email],
.members-login-required #wpmem_login input.username,
.members-login-required #wpmem_login input.password,
.members-login-required form input[type=text],
.members-login-required form input[type=password],
.members-login-required form input[type=email],
.members-login-required form input.username,
.members-login-required form input.password {
  width: 100% !important;
  padding: 12px 16px !important;
  font-size: 16px !important;
  border: 1px solid #b4aaa5 !important;
  border-radius: 4px !important;
  margin-bottom: 20px;
  background-color: #fff !important;
  box-sizing: border-box;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.members-login-required #wpmem_login input[type=text]:focus,
.members-login-required #wpmem_login input[type=password]:focus,
.members-login-required #wpmem_login input[type=email]:focus,
.members-login-required #wpmem_login input.username:focus,
.members-login-required #wpmem_login input.password:focus,
.members-login-required form input[type=text]:focus,
.members-login-required form input[type=password]:focus,
.members-login-required form input[type=email]:focus,
.members-login-required form input.username:focus,
.members-login-required form input.password:focus {
  outline: none;
  border-color: #534741 !important;
}
.members-login-required #wpmem_login .div_text,
.members-login-required #wpmem_login .div_password,
.members-login-required #wpmem_login .textbox,
.members-login-required #wpmem_login p,
.members-login-required form .div_text,
.members-login-required form .div_password,
.members-login-required form .textbox,
.members-login-required form p {
  margin-bottom: 16px;
}
.members-login-required #wpmem_login .button_div,
.members-login-required #wpmem_login .login-submit,
.members-login-required form .button_div,
.members-login-required form .login-submit {
  margin-top: 10px;
}
.members-login-required #wpmem_login input[type=submit],
.members-login-required #wpmem_login button[type=submit],
.members-login-required form input[type=submit],
.members-login-required form button[type=submit] {
  width: 100% !important;
  padding: 14px 24px !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(to right, #747d7e, #b4aaa5) !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer;
  transition: opacity 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.members-login-required #wpmem_login input[type=submit]:hover,
.members-login-required #wpmem_login button[type=submit]:hover,
.members-login-required form input[type=submit]:hover,
.members-login-required form button[type=submit]:hover {
  opacity: 0.8;
}
.members-login-required #wpmem_login .link-text,
.members-login-required #wpmem_login .nav,
.members-login-required form .link-text,
.members-login-required form .nav {
  margin-top: 20px;
  text-align: center;
}
.members-login-required #wpmem_login .link-text a,
.members-login-required #wpmem_login .nav a,
.members-login-required form .link-text a,
.members-login-required form .nav a {
  color: #534741;
  text-decoration: underline;
  font-size: 14px;
}
.members-login-required #wpmem_login .link-text a:hover,
.members-login-required #wpmem_login .nav a:hover,
.members-login-required form .link-text a:hover,
.members-login-required form .nav a:hover {
  text-decoration: none;
}
.members-login-required #wpmem_login input[type=checkbox],
.members-login-required form input[type=checkbox] {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  margin: 0 8px 0 0 !important;
  border: 2px solid #b4aaa5 !important;
  border-radius: 3px !important;
  background-color: #fff !important;
  cursor: pointer;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
       appearance: checkbox !important;
  vertical-align: middle;
  flex-shrink: 0;
}
.members-login-required #wpmem_login input[type=checkbox]:checked,
.members-login-required form input[type=checkbox]:checked {
  background-color: #534741 !important;
  border-color: #534741 !important;
}
.members-login-required #wpmem_login .remember-me,
.members-login-required #wpmem_login .rememberme,
.members-login-required #wpmem_login .login-remember,
.members-login-required form .remember-me,
.members-login-required form .rememberme,
.members-login-required form .login-remember {
  display: flex !important;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}
.members-login-required #wpmem_login .remember-me label,
.members-login-required #wpmem_login .rememberme label,
.members-login-required #wpmem_login .login-remember label,
.members-login-required form .remember-me label,
.members-login-required form .rememberme label,
.members-login-required form .login-remember label {
  display: inline-flex !important;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
}
.members-login-required #wpmem_login .remember-me input[type=checkbox],
.members-login-required #wpmem_login .rememberme input[type=checkbox],
.members-login-required #wpmem_login .login-remember input[type=checkbox],
.members-login-required form .remember-me input[type=checkbox],
.members-login-required form .rememberme input[type=checkbox],
.members-login-required form .login-remember input[type=checkbox] {
  margin-bottom: 0 !important;
}
.members-login-required #loginform label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #534741;
}
.members-login-required #loginform input[type=text],
.members-login-required #loginform input[type=password] {
  width: 100% !important;
  padding: 12px 16px !important;
  font-size: 16px !important;
  border: 1px solid #b4aaa5 !important;
  border-radius: 4px !important;
  margin-bottom: 20px;
  background-color: #fff !important;
  box-sizing: border-box;
}
.members-login-required #loginform .login-remember {
  margin-bottom: 20px;
}
.members-login-required #loginform .login-submit {
  margin-top: 10px;
}
.members-login-required #loginform .login-submit input[type=submit] {
  width: 100% !important;
  padding: 14px 24px !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(to right, #747d7e, #b4aaa5) !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer;
  transition: opacity 0.3s;
}
.members-login-required #loginform .login-submit input[type=submit]:hover {
  opacity: 0.8;
}

.news-archive {
  margin-top: clamp(30px, 3.125vw, 60px);
  margin-bottom: clamp(50px, 5.2083333333vw, 100px);
}
@media (max-width: 768px) {
  .news-archive {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.news-archive__layout {
  display: flex;
  gap: 60px;
}
@media (max-width: 768px) {
  .news-archive__layout {
    flex-direction: column;
    gap: 40px;
  }
}

.news-sidebar {
  flex-shrink: 0;
  width: 250px;
}
@media (max-width: 768px) {
  .news-sidebar {
    width: 100%;
  }
}
.news-sidebar__section {
  margin-bottom: 40px;
}
.news-sidebar__section:last-child {
  margin-bottom: 0;
}
.news-sidebar__title {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #534741;
}
.news-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .news-sidebar__list {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .news-sidebar__list::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .news-sidebar__item {
    flex-shrink: 0;
  }
}
.news-sidebar__item a {
  display: block;
  color: #9b9494;
  text-decoration: none;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  transition: color 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .news-sidebar__item a {
    white-space: nowrap;
    padding-bottom: 6px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-sidebar__item a:hover {
    color: #534741;
  }
}
.news-sidebar__item.is-active a {
  color: #534741;
  font-weight: 500;
  padding-left: 12px;
}
.news-sidebar__item.is-active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background-color: #534741;
}
@media (max-width: 768px) {
  .news-sidebar__item.is-active a {
    padding-left: 0;
  }
  .news-sidebar__item.is-active a::before {
    display: none;
  }
  .news-sidebar__item.is-active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #534741;
  }
}
.news-sidebar__select-wrap {
  position: relative;
}
.news-sidebar__select-wrap::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #534741;
}
.news-sidebar__select {
  width: 100%;
  padding: 10px 36px 10px 12px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  color: #534741;
  background-color: #fff;
  border-bottom: 1px solid #534741;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
}
.news-sidebar__select:focus {
  outline: none;
  border-color: #534741;
}

.news-list {
  flex: 1;
}
.news-list__item {
  border-bottom: 1px solid #ccc;
}
.news-list__item:first-child {
  border-top: 1px solid #ccc;
}
.news-list__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 3.5vw, 50px) 14px;
  text-decoration: none;
  color: #534741;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .news-list__link {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-list__link:hover {
    opacity: 0.7;
  }
}
.news-list__date {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .news-list__date {
    font-size: 14px;
  }
}
.news-list__category {
  padding: 0 12px;
  border: 1px solid #534741;
  border-radius: 3px;
  flex-shrink: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .news-list__category {
    font-size: 12px;
    padding: 2px 8px;
  }
}
.news-list__title {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .news-list__title {
    width: 100%;
    font-size: 14px;
  }
}
.news-list__empty {
  text-align: center;
  padding: 60px 0;
  color: #9b9494;
}

.news-single {
  margin-top: clamp(30px, 3.125vw, 60px);
  margin-bottom: clamp(50px, 5.2083333333vw, 100px);
}
.news-single__article {
  max-width: 800px;
  margin: 0 auto;
}
.news-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.news-single__date {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .news-single__date {
    font-size: 16px;
  }
}
.news-single__category {
  font-size: 16px;
  padding: 0 16px;
  border: 1px solid #534741;
  border-radius: 3px;
  background-color: #fff;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .news-single__category {
    font-size: 14px;
    padding: 2px 12px;
  }
}
.news-single__title {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .news-single__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.news-single__divider {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .news-single__divider {
    margin-bottom: 24px;
  }
}
.news-single__content {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .news-single__content {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
}
.news-single__content p {
  margin-bottom: 1.5em;
}
.news-single__content p:last-child {
  margin-bottom: 0;
}
.news-single__content h2,
.news-single__content h3,
.news-single__content h4 {
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 1em;
}
.news-single__content h2 {
  font-size: 1.5em;
}
.news-single__content h3 {
  font-size: 1.25em;
}
.news-single__content h4 {
  font-size: 1.1em;
}
.news-single__content ul,
.news-single__content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
.news-single__content li {
  margin-bottom: 0.5em;
}
.news-single__content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}
.news-single__content a {
  color: #534741;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .news-single__content a:hover {
    text-decoration: none;
  }
}
.news-single__content blockquote {
  border-left: 3px solid #ccc;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #666;
}
.news-single__back {
  text-align: center;
  margin-top: clamp(50px, 5.2083333333vw, 100px);
  max-width: 320px;
  margin-inline: auto;
}

.news-pagination {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .news-pagination {
    margin-top: 40px;
  }
}
.news-pagination .nav-links {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 8px;
}
.news-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #534741;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .news-pagination .page-numbers:hover {
    background-color: #f4f5f7;
  }
}
.news-pagination .page-numbers.current {
  color: #b4aaa5;
}
.news-pagination .page-numbers.prev, .news-pagination .page-numbers.next {
  border: none;
  background: linear-gradient(to right, #747d7e, #b4aaa5);
  color: #fff;
  border-radius: 3px;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .news-pagination .page-numbers.prev:hover {
    transform: translateX(-3px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-pagination .page-numbers.next:hover {
    transform: translateX(3px);
  }
}
.news-pagination .page-numbers.dots {
  border: none;
  min-width: auto;
  padding: 0 4px;
}
@media (hover: hover) and (pointer: fine) {
  .news-pagination .page-numbers.dots:hover {
    background-color: transparent;
  }
}

/* import */
.sub-job {
  background: url("../images/bijob/sub_head_job.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-job {
    background: url("../images/bijob/sub_head_job_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}
@media (max-width: 768px) {
  .sub-job .sub-ttl-bg {
    width: 95%;
  }
}

.bi-job {
  padding-bottom: 0;
}
.bi-job .job_flyer {
  gap: 20px;
}
.bi-job .job_flyer a {
  width: calc(50% - 10px);
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .bi-job .job_flyer a {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .bi-job .job_flyer a:hover {
    opacity: 0.6;
  }
}

.job-faq-list .accordion-item {
  border: 1px solid #534741;
  margin-bottom: 20px;
}
.job-faq-list .accordion-item .accordion-item:last-child {
  margin-bottom: 0;
}
.job-faq-list .accordion-content.active {
  border-top: 0;
}
.job-faq-list .c-content-box:first-child {
  margin-top: 0;
}
.job-faq-list .c-content-box--red {
  background-color: #f2ecee;
}
.job-faq-list .c-content-box--blue {
  background-color: #e9edf1;
}

.footer_job_cta {
  background-image: url("../images/bijob/bg_job_cta.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 100px;
  margin-bottom: clamp(80px, 8.3333333333vw, 160px);
  aspect-ratio: 96/35;
}
@media (max-width: 768px) {
  .footer_job_cta {
    background-image: url("../images/bijob/bg_job_cta_sp.jpg");
    padding-block: 60px;
  }
}
.footer_job_cta .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer_job_cta__title {
  font-size: clamp(18px, 1.5625vw, 30px);
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 30px;
}
.footer_job_cta__links .btns {
  max-width: 1000px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 80px;
  gap: 3rem;
}
@media (max-width: 768px) {
  .footer_job_cta__links .btns {
    gap: 1.5rem;
    margin-bottom: 40px;
  }
}
.footer_job_cta__links .btns a {
  width: calc(50% - 2rem);
  max-width: 400px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer_job_cta__links .btns a {
    width: 90%;
    padding: 0.8em 1em;
  }
}
.footer_job_cta__links .btns__tel {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background-color: #fff;
  color: #534741;
  font-size: 2rem;
  padding: 0.8em 2em;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .footer_job_cta__links .btns__tel:hover {
    opacity: 0.6;
    box-shadow: none;
  }
}
.footer_job_cta__links .btns__tel .arrow {
  background-color: #534741;
}
.footer_job_cta__links .btns__tel .arrow:before {
  background-color: #534741;
}
.footer_job_cta__dl {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 40px;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .footer_job_cta__dl {
    padding: 20px 40px;
  }
}
.footer_job_cta__dl .footer_job_cta__dl-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #b3b3b3;
}
@media (max-width: 768px) {
  .footer_job_cta__dl .footer_job_cta__dl-item {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
.footer_job_cta__dl .footer_job_cta__dl-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer_job_cta__dl .footer_job_cta__dl-item h3 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer_job_cta__dl .footer_job_cta__dl-item h3 {
    text-align: center;
    line-height: 1.5;
  }
}
.footer_job_cta__dl .footer_job_cta__dl-item .btns {
  width: 100%;
  max-width: 520px;
  gap: 20px;
}
.footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-dl,
.footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-ex {
  position: relative;
  font-size: 14px;
  border: 1px solid #534741;
  padding: 10px 36px 10px 20px;
  border-radius: 3px;
  color: #534741;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  max-width: 250px;
}
@media (hover: hover) and (pointer: fine) {
  .footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-dl:hover,
  .footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-ex:hover {
    opacity: 0.6;
  }
}
.footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-dl:before,
.footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-ex:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 14px;
  background-image: url("../images/bijob/icon_dl_b.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-ex {
  background-color: #534741;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-ex:hover {
    opacity: 0.6;
  }
}
.footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-ex:before {
  background-image: url("../images/bijob/icon_dl_w.png");
}
.footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-ex2 {
  padding: 10px 20px;
}
.footer_job_cta__dl .footer_job_cta__dl-item .btns__pdf-ex2:before {
  background-image: none;
}

/* import */
.sub-downloads {
  background: url("../images/other/sub_head_downloads.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-downloads {
    background: url("../images/other/sub_head_downloads_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}
@media (max-width: 768px) {
  .sub-downloads .sub-ttl-bg {
    width: 94%;
  }
}

.downloads-list__category {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .downloads-list__category {
    margin-bottom: 40px;
  }
}
.downloads-list__category:last-child {
  margin-bottom: 0;
}
.downloads-list__category-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .downloads-list__category-title {
    text-indent: -36px;
    padding-left: 34px;
    margin-bottom: 20px;
    white-space: nowrap;
  }
}
.downloads-list__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-block: 30px;
  margin-top: -1px;
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
}
@media (max-width: 768px) {
  .downloads-list__items {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
.downloads-list__items h3 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .downloads-list__items h3 {
    text-align: center;
    line-height: 1.5;
  }
}
.downloads-list__items .btns {
  width: 100%;
  max-width: 520px;
  gap: 20px;
}
@media (max-width: 768px) {
  .downloads-list__items .btns {
    justify-content: center;
  }
}
.downloads-list__items .btns__pdf-dl,
.downloads-list__items .btns__pdf-ex {
  position: relative;
  font-size: 14px;
  border: 1px solid #534741;
  padding: 10px 36px 10px 20px;
  border-radius: 3px;
  color: #534741;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  max-width: 250px;
}
@media (hover: hover) and (pointer: fine) {
  .downloads-list__items .btns__pdf-dl:hover,
  .downloads-list__items .btns__pdf-ex:hover {
    opacity: 0.6;
  }
}
.downloads-list__items .btns__pdf-dl:before,
.downloads-list__items .btns__pdf-ex:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 14px;
  background-image: url("../images/bijob/icon_dl_b.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.downloads-list__items .btns__pdf-ex {
  background-color: #534741;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .downloads-list__items .btns__pdf-ex:hover {
    opacity: 0.6;
  }
}
.downloads-list__items .btns__pdf-ex:before {
  background-image: url("../images/bijob/icon_dl_w.png");
}
.downloads-list .btn-primary {
  font-size: 28px;
  max-width: 560px;
  margin: 0 auto 80px;
  background-image: linear-gradient(90deg, rgb(74, 86, 87), rgb(116, 125, 126) 40%, rgb(180, 170, 165));
}
@media (max-width: 768px) {
  .downloads-list .btn-primary {
    width: 80%;
    font-size: 20px;
    padding: 0.6em 0.8em;
  }
}
@media (max-width: 768px) {
  .downloads-list .accordion-header {
    font-size: 16px;
  }
}
.downloads-list .downloads-faq-list {
  margin-top: 20px;
  margin-bottom: 40px;
}
.downloads-list .downloads-faq-list:last-child {
  margin-bottom: 0;
}
.downloads-list .downloads-faq-list .accordion-item {
  border: 1px solid #534741;
  margin-bottom: 20px;
}
.downloads-list .downloads-faq-list .accordion-item:last-child {
  margin-bottom: 0;
}
.downloads-list .downloads-faq-list .accordion-content.active {
  border-top: 0;
}
.downloads-list .downloads-faq-list .c-content-box:first-child {
  margin-top: 0;
}
.downloads-list .downloads-faq-list ol {
  list-style: decimal;
  padding-left: 20px;
}

.downloads-links__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-block: 30px;
  padding-inline: 40px;
  margin-top: -1px;
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
}
@media (max-width: 768px) {
  .downloads-links__items {
    padding-inline: 20px;
    gap: 20px;
  }
}
.downloads-links__items h3 {
  font-size: 34px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .downloads-links__items h3 {
    text-align: center;
  }
}
.downloads-links__items a {
  position: relative;
  font-size: 14px;
  border: 1px solid #534741;
  padding: 10px 36px 10px 10px;
  border-radius: 3px;
  color: #534741;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  max-width: 370px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .downloads-links__items a {
    text-align: left;
    padding: 10px 36px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .downloads-links__items a:hover {
    opacity: 0.6;
  }
}
.downloads-links__items a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/other/icon_newtab.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .downloads-links__items a:before {
    right: 30px;
  }
}

/* import */
.sub-inquiry {
  background: url("../images/other/sub_head_inquiry.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-inquiry {
    background: url("../images/other/sub_head_inquiry_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.inquiry-form {
  margin-bottom: clamp(80px, 8.3333333333vw, 160px);
}
.inquiry-form__group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .inquiry-form__group {
    margin-bottom: 24px;
    gap: 4px;
  }
}
.inquiry-form__group--privacy {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.inquiry-form__group .wpcf7-form-control-wrap {
  flex-basis: calc(66% - 40px);
}
@media (max-width: 768px) {
  .inquiry-form__group .wpcf7-form-control-wrap {
    flex-basis: 100%;
  }
}
.inquiry-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  flex-basis: 34%;
}
@media (max-width: 768px) {
  .inquiry-form__label {
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
}
.inquiry-form__label .required {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #ef486c;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
}
.inquiry-form__input {
  width: 100%;
  padding: 6px 8px;
  font-size: 16px;
  border: 1px solid #b4aaa5;
  border-radius: 3px;
  background-color: #fff;
  transition: border-color 0.3s;
}
.inquiry-form__input:focus {
  outline: none;
  border-color: #534741;
}
.inquiry-form__select {
  width: 100%;
  max-width: 300px;
  padding: 6px 40px 6px 16px;
  font-size: 16px;
  border: 1px solid #b4aaa5;
  border-radius: 3px;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}
.inquiry-form__select:focus {
  outline: none;
  border-color: #534741;
}
.inquiry-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #b4aaa5;
  border-radius: 3px;
  background-color: #fff;
  resize: vertical;
  font-family: inherit;
  flex-basis: calc(66% - 40px);
}
@media (max-width: 768px) {
  .inquiry-form__textarea {
    flex-basis: 100%;
  }
}
.inquiry-form__textarea:focus {
  outline: none;
  border-color: #534741;
}
.inquiry-form__zip {
  display: flex;
  align-items: center;
  gap: 8px;
}
.inquiry-form__zip-prefix {
  font-size: 16px;
}
.inquiry-form__zip-hyphen {
  font-size: 16px;
}
.inquiry-form__tel {
  display: flex;
  align-items: center;
  gap: 8px;
}
.inquiry-form__tel-hyphen {
  font-size: 16px;
}
.inquiry-form__checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 2em;
  border: none;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .inquiry-form__checkbox {
    justify-content: center;
  }
}
.inquiry-form__checkbox input {
  display: none;
}
.inquiry-form__checkbox label {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
  cursor: pointer;
}
.inquiry-form__checkbox label::before {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid #d6dde3;
  content: "";
}
.inquiry-form__checkbox label:has(:checked)::after {
  position: absolute;
  top: 4px;
  left: 7px;
  transform: rotate(45deg);
  width: 7px;
  height: 15px;
  border: solid #534741;
  border-width: 0 3px 3px 0;
  content: "";
}
.inquiry-form__checkbox-text {
  font-size: 16px;
}
.inquiry-form__checkbox-text a {
  color: #534741;
  text-decoration: underline;
}
.inquiry-form__checkbox-text a:hover {
  text-decoration: none;
}
.inquiry-form__checkbox-text .required {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #ef486c;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
}
.inquiry-form__privacy-content {
  flex-basis: calc(66% - 40px);
}
@media (max-width: 768px) {
  .inquiry-form__privacy-content {
    flex-basis: 100%;
  }
}
.inquiry-form__privacy-content p {
  text-align: left;
}
.inquiry-form__submit {
  text-align: center;
  margin-top: 50px;
}
.inquiry-form__submit .btn-primary {
  background-image: linear-gradient(90deg, rgb(74, 86, 87), rgb(116, 125, 126) 40%, rgb(180, 170, 165));
  font-size: 28px;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inquiry-form__submit .btn-primary {
    width: 80%;
    font-size: 20px;
  }
}
.inquiry-form__group--privacy {
  border-top: 1px solid #a9a9a9;
  border-bottom: 1px solid #a9a9a9;
  padding-block: clamp(15px, 1.5625vw, 30px);
}
.inquiry-form__group--privacy a {
  text-decoration: underline;
}

.inquiry-radio {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: clamp(40px, 4.1666666667vw, 80px);
}
@media (max-width: 768px) {
  .inquiry-radio {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.inquiry-radio .wpcf7-form-control-wrap {
  flex-basis: 100%;
}
@media (max-width: 768px) {
  .inquiry-radio .wpcf7-radio {
    display: inline-block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .inquiry-radio .wpcf7-list-item {
    margin: 0;
    width: 100%;
  }
}
.inquiry-radio label {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
  padding: 0.8em 1.5em 0.8em 1.2em;
  border: 1px solid #b4aaa5;
  border-radius: 9999px;
  background-color: #f4f5f7;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .inquiry-radio label {
    width: 100%;
    margin-bottom: 10px;
  }
}
.inquiry-radio label:has(:checked) {
  background-image: linear-gradient(90deg, rgb(74, 86, 87), rgb(116, 125, 126) 40%, rgb(180, 170, 165));
  color: #fff;
}
.inquiry-radio label::before, .inquiry-radio label:has(:checked)::after {
  border-radius: 50%;
  content: "";
}
.inquiry-radio label::before {
  width: 20px;
  height: 20px;
  background-color: #fff;
  flex-shrink: 0;
}
.inquiry-radio label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: calc(10px + 1.2em);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #534741;
}
.inquiry-radio input {
  display: none;
}

.previous-btn {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background-color: #fff;
  color: #534741;
  padding: 0.8em 2em;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  font-size: 20px;
  width: 100%;
  max-width: 270px;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .previous-btn {
    padding: 1.2em 0.8em;
    width: 80%;
    font-size: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .previous-btn:hover {
    opacity: 0.6;
    box-shadow: none;
  }
}

.inquiry-thanks h1 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .inquiry-thanks h1 {
    font-size: 24px;
  }
}

/* import */
.sub-join_form {
  background: url("../images/other/sub_head_joinform.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-join_form {
    background: url("../images/other/sub_head_joinform_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.join-form {
  margin-bottom: clamp(80px, 8.3333333333vw, 160px);
}
.join-form__section-title {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .join-form__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.join-form__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .join-form__group {
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.join-form__group--checkbox {
  align-items: flex-start;
}
.join-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  flex-basis: 300px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .join-form__label {
    justify-content: flex-start;
    gap: 10px;
    flex-basis: 100%;
  }
}
.join-form__label .required {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #ef486c;
  padding: 2px 8px;
  border-radius: 3px;
}
.join-form__label-sub {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  display: block;
  line-height: 1;
}
.join-form__tel {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .join-form__tel {
    flex-wrap: wrap;
  }
}
.join-form__tel-hyphen {
  font-size: 16px;
}
.join-form__date {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .join-form__date {
    flex-wrap: wrap;
  }
}
.join-form__date-unit {
  font-size: 16px;
}
.join-form__date .wpcf7-form-control-wrap:has(.datepicker) {
  position: relative;
}
.join-form__date .wpcf7-form-control-wrap:has(.datepicker)::after {
  content: "\f073";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
  pointer-events: none;
}
.join-form__date .wpcf7-form-control-wrap:has(.datepicker) .datepicker {
  padding-right: 40px;
  cursor: pointer;
}
.join-form__email {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
@media (max-width: 768px) {
  .join-form__email {
    flex-wrap: wrap;
  }
}
.join-form__email-at {
  font-size: 16px;
}
.join-form__unit {
  display: flex;
  align-items: center;
  gap: 8px;
}
.join-form__unit-text {
  font-size: 16px;
}
.join-form__employees {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .join-form__employees {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.join-form__employees-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.join-form__checkbox-group {
  flex: 1;
}
.join-form__insurance-number {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .join-form__insurance-number {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.join-form__insurance-number label {
  font-size: 14px;
  white-space: nowrap;
}
.join-form__insurance-number input {
  flex: 1;
  max-width: 300px;
}
.join-form__submit {
  text-align: center;
  margin-top: 50px;
}
.join-form__submit .btn-primary {
  font-size: 28px;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .join-form__submit .btn-primary {
    width: 80%;
    font-size: 20px;
  }
}
.join-form__submit .btn-secondary {
  width: 100%;
  max-width: 270px;
  margin: 0 auto 30px;
  display: block;
}
@media (max-width: 768px) {
  .join-form__submit .btn-secondary {
    width: 80%;
    font-size: 20px;
  }
}
.join-form__group--privacy {
  border-top: 1px solid #a9a9a9;
  border-bottom: 1px solid #a9a9a9;
  padding-block: clamp(15px, 1.5625vw, 30px);
  margin-top: 40px;
}
.join-form__group--privacy a {
  text-decoration: underline;
}
.join-form__note {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  padding: 12px 16px;
  background-color: #f9f9f9;
  border-left: 3px solid #b4aaa5;
}
@media (max-width: 768px) {
  .join-form__note {
    font-size: 13px;
  }
}
.join-form__subsection {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px dashed #ccc;
}
@media (max-width: 768px) {
  .join-form__subsection {
    margin-top: 30px;
    padding-top: 20px;
  }
}
.join-form__subsection-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #534741;
}
@media (max-width: 768px) {
  .join-form__subsection-title {
    font-size: 18px;
  }
}
.join-form__license-number {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
@media (max-width: 768px) {
  .join-form__license-number {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.join-form__license-full {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
@media (max-width: 768px) {
  .join-form__license-full {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.join-form__license-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .join-form__license-inputs {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }
}
.join-form__input--pref {
  flex: none;
  width: 120px;
}
@media (max-width: 768px) {
  .join-form__input--pref {
    width: 100px;
  }
}
.join-form__input--license {
  flex: none;
  width: 150px;
}
@media (max-width: 768px) {
  .join-form__input--license {
    flex: 1;
  }
}
.join-form__file {
  flex: 1;
}
@media (max-width: 768px) {
  .join-form__file {
    width: 100%;
  }
}
.join-form__file-input {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #b4aaa5;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
}
.join-form__file-input::file-selector-button {
  padding: 6px 16px;
  margin-right: 12px;
  background-color: #534741;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.join-form__file-input::file-selector-button:hover {
  opacity: 0.8;
}
.join-form__file-note {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}
.join-form__block {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .join-form__block {
    padding: 16px;
    margin-bottom: 20px;
  }
}
.join-form__block:last-of-type {
  margin-bottom: 30px;
}
.join-form__block-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 768px) {
  .join-form__block-title {
    font-size: 16px;
  }
}
.join-form__reason-other {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .join-form__reason-other {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.join-form__reason-other label {
  font-size: 15px;
  white-space: nowrap;
}
.join-form__reason-other input {
  flex: 1;
  max-width: 400px;
}
.join-form__privacy-text {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}
.join-form__privacy-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.join-form__privacy-text p:last-child {
  margin-bottom: 0;
}
.join-form__privacy-text p a {
  color: #534741;
  text-decoration: underline;
}
.join-form__privacy-text p a:hover {
  text-decoration: none;
}
.join-form__group--privacy-check {
  justify-content: center;
  border: none;
  padding-bottom: 0;
}
.join-form__notice {
  margin-top: 40px;
  padding: 20px;
  background-color: #fff9e6;
  border: 1px solid #f0d88a;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .join-form__notice {
    padding: 16px;
    margin-top: 30px;
  }
}
.join-form__notice p {
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .join-form__notice p {
    font-size: 13px;
    text-align: left;
  }
}
.join-form__notice p a {
  color: #534741;
  font-weight: 600;
}

.join-radio {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.join-radio--inline {
  flex: 1;
}
.join-radio input {
  display: none;
}

.join-checkbox {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.join-checkbox--center {
  justify-content: center;
}
.join-checkbox input {
  display: none;
}

.join-form .wpcf7-form-control-wrap {
  flex: 1;
}
.join-form .wpcf7-text,
.join-form .wpcf7-email,
.join-form .wpcf7-tel,
.join-form .wpcf7-date {
  width: 100%;
  padding: 8px 12px;
  font-size: 16px;
  border: 1px solid #b4aaa5;
  border-radius: 3px;
  background-color: #fff;
  transition: border-color 0.3s;
}
.join-form .wpcf7-text:focus,
.join-form .wpcf7-email:focus,
.join-form .wpcf7-tel:focus,
.join-form .wpcf7-date:focus {
  outline: none;
  border-color: #534741;
}
.join-form__zip .wpcf7-form-control-wrap, .join-form__tel .wpcf7-form-control-wrap, .join-form__date .wpcf7-form-control-wrap, .join-form__email .wpcf7-form-control-wrap, .join-form__unit .wpcf7-form-control-wrap, .join-form__employees .wpcf7-form-control-wrap, .join-form__license-number .wpcf7-form-control-wrap, .join-form__license-inputs .wpcf7-form-control-wrap {
  flex: none;
}
.join-form__zip .wpcf7-form-control-wrap input {
  width: 170px;
}
.join-form__date .wpcf7-form-control-wrap input[name*=-y], .join-form__date .wpcf7-form-control-wrap input.join-form__input--year {
  width: 80px;
}
.join-form__date .wpcf7-form-control-wrap input[name*=-m], .join-form__date .wpcf7-form-control-wrap input[name*=-d], .join-form__date .wpcf7-form-control-wrap input.join-form__input--month, .join-form__date .wpcf7-form-control-wrap input.join-form__input--day {
  width: 60px;
}
.join-form__employees-item .wpcf7-form-control-wrap input {
  width: 60px;
}
@media (max-width: 768px) {
  .join-form__employees-item .wpcf7-form-control-wrap input {
    width: 48px;
  }
}
.join-form__license-number .wpcf7-form-control-wrap input, .join-form__license-inputs .wpcf7-form-control-wrap input {
  width: 180px;
}
.join-form__unit .wpcf7-form-control-wrap input {
  width: 150px;
  text-align: right;
}
.join-form .wpcf7-file {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #b4aaa5;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
}
.join-form .wpcf7-file::file-selector-button {
  padding: 6px 16px;
  margin-right: 12px;
  background-color: #534741;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.join-form .wpcf7-file::file-selector-button:hover {
  opacity: 0.8;
}
.join-form .wpcf7-spinner {
  display: none;
}

.join-radio .wpcf7-form-control-wrap {
  flex: 1;
}
.join-radio .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.join-radio .wpcf7-list-item {
  margin: 0;
}
.join-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  position: relative;
  padding: 0.6em 1.2em 0.6em 1em;
  border: 1px solid #b4aaa5;
  border-radius: 9999px;
  background-color: #f4f5f7;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.join-radio .wpcf7-list-item label:has(:checked) {
  background-image: linear-gradient(90deg, rgb(74, 86, 87), rgb(116, 125, 126) 40%, rgb(180, 170, 165));
  color: #fff;
}
.join-radio .wpcf7-list-item label::before {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
}
.join-radio .wpcf7-list-item label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: calc(8px + 1em);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #534741;
  border-radius: 50%;
  content: "";
}
.join-radio .wpcf7-list-item label input {
  display: none;
}
.join-radio--grid .wpcf7-form-control-wrap {
  width: 100%;
}
.join-radio--grid .wpcf7-radio {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  width: 100%;
}
@media (max-width: 768px) {
  .join-radio--grid .wpcf7-radio {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.join-radio--grid .wpcf7-list-item {
  margin: 0 !important;
}
.join-radio--grid .wpcf7-list-item label {
  padding: 0.5em 0.8em;
  font-size: 14px;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 768px) {
  .join-radio--grid .wpcf7-list-item label {
    font-size: 13px;
    padding: 0.4em 0.6em;
  }
}
.join-radio--grid .wpcf7-list-item label::before {
  width: 14px;
  height: 14px;
}
.join-radio--grid .wpcf7-list-item label:has(:checked)::after {
  left: calc(7px + 0.8em);
  width: 8px;
  height: 8px;
}

.join-checkbox .wpcf7-form-control-wrap {
  width: 100%;
}
.join-checkbox .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.join-checkbox .wpcf7-list-item {
  margin: 0;
}
.join-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  position: relative;
  cursor: pointer;
  font-size: 15px;
}
.join-checkbox .wpcf7-list-item label::before {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid #b4aaa5;
  background-color: #fff;
  content: "";
  flex-shrink: 0;
}
.join-checkbox .wpcf7-list-item label:has(:checked)::before {
  background-color: #534741;
  border-color: #534741;
}
.join-checkbox .wpcf7-list-item label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
}
.join-checkbox .wpcf7-list-item label input {
  display: none;
}
.join-checkbox--center .wpcf7-checkbox {
  justify-content: center;
}

.wpcf7-not-valid-tip {
  display: block;
  color: #c44;
  font-size: 13px;
  margin-top: 6px;
}

.wpcf7-response-output {
  margin: 20px 0;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}
.wpcf7-response-output[aria-hidden=true] {
  display: none;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
  border-color: #c44;
  background-color: #ffeeee;
  color: #c44;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #46b450;
  background-color: #eeffee;
  color: #46b450;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

/* import */
.sub-benefits {
  background: url("../images/benefits/sub_head_benefits.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-benefits {
    background: url("../images/benefits/sub_head_benefits_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.benefits-list {
  margin-top: clamp(40px, 4.1666666667vw, 80px);
}
.benefits-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
}
.benefits-list__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(33.3333333333% - 20px);
  max-width: 320px;
}
@media (max-width: 768px) {
  .benefits-list__item {
    width: 100%;
    max-width: 100%;
  }
}
.benefits-list__item .common-sub-heading {
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

.join-flow .common-flex__right {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
}
.join-flow .join-flow__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(40px, 4.1666666667vw, 80px);
}
.join-flow .join-flow__flow p {
  text-align: center;
}
.join-flow .join-flow__flow a {
  text-decoration: underline;
}
.join-flow .join-flow__flow .flow-step {
  width: 482px;
  height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #b3b3b3;
  background: linear-gradient(to right, #747d7e, #b4aaa5);
}
@media (max-width: 768px) {
  .join-flow .join-flow__flow .flow-step {
    width: 100%;
    max-width: 482px;
    height: auto;
    min-height: 78px;
    padding: 16px;
  }
}
.join-flow .join-flow__flow .flow-step span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.join-flow .join-flow__flow .flow-step--last {
  background: url("../images/reserve/bg-flow-04.jpg") center/cover no-repeat;
}
.join-flow .join-flow__flow .flow-step--last span {
  color: #534741;
}
.join-flow .flow-arrow {
  color: #534741;
  font-size: 24px;
}
@media (max-width: 768px) {
  .join-flow .flow-arrow {
    font-size: 20px;
  }
}

/* import */
.sub-privacy {
  background: url("../images/other/sub_head_privacy.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-privacy {
    background: url("../images/other/sub_head_privacy_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.privacy-policy {
  margin-top: clamp(30px, 3.125vw, 60px);
  margin-bottom: clamp(50px, 5.2083333333vw, 100px);
}

.privacy-article {
  border-top: 1px solid;
  padding-top: clamp(15px, 1.5625vw, 30px);
  margin-bottom: clamp(40px, 4.1666666667vw, 80px);
}
.privacy-article ol,
.privacy-article ul li {
  text-indent: -16px;
  padding-left: 16px;
  padding-block: 4px;
}
.privacy-article .mt-20 {
  margin-top: 20px;
}

/* import */
.sub-membership-registration {
  background: url("../images/other/sub_head_contact.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-membership-registration {
    background: url("../images/other/sub_head_contact_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.swpm-registration-widget-form {
  max-width: 700px;
  margin: 0 auto;
  padding-block: clamp(40px, 4.1666666667vw, 80px);
}

.swpm-form .swpm-registration-form-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .swpm-form .swpm-registration-form-section {
    padding: 24px 16px;
  }
}
.swpm-form .swpm-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  margin-bottom: 24px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .swpm-form .swpm-form-row {
    margin-bottom: 20px;
    gap: 4px;
  }
}
.swpm-form .swpm-form-row.swpm-membership-level-row, .swpm-form .swpm-form-row.swpm-firstname-row, .swpm-form .swpm-form-row.swpm-lastname-row {
  display: none;
}
.swpm-form .swpm-form-row.swpm-membership-level-row .swpm-form-membership-level-value, .swpm-form .swpm-form-row.swpm-firstname-row .swpm-form-membership-level-value, .swpm-form .swpm-form-row.swpm-lastname-row .swpm-form-membership-level-value {
  font-weight: 600;
  color: #534741;
}
.swpm-form .swpm-form-label-wrap {
  flex-basis: 200px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .swpm-form .swpm-form-label-wrap {
    flex-basis: 100%;
  }
}
.swpm-form .swpm-form-label-wrap label {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #534741;
}
.swpm-form .swpm-form-label-wrap label::after {
  content: "";
}
.swpm-form .swpm-form-input-wrap {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .swpm-form .swpm-form-input-wrap {
    flex-basis: 100%;
  }
}
.swpm-form .swpm-form-field {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #b4aaa5;
  border-radius: 5px;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}
.swpm-form .swpm-form-field:focus {
  outline: none;
  border-color: #534741;
  box-shadow: 0 0 0 3px rgba(83, 71, 65, 0.1);
}
.swpm-form .swpm-form-field::-moz-placeholder {
  color: #aaa;
}
.swpm-form .swpm-form-field::placeholder {
  color: #aaa;
}
.swpm-form .required {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #ef486c;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
}
.swpm-form .swpm-form-row.error .swpm-form-field {
  border-color: #cc0000;
}
.swpm-form .swpm-form-row.error .swpm-form-field:focus {
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}
.swpm-form .swpm-form-row.error .swpm-form-desc {
  color: #cc0000;
  font-size: 13px;
  margin-top: 6px;
}
.swpm-form .swpm-form-row.error .swpm-form-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.swpm-form .swpm-form-row.error .swpm-form-desc ul li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.swpm-form .swpm-form-row.error .swpm-form-desc ul li::before {
  content: "※";
}
.swpm-form .swpm-form-membership-level-value {
  flex: 1;
  padding: 8px 0;
}
.swpm-form .swpm-submit-section {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}
.swpm-form .swpm-submit,
.swpm-form .swpm-registration-submit-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 370px;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(90deg, rgb(74, 86, 87), rgb(116, 125, 126) 40%, rgb(180, 170, 165));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s, box-shadow 0.3s;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  font-family: inherit;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .swpm-form .swpm-submit,
  .swpm-form .swpm-registration-submit-button {
    width: 100%;
    font-size: 18px;
    padding: 16px 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .swpm-form .swpm-submit:hover,
  .swpm-form .swpm-registration-submit-button:hover {
    opacity: 0.85;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  }
}
.swpm-form .swpm-submit:active,
.swpm-form .swpm-registration-submit-button:active {
  transform: translateY(1px);
}
.swpm-form .swpm-form-desc:not(:empty) {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  flex-basis: 100%;
}

.swpm-login-widget-form {
  max-width: 500px;
  margin: 0 auto;
  padding-block: clamp(40px, 4.1666666667vw, 80px);
}
.swpm-login-widget-form .swpm-login-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .swpm-login-widget-form .swpm-login-form {
    padding: 24px 16px;
  }
}
.swpm-login-widget-form .swpm-form-row {
  margin-bottom: 20px;
}
.swpm-login-widget-form .swpm-form-row label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #534741;
  margin-bottom: 8px;
}
.swpm-login-widget-form .swpm-text-field,
.swpm-login-widget-form .swpm-form-field {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #b4aaa5;
  border-radius: 5px;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.swpm-login-widget-form .swpm-text-field:focus,
.swpm-login-widget-form .swpm-form-field:focus {
  outline: none;
  border-color: #534741;
  box-shadow: 0 0 0 3px rgba(83, 71, 65, 0.1);
}
.swpm-login-widget-form .swpm-submit-section {
  text-align: center;
  margin-top: 30px;
}
.swpm-login-widget-form .swpm-login-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(90deg, rgb(74, 86, 87), rgb(116, 125, 126) 40%, rgb(180, 170, 165));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  margin: 10px auto;
}
@media (hover: hover) and (pointer: fine) {
  .swpm-login-widget-form .swpm-login-submit:hover {
    opacity: 0.85;
  }
}
.swpm-login-widget-form .swpm-login-submit .swpm-submit-btn-default-style {
  text-align: center;
}
.swpm-login-widget-form .swpm-remember-me {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}
.swpm-login-widget-form .swpm-remember-me .swpm-remember-checkbox {
  display: flex;
  align-items: center;
}
.swpm-login-widget-form .swpm-remember-me .swpm-remember-checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #b4aaa5;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.swpm-login-widget-form .swpm-remember-me .swpm-remember-checkbox input[type=checkbox]:checked {
  background-color: #534741;
  border-color: #534741;
}
.swpm-login-widget-form .swpm-remember-me .swpm-remember-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.swpm-login-widget-form .swpm-remember-me .swpm-remember-checkbox input[type=checkbox]:hover {
  border-color: #534741;
}
.swpm-login-widget-form .swpm-remember-me .swpm-remember-checkbox input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 71, 65, 0.1);
}
.swpm-login-widget-form .swpm-remember-me .swpm-rememberme-label {
  cursor: pointer;
  font-size: 14px;
  color: #534741;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swpm-login-widget-form .swpm-remember-me .swpm-rememberme-label .swpm-rember-label {
  font-weight: 500;
}
.swpm-login-widget-form .swpm-forgot-pass-link,
.swpm-login-widget-form .swpm-join-us-link {
  display: block;
  text-align: center;
  margin-top: 16px;
}
.swpm-login-widget-form .swpm-forgot-pass-link a,
.swpm-login-widget-form .swpm-join-us-link a {
  color: #534741;
  text-decoration: underline;
}
.swpm-login-widget-form .swpm-forgot-pass-link a:hover,
.swpm-login-widget-form .swpm-join-us-link a:hover {
  text-decoration: none;
}

.swpm-profile-widget-form {
  max-width: 700px;
  margin: 0 auto;
  padding-block: clamp(40px, 4.1666666667vw, 80px);
}
.swpm-profile-widget-form .swpm-profile-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .swpm-profile-widget-form .swpm-profile-form {
    padding: 24px 16px;
  }
}

.swpm-pw-reset-widget-form {
  max-width: 500px;
  margin: 0 auto;
  padding-block: clamp(40px, 4.1666666667vw, 80px);
}
.swpm-pw-reset-widget-form #swpm-pw-reset-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .swpm-pw-reset-widget-form #swpm-pw-reset-form {
    padding: 24px 16px;
  }
}
.swpm-pw-reset-widget-form .swpm-pw-reset-widget-inside {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.swpm-pw-reset-widget-form .swpm-pw-reset-email .swpm_label,
.swpm-pw-reset-widget-form .swpm-pw-reset-email .swpm-pw-reset-email-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #534741;
}
.swpm-pw-reset-widget-form .swpm-pw-reset-email-input {
  margin-bottom: 20px;
}
.swpm-pw-reset-widget-form .swpm-pw-reset-email-input .swpm-text-field,
.swpm-pw-reset-widget-form .swpm-pw-reset-email-input .swpm-pw-reset-text {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #b4aaa5;
  border-radius: 5px;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.swpm-pw-reset-widget-form .swpm-pw-reset-email-input .swpm-text-field:focus,
.swpm-pw-reset-widget-form .swpm-pw-reset-email-input .swpm-pw-reset-text:focus {
  outline: none;
  border-color: #534741;
  box-shadow: 0 0 0 3px rgba(83, 71, 65, 0.1);
}
.swpm-pw-reset-widget-form .swpm-pw-reset-submit-button {
  text-align: center;
  margin-top: 20px;
}
.swpm-pw-reset-widget-form .swpm-pw-reset-submit-button .swpm-pw-reset-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(90deg, rgb(74, 86, 87), rgb(116, 125, 126) 40%, rgb(180, 170, 165));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  font-family: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .swpm-pw-reset-widget-form .swpm-pw-reset-submit-button .swpm-pw-reset-submit:hover {
    opacity: 0.85;
  }
}
.swpm-pw-reset-widget-form .swpm-pw-reset-submit-button .swpm-pw-reset-submit:active {
  transform: translateY(1px);
}
.swpm-pw-reset-widget-form .swpm-margin-top-10 {
  margin-top: 0;
}

.swpm_pass_reset_processing_msg_section {
  text-align: center;
  margin-top: 20px;
}
.swpm_pass_reset_processing_msg_section #swpm_pass_reset_processing_msg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: #f4f5f7;
  border-radius: 5px;
  font-size: 14px;
  color: #534741;
}
.swpm_pass_reset_processing_msg_section #swpm_pass_reset_processing_msg::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #b4aaa5;
  border-top-color: #534741;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.sub-password-reset {
  background: url("../images/other/sub_head_contact.jpg") center/cover no-repeat;
  aspect-ratio: 640/187;
}
@media (max-width: 768px) {
  .sub-password-reset {
    background: url("../images/other/sub_head_contact_sp.jpg") center/cover no-repeat;
    aspect-ratio: 749/481;
  }
}

.swpm-login-widget-logged {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-block: clamp(40px, 4.1666666667vw, 80px);
}
@media (max-width: 768px) {
  .swpm-login-widget-logged {
    padding: 24px 16px;
  }
}
.swpm-login-widget-logged .swpm-logged-username,
.swpm-login-widget-logged .swpm-logged-status,
.swpm-login-widget-logged .swpm-logged-membership,
.swpm-login-widget-logged .swpm-logged-expiry {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 768px) {
  .swpm-login-widget-logged .swpm-logged-username,
  .swpm-login-widget-logged .swpm-logged-status,
  .swpm-login-widget-logged .swpm-logged-membership,
  .swpm-login-widget-logged .swpm-logged-expiry {
    flex-wrap: wrap;
    gap: 4px;
  }
}
.swpm-login-widget-logged .swpm-logged-username:last-of-type,
.swpm-login-widget-logged .swpm-logged-status:last-of-type,
.swpm-login-widget-logged .swpm-logged-membership:last-of-type,
.swpm-login-widget-logged .swpm-logged-expiry:last-of-type {
  border-bottom: none;
}
.swpm-login-widget-logged .swpm-logged-label {
  flex-basis: 180px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #666;
}
@media (max-width: 768px) {
  .swpm-login-widget-logged .swpm-logged-label {
    flex-basis: 100%;
    font-size: 13px;
  }
}
.swpm-login-widget-logged .swpm-logged-value {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #534741;
}
@media (max-width: 768px) {
  .swpm-login-widget-logged .swpm-logged-value {
    font-size: 15px;
  }
}
.swpm-login-widget-logged .swpm-logged-username {
  background-color: #f4f5f7;
  margin: -40px -40px 20px;
  padding: 20px 40px;
  border-radius: 8px 8px 0 0;
  border-bottom: none;
}
@media (max-width: 768px) {
  .swpm-login-widget-logged .swpm-logged-username {
    margin: -24px -16px 16px;
    padding: 16px;
  }
}
.swpm-login-widget-logged .swpm-logged-username .swpm-logged-username-value {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .swpm-login-widget-logged .swpm-logged-username .swpm-logged-username-value {
    font-size: 16px;
  }
}
.swpm-login-widget-logged .swpm-margin-bottom-10 {
  margin-bottom: 0;
}
.swpm-login-widget-logged .swpm-edit-profile-link,
.swpm-login-widget-logged .swpm-logged-logout-link {
  text-align: center;
  margin-top: 16px;
}
.swpm-login-widget-logged .swpm-edit-profile-link a,
.swpm-login-widget-logged .swpm-logged-logout-link a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.swpm-login-widget-logged .swpm-edit-profile-link {
  margin-top: 30px;
}
.swpm-login-widget-logged .swpm-edit-profile-link a {
  color: #fff;
  background-image: linear-gradient(90deg, rgb(74, 86, 87), rgb(116, 125, 126) 40%, rgb(180, 170, 165));
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .swpm-login-widget-logged .swpm-edit-profile-link a:hover {
    opacity: 0.85;
  }
}
.swpm-login-widget-logged .swpm-logged-logout-link a {
  color: #534741;
  background-color: #fff;
  border: 1px solid #b4aaa5;
}
@media (hover: hover) and (pointer: fine) {
  .swpm-login-widget-logged .swpm-logged-logout-link a:hover {
    background-color: #f4f5f7;
  }
}/*# sourceMappingURL=style.css.map */