@charset "utf-8";
/*
Theme Name: diver_child
Template: diver
Description:  Diverの子テーマです。
Theme URI: http://tan-taka.com/diver/
Author: Takato Takagi
*/


/* ------------------------------------------------------ */
/* base
/* ------------------------------------------------------ */

body {
  display: flex;
  flex-direction: column; 
  min-height: 100dvh;
  color: var(--primary-main-500);
  font-family: var(--zen-kaku-gothic-new);
  line-height: 1.8;
  word-break: break-word;
  overflow-wrap: anywhere; 
}

body.is-fixed {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
}

/* ------------------------------------------------------ */
/* font-family
/* ------------------------------------------------------ */

.marcellus-sc-regular {
  font-family: var(--marcellus-sc);
  font-weight: 400;
  line-height: 1;
}

/* ------------------------------------------------------ */
/* text-align
/* ------------------------------------------------------ */

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* ------------------------------------------------------ */
/* background-color
/* ------------------------------------------------------ */

.bg-primary-lightest-100 {
  background: var(--primary-lightest-100);
}

.bg-primary-lighter-200 {
  background: var(--primary-lighter-200);
}

.bg-gradation-primary {
  background: var(--bg-gradation-primary);
}

/* ------------------------------------------------------ */
/* color
/* ------------------------------------------------------ */

.cl-secondary-main-500 {
  color: var(--secondary-main-500);
}

/* ------------------------------------------------------ */
/* br
/* ------------------------------------------------------ */

@media screen and (max-width: 1023px){
  .br-tab-none {
    display: none;
  }
}

@media screen and (max-width: 767px){
  .br-sp-none {
    display: none;
  }
}

/* ------------------------------------------------------ */
/* inner
/* ------------------------------------------------------ */

.inner {
  margin: 0 auto;
  padding: 0 36px;
  box-sizing: content-box;
  max-width: 1020px;
}

@media screen and (max-width: 767px){
  .inner {
    padding: 0 20px;
  }
}

/* ------------------------------------------------------ */
/* content
/* ------------------------------------------------------ */

.content {
  display: flex;
  gap: 32px 36px;
}

@media screen and (max-width: 1023px){
  .content {
    align-items: center;
    flex-direction: column;
  }
}

/* ------------------------------------------------------ */
/* title
/* ------------------------------------------------------ */

.common-title-h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px){
  .common-title-h3 {
    font-size: 18px;
  }
}

.common-title-h3::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--secondary-main-500);
  border-radius: 50%;
}

/* ------------------------------------------------------ */
/* text
/* ------------------------------------------------------ */

.text {
  font-size: 16px;
  font-weight: 500;
}

/* ------------------------------------------------------ */
/* ボタン
/* ------------------------------------------------------ */

/* button wrap
/* ------------------------------------------------------ */
.facility-button-wrap {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

@media screen and (max-width: 599px){
  .facility-button-wrap {
    flex-direction: column;
  }

  .facility-button-wrap .primary-button {
    width: 100%;
  }
}

.facility-button-wrap .primary-button {
  flex: 1;
  margin: 0;
}

/* ボタン共通
/* ------------------------------------------------------ */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  min-height: 53px;
  font-weight: 700;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 100px;
  box-shadow: 0 4px 4px 0 color-mix(in srgb, var(--black)20%, transparent);
}

.button-text {
  position: relative;
  z-index: 1;
}

/* primary-button */
/* ------------------------------------------------------ */
.primary-button {
  position: relative;
  margin: 10px auto 0;
  padding: 0 20px;
  min-width: 264px;
  width: fit-content;
  background: var(--btn-gradation-secondary);
}

@media screen and (max-width: 599px){
  .primary-button {
    min-width: auto;
    width: calc(100% - 32px);
  }
}

.primary-button.primary-button-flow {
  margin: 16px 0 0 0;
}

@media screen and (max-width: 767px){
  .primary-button.primary-button-flow {
    width: 100%;
  }
}

.primary-button.primary-button-contact {
  margin-top: 32px;
  padding: 0;
  width: 300px;
  cursor: pointer;
}

@media screen and (max-width: 374px){
  .primary-button.primary-button-contact {
    width: 100%;
  }
}

.primary-button.primary-button-contact .primary-button-text {
  display: block;
  width: 100%;
  height: 100%;
}

.primary-button.primary-button-contact .wpcf7-submit {
  width: 100%;
  height: 100%;
  display: block;
  padding: 14px 0;
}

.primary-button-thanks {
  margin-top: 32px;
  max-width: 300px;
  width: 100%;
}

.wpcf7-spinner {
  display: none !important;
}

.primary-button::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: var(--btn-gradation-secondary-hover);
  border-radius: 30px;
  transition: all 0.3s ease;
}

@media (hover: hover)and (pointer: fine){
  .primary-button:hover::after {
    opacity: 1;
  }
}

.primary-button-text {
  font-size: 14px;
}

.primary-button-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  right: 14px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
}

.primary-button-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 8px;
  background: url(/wp-content/uploads/assets/img/icon_arrow_right_white_medium.svg) center / contain no-repeat;
  transform: translate(-50%, -50%)
}

/* primary-large-button
/* ------------------------------------------------------ */
.primary-button.primary-large-button {
  gap: 20px;
  max-width: 844px;
  width: 100%;
  height: 114px;
  margin: 0 auto;
  border: 3px solid var(--white);
  border-radius: 60px;
}

@media screen and (max-width: 767px){
  .primary-button.primary-large-button {
    height: 97px;
    padding: 4px 20px 0;
  }
}

.primary-button.primary-large-button::after {
  border-radius: 60px;
}

.primary-large-button::before {
  content: '';
  display: block;
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: url(/wp-content/uploads/assets/img/icon_mail.svg) center / contain no-repeat;
}

@media screen and (max-width: 767px){
  .primary-large-button::before {
    display: none;
  }
}

.primary-large-button-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  font-weight: 700;
  line-height: 1.6;
}

.primary-large-button-text-sub {
  font-size: 20px;
}

@media screen and (max-width: 767px){
  .primary-large-button-text-sub {
    font-size: 16px;
  }
}

.primary-large-button-text-main {
  font-size: 26px;
}

@media screen and (max-width: 767px){
  .primary-large-button-text-main {
    font-size: 22px;
  }
}

.primary-button-arrow.primary-large-button-arrow {
  right: 28px;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 767px){
  .primary-button-arrow.primary-large-button-arrow {
    display: none;
  }
}

.primary-button-arrow.primary-large-button-arrow::before {
  width: 16px;
  height: 16px;
  background: url(/wp-content/uploads/assets/img/icon_arrow_right_white_bold.svg) center / contain no-repeat;
}

/* secondary-button 
/* ------------------------------------------------------ */
.secondary-button {
  max-width: 206px;
  width: 100%;
  background: var(--primary-light-400);
  transition: all 0.3s ease;
}

@media screen and (max-width: 599px){
  .secondary-button {
    max-width: 100%;
  }
}

@media (hover: hover)and (pointer: fine){
  .secondary-button:hover {
    background: var(--primary-main-500);
  }
}

/* pdf-button
/* ------------------------------------------------------ */
.info-pdf-button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  order: 2;
  margin-top: 20px;
  width: 100%;
}

@media screen and (max-width: 1023px){
  .info-pdf-button-wrap {
    order: 1;
  }
}

.pdf-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  max-width: fit-content;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary-main-500);
  border-radius: 12px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px){
  .pdf-button {
    padding: 8px 16px;
  }
}

@media (hover: hover)and (pointer: fine){
  .pdf-button:hover {
    background: var(--primary-light-400);
  }
}

/* ------------------------------------------------------ */
/* button icon
/* ------------------------------------------------------ */

/* document
/* ------------------------------------------------------ */
.button-icon-document::before {
  content: '';
  display: block;
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  background: url(/wp-content/uploads/assets/img/icon_document.svg) center / contain no-repeat;
}

/* mail
/* ------------------------------------------------------ */
.button-icon-mail::before {
  content: '';
  display: block;
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  background: url(/wp-content/uploads/assets/img/icon_mail.svg) center / contain no-repeat;
}

/* ------------------------------------------------------ */
/* check-list
/* ------------------------------------------------------ */

.check-list-wrap {
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid var(--primary-light-400);
  border-radius: 10px;
}

.check-group-list {
  display: flex;
  margin-top: 18px;
}

@media screen and (max-width: 1023px){
  .check-group-list {
    flex-direction: column;
  }
}

.check-group {
  box-sizing: content-box;
  width: 310px;
}

@media screen and (max-width: 1023px){
  .check-group {
    width: 100%;
  }
}

.check-list-gap-10 {
  gap: 10px;
}

.check-group:nth-child(n+2) {
  margin: 0 0 0 24px;
  padding: 0 0 0 24px;
  border-left: 1px solid var(--primary-lighter-200);
}

@media screen and (max-width: 1023px){
  .check-group:nth-child(n+2) {
    margin: 24px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--primary-lighter-200);
    border-left: none;
  }
}

@media screen and (max-width: 767px){
  .check-group:nth-child(n+2) {
    margin: 16px 0 0;
    padding: 16px 0 0;
  }
}

.check-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-main-500);
  border: 1px solid var(--secondary-dark-600);
}

.check-list {
  display: flex;
  flex-direction: column;
}

.check-item {
  position: relative;
  padding-left: 1.8em;
  font-size: 14px;
  font-weight: 500;
}

.check-item::before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads/assets/img/icon_check.svg) center / contain no-repeat;
}

.check-item-mark-none::before {
  background: transparent;
}

/* ------------------------------------------------------ */
/* section
/* ------------------------------------------------------ */
.section {
  padding: 80px 0;
}

@media screen and (max-width: 767px){
  .section {
    padding: 56px 0;
  }
}

.section-title {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
  padding: 17px 40px;
  background: var(--white);
  border-radius: 4px;
}

@media screen and (max-width: 1023px){
  .section-title {
    flex-direction: column;
    align-items: center;
    gap: 17px;
    margin-bottom: 32px;
    padding: 8px 20px;
  }
}

.section-title-mb0 {
  margin-bottom: 0;
}

.section-title-en {
  font-size: 40px;
}

@media screen and (max-width: 767px){
  .section-title-en {
    font-size: 32px;
  }
}

.section-title-jp {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px){
  .section-title-jp {
    text-align: center;
    width: 100%;
    font-size: 16px;
  }
}

.section-title-jp::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -29px;
  width: 2px;
  height: 30px;
  background: var(--secondary-main-500);
}

@media screen and (max-width: 1023px){
  .section-title-jp::before {
    top: -8px;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

/* ------------------------------------------------------ */
/* main
/* ------------------------------------------------------ */
main {
  flex: 1;
  margin-top: 80px;
}

body.home main {
  margin-top: 0;
}

@media screen and (max-width: 1023px){
  body.home main, main {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px){
  body.home main, main {
    margin-top: 64px;
  }
}

/* ------------------------------------------------------ */
/* header
/* ------------------------------------------------------ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000000;
}

@media screen and (max-width: 1023px){
  .header {
    top: 0;
    padding: 0;
  }
}

.header-box-wrap {
  padding: 0 20px;
}

.header-box {
  margin-top: 20px;
  max-width: 1100px;
  margin: 20px auto 0;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--primary-main-500);
  border-radius: 14px;
  box-sizing: border-box;
  box-shadow: 0px 5px 4px color-mix(in srgb, var(--primary-main-500)20%, transparent);
  transition: all 0.3s ease;
}

@media screen and (max-width: 1023px){
  .header-box {
    margin-top: 0;
    padding: 0 0 0 30px;
    border: none;
    border-bottom: 1px solid var(--primary-main-500);
    border-radius: 0;
    box-shadow: none;
  }
}

@media screen and (max-width: 767px){
  .header-box {
    height: 64px;
    padding: 0 0 0 16px;
  }
}

.header-box-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}

@media screen and (max-width: 1023px){
  .header-box-inner.inner {
    padding: 0;
  }
}

.header-top {
  display: none;
}

body.home .header-top {
  display: block;
  padding: 0 20px;
}

@media screen and (max-width: 1023px){
  body.home .header-top {
    display: none;
  }
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

body.home .header-fixed {
  top: -90px;
  transition: 0.4s ease all;
}

@media screen and (max-width: 1023px){
  body.home .header-fixed {
    top: 0;
  }
}

body.home.is-scrolled .header-fixed {
  top: 0;
  transition: 0.4s ease all;
}

.header-fixed .header-box {
  margin-top: 0;
  max-width: 100%;
  border: none;
  border-bottom: 2px solid var(--primary-main-500);
  border-radius: 0;
  box-shadow: none;
}

@media screen and (max-width: 767px){
  .header-logo {
    width: 170px;
  }
}

@media screen and (max-width: 1023px){
  .header-nav {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: scroll;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--primary-main-500);
    transition: 0.4s ease all;
  }
}

@media screen and (max-width: 767px){
  .header-nav {
    top: 64px;
    height: calc(100vh - 64px);
  }
}

.header-nav.active {
  opacity: 1;
  visibility: visible;
  transition: 0.4s ease all;
}

.header-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1023px){
  .header-nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
}

.header-nav-item {
  display: flex;
  align-items: center;
  padding: 0 30px;
  height: 20px;
  border-right: 1px solid var(--primary-main-500);
}

@media screen and (max-width: 1200px){
  .header-nav-item {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1023px){
  .header-nav-item {
    width: 100%;
    height: auto;
    padding: 0;
    border-bottom: 1px solid var(--primary-dark-600);
  }
}

.header-nav-item:first-child {
  padding-left: 0;
}

.header-nav-item:last-child {
  padding-right: 0;
  border-right: none;
}

.header-nav-link {
  display: block;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1023px){
  .header-nav-link {
    position: relative;
    width: 100%;
    padding: 30px 20px;
    color: var(--white);
  }
}

@media screen and (max-width: 1023px){
  .header-nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 14px;
    height: 14px;
    background-image: url(/wp-content/uploads/assets/img/icon_arrow_right_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media (hover: hover)and (pointer: fine){
  .header-nav-link:hover {
    color: var(--secondary-main-500);
  }
}

.header-menu-button {
  display: none;
}

@media screen and (max-width: 1023px){
  .header-menu-button {
    display: block;
    position: relative;
    width: 80px;
    height: 100%;
    border-left: 1px solid var(--primary-main-500);
  }
}

@media screen and (max-width: 767px){
  .header-menu-button {
    width: 64px;
  }
}

.header-menu-button-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 22px;
}

.header-menu-button-inner >span {
  position: absolute;
  height: 2px;
  border-radius: 1px;
  background: var(--primary-main-500);
  transition: 0.4s ease all;
}

.active .header-menu-button-inner >span {
  transition: 0.4s ease all;
}

.header-menu-button-inner >span:nth-child(1){
  top: 0;
  left: 0;
  width: 100%;
}

.active .header-menu-button-inner >span:nth-child(1){
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(45deg);
}

.header-menu-button-inner >span:nth-child(2){
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 67%;
}

.active .header-menu-button-inner >span:nth-child(2){
  opacity: 0;
}

.header-menu-button-inner >span:nth-child(3){
  bottom: 0;
  left: 0;
  width: 100%;
}

.active .header-menu-button-inner >span:nth-child(3){
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(-45deg);
}

/* ------------------------------------------------------ */
/* footer
/* ------------------------------------------------------ */
.footer {
  padding: 50px 0;
  color: var(--white);
  background: var(--primary-main-500);
}

@media screen and (max-width: 1023px){
  .footer {
    padding: 0 0 56px;
  }
}

@media screen and (max-width: 1023px){
  .footer .inner {
    padding: 0;
  }
}

.footer-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

@media screen and (max-width: 1023px){
  .footer-content {
    flex-direction: column;
    gap: 36px;
  }
}

@media screen and (max-width: 1023px){
  .footer-info {
    order: 2;
    padding: 0 20px;
  }
}

.footer-logo {
  width: 196px;
}

@media screen and (max-width: 1023px){
  .footer-logo {
    margin-top: 20px;
  }
}

.footer-company {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
}

.footer-address {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
}

@media screen and (max-width: 1023px){
  .footer-address {
    flex-direction: row;
    gap: 1em;
  }
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

@media screen and (max-width: 1023px){
  .footer-nav {
    flex-direction: column;
    order: 0;
    gap: 0;
    width: 100%;
  }
}

.footer-nav-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 1023px){
  .footer-nav-block {
    gap: 0;
  }
}

.footer-nav-block:nth-child(n+2){
  padding-left: 32px;
  border-left: 1px solid var(--primary-light-400);
}

@media screen and (max-width: 1023px){
  .footer-nav-block:nth-child(n+2){
    padding-left: 0;
    border-left: none;
  }
}

.footer-nav-group {
  flex: 1;
}

.footer-nav-title {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}

@media screen and (max-width: 1023px){
  .footer-nav-title {
    position: relative;
    margin-bottom: 0;
    padding: 15px 20px;
    border-bottom: 1px solid var(--primary-dark-600);
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav-title:hover {
    color: var(--secondary-main-500);
  }
}

.footer-nav-toggle-mark {
  display: none;
}

@media screen and (max-width: 1023px){
  .footer-nav-toggle-mark {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/wp-content/uploads/assets/img/icon_plus.svg) center / contain no-repeat;
  }

  .footer-nav-title.active .footer-nav-toggle-mark {
    background: url(/wp-content/uploads/assets/img/icon_minus.svg) center / contain no-repeat;
  }
}

.footer-nav-group-links-wrap {
  display: block;
}

@media screen and (max-width: 1023px){
  .footer-nav-group-links-wrap {
    display: none;
  }
}

.footer-nav-group-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media screen and (max-width: 1023px){
  .footer-nav-group-links {
    gap: 1px;
  }
}

.footer-nav-link {
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

@media (hover: hover)and (pointer: fine){
  .footer-nav-link:hover {
    color: var(--secondary-main-500);
  }
}

.footer-nav-link.has-polygon {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1023px){
  .footer-nav-link.has-polygon {
    padding: 17px 20px;
    background: var(--primary-dark-600);
  }
}

.footer-nav-link.has-polygon::before {
  content: '';
  margin-top: 2px;
  width: 8px;
  height: 7px;
  background-image: url(/wp-content/uploads/assets/img/icon_polygon_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 1023px){
  .footer-nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1px;
    background: var(--primary-dark-600);
  }
}

@media screen and (max-width: 1023px){
  .footer-nav-links >li {
    width: calc((100% - 1px)/2);
  }

  .footer-nav-links >li:last-child {
    margin-bottom: 1px;
    width: 100%;
  }

  .footer-nav-links >li .footer-nav-link {
    display: inline-block;
    text-align: center;
    padding: 17px;
    width: 100%;
    background: var(--primary-main-500);
  }
}

.footer-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 1023px){
  .footer-button-wrap {
    order: 1;
    padding: 0 20px;
    width: 100%;
  }
}

.footer-button {
  display: flex;
  justify-content: center;align-items: center;
  width: 180px;
  height: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-main-500);
  background: var(--white);
  border-radius: 25px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1023px){
  .footer-button {
    width: 100%;
    border-radius: 10px;
  }
}

@media (hover: hover)and (pointer: fine){
  .footer-button:hover {
    color: var(--white);
    background: var(--secondary-main-500);
  }
}

.footer-copyright {
  display: block;
  text-align: right;
  margin-top: 30px;
  font-size: 12px;
  font-weight: 700;
}

@media screen and (max-width: 1023px){
  .footer-copyright {
    text-align: center;
    padding: 0 20px;
  }
}

/* ------------------------------------------------------ */
/* TOPページ
/* ------------------------------------------------------ */

/* top-kv
/* ------------------------------------------------------ */
.top-kv-item {
  display: block !important;
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
}

.top-kv .slick-slide {
  position: relative;
  transition: all 0.5s ease;
}

.top-kv .slick-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--primary-main-500)60%, transparent);
  transition: all 0.5s ease;
}

@media screen and (max-width: 1023px){
  .top-kv .slick-slide::before {
    content: none;
  }
}

.top-kv .slick-center.slick-current::before,
.top-kv .is-active-next::before {
  opacity: 0;
}

.top-kv .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  height: 38px;
  background: var(--primary-main-500);
}

@media screen and (max-width: 1023px){
  .top-kv .slick-dots {
    height: 26px;
  }
}

.top-kv .slick-dots li {
  display: flex;
  width: 40px;
  height: 10px;
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.5s ease;
}

@media screen and (max-width: 1023px){
  .top-kv .slick-dots li {
    height: 6px;
  }
}

.top-kv .slick-dots li.slick-active {
  background: var(--secondary-main-500);
  transition: all 0.5s ease;
}

.top-kv .slick-dots li button {
  width: 100%;
  height: 100%;
}

.top-kv-list {
  display: none;
}

.top-kv-list.slick-initialized {
  display: block;
}

/* Our Story
/* ------------------------------------------------------ */
.story {
  position: relative;
  padding: 90px 0;
}

@media screen and (max-width: 1023px){
  .story {
    padding: 90px 0 0;
  }
}

@media screen and (max-width: 767px){
  .story {
    padding: 56px 0 0;
  }
}

.story-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 590px;
}

@media screen and (max-width: 1200px){
  .story-image {
    position: static;
    margin-top: 32px;
    width: 100%;
  }
}

.story-title {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 24px;
  font-size: 50px;
}

@media screen and (max-width: 767px){
  .story-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 36px;
  }
}

.story-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 76px;
  height: 2px;
  background: var(--secondary-main-500);
}

@media screen and (max-width: 767px){
  .story-title::before {
    width: 56px;
  }
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: calc(50vw - 90px);
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

@media screen and (max-width: 1200px){
  .story-text {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
  }
}

/* ボンボヤージュのサービス紹介
/* ------------------------------------------------------ */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.service-item {
  width: calc((100% - 36px)/2);
}

@media screen and (max-width: 767px){
  .service-item {
    width: 100%;
  }
}

.service-link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px){
  .service-link {
    gap: 20px 18px;
  }
}

@media (hover: hover)and (pointer: fine){
  .service-link:hover .service-arrow {
    background: var(--secondary-main-500);
    border: 1px solid var(--secondary-main-500);
  }
  .service-link:hover .service-arrow::before {
    background-image: url(/wp-content/uploads/assets/img/icon_arrow_right_white.svg);
  }
}

.service-image {
  width: 100%;
}

.service-content {
  width: calc(100% - 92px);
}

@media screen and (max-width: 767px){
  .service-content {
    width: calc(100% - 70px);
  }
}

.service-text {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px){
  .service-text {
    font-size: 14px;
  }
}

.service-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--primary-main-500);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-arrow::before {
  content: '';
  width: 18px;
  height: 14px;
  background-image: url(/wp-content/uploads/assets/img/icon_arrow_right_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

/* ------------------------------------------------------ */
/* 全ページ共通
/* ------------------------------------------------------ */

/* 会社概要・施設情報・事務所情報
/* ------------------------------------------------------ */
.info-group .common-title-h3 {
  margin-bottom: 20px;
}

.info-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 36px;
}

@media screen and (max-width: 1023px){
  .info-content {
    flex-direction: column;
    gap: 0;
  }
}

.info-table {
  flex: 1;
  width: 100%;
}

.info-table th,
.info-table td {
  font-size: 14px;
}

.info-table tr:nth-child(n+2) th,
.info-table tr:nth-child(n+2) td {
  padding-top: 9px;
  border-top: 1px solid var(--primary-lighter-200);
}

.info-table tr:not(:last-child) th,
.info-table tr:not(:last-child) td {
  padding-bottom: 9px;
}

@media screen and (max-width: 767px){
  .info-table th,
  .info-table td {
    font-size: 12px;
  }
}

.info-table th {
  text-align: left;
  width: 160px;
  font-weight: 700;
  vertical-align: top;
}

@media screen and (max-width: 767px){
  .info-table th {
    width: 116px;
  }
}

.info-table td {
  font-weight: 500;
}

.info-map {
  flex-shrink: 0;
  width: 492px;
}

@media screen and (max-width: 1023px){
  .info-map {
    order: 2;
    margin-top: 36px;
    width: 100%;
  }
}

@media screen and (max-width: 767px){
  .info-map {
    height: 240px;
  }
}

/* ------------------------------------------------------ */
/* 下層ページ共通
/* ------------------------------------------------------ */

/* 下層KV
/* ------------------------------------------------------ */
.page-kv {
  height: 160px;
}

@media screen and (max-width: 599px){
  .page-kv {
    height: 80px;
  }
}

.page-kv-nursing-facility {
  background: url(/wp-content/uploads/assets/img/bg_kv_nursing-facility.jpg) center / cover no-repeat;
}

@media screen and (max-width: 599px){
  .page-kv-nursing-facility {
    background: url(/wp-content/uploads/assets/img/bg_kv_nursing-facility_sp.jpg) center / cover no-repeat;
  }
}

.page-kv-visiting {
  background: url(/wp-content/uploads/assets/img/bg_kv_visiting.jpg) center / cover no-repeat;
}

@media screen and (max-width: 599px){
  .page-kv-visiting {
    background: url(/wp-content/uploads/assets/img/bg_kv_visiting_sp.jpg) center / cover no-repeat;
  }
}

.page-kv-home-care-support {
  background: url(/wp-content/uploads/assets/img/bg_kv_home-care-support.jpg) center / cover no-repeat;
}

@media screen and (max-width: 599px){
  .page-kv-home-care-support {
    background: url(/wp-content/uploads/assets/img/bg_kv_home-care-support_sp.jpg) center / cover no-repeat;
  }
}

.page-kv-other {
  background: url(/wp-content/uploads/assets/img/bg_kv_other.jpg) center / cover no-repeat;
}

@media screen and (max-width: 599px){
  .page-kv-other {
    background: url(/wp-content/uploads/assets/img/bg_kv_other_sp.jpg) center / cover no-repeat;
  }
}

.page-kv-contact {
  background: url(/wp-content/uploads/assets/img/bg_kv_contact.jpg) center / cover no-repeat;
}

@media screen and (max-width: 599px){
  .page-kv-contact {
    background: url(/wp-content/uploads/assets/img/bg_kv_contact_sp.jpg) center / cover no-repeat;
  }
}

.page-kv-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.page-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--white);
  line-height: 1;
}

@media screen and (max-width: 599px){
  .page-title {
    gap: 6px 0;
  }
}

.page-title-en {
  font-size: 40px;
}

@media screen and (max-width: 599px){
  .page-title-en {
    font-size: 26px;
  }
}

.page-title-jp {
  position: relative;
  margin-left: 64px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px){
  .page-title-jp {
    margin-left: 26px;
    font-size: 16px;
  }
}

.page-title-jp::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -50px;
  width: 36px;
  height: 1px;
  letter-spacing: 0.02em;
  background: var(--white);
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 599px){
  .page-title-jp::after {
    left: -21px;
    width: 14px;
  }
}

/* CTA
/* ------------------------------------------------------ */
.cta {
  padding: 80px 0;
}

@media screen and (max-width: 767px){
  .cta {
    padding: 40px 0;
  }
}

/* 注意事項
/* ------------------------------------------------------ */
.note-text {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 767px){
  .note-text {
    font-size: 12px;
  }
}

.note-text-top {
  margin: 8px 0 40px;
  text-align: right;
}

@media screen and (max-width: 767px){
  .note-text-top {
    margin: 10px 0 32px;
  }
}

.note-text-mt-m {
  margin-top: 24px;
}

@media screen and (max-width: 767px){
  .note-text-mt-m {
    margin-top: 32px;
  }
}

.note-text-mt-s {
  margin-top: 8px;
}

/* カテゴリ
/* ------------------------------------------------------ */
.category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 35px;
  color: var(--white);
  background: var(--secondary-dark-600);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.card-category {
  position: absolute;
  top: 0;
  left: 0;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  border-radius: 4px 0 0 0;
}

.facility-category {
  margin-bottom: 6px;
  border-radius: 4px;
}

/* カードリスト
/* ------------------------------------------------------ */
.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 36px;
}

@media screen and (max-width: 599px){
  .card-list {
    gap: 32px;
  }
}

.card-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc((100% - 72px)/3);
}

@media screen and (max-width: 1023px){
  .card-item {
    width: calc((100% - 36px)/2);
  }
}

@media screen and (max-width: 599px){
  .card-item {
    width: 100%;
  }
}

.card-item .pdf-button {
  margin: 10px auto 0;
}

.card-image {
  position: relative;
}

.card-image img,
.card-image iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 316/190;
}

.card-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.card-title {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 700;
}

.card-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.card-text p:nth-child(n+2) {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--primary-lighter-300);
}

.card-map-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  width: 50px;
  height: 50px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: var(--primary-lighter-150);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-map-button::before {
  content: '';
  width: 13px;
  height: 12px;
  background: url(/wp-content/uploads/assets/img/icon_map_off.svg) center / contain no-repeat;
  transition: all 0.3s ease;
}

@media (hover: hover)and (pointer: fine){
  .card-map-button:hover {
    color: var(--primary-lightest-100);
    background: var(--primary-main-500);
  }
  .card-map-button:hover::before {
    background: url(/wp-content/uploads/assets/img/icon_map_on.svg) center / contain no-repeat;
  }
}

.card-map-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  padding: 30px;
  transition: all 0.3s ease;
}

.card-map-wrap.is-active {
  opacity: 1;
  visibility: visible;
}

.card-map-inner {
  position: relative;
  z-index: 1;
  max-width: 915px;
  width: 100%;
  max-height: 495px;
  height: 100%;
  border: 4px solid var(--white);
  border-radius: 10px;
}

@media screen and (max-width: 767px){
  .card-map-inner {
    max-height: 400px;
  }
}

.card-map {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.card-map-close-button {
  position: absolute;
  top: -21px;
  right: -21px;
  width: 40px;
  height: 40px;
  background: url(/wp-content/uploads/assets/img/icon_close.svg) center / contain no-repeat;
  cursor: pointer;
}

.card-map-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: color-mix(in srgb, #362918E5 90%, transparent);
  cursor: pointer;
}


/* 施設・事務所の詳細情報
/* ------------------------------------------------------ */
.facility-info-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.facility-info-list.facility-info-list-2col {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: calc((100% - 16px)/2);
  gap: 1px 16px;
}

@media screen and (max-width: 599px){
  .facility-info-list.facility-info-list-2col {
    grid-auto-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 100%;
  }
}

.facility-info-item {
  display: flex;
}

.facility-info-title,
.facility-info-text,
.facility-info-text-normal {
  padding: 10px;
  line-height: 1;
}

.facility-info-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 110px;
  font-size: 14px;
  font-weight: 700;
  background: var(--primary-lighter-200);
}

.facility-info-list-2col .facility-info-title {
  padding: 23px 12px;
  width: 100px;
}

@media screen and (max-width: 599px){
  .facility-info-list-2col .facility-info-title {
    padding: 16px 12px;
    width: 100px;
  }
}

.facility-info-title > span {
  padding-top: 4px;
  font-size: 10px;
}

.facility-info-text-normal {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  background: var(--white);
}

.facility-info-text {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  font-size: 24px;
  font-weight: 700;
  background: var(--white);
}

.facility-info-list-2col .facility-info-text {
  padding: 16px 10px;
  font-size: 28px;
}

@media screen and (max-width: 599px){
  .facility-info-list-2col .facility-info-text {
    padding: 10px;
    font-size: 26px;
  }
}

.facility-info-text > span {
  padding-top: 4px;
  font-size: 14px;
}

.facility-info-list-2col .facility-info-text > span {
  padding-top: 6px;
  font-size: 16px;
}

/* サービス内容
/* ------------------------------------------------------ */
.service-content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 40px;
}

@media screen and (max-width: 767px){
  .service-content-list {
    gap: 16px;
    margin-top: 32px;
  }
}

.service-content-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  width: calc((100% - 36px)/2);
  background: var(--white);
  border-radius: 4px;
}

@media screen and (max-width: 1023px){
  .service-content-item {
    width: 100%;
  }
}

@media screen and (max-width: 767px){
  .service-content-item {
    gap: 16px;
  }
}

.service-content-image {
  width: 80px;
  height: 80px;
}

@media screen and (max-width: 767px){
  .service-content-image {
    width: 52px;
    height: 52px;
  }
}

.service-content-title {
  margin-bottom: 8px;
  color: var(--secondary-main-500);
  font-size: 18px;
  font-weight: 700;
}

.service-content-text {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px){
  .service-content-text {
    font-size: 14px;
  }
}

/* 流れ
/* ------------------------------------------------------ */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 767px){
  .flow-list {
    gap: 34px;
  }
}

.flow-item {
  display: flex;
  position: relative;
  min-height: 140px;
}

@media screen and (max-width: 767px){
  .flow-item {
    flex-direction: column;
  }
}

.flow-item:last-child .flow-step {
  background: var(--secondary-main-500);
}

.flow-item:last-child .flow-content {
  border: 3px solid var(--secondary-main-500);
}

.flow-step {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  gap: 10px;
  width: 140px;
  line-height: 1;
  color: var(--white);
  background: var(--secondary-dark-600);
  border-radius: 4px 0 0 4px;
}

@media screen and (max-width: 767px){
  .flow-step {
    flex-direction: row;
    width: 100%;
    padding: 11px 0;
    border-radius: 4px 4px 0 0;
  }
}

.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 70px;
  border-top: 8px solid var(--secondary-dark-600);
  border-bottom: 8px solid transparent;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px){
  .flow-item:not(:last-child)::after {
    bottom: -39px;
    left: 50%;
    border-top: 14px solid var(--secondary-dark-600);
    border-bottom: 14px solid transparent;
    border-right: 17px solid transparent;
    border-left: 17px solid transparent;
  }
}

.flow-step-text {
  padding-bottom: 10px;
  font-size: 20px;
  border-bottom: 1px solid var(--white);
}

@media screen and (max-width: 767px){
  .flow-step-text {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.flow-step-num {
  font-size: 44px;
}

@media screen and (max-width: 767px){
  .flow-step-num {
    font-size: 32px;
  }
}

.flow-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px 32px;
  background: var(--primary-lightest-100);
  border-radius: 0 4px 4px 0;
}

@media screen and (max-width: 767px){
  .flow-content {
    padding: 20px;
    border-radius: 0 0 4px 4px;
  }
}

.flow-title {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
}

.flow-text {
  font-size: 16px;
  font-weight: 500;
}

/* ------------------------------------------------------ */
/* 介護施設
/* ------------------------------------------------------ */

.facility-main {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

@media screen and (max-width: 1023px){
  .facility-main {
    flex-direction: column;
  }
}

@media screen and (max-width: 599px){
  .facility-main {
    gap: 24px;
  }
}

@media screen and (max-width: 599px){
  .facility-main-image {
    width: 100%;
  }
}

.facility-content {
  flex: 1;
}

@media screen and (max-width: 1023px){
  .facility-content {
    width: 100%;
  }
}

.facility-title {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 599px){
  .facility-title {
    margin-bottom: 4px;
    font-size: 20px;
  }
}

.facility-address {
  display: flex;
  gap: 0 1em;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 599px){
  .facility-address {
    flex-direction: column;
    margin-bottom: 16px;
    font-size: 14px;
  }
}

/* 介護施設 - 施設紹介
/* ------------------------------------------------------ */
.facility-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

@media screen and (max-width: 599px){
  .facility-detail-list {
    gap: 16px;
  }
}

.facility-detail-item {
  width: calc((100% - 72px)/3);
}

@media screen and (max-width: 1023px){
  .facility-detail-item {
    width: calc((100% - 36px)/2);
  }
}

@media screen and (max-width: 599px){
  .facility-detail-item {
    width: 100%;
  }
}

.facility-detail-title {
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 700;
  background: var(--white);
  border-radius: 0 0 4px 4px;
}

/* 介護施設 - 受け入れ基準について
/* ------------------------------------------------------ */
.admission-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(13, auto);
  grid-template-columns: calc((100% - 72px)/3) calc((100% - 72px)/3) calc((100% - 72px)/3);
  gap: 1px 36px;
}

@media screen and (max-width: 1023px){
  .admission-list {
    grid-template-rows: repeat(20, auto);
    grid-template-columns: calc((100% - 36px)/2);
  }
}

@media screen and (max-width: 767px){
  .admission-list {
    grid-template-columns: calc((100% - 10px)/2);
    gap: 1px 10px;
  }
}

.admission-item {
  display: flex;
  align-items: center;
  min-height: 60px;
  background: var(--white);
}

@media screen and (max-width: 767px){
  .admission-item {
    min-height: 33px;
  }
}

.admission-title {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 18px 12px;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  background: var(--primary-lighter-200);
}

@media screen and (max-width: 767px){
  .admission-title {
    padding: 6px 10px;
    font-size: 14px;
  }
}

.admission-value {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px){
  .admission-value {
    width: 35px;
    font-size: 16px;
  }
}

/* ------------------------------------------------------ */
/* プライバシーポリシー
/* ------------------------------------------------------ */

.privacy-box {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--primary-lighter-300);
}

@media screen and (max-width: 767px){
  .privacy-box {
    padding-bottom: 32px;
  }
}

.privacy-title {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (max-width: 767px){
  .privacy-title {
    margin-top: 32px;
    font-size: 14px;
  }
}

.privacy-text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px){
  .privacy-text {
    font-size: 14px;
  }
}

/* ------------------------------------------------------ */
/* 重要事項説明書一覧
/* ------------------------------------------------------ */

.disclosure-box {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--primary-lighter-300);
}

@media screen and (max-width: 767px){
  .disclosure-box {
    padding-bottom: 32px;
  }
}

.disclosure-box:nth-child(n+2) {
  padding-top: 40px;
}

@media screen and (max-width: 767px){
  .disclosure-box:nth-child(n+2) {
    padding-top: 32px;
  }
}

.disclosure-title {
  position: relative;
  margin-bottom: 24px;
  padding-left: 1em;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px){
  .disclosure-title {
    font-size: 18px;
  }
}

.disclosure-title::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--secondary-main-500);
  border-radius: 50%;
}

@media screen and (max-width: 767px){
  .disclosure-title::before {
    top: 11.5px;
  }
}

.disclosure-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 767px){
  .disclosure-list {
    flex-direction: column;
  }
}

.disclosure-item {
  position: relative;
  padding-left: 17px;
  width: calc((100% - 48px) / 3);
}

@media screen and (max-width: 1023px){
  .disclosure-item {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (max-width: 767px){
  .disclosure-item {
    width: 100%;
  }
}

.disclosure-item::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 10.5px;
  left: 0;
  width: 8px;
  height: 7px;
  background: url(/wp-content/uploads/assets/img/icon_polygon_right.svg) center / contain no-repeat;
}

.disclosure-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

@media (hover: hover)and (pointer: fine){
  .disclosure-link:hover {
    opacity: 0.8;
  }
}

.disclosure-item.is-disabled {
  pointer-events: none;
  opacity: 0.2;
}

.disclosure-link::after {
  content: '';
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads/assets/img/icon_pdf.svg) center / contain no-repeat;
}

.disclosure-link > span {
  text-decoration: underline;
  text-decoration-color: var(--primary-main-500);
}

/* ------------------------------------------------------ */
/* お問い合わせ（入力画面）
/* ------------------------------------------------------ */

.contact-wrap {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-top: 40px;
}

@media screen and (max-width: 1200px){
  .contact-wrap {
    flex-direction: column;
    margin-top: 32px;
  }
}

.contact-example {
  flex-shrink: 0;
  width: 316px;
  border: 1px solid var(--primary-light-400);
}

@media screen and (max-width: 1200px){
  .contact-example {
    width: 100%;
  }
}

.contact-example-title {
  text-align: center;
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
  background: var(--primary-lighter-200);
}

.contact-example-content {
  padding: 20px;
}

@media screen and (max-width: 767px){
  .contact-example-content {
    padding: 14px;
  }
}

.contact-box {
  flex: 1;
  padding: 36px 26px;
  width: 100%;
  border-radius: 4px;
}

@media screen and (max-width: 767px){
  .contact-box {
    padding: 36px 14px;
  }
}

.contact-table {
  width: 100%;
}

.label-text,
.wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 700;
}

.contact-required {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  background: var(--secondary-main-500);
  border-radius: 30px;
}

@media screen and (max-width: 767px){
  .contact-table th,
  .contact-table td {
    display: block;
  }
}

.contact-table th {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 0 0;
  width: 220px;
}

@media screen and (max-width: 767px){
  .contact-table th {
    justify-content: flex-start;
    padding: 0 0 10px 0;
    width: 100%;
  }
}

.contact-table td {
  padding-bottom: 40px;
  width: 100%;
}

@media screen and (max-width: 767px){
  .contact-table td {
    padding-bottom: 32px;
  }
}

.contact-table tr:first-child td {
  padding-bottom: 52px;
}

.contact-table input[type=text],
.contact-table input[type=email],
.contact-table input[type=tel],
.contact-table textarea {
  width: 100%;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 5px;
}

@media screen and (max-width: 767px){
  .contact-table input[type=text],
  .contact-table input[type=email],
  .contact-table input[type=tel],
  .contact-table textarea {
    padding: 10px 12px;
  }
}

.contact-table input[type=text],
.contact-table input[type=email],
.contact-table input[type=tel] {
  height: 48px;
}

@media screen and (max-width: 767px){
  .contact-table input[type=text],
  .contact-table input[type=email],
.contact-table input[type=tel] {
    height: 40px;
  }
}

.contact-table textarea {
  height: 200px;
}

/* お問い合わせ（ラジオボタン）
/* ------------------------------------------------------ */

.radio-main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--primary-main-500);
}

@media screen and (max-width: 767px){
  .radio-main {
    margin-top: 10px;
  }
}

.radio-main .wpcf7-not-valid-tip {
  display: none;
}

.radio-main-emphasis {
  margin-top: 3px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: var(--primary-main-500);
}

.radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

@media screen and (max-width: 767px){
  .radio-list {
    gap: 20px 24px;
  }
}

.wpcf7-list-item {
  margin: 0!important;
}

.radio-list > .wpcf7-list-item {
  width: calc((100% - 24px)/2);
}

@media screen and (max-width: 767px){
  .radio-list > .wpcf7-list-item {
    width: auto;
  }
}

.wpcf7-list-item > label {
  cursor: pointer;
}

.wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
}

/* ラジオボタンパーツ
/* ------------------------------------------------------ */

.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item-label::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  border-radius: 50%;
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  background: var(--white);
}

.wpcf7-radio .wpcf7-list-item-label::after {
  opacity: 0;
  left: 4px;
  width: 12px;
  height: 12px;
  background: var(--secondary-main-500);
  transition: all 0.3s ease;
}

.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  border: 1px solid var(--secondary-main-500);
}

.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* チェックボックスパーツ
/* ------------------------------------------------------ */

.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.wpcf7-acceptance .wpcf7-list-item-label::before {
  left: 0;
  z-index: 1;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background: var(--white);
  border-radius: 4px;
}

.wpcf7-acceptance .wpcf7-list-item-label::after {
  opacity: 0;
  top: 9.5px;
  left: 6.5px;
  transform: rotate(-45deg) translate(12%, -70%);
  z-index: 2;
  width: 10px;
  height: 5px;
  border-bottom: 3px solid var(--white);
  border-left: 3px solid var(--white);
}

.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: var(--secondary-main-500);
}

.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* お問い合わせ（エラーメッセージ）
/* ------------------------------------------------------ */

.wpcf7-not-valid-tip {
  display: block;
  position: absolute;
  margin-top: 1px;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--caution);
}

.radio-list + .wpcf7-not-valid-tip {
  margin-top: 12px;
}

textarea + .wpcf7-not-valid-tip {
  margin-top: -5px;
}

.wpcf7-not-valid-tip::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(/wp-content/uploads/assets/img/icon_check_red.svg) center / cover no-repeat;
}

.wpcf7-response-output {
  display: none;
}

/* お問い合わせ（個人情報の取り扱いについて）
/* ------------------------------------------------------ */

.contact-privacy-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-privacy-main .contact-required {
  margin-top: 4px;
}

.contact-privacy-text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

/* お問い合わせ（確認ページ）
/* ------------------------------------------------------ */

.is-confirm-screen .section-title {
  display: none;
}

.is-confirm-screen .text {
  display: none;
}

.is-confirm-screen .contact-wrap {
  margin-top: 0;
}

.is-confirm-screen .contact-example {
  display: none;
}

/* お問い合わせ（確認画面）
/* ------------------------------------------------------ */

.wpcf7 {
  width: 100%;
}

.wpcf7cp-form-hide {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

div#wpcf7cpcnf {
  position: unset!important;
  padding: 36px 26px;
  width: 100%;
  background-color: var(--primary-lighter-200);
  border-radius: 4px;
}

@media screen and (max-width: 767px){
  div#wpcf7cpcnf {
    padding: 36px 14px;
  }
}

div#wpcf7cpcnf table {
  width: 100%;
}

div#wpcf7cpcnf table tr:first-child th,
div#wpcf7cpcnf table tr:first-child td {
  padding-top: 0;
}

div#wpcf7cpcnf table tr th,
div#wpcf7cpcnf table tr td {
  padding: 24px 0;
  border-bottom: 1px solid var(--primary-lighter-300);
}

@media screen and (max-width: 767px){
  div#wpcf7cpcnf table tr th,
  div#wpcf7cpcnf table tr td {
    display: block;
  }
}

div#wpcf7cpcnf table tr th {
  padding-right: 20px;
  width: 220px;
}

@media screen and (max-width: 767px){
  div#wpcf7cpcnf table tr th {
    padding-bottom: 10px;
    width: 100%;
    border-bottom: none;
  }
  div#wpcf7cpcnf table tr td {
    padding-top: 0;
  }
}

div#wpcf7cpcnf table tr p {
  font-size: 14px;
  font-weight: 700;
}

.wpcf7cp-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

@media screen and (max-width: 767px){
  .wpcf7cp-btns {
    flex-direction: column;
    align-items: center;
  }
}

.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn,
.wpcf7cp-btns .wpcf7-submit.wpcf7cp-cfm-submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 53px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 100px;
  box-shadow: 0 4px 4px 0 color-mix(in srgb, var(--black)20%, transparent);
  transition: all 0.3s ease;
}

.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  width: 180px;
  background: var(--primary-main-500);
}

@media (hover: hover)and (pointer: fine){
  .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn:hover {
    background: var(--primary-light-400);
  }
}

.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(/wp-content/uploads/assets/img/icon_arrow_back.svg) center / cover no-repeat;
}

.wpcf7cp-btns .wpcf7-submit.wpcf7cp-cfm-submit-btn {
  z-index: 10;
  width: 300px;
  background: var(--btn-gradation-secondary);
}

@media screen and (max-width: 767px){
  .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn,
  .wpcf7cp-btns .wpcf7-submit.wpcf7cp-cfm-submit-btn {
    max-width: 294px;
    width: 100%;
  }
}

.wpcf7cp-btns .wpcf7-submit.wpcf7cp-cfm-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 1;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(/wp-content/uploads/assets/img/icon_arrow_submit.svg) center / cover no-repeat;
}

.wpcf7cp-btns .wpcf7-submit.wpcf7cp-cfm-submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  background: var(--btn-gradation-secondary-hover);
  border-radius: 30px;
  transition: all 0.3s ease;
}

@media (hover: hover)and (pointer: fine){
  .wpcf7cp-btns .wpcf7-submit.wpcf7cp-cfm-submit-btn:hover::after {
    opacity: 1;
  }
}

/* ------------------------------------------------------ */
/* お問い合わせ（送信完了画面）
/* ------------------------------------------------------ */

.thanks-box {
  padding: 36px;
  border-radius: 4px;
}

@media screen and (max-width: 599px){
  .thanks-box {
    padding: 36px 14px;
  }
}

.thanks-box-inner {
  margin: 0 auto;
  max-width: 656px;
}

.thanks-icon {
  margin: 0 auto 20px;
  width: 68px;
}

@media screen and (max-width: 767px){
  .thanks-icon {
    width: 58px;
  }
}

.thanks-title {
  margin-bottom: 24px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-main-500);
}

@media screen and (max-width: 767px){
  .thanks-title {
    font-size: 20px;
  }
}

.thanks-text {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
}

.thanks-notes {
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  background: var(--primary-lightest-100);
  border-radius: 10px;
}

/* ------------------------------------------------------ */
/* 404ページ
/* ------------------------------------------------------ */

.page404-box {
  padding: 36px;
  border-radius: 4px;
}

@media screen and (max-width: 599px){
  .page404-box {
    padding: 36px 14px;
  }
}

.page404-box-inner {
  margin: 0 auto;
  max-width: 656px;
}

.page404-title {
  margin-bottom: 24px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-main-500);
}

@media screen and (max-width: 767px){
  .page404-title {
    font-size: 20px;
  }
}

.page404-text {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
}
