@charset "UTF-8";
/*共通スタイル*/
@font-face {
  font-family: "DIN";
  src: url("../fonts/din-alternate-bold.ttf") format("truetype");
  font-display: swap;
}
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: hsl(0, 0%, 13%);
  font-feature-settings: "palt";
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-base {
    padding: 0 40px;
  }
}

/*ヘッダーのスタイル*/
.site_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
@media (min-width: 980px) {
  .site_header {
    background: hsl(0, 0%, 100%);
    padding: 22px 40px;
    border: 1px solid hsl(0, 0%, 92%);
  }
}
.site_header_logo {
  max-width: 224px;
  position: relative;
  z-index: 999;
  transition: opacity 0.3s ease-out;
  background: hsl(0, 0%, 100%);
  padding: 12px 20px;
  width: 100%;
  border-radius: 0 0 4px 0;
}
@media (min-width: 980px) {
  .site_header_logo {
    background: none;
    max-width: 160px;
    padding: 0;
    border: 0;
  }
}
@media (min-width: 1150px) {
  .site_header_logo {
    max-width: 210px;
  }
}
.site_header_logo img {
  width: 100%;
}
.site_header_logo:hover {
  opacity: 0.6;
}
.site_header .global_nav {
  position: relative;
  z-index: 99;
}
.site_header .global_nav_toggle {
  touch-action: manipulation;
  box-shadow: none;
  display: block;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 4px;
  position: relative;
  z-index: 1001;
  color: hsl(0, 0%, 100%);
  transition: 0.3s linear;
  text-align: left;
  padding: 0;
  background: #F2CE56;
  margin: 12px 20px;
  /* === クリック後（×） === */
}
@media (min-width: 980px) {
  .site_header .global_nav_toggle {
    display: none;
  }
}
.site_header .global_nav_toggle.is-active .global_nav_toggle_bar-top {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.site_header .global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;
}
.site_header .global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.site_header .global_nav_toggle_bar {
  height: 2px;
  background: hsl(0, 0%, 13%);
  border-radius: 999px;
  position: absolute;
  left: 50%;
  width: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateX(-50%);
}
.site_header .global_nav_toggle_bar-top {
  top: 16px;
}
.site_header .global_nav_toggle_bar-mid {
  top: 50%;
  transform: translate(-50%, -50%);
}
.site_header .global_nav_toggle_bar-btm {
  bottom: 16px;
}
@media (max-width: 979px) {
  .site_header .global_nav_overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s linear;
    overflow-y: auto;
    background: hsl(0, 0%, 96%);
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-y: scroll;
  }
}
@media (max-width: 979px) {
  .site_header .global_nav_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
}
.site_header .global_nav_container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px;
  width: calc(100% - 40px);
  margin: 104px 20px 162px;
  background: hsl(0, 0%, 100%);
  border-radius: 4px;
}
@media (min-width: 980px) {
  .site_header .global_nav_container {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    min-height: auto;
    padding: 0;
    width: auto;
    margin: 0;
  }
}
@media (min-width: 1150px) {
  .site_header .global_nav_container {
    gap: 24px;
  }
}
.site_header .global_nav_list {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 980px) {
  .site_header .global_nav_list {
    flex-direction: row;
    width: auto;
    gap: 16px;
  }
}
@media (min-width: 980px) {
  .site_header .global_nav_list_item_sp {
    display: none;
  }
}
@media (min-width: 980px) {
  .site_header .global_nav_list_item_under {
    display: inline-block;
    position: relative;
  }
  .site_header .global_nav_list_item_under::after {
    background-color: hsl(0, 0%, 13%);
    bottom: -4px;
    /* 要素の下端からの距離 */
    content: "";
    /* 要素に内容を追加 */
    height: 1px;
    /* 下線の高さ */
    left: 0;
    /* 要素の左端からの距離 */
    position: absolute;
    /* 絶対位置指定 */
    transform: scale(0, 1);
    /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
    transform-origin: right top;
    /* 変形の原点を右上に指定 */
    transition: transform 0.3s;
    /* 変形をアニメーション化 */
    width: 100%;
    /* 要素の幅 */
  }
}
.site_header .global_nav_list_item_under:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.site_header .global_nav_list_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: opacity 0.3s ease-out;
  position: relative;
  overflow: hidden;
}
@media (min-width: 920px) {
  .site_header .global_nav_list_link {
    gap: 4px;
  }
}
@media (min-width: 980px) {
  .site_header .global_nav_list_link {
    font-size: 16px;
  }
}
.site_header .global_nav_list_link_arrow {
  max-width: 24px;
  width: 100%;
}
@media (min-width: 980px) {
  .site_header .global_nav_list_link_arrow {
    display: none;
  }
}
.site_header .global_nav_list_link_arrow img {
  width: 100%;
}
.site_header .global_nav_list_link_text {
  color: hsl(0, 0%, 13%);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 980px) {
  .site_header .global_nav_list_link_text {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  .site_header .global_nav_list_link_text {
    font-size: 18px;
  }
}
.site_header .global_nav_list_link_text_sp {
  color: hsl(0, 0%, 13%);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: justify;
}
.site_header .global_nav_right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 980px) {
  .site_header .global_nav_right {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
@media (min-width: 1150px) {
  .site_header .global_nav_right {
    gap: 32px;
  }
}

.megaMenu {
  margin-top: 16px;
}
@media (min-width: 980px) {
  .megaMenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 287px;
    padding-top: 20px;
    margin-top: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-out, visibility 0.3s;
  }
}
.megaMenu_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.megaMenu_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background-color: #fff;
}
@media (min-width: 980px) {
  .megaMenu_list {
    padding: 24px;
    gap: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 8px 0px hsla(0, 0%, 0%, 0.25);
    width: 100%;
  }
}
.megaMenu_item {
  width: 100%;
}
.megaMenu_link {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 980px) {
  .megaMenu_link {
    gap: 6px;
  }
}
.megaMenu_link_text {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 980px) {
  .megaMenu_link_text {
    font-weight: 500;
    font-size: 16px;
  }
}
.megaMenu_link_arrow {
  display: none;
}
@media (min-width: 980px) {
  .megaMenu_link_arrow {
    max-width: 24px;
    width: 100%;
    display: flex;
  }
}
.megaMenu_link_arrow img {
  width: 100%;
}

.global_nav_list_item_megaMenu {
  position: relative;
}
@media (min-width: 980px) {
  .global_nav_list_item_megaMenu:hover .megaMenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.header_contact_tel {
  padding-top: 28px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.header_contact_tel_num {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.35;
  margin-top: -6px;
}
@media (min-width: 980px) {
  .header_contact_tel_num {
    font-size: 20px;
  }
}
@media (min-width: 1150px) {
  .header_contact_tel_num {
    font-size: 32px;
  }
}
.header_contact_tel_text {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
}
@media (min-width: 980px) {
  .header_contact_tel_text {
    font-size: 10px;
  }
}
@media (min-width: 1150px) {
  .header_contact_tel_text {
    font-size: 12px;
  }
}
.header_contact_tel_icon {
  max-width: 24px;
  margin-top: 6px;
}
@media (min-width: 980px) {
  .header_contact_tel_icon {
    max-width: 20px;
    margin-top: -6px;
  }
}
@media (min-width: 1150px) {
  .header_contact_tel_icon {
    max-width: 24px;
    margin-top: 4px;
  }
}
.header_contact_tel::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: hsl(0, 0%, 92%);
}
@media (min-width: 980px) {
  .header_contact_tel::after {
    display: none;
  }
}
@media (min-width: 980px) {
  .header_contact_tel {
    position: static;
    transition: opacity 0.3s ease-out;
    padding: 0;
  }
}
.header_contact_tel:hover {
  opacity: 0.6;
}
.header_contact_btn {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 8px;
  background: #F2CE56;
  border: 1px solid hsl(0, 0%, 13%);
  padding: 17px 20px;
  border-radius: 999px;
  transition: background-color 0.3s ease-out;
  max-width: 288px;
  flex-shrink: 0;
}
@media (min-width: 980px) {
  .header_contact_btn {
    display: block;
    padding: 12px 16px;
    max-width: none;
  }
}
@media (min-width: 1150px) {
  .header_contact_btn {
    padding: 12px 24px;
  }
}
.header_contact_btn:hover {
  background-color: #f8e39b;
}
.header_contact_btn_inner {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
@media (min-width: 390px) {
  .header_contact_btn_inner {
    font-size: 16px;
  }
}
@media (min-width: 920px) {
  .header_contact_btn_inner {
    font-size: 14px;
  }
}
@media (min-width: 1150px) {
  .header_contact_btn_inner {
    font-size: 16px;
  }
}
.header_contact_btn_inner_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 980px) {
  .header_contact_btn_inner_icon {
    display: none;
  }
}

.contact {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 886px;
  width: 100%;
  padding: 0 20px;
}
.contact.service_contact {
  top: -54px;
}
.contact.flow_contact {
  top: -121px;
}
.contact.guide_contact {
  top: -141px;
}

.common_contact {
  border: 1px solid hsl(0, 0%, 13%);
  border-radius: 12px;
  background: hsl(0, 0%, 100%);
  box-shadow: 3px 3px 0px 0px hsla(0, 0%, 33%, 0.25);
  width: 100%;
  padding: 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .common_contact {
    padding: 40px;
    max-width: 866px;
  }
}
.common_contact_yellowBox {
  background: linear-gradient(180deg, #F2CE56 0%, #E5C352 100%);
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 920px) {
  .common_contact_yellowBox {
    padding: 60px 40px;
  }
}
.common_contact_yellowBox_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.common_contact_yellowBox_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.common_contact_yellowBox_text_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  max-width: 541px;
  margin: 0 auto;
}
.common_contact_yellowBox_text_wrap::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -12px;
  width: 1px;
  height: 32px;
  background-color: hsl(0, 0%, 13%);
  transform: rotate(-30deg);
}
@media (min-width: 768px) {
  .common_contact_yellowBox_text_wrap::before {
    width: 3px;
    height: 60px;
    left: -24px;
  }
}
.common_contact_yellowBox_text_wrap::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: -12px;
  width: 1px;
  height: 32px;
  background-color: hsl(0, 0%, 13%);
  transform: rotate(30deg);
}
@media (min-width: 768px) {
  .common_contact_yellowBox_text_wrap::after {
    width: 3px;
    height: 60px;
    right: -24px;
  }
}
.common_contact_yellowBox_topText {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-color: hsl(0, 0%, 100%);
  /* 色 */
  text-decoration-thickness: 4px;
  /* 太さ */
  text-underline-offset: -2px;
}
@media (min-width: 768px) {
  .common_contact_yellowBox_topText {
    font-size: 18px;
  }
}
.common_contact_yellowBox_middleText {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .common_contact_yellowBox_middleText {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .common_contact_yellowBox_middleText_br {
    display: none;
  }
}
.common_contact_yellowBox_bottomText {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 768px) {
  .common_contact_yellowBox_bottomText {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .common_contact_yellowBox_bottomText_br {
    display: none;
  }
}
.common_contact_title {
  position: relative;
  max-width: 292px;
  margin: 0 auto;
}
.common_contact_bubble {
  position: absolute;
  top: -88px;
  right: -21px;
  max-width: 95px;
}
@media (min-width: 768px) {
  .common_contact_bubble {
    top: -89px;
    right: -99px;
    max-width: 108px;
  }
}
@media (min-width: 920px) {
  .common_contact_bubble {
    top: -59px;
    right: -124px;
  }
}
.common_contact_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid hsl(0, 0%, 82%);
  flex: 1;
}
@media (min-width: 920px) {
  .common_contact_content {
    padding-bottom: 0;
    border-bottom: 0;
    padding-right: 48px;
    border-right: 1px solid hsl(0, 0%, 82%);
    max-width: 336px;
  }
}
.common_contact_content:last-child {
  padding-right: 0;
  border-right: none;
  padding-top: 16px;
  padding-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 920px) {
  .common_contact_content:last-child {
    padding-top: 0;
    padding-left: 48px;
    padding-right: 0;
    border-right: none;
  }
}
.common_contact_content_mainText {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 600px) {
  .common_contact_content_mainText {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .common_contact_content_mainText_br {
    display: none;
  }
}
.common_contact_content_container {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
@media (min-width: 920px) {
  .common_contact_content_container {
    flex-direction: row;
    justify-content: center;
  }
}
.common_contact_content_text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 920px) {
  .common_contact_content_text {
    font-size: 16px;
  }
}
.common_contact_content_link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: hsl(46, 86%, 64%);
  border: 1px solid hsl(0, 0%, 13%);
  border-radius: 999px;
  max-width: 288px;
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  transition: background-color 0.3s ease-out;
}
@media (min-width: 920px) {
  .common_contact_content_link {
    padding: 18px 20px;
  }
}
.common_contact_content_link:hover {
  background-color: #f8e39b;
}
.common_contact_content_link_img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common_contact_content_link_text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}
@media (min-width: 920px) {
  .common_contact_content_link_text {
    font-size: 16px;
  }
}
.common_contact_content_tel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.common_contact_content_tel.subPage_common_contact_content_tel {
  gap: 8px;
}
@media (min-width: 920px) {
  .common_contact_content_tel.subPage_common_contact_content_tel {
    gap: 12px;
  }
}
.common_contact_content_tel_icon {
  max-width: 24px;
  margin-top: 10px;
}
.common_contact_content_tel_icon.subPage_common_contact_content_tel_icon {
  margin-top: 8px;
}
@media (min-width: 390px) {
  .common_contact_content_tel_icon.subPage_common_contact_content_tel_icon {
    margin-top: 10px;
  }
}
.common_contact_content_tel_num {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
}
@media (min-width: 390px) {
  .common_contact_content_tel_num {
    font-size: 40px;
  }
}
@media (min-width: 920px) {
  .common_contact_content_tel_num.subPage_common_contact_content_tel_num {
    font-size: 42px;
  }
}
.common_contact_content_tel_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}

.subPage_common_contact_content_mainText {
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
}
@media (min-width: 768px) {
  .subPage_common_contact_content_mainText {
    font-size: 28px;
    line-height: 1.75;
  }
}

.subPage_common_contact_bubble {
  position: absolute;
  top: -40px;
  right: -16px;
  max-width: 73px;
}
@media (min-width: 390px) {
  .subPage_common_contact_bubble {
    right: -6px;
  }
}
@media (min-width: 600px) {
  .subPage_common_contact_bubble {
    right: -21px;
  }
}
@media (min-width: 768px) {
  .subPage_common_contact_bubble {
    top: -42px;
    right: -127px;
    max-width: 108px;
  }
}
@media (min-width: 920px) {
  .subPage_common_contact_bubble {
    top: -59px;
    right: -127px;
    max-width: 108px;
  }
}
.subPage_common_contact_bubble img {
  width: 100%;
}

.common_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}
.common_text_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.common_text_wrap.wrap_n1 {
  max-width: 675px;
}
.common_text_wrap.wrap_n2 {
  max-width: 690px;
}
.common_text_wrap.wrap_n3 {
  max-width: 611px;
}
.common_text.common_text_bold {
  font-weight: 700;
}

.underline_yellow {
  text-decoration-line: underline;
  text-decoration-color: hsl(46, 86%, 64%);
  /* 色 */
  text-decoration-thickness: 4px;
  /* 太さ */
  text-underline-offset: -2px;
  /* 位置（文字に近づける／離す） */
  text-decoration-skip-ink: none;
  font-weight: 500;
}

.text_justify {
  text-align: justify;
}

.text_center {
  text-align: center;
}

.text_center_pc {
  text-align: center;
}

.no_link {
  pointer-events: none;
  cursor: none;
}

@media (min-width: 920px) {
  a[href^="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .faq {
    gap: 60px;
  }
}

.subpage_accordion_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subpage_accordion_box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* アコーディオンリスト全体を囲うタグ */
.accordion_wrapper {
  margin: 40px auto 0;
  max-width: 885px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion_wrapper.subPage_accordion_wrapper {
  margin: 0;
}

/* 個々のアコーディオンリストを囲うタグ */
.accordion {
  width: 100%;
  border-radius: 12px;
  border: 1px solid hsl(0, 0%, 13%);
  box-shadow: 4px 4px 0px 0px hsla(0, 0%, 33%, 0.25);
  overflow: hidden;
  background-color: hsl(0, 0%, 100%);
  transition: box-shadow 0.4s ease-out, transform 0.4s ease-out;
}
.accordion:has(.accordion_header.open) {
  box-shadow: none;
  transform: translate(4px, 4px);
}
@media (min-width: 1025px) {
  .accordion:not(:has(.accordion_header.open)):hover {
    box-shadow: none;
    transform: translate(4px, 4px);
  }
}

/* アコーディオンのタイトル・内容共通 */
.accordion_header,
.accordion_content {
  width: 100%;
}

/* アコーディオンのタイトル */
.accordion_header {
  cursor: pointer;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 13%);
  position: relative;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background-color 0.4s ease-out;
}
@media (min-width: 600px) {
  .accordion_header {
    padding: 32px 40px;
    gap: 40px;
  }
}
@media (min-width: 1025px) {
  .accordion_header:hover:not(.open) {
    background-color: hsl(46, 100%, 97%);
  }
}
.accordion_header.open {
  background-color: hsl(0, 0%, 100%);
}
.accordion_header_question {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.accordion_header_question_text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .accordion_header_question_text {
    font-size: 18px;
  }
}
@media (min-width: 920px) {
  .accordion_header_question_text {
    font-size: 20px;
  }
}
.accordion_header_question_num {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  vertical-align: middle;
  margin-top: 1px;
}
@media (min-width: 920px) {
  .accordion_header_question_num {
    font-size: 20px;
    margin-top: 3px;
  }
}
.accordion_header_question_text_br {
  display: block;
}
@media (min-width: 768px) {
  .accordion_header_question_text_br {
    display: none;
  }
}
.accordion_header_question_num {
  flex-shrink: 0;
}
.accordion_header .circle {
  background: #F2CE56;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease-out;
}
.accordion_header .circle::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  background-color: hsl(0, 0%, 13%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion_header .circle::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 2px;
  background-color: hsl(0, 0%, 13%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* open が付いたら回転 */
.accordion_header.open .circle {
  transform: rotate(90deg);
}

/* 横線を消す（より “−” に見せたい場合） */
.accordion_header.open .circle::after {
  opacity: 0;
}

/* アコーディオンの内容 */
.accordion_content {
  display: none;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 13%);
  padding: 0 24px 20px;
}
@media (min-width: 600px) {
  .accordion_content {
    padding: 0 40px 32px;
  }
}
.accordion_content_text {
  padding-top: 20px;
  border-top: 1px dashed hsl(0, 0%, 82%);
  text-align: justify;
}
@media (min-width: 600px) {
  .accordion_content_text {
    padding-top: 32px;
  }
}

.breadcrumbs_list {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .breadcrumbs_list {
    justify-content: right;
    gap: 8px;
  }
}
.breadcrumbs_list_item {
  display: flex;
  align-items: center;
}
.breadcrumbs_list_item.fixed {
  flex-shrink: 0;
}
.breadcrumbs_list_item_link {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.breadcrumbs_list_item_link_title {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  /* 必須 */
  -webkit-box-orient: vertical;
  /* 必須 */
  -webkit-line-clamp: 1;
  /* 行数を制限 */
  overflow: hidden;
  /* はみ出た部分を非表示 */
}
.breadcrumbs_list_item_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.subPage_header {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 768px) {
  .subPage_header {
    gap: 83px;
  }
}
.subPage_common_section {
  padding: 100px 0 80px;
  background-image: image-set(url(../img/common/subpage_common_back.png) 1x, url(../img/common/subpage_common_back@2x.png) 2x);
  background-repeat: no-repeat;
  background-position: top;
}
@media (min-width: 768px) {
  .subPage_common_section {
    padding: 124px 0 160px;
  }
}
.subPage_title {
  font-weight: 700;
  font-size: clamp(32px, 3.4285714286vw, 48px);
  line-height: 1;
}
@media (min-width: 460px) {
  .subPage_title_br {
    display: none;
  }
}
.subPage_title_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.subPage_title_small {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}
.subPage_detail {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 990px) {
  .subPage_detail {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
}
.subPage_detail.subPage_detail_countermeasureAndGuide {
  margin-top: 40px;
}
@media (min-width: 990px) {
  .subPage_detail.subPage_detail_countermeasureAndGuide {
    margin-top: 185px;
  }
}
.subPage_detail_body {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 768px) {
  .subPage_detail_body {
    gap: 160px;
  }
}
@media (min-width: 990px) {
  .subPage_detail_body {
    max-width: 792px;
    flex: 1;
  }
}
.subPage_heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
  padding-left: 24px;
  position: relative;
}
@media (min-width: 600px) {
  .subPage_heading {
    font-size: clamp(28px, 2.8571428571vw, 40px);
  }
}
.subPage_heading::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: calc(100% - 4px);
  background-color: #F2CE56;
  border-radius: 999px;
}
@media (min-width: 600px) {
  .subPage_heading_br_sp {
    display: none;
  }
}
.subPage_heading_wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.subPage_heading_bottomText {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.03em;
}
.subPage_subheading {
  font-weight: 500;
  font-size: clamp(20px, 2.2857142857vw, 32px);
  line-height: 1.35;
}
.subPage_subheading_br_tablet {
  display: block;
}
@media (min-width: 768px) {
  .subPage_subheading_br_tablet {
    display: none;
  }
}
@media (min-width: 990px) {
  .subPage_subheading_br_tablet {
    display: block;
  }
}
@media (min-width: 600px) {
  .subPage_subheading_br_sp {
    display: none;
  }
}
.subPage_small_title {
  font-weight: 700;
  font-size: clamp(18px, 1.7142857143vw, 24px);
  line-height: 1.75;
}
.subPage_small_title.accordion_subPage_small_title {
  color: hsl(46, 94%, 46%);
}
@media (min-width: 460px) {
  .subPage_small_title_br_sp {
    display: none;
  }
}

.common_table_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .common_table_container {
    gap: 60px;
  }
}
.common_table_and_attention {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .common_table_and_attention {
    gap: 20px;
  }
}

.attention_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}
.attention_text_container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.attention_text_content {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.attention_text.attention_num {
  flex-shrink: 0;
}

.subPage_main_img_andContact {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .subPage_main_img_andContact {
    margin-bottom: 193px;
  }
}
.subPage_main_img_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.subPage_main_img_box.sp {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .subPage_main_img_box.sp {
    display: none;
  }
}
.subPage_main_img_box.pc {
  display: none;
}
@media (min-width: 768px) {
  .subPage_main_img_box.pc {
    display: block;
    margin-top: 80px;
  }
}
.subPage_main_img_wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.subPage_main_img_bubble {
  position: absolute;
}

.subPage_main_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .subPage_main_title {
    font-size: 40px;
    margin-bottom: 174px;
  }
}

.subPage_main_img_bubble {
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.subPage_main_img_bubble.is-visible {
  opacity: 1;
  visibility: visible;
}
.subPage_main_img_bubble.is-visible.bubble_01 {
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(174px, 16.3571428571vw, 229px);
}
@media (min-width: 980px) {
  .subPage_main_img_bubble.is-visible.bubble_01 {
    top: -126px;
  }
}
.subPage_main_img_bubble.is-visible.bubble_02 {
  top: -40px;
  left: -150px;
  width: clamp(164px, 16.2142857143vw, 227px);
}
@media (min-width: 980px) {
  .subPage_main_img_bubble.is-visible.bubble_02 {
    top: -57px;
    left: -227px;
  }
}
.subPage_main_img_bubble.is-visible.bubble_03 {
  top: -64px;
  right: -144px;
  width: clamp(160px, 15.0714285714vw, 211px);
}
@media (min-width: 980px) {
  .subPage_main_img_bubble.is-visible.bubble_03 {
    top: -86px;
    right: -221px;
  }
}
.subPage_main_img_bubble.is-visible.bubble_04 {
  top: 64px;
  left: -204px;
  width: clamp(174px, 21.0714285714vw, 295px);
}
@media (min-width: 980px) {
  .subPage_main_img_bubble.is-visible.bubble_04 {
    top: 84px;
    left: -287px;
  }
}
.subPage_main_img_bubble.is-visible.bubble_05 {
  top: 48px;
  right: -174px;
  width: clamp(160px, 17.2142857143vw, 241px);
}
@media (min-width: 980px) {
  .subPage_main_img_bubble.is-visible.bubble_05 {
    top: 87px;
    right: -257px;
  }
}
.subPage_main_img_bubble.is-visible.bubble_06 {
  bottom: -28px;
  left: -214px;
  width: clamp(180px, 22.2142857143vw, 311px);
}
@media (min-width: 980px) {
  .subPage_main_img_bubble.is-visible.bubble_06 {
    bottom: -28px;
    left: -318px;
  }
}
.subPage_main_img_bubble.is-visible.bubble_07 {
  bottom: -28px;
  right: -190px;
  width: clamp(160px, 19.8571428571vw, 278px);
}
@media (min-width: 980px) {
  .subPage_main_img_bubble.is-visible.bubble_07 {
    bottom: -28px;
    right: -315px;
  }
}

.subPage_main_img_bubble_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-height: 99.4285714286vw;
  position: relative;
}
.subPage_main_img_bubble_container img {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  visibility: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.subPage_main_img_bubble_container img.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  position: relative;
}
.subPage_main_img_bubble_container img.is-fadeout {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.subPage_main_img_manWoman {
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .subPage_main_img_manWoman {
    width: min(30.3571428571vw, 425px);
    margin: 0;
  }
}
.subPage_main_img_manWoman img {
  width: 100%;
}

@media (min-width: 990px) {
  .subPage_detail_map {
    position: sticky;
    top: 140px;
  }
}
.subPage_detail_map_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid hsl(0, 0%, 82%);
  background: hsl(0, 0%, 100%);
}
.subPage_detail_map_btn_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 990px) {
  .subPage_detail_map_btn_list {
    display: none;
  }
}
.subPage_detail_map_btn_text {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  vertical-align: middle;
}
@media (min-width: 600px) {
  .subPage_detail_map_btn_text_br {
    display: none;
  }
}
.subPage_detail_map_btn_text_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 53px;
}
.subPage_detail_map_list {
  display: none;
}
@media (min-width: 990px) {
  .subPage_detail_map_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 287px;
    width: 100%;
  }
}
.subPage_detail_map_list_link {
  display: block;
  color: hsl(0, 0%, 82%);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  padding-left: 16px;
  position: relative;
  transition: color 0.3s ease-out;
}
.subPage_detail_map_list_link::before {
  content: "";
  position: absolute;
  top: 0.675em;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: hsl(0, 0%, 13%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.subPage_detail_map_list_link:hover {
  color: hsl(0, 0%, 82%);
}
.subPage_detail_map_list_link.is-active {
  color: hsl(0, 0%, 13%);
}
.subPage_detail_map_list_link.is-active::before {
  opacity: 1;
}

.tab {
  display: inline-block;
  padding: 8px 20px;
  border-bottom: none;
  background: #F2CE56;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .tab {
    padding: 8px clamp(20px, 2.2857142857vw, 32px);
    font-size: clamp(18px, 1.7142857143vw, 24px);
  }
}
.tab.tab_red {
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 86%, 64%);
}
.tab_content {
  border: 1px solid #F2CE56;
  padding: clamp(20px, 2.2857142857vw, 32px);
  background: hsl(46, 100%, 97%);
  border-radius: 0 12px 12px 12px;
}
.tab_content.tab_content_red {
  background-color: hsl(0, 100%, 98%);
  border: 1px solid hsl(0, 86%, 64%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tab_content.tab_content_red .tab_title {
  color: hsl(0, 86%, 64%);
  font-weight: 700;
  font-size: clamp(18px, 1.4285714286vw, 20px);
  line-height: 1.75;
  margin: 0 0 8px;
}
.tab_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1020px) {
  .tab_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: clamp(16px, 1.7142857143vw, 24px);
    grid-row-gap: 4px;
  }
}
.tab_item {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.tab_red_check {
  max-width: 30px;
}
@media (min-width: 768px) {
  .tab_red_check {
    max-width: 35px;
  }
}
.tab_red_check_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tab_red_check_wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.tab_red_check_text {
  color: hsl(0, 86%, 64%);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .tab_red_check_text {
    font-size: 20px;
  }
}
.tab_red_check_text_br {
  display: block;
}
@media (min-width: 450px) {
  .tab_red_check_text_br {
    display: none;
  }
}
.tab_red_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: item;
}
.tab_red_list_item {
  counter-increment: item;
  position: relative;
  padding-left: 1.2em;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}
.tab_red_list_item::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  text-align: right;
  font: inherit;
  color: inherit;
}

.toTop_btn {
  display: block;
  background: #F2CE56;
  border: 1px solid hsl(0, 0%, 13%);
  border-radius: 46px;
  max-width: 300px;
  padding: 24px;
  width: 100%;
}
@media (min-width: 600px) {
  .toTop_btn {
    max-width: 425px;
    padding: 32px;
  }
}
.toTop_btn_text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 600px) {
  .toTop_btn_text {
    font-size: 18px;
  }
}

/*フッターのスタイル*/
.site_footer {
  background: hsl(0, 0%, 96%);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .site_footer {
    padding: 60px 40px;
  }
}
@media (min-width: 920px) {
  .site_footer {
    padding: 60px 40px 20px;
    gap: clamp(24px, 4.2857142857vw, 60px);
  }
}
@media (min-width: 1200px) {
  .site_footer {
    padding: 60px min(8.8571428571vw, 124px) 20px min(8.5714285714vw, 120px);
  }
}
.site_footer_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
@media (min-width: 768px) {
  .site_footer_main {
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
  }
}
.site_footer_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .site_footer_left {
    align-items: flex-start;
  }
}
@media (min-width: 920px) {
  .site_footer_left {
    align-items: flex-start;
    gap: 24px;
  }
}
.site_footer_logo {
  max-width: 250px;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 920px) {
  .site_footer_logo {
    max-width: 308px;
  }
}
.site_footer_logo:hover {
  opacity: 0.6;
}
.site_footer_address {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .site_footer_address {
    text-align: left;
  }
}
.site_footer_right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .site_footer_right {
    flex-direction: row;
    align-items: flex-end;
    gap: clamp(24px, 5vw, 70px);
  }
}
.site_footer_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 440px) {
  .site_footer_menu {
    align-items: flex-start;
    gap: 32px;
  }
}
.site_footer_menu.site_footer_menu_service {
  gap: 16px;
}
@media (min-width: 440px) {
  .site_footer_menu.site_footer_menu_service {
    gap: 20px;
  }
}
.site_footer_menu_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 440px) {
  .site_footer_menu_container {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .site_footer_menu_container {
    gap: 20px;
  }
}
@media (min-width: 920px) {
  .site_footer_menu_container {
    gap: clamp(32px, 4.2857142857vw, 60px);
  }
}
.site_footer_menu .subMenu_link {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  width: fit-content;
}
@media (min-width: 440px) {
  .site_footer_menu .subMenu_link {
    font-size: clamp(16px, 1.2857142857vw, 18px);
  }
}
.site_footer_menu .subMenu_link::after {
  background-color: hsl(0, 0%, 13%);
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}
.site_footer_menu .subMenu_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.site_footer_menu .subMenu_individual_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 440px) {
  .site_footer_menu .subMenu_individual_list {
    align-items: flex-start;
  }
}
.site_footer_menu .subMenu_individual_link {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  position: relative;
  display: inline-block;
}
.site_footer_menu .subMenu_individual_link::after {
  background-color: hsl(0, 0%, 13%);
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}
.site_footer_menu .subMenu_individual_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.site_footer_menu .subMenu_privacy {
  display: flex;
  align-items: center;
}
.site_footer_menu .subMenu_privacy_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  background-image: linear-gradient(to right, hsl(0, 0%, 13%), hsl(0, 0%, 13%));
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 1px;
}
.site_footer_menu .subMenu_privacy_text:hover {
  animation: linkLineReverse 0.5s ease forwards;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}
.site_footer .to_top {
  flex-shrink: 0;
}
.site_footer .to_top_link {
  display: none;
}
@media (min-width: 920px) {
  .site_footer .to_top_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s ease-out;
  }
  .site_footer .to_top_link:hover {
    opacity: 0.6;
  }
}
.site_footer .to_top_link_sp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 920px) {
  .site_footer .to_top_link_sp {
    display: none;
  }
}
.site_footer .to_top_text {
  color: #F2CE56;
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin-top: -9px;
}
.site_footer .to_subPage_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site_footer_bottom {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.site_footer .copyright {
  color: hsl(0, 0%, 13%);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.archive_gray_box {
  padding: 20px;
  border-radius: 12px;
  background: hsl(0, 0%, 95%);
  margin-top: 100px;
}
@media (min-width: 600px) {
  .archive_gray_box {
    padding: 40px;
    margin-top: 180px;
  }
}
.archive_gray_box_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid hsl(0, 0%, 82%);
}
@media (min-width: 600px) {
  .archive_gray_box_top {
    gap: 24px;
    padding-bottom: 32px;
  }
}
.archive_select_text {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  min-width: 88px;
}
.archive_select_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 600px) {
  .archive_select_container {
    flex-direction: row;
    align-items: center;
    gap: 42px;
  }
}
.archive_category_select {
  display: inline-block;
  padding: 6px 16px;
  background: hsl(0, 0%, 100%);
  border-radius: 999px;
  cursor: pointer;
  max-width: fit-content;
}
.archive_category_select.current {
  background: hsl(46, 86%, 64%);
}
.archive_category_select_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 450px) {
  .archive_category_select_container {
    flex-direction: row;
    align-items: center;
  }
}
.archive_category_select_text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.archive_select_cancellation {
  display: flex;
  align-items: center;
  gap: 8px;
  background: hsl(0, 0%, 100%);
  border-radius: 999px;
  border: 1px solid hsl(0, 0%, 82%);
  padding: 18px 24px;
  max-width: 177px;
  cursor: pointer;
  margin-top: 24px;
}
@media (min-width: 600px) {
  .archive_select_cancellation {
    margin-top: 32px;
  }
}
.archive_select_cancellation_text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.archive_year_select_wrapper {
  position: relative;
  max-width: 160px;
  width: 100%;
  box-shadow: 0px 4px 100px 0px hsla(0, 0%, 75%, 0.25);
}
.archive_year_select_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 2;
  width: 12px;
  height: 12px;
  background: url("../img/common/drop_arrow.svg") no-repeat center/contain;
  pointer-events: none;
}

.archive_year_select_box {
  width: 100%;
  border-radius: 4px;
  border: 1px solid hsl(0, 0%, 82%);
  padding: 8px 16px;
  position: relative;
  /* 標準の矢印を非表示にする */
  -webkit-appearance: none;
  /* Safari, Chrome用 */
  -moz-appearance: none;
  /* Firefox用 */
  appearance: none;
  /* 標準 */
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  /* IE10, 11で矢印を消す */
}
.archive_year_select_box::-ms-expand {
  display: none;
}

.archive_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
@media (min-width: 600px) {
  .archive_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 40px;
    margin-top: 80px;
  }
}
@media (min-width: 768px) {
  .archive_list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 40px;
  }
}

.news_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border: 1px solid hsl(0, 0%, 13%);
  border-radius: 12px;
  height: 100%;
  transition: background-color 0.3s ease-out;
}
@media (min-width: 768px) {
  .news_content {
    max-width: 370px;
  }
}
@media (min-width: 920px) {
  .news_content {
    padding: 32px;
  }
}
.news_content:hover {
  background-color: hsl(46, 100%, 97%);
}
.news_content_thumbnail {
  aspect-ratio: 306/173;
  border-radius: 20px;
}
.news_content_thumbnail img {
  width: 100%;
  height: 100%;
}
.news_content_bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}
.news_content_text_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .news_content_text_container {
    gap: 14px;
  }
}
.news_content_text_top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news_content_category {
  display: flex;
  padding: 5px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 23px;
  background: hsl(0, 0%, 13%);
  max-width: 96px;
  width: 100%;
  color: hsl(0, 0%, 100%);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.news_content_date {
  font-family: "DIN", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.news_content_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.news_arrow {
  margin: 0 0 0 auto;
  max-width: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .nav-links {
    gap: 20px;
    margin-top: 60px;
  }
}

.page-numbers {
  color: hsl(0, 0%, 82%);
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}
.page-numbers.current {
  color: hsl(0, 0%, 13%);
}

.prev {
  margin-right: 10px;
  max-width: 32px;
}
@media (min-width: 768px) {
  .prev {
    max-width: 40px;
  }
}

.next {
  margin-left: 10px;
  max-width: 32px;
}
@media (min-width: 768px) {
  .next {
    max-width: 40px;
  }
}

.prev.disabled,
.next.disabled {
  cursor: default;
  pointer-events: none;
}
.prev.disabled svg circle,
.next.disabled svg circle {
  fill: hsl(0, 0%, 95%) !important;
}
.prev.disabled svg path,
.next.disabled svg path {
  fill: hsl(0, 0%, 82%) !important;
}

.news_single_section {
  padding: 116px 0 80px;
}
@media (min-width: 768px) {
  .news_single_section {
    padding: 116px 0 180px;
  }
}
.news_single_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}
@media (min-width: 990px) {
  .news_single_container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 172px;
  }
}
.news_single_main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 792px;
}
.news_search {
  border-radius: 12px;
  border: 1px solid hsl(0, 0%, 13%);
  padding: 32px 20px;
}
@media (min-width: 600px) {
  .news_search {
    max-width: 278px;
  }
}
@media (min-width: 920px) {
  .news_search {
    padding: 40px 24px;
    flex-shrink: 0;
  }
}
@media (min-width: 990px) {
  .news_search {
    position: -webkit-sticky;
    /* Safari用 */
    position: sticky;
    top: 140px;
  }
}
.news_search_top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
}
.news_search_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.news_search_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news_search_year_wrapper {
  position: relative;
  width: 100%;
  box-shadow: 0px 4px 100px 0px hsla(0, 0%, 75%, 0.25);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.news_search_year_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 2;
  width: 20px;
  height: 20px;
  background: url("../img/common/drop_arrow.svg") no-repeat center/contain;
  pointer-events: none;
}
.news_search_category_select_text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.news_search_category_container {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 600px) {
  .news_search_category_container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news_search_category_select {
  padding: 4px 8px;
  border-radius: 999px;
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 82%);
  cursor: pointer;
  max-width: fit-content;
}
.news_search_category_select.current {
  background: hsl(46, 86%, 64%);
}
.news_share {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px dashed hsl(0, 0%, 82%);
  padding-top: 32px;
}
.news_share_container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news_share_container .share_btn_native {
  touch-action: manipulation;
  margin: 0;
  padding: 0;
  background: hsl(0, 0%, 100%);
  border: none;
}
.news_share_content {
  cursor: pointer;
  flex: 1;
  transition: opacity 0.3s ease-out;
  max-width: fit-content;
}
.news_share_content:hover {
  opacity: 0.6;
}

.news_search_year_select_box {
  width: 100%;
  border-radius: 4px;
  border: 1px solid hsl(0, 0%, 82%);
  padding: 8px 16px;
  position: relative;
  /* 標準の矢印を非表示にする */
  -webkit-appearance: none;
  /* Safari, Chrome用 */
  -moz-appearance: none;
  /* Firefox用 */
  appearance: none;
  /* 標準 */
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  /* IE10, 11で矢印を消す */
}
.news_search_year_select_box::-ms-expand {
  display: none;
}

.post-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 0;
  padding-top: 24px;
  border-top: 1px solid hsl(0, 0%, 82%);
}
@media (min-width: 600px) {
  .post-pagination {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top: 40px;
  }
}

.article_index {
  order: -1;
  width: 100%;
  text-align: center;
  color: hsl(13, 25%, 11%);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 24px;
  border-bottom: 1px solid hsl(0, 0%, 82%);
}
@media (min-width: 600px) {
  .article_index {
    order: 0;
    width: auto;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.article_prev,
.article_next {
  display: flex;
  align-items: center;
  gap: 7px;
  color: hsl(13, 25%, 11%);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  width: 50%;
}
@media (min-width: 600px) {
  .article_prev,
  .article_next {
    gap: 12px;
    font-size: 16px;
    width: auto;
  }
}
.article_prev svg,
.article_next svg {
  max-width: 24px;
}
@media (min-width: 600px) {
  .article_prev svg,
  .article_next svg {
    max-width: 40px;
  }
}

.article_prev {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media (min-width: 600px) {
  .article_prev {
    justify-content: flex-start;
    justify-content: center;
  }
}

.article_next {
  justify-content: flex-end;
}
@media (min-width: 600px) {
  .article_next {
    justify-content: center;
  }
}

.is-disabled {
  pointer-events: none;
}

.article_prev.is-disabled svg circle,
.article_next.is-disabled svg circle {
  fill: hsl(0, 0%, 95%);
  /* 背景 */
}

.article_prev.is-disabled svg path,
.article_next.is-disabled svg path {
  fill: hsl(0, 0%, 82%);
  /* 矢印 */
}

.post_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post_header_top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.post_header .post_date {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.post_header .post_category {
  color: hsl(0, 0%, 100%);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 999px;
  padding: 5px 12px;
  background: hsl(0, 0%, 13%);
}
.post_header h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 920px) {
  .post_header h1 {
    font-size: clamp(24px, 2.2857142857vw, 32px);
  }
}

.post_body_content {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .post_body_content {
    padding-bottom: 80px;
  }
}
.post_body_content img {
  width: 100%;
}
.post_body_content img:not(:first-child) {
  margin-top: 40px;
}
.post_body_content h2 {
  text-align: justify;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 20px;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 920px) {
  .post_body_content h2 {
    font-size: clamp(20px, 1.7142857143vw, 24px);
    padding-left: clamp(20px, 1.7142857143vw, 24px);
    margin-bottom: clamp(20px, 1.7142857143vw, 24px);
  }
}
.post_body_content h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: calc(100% - 4px);
  border-radius: 999px;
  background-color: #F2CE56;
}
.post_body_content h2:not(:first-child) {
  margin-top: 40px;
}
.post_body_content h3 {
  text-align: justify;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.post_body_content h3:not(:first-of-type) {
  margin-top: 24px;
}
@media (min-width: 920px) {
  .post_body_content h3 {
    font-size: 18px;
  }
}
.post_body_content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}
.post_body_content a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: hsl(46, 94%, 46%);
  text-decoration: underline;
}
.post_body_content p strong {
  color: hsl(0, 86%, 64%);
}

ol.wp-block-list {
  padding: 0;
  margin: 16px 0 0 0;
}

/* 1. 親のli（数字と見出し）に下線を引く */
ol.wp-block-list > li {
  text-decoration-line: underline;
  text-decoration-color: hsl(46, 86%, 64%);
  text-decoration-thickness: 4px;
  text-underline-offset: -2px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  text-decoration-skip-ink: none;
  list-style-position: inside;
}

/* 2. 【重要】ここが解決策です */
ol.wp-block-list > li > ul {
  /* flexを指定することで、親の下線から完全に独立させます */
  display: flex;
  flex-direction: column;
  /* 下線を強制解除 */
  text-decoration: none !important;
  display: inline-flex;
  /* 環境によりこちらが効く場合があります */
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

/* 3. 子リストの文字に下線が残るのを防ぐ */
ol.wp-block-list > li > ul > li {
  text-decoration: none !important;
  /* 下線が表示されないよう「箱」として独立させる */
  display: block;
}

.news_contact_section {
  padding-bottom: 80px;
}
@media (min-width: 920px) {
  .news_contact_section {
    padding-bottom: 74px;
  }
}

.reasons_forPopularity {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .reasons_forPopularity {
    gap: 60px;
  }
}
.reasons_forPopularity_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .reasons_forPopularity_container {
    gap: 24px;
  }
}
.reasons_forPopularity_content {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #F2CE56;
  background: hsl(46, 100%, 97%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .reasons_forPopularity_content {
    padding: clamp(20px, 2.8571428571vw, 40px);
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
}
.reasons_forPopularity_content_left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .reasons_forPopularity_img {
    max-width: 270px;
  }
}
@media (min-width: 990px) {
  .reasons_forPopularity_img {
    width: min(19.2857142857vw, 270px);
  }
}
.reasons_forPopularity_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reasons_forPopularity_text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .reasons_forPopularity_text {
    font-size: 18px;
  }
}
.reasons_forPopularity_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .reasons_forPopularity_text_container {
    gap: 16px;
    align-items: flex-start;
  }
}
.reasons_forPopularity_text_container_top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media (min-width: 768px) {
  .reasons_forPopularity_text_container_top {
    align-items: flex-start;
  }
}
.reasons_forPopularity_text_step {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  padding: 4px 16px;
  border-radius: 999px;
  background: #F2CE56;
  max-width: 159px;
}
@media (min-width: 768px) {
  .reasons_forPopularity_text_step {
    font-size: 18px;
  }
}
.reasons_forPopularity_text_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .reasons_forPopularity_text_title {
    font-size: clamp(20px, 2vw, 28px);
  }
}
.reasons_forPopularity_voice {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: hsl(0, 0%, 100%);
  padding: 16px;
  border-radius: 8px;
  max-width: 410px;
}
@media (min-width: 768px) {
  .reasons_forPopularity_voice {
    padding: clamp(20px, 1.7142857143vw, 24px);
  }
}
.reasons_forPopularity_voice_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  vertical-align: middle;
}
.reasons_forPopularity_icon {
  max-width: 32px;
}
@media (min-width: 768px) {
  .reasons_forPopularity_icon {
    max-width: 40px;
  }
}
.reasons_forPopularity_icon_container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reasons_forPopularity_icon_text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
}

.declaration_structure {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .declaration_structure {
    margin: 60px 0;
  }
}

.sp-show-more-wrapper {
  position: relative;
  text-align: center;
  width: 100%;
}
.sp-show-more-wrapper .basicFlow_img {
  overflow: hidden;
  max-height: 397px;
  position: relative;
  transition: max-height 0.3s ease-out;
}
.sp-show-more-wrapper .basicFlow_img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  transition: opacity 0.3s ease-out;
}
.sp-show-more-wrapper .basicFlow_img.is-expanded {
  max-height: 2500px;
}
.sp-show-more-wrapper .basicFlow_img.is-expanded::after {
  opacity: 0;
  pointer-events: none;
}
.sp-show-more-wrapper .show-more-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 11px 70px;
  background-color: #F2CE56;
  border-radius: 999px;
  border: 1px solid hsl(0, 0%, 13%);
  cursor: pointer;
  position: relative;
  color: hsl(0, 0%, 13%);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  touch-action: manipulation;
}
.sp-show-more-wrapper .show-more-btn::before, .sp-show-more-wrapper .show-more-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 38px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background-color: hsl(0, 0%, 13%);
  transform: translateY(-50%);
  transition: transform 0.3s ease-out;
}
.sp-show-more-wrapper .show-more-btn::after {
  transform: translateY(-50%) rotate(90deg);
}
.sp-show-more-wrapper .show-more-btn.is-active::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.declaration_table img {
  width: 100%;
}

.basicFlow_img img {
  width: 100%;
}

.option_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .option_box {
    margin-top: 60px;
  }
}
.option_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .option_container {
    flex-direction: row;
    align-items: center;
  }
}
.option_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 24px 16px;
  border-radius: 8px;
  border: 1px solid hsl(0, 0%, 13%);
}
@media (min-width: 768px) {
  .option_content {
    padding: 32px 16px;
  }
}
.option_content_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
  vertical-align: middle;
}
.option_content_text {
  color: hsl(46, 94%, 46%);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.option_content_text_yen {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.option_content_text_num {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}

.about_countermeasure {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.support_detail_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.support_table_img01 {
  width: 544px;
}
@media (min-width: 584px) {
  .support_table_img01 {
    width: 100%;
  }
}
.support_table_img01 img {
  width: 100%;
}
.support_table_img01_wrap {
  padding-bottom: 16px;
  /* バー全体のスタイル（Webkit系ブラウザ：Chrome/Safari） */
  /* バーの背景（レール） */
  /* 動くツマミ部分 */
}
@media (min-width: 584px) {
  .support_table_img01_wrap {
    padding: 0;
  }
}
.support_table_img01_wrap::-webkit-scrollbar {
  height: 6px;
  /* バーの太さ */
}
.support_table_img01_wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.support_table_img01_wrap::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.about_merit {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .about_merit {
    gap: 60px;
  }
}

.merit_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.merit_content {
  background: hsl(46, 100%, 97%);
  border: 1px solid #F2CE56;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
}
@media (min-width: 768px) {
  .merit_content {
    flex-direction: row;
    gap: clamp(16px, 2.2857142857vw, 32px);
    padding: clamp(20px, 2.8571428571vw, 40px);
  }
}
.merit_content_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .merit_content_container {
    gap: 24px;
  }
}
.merit_content_img {
  max-width: 295px;
}
.merit_content_img.support_merit_img {
  flex-shrink: 0;
}
@media (min-width: 990px) {
  .merit_content_img.support_merit_img {
    width: min(21.0714285714vw, 295px);
  }
}
.merit_content_num {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  padding: 4px 16px;
  background-color: #F2CE56;
  border-radius: 999px;
  max-width: 112px;
}
@media (min-width: 768px) {
  .merit_content_num {
    font-size: 18px;
  }
}
.merit_content_text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .merit_content_text {
    text-align: left;
    font-size: clamp(18px, 1.7142857143vw, 24px);
  }
}
.merit_content_text_br {
  display: none;
}
@media (min-width: 990px) {
  .merit_content_text_br {
    display: block;
  }
}
@media (min-width: 1040px) {
  .merit_content_text_br {
    display: none;
  }
}
.merit_content_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .merit_content_text_container {
    align-items: flex-start;
  }
}
.merit_content_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 295px;
}
@media (min-width: 768px) {
  .merit_content_text_wrap {
    max-width: none;
  }
}

.basicFlow_grid {
  display: none;
}
@media (min-width: 768px) {
  .basicFlow_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    position: relative;
    margin-top: 24px;
  }
  .basicFlow_grid.declaration_basicFlow_grid {
    margin-top: 60px;
  }
  .basicFlow_grid::before, .basicFlow_grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    z-index: 0;
  }
  .basicFlow_grid::before {
    left: 25%;
    background-color: hsl(223, 83%, 45%);
  }
  .basicFlow_grid::after {
    left: 75%;
    background-color: #F2CE56;
  }
}

.basicFlow_content {
  display: contents;
}
.basicFlow_content_step, .basicFlow_content_top_firstAndLast {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  background: hsl(0, 0%, 100%);
}
.basicFlow_content_step {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.basicFlow_content_step.basicFlow_content_step_firstAndLast {
  padding: 22px 12px 20px 20px;
}
.basicFlow_content_step.border_none {
  border: none !important;
}
.basicFlow_content_blue .basicFlow_content_step {
  border: 1px solid hsl(223, 83%, 45%);
}
.basicFlow_content_yellow .basicFlow_content_step_yellow {
  border: 1px solid #F2CE56;
}
.basicFlow_content_stepTitle_container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1150px) {
  .basicFlow_content_stepTitle_container {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

.basicFlow_content_top_firstAndLast {
  border: 1px solid hsl(223, 83%, 45%);
  overflow: hidden;
}
.basicFlow_content_top_firstAndLast.basicFlow_content_top_firstAndLast_yellow {
  border: 1px solid #F2CE56;
}

.basicFlow_content_top_ofTop_title {
  background-color: hsl(223, 83%, 45%);
  color: hsl(0, 0%, 100%);
  text-align: center;
  padding: 4px 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.75;
  text-align: center;
}
.basicFlow_content_top_ofTop_title.basicFlow_content_top_ofTop_title_yellow {
  background-color: #F2CE56;
  color: hsl(0, 0%, 13%);
}

.basicFlow_content_stepNum {
  color: hsl(0, 0%, 100%);
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  background-color: hsl(223, 83%, 45%);
  padding: 4px 16px;
  border-radius: 999px;
  max-width: 76px;
}
.basicFlow_content_stepNum.stepNum_yellow {
  background-color: #F2CE56;
  color: hsl(0, 0%, 13%);
}

.basicFlow_content_stepText {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}

.basicFlow_content_stepTitle {
  font-weight: 500;
  font-size: clamp(18px, 1.4285714286vw, 20px);
  line-height: 1.5;
}
.basicFlow_content_stepTitle.stepTitle_bold {
  letter-spacing: -0.02em;
}

.basicFlow_table_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.basicFlow_table_container.countermeasure_basicFlow_table_container {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .basicFlow_table_container {
    display: none;
  }
}
.basicFlow_table_container .basicFlow_img.countermeasure_basicFlow_img {
  width: 100%;
}

/* バー全体のスタイル（Webkit系ブラウザ：Chrome/Safari） */
.basicFlow_img_wrap::-webkit-scrollbar {
  height: 6px;
  /* バーの太さ */
}

/* バーの背景（レール） */
.basicFlow_img_wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* 動くツマミ部分 */
.basicFlow_img_wrap::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.basicFlow_link {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  color: hsl(223, 83%, 45%);
}
.basicFlow_link.yellow {
  color: hsl(46, 94%, 46%);
}

.inheritance_create {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .inheritance_create {
    margin: 60px 0 76px;
  }
}
.inheritance_timing_table.inheritance_timing_table03 {
  width: 792px;
}
@media (min-width: 600px) {
  .inheritance_timing_table.inheritance_timing_table03 {
    width: auto;
  }
}
.inheritance_timing_table img {
  width: 100%;
}
.inheritance_timing_table_wrap {
  padding-bottom: 16px;
  /* バー全体のスタイル（Webkit系ブラウザ：Chrome/Safari） */
  /* バーの背景（レール） */
  /* 動くツマミ部分 */
}
@media (min-width: 600px) {
  .inheritance_timing_table_wrap {
    padding: 0;
  }
}
.inheritance_timing_table_wrap::-webkit-scrollbar {
  height: 6px;
  /* バーの太さ */
}
.inheritance_timing_table_wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.inheritance_timing_table_wrap::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.common_point {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.common_point_icon {
  max-width: 32px;
}
@media (min-width: 768px) {
  .common_point_icon {
    max-width: 40px;
  }
}
.common_point.common_point_no_margin {
  margin: 0;
}
.common_point_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .common_point_wrap {
    gap: 40px;
    margin: 60px 0 80px;
  }
}
@media (min-width: 768px) {
  .common_point {
    margin-top: 68px;
  }
}
.common_point_title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media (min-width: 768px) {
  .common_point_title {
    align-items: center;
  }
}

.inheritance_timing_countermeasure {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .inheritance_timing_countermeasure {
    margin: 40px 0 60px;
  }
}

.common_smallText_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .common_smallText_container {
    margin: 72px 0 60px;
  }
}

.common_gray_box {
  padding: clamp(20px, 2.2857142857vw, 32px);
  background-color: hsl(0, 0%, 95%);
  border-radius: 12px;
  max-width: 437px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 715px) {
  .common_gray_box {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
}
.common_gray_box.inheritance_common_gray_box {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .common_gray_box.inheritance_common_gray_box {
    margin-top: 60px;
  }
}
.common_gray_box_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.common_gray_box_list_item {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.common_gray_box_list_item_text {
  font-weight: 500;
  font-size: clamp(16px, 1.2857142857vw, 18px);
  line-height: 1.75;
  text-align: justify;
}
.common_gray_box_list_item_text_br {
  display: none;
}
@media (min-width: 400px) {
  .common_gray_box_list_item_text_br {
    display: block;
  }
}
@media (min-width: 715px) {
  .common_gray_box_list_item_text_br {
    display: none;
  }
}
@media (min-width: 715px) {
  .common_gray_box_list_item_text_br_sp {
    display: none;
  }
}
.common_gray_box_list_item_circle {
  flex-shrink: 0;
}

.support_bubble_01 {
  top: -108px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(180px, 21.0714285714vw, 295px);
}
@media (min-width: 980px) {
  .support_bubble_01 {
    top: -128px;
  }
}

.support_bubble_02 {
  top: -57px;
  left: -138px;
  width: clamp(160px, 16.2142857143vw, 227px);
}
@media (min-width: 980px) {
  .support_bubble_02 {
    top: -35px;
    left: -164px;
  }
}
@media (min-width: 1100px) {
  .support_bubble_02 {
    left: -227px;
  }
}

.support_bubble_03 {
  top: -74px;
  right: -138px;
  width: clamp(150px, 15.8571428571vw, 222px);
}
@media (min-width: 980px) {
  .support_bubble_03 {
    top: -32px;
    right: -164px;
  }
}
@media (min-width: 1100px) {
  .support_bubble_03 {
    top: -74px;
    right: -226px;
  }
}

.support_bubble_04 {
  bottom: 31px;
  left: -165px;
  width: clamp(160px, 16.3571428571vw, 229px);
}
@media (min-width: 980px) {
  .support_bubble_04 {
    bottom: 38px;
    left: -182px;
  }
}
@media (min-width: 1100px) {
  .support_bubble_04 {
    bottom: 77px;
    left: -239px;
  }
}

.support_bubble_05 {
  bottom: 48px;
  right: -180px;
  width: clamp(170px, 17.7857142857vw, 249px);
}
@media (min-width: 980px) {
  .support_bubble_05 {
    right: -210px;
  }
}
@media (min-width: 1200px) {
  .support_bubble_05 {
    bottom: 97px;
  }
}
@media (min-width: 1100px) {
  .support_bubble_05 {
    right: -249px;
  }
}

.support_point_andFlow {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .support_point_andFlow {
    gap: 70px;
  }
}

.support_point {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support_gray_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .support_gray_container {
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }
}
@media (min-width: 768px) {
  .support_gray_container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.support_gray_content {
  background-color: hsl(0, 0%, 95%);
  border-radius: 12px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media (min-width: 768px) {
  .support_gray_content {
    padding: 24px 20px 20px;
  }
}
.support_gray_content_title {
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  padding: 4px 16px;
  border-radius: 999px;
  background-color: hsl(0, 0%, 13%);
}
@media (min-width: 768px) {
  .support_gray_content_title {
    margin: 0 auto;
  }
}
.support_gray_content_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.support_gray_content_list_item {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.support_gray_content_list_item::before {
  position: absolute;
  content: "";
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
  border-radius: 999px;
  background-color: hsl(0, 0%, 13%);
  width: 4px;
  height: 4px;
}

.support_flow_table {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .support_flow_table {
    gap: 40px;
  }
}
.support_flow_table img {
  width: 100%;
}
.support_flow_table_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.support_flow_table_color {
  width: 40px;
  height: 21px;
  border-radius: 1px;
}
@media (min-width: 768px) {
  .support_flow_table_color {
    width: 48px;
  }
}
.support_flow_table_color_box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 768px) {
  .support_flow_table_color_box {
    flex-direction: row;
    align-items: center;
    justify-content: right;
  }
}
.support_flow_table_color.n_1 {
  background-color: hsl(0, 100%, 84%);
}
.support_flow_table_color.n_2 {
  background-color: hsl(0, 100%, 91%);
}
.support_flow_table_color.n_3 {
  background-color: hsl(0, 100%, 95%);
}
.support_flow_table_color_wrap {
  display: flex;
  align-items: center;
  gap: 7px;
}
.support_flow_table_color_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  vertical-align: middle;
}

.support_flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .support_flow {
    margin-top: 40px;
  }
}
.support_flow_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
@media (min-width: 768px) {
  .support_flow_container {
    gap: 8px;
  }
}
.support_flow_container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: hsl(46, 86%, 64%);
  z-index: -1;
}
.support_flow_content {
  background: hsl(0, 0%, 100%);
  padding: 24px;
  border: 1px solid hsl(46, 86%, 64%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .support_flow_content {
    gap: 16px;
    padding: 32px;
  }
}
.support_flow_content_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .support_flow_content_title {
    font-size: clamp(18px, 1.4285714286vw, 20px);
    line-height: 1.5;
  }
}
.support_flow_content_title_br {
  display: none;
}
@media (min-width: 600px) {
  .support_flow_content_title_br {
    display: block;
  }
}
@media (min-width: 768px) {
  .support_flow_content_title_br {
    display: none;
  }
}
@media (min-width: 990px) {
  .support_flow_content_title_br {
    display: block;
  }
}
@media (min-width: 1030px) {
  .support_flow_content_title_br {
    display: none;
  }
}
@media (min-width: 600px) {
  .support_flow_content_title_br_sp {
    display: none;
  }
}
.support_flow_content_title_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .support_flow_content_title_wrap {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}
.support_flow_content_title_step {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  max-width: 90px;
  padding: 4px 16px;
  border-radius: 999px;
  background: hsl(46, 86%, 64%);
}
.support_flow_additionText {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}

.support_cost_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.support_cost_table img {
  width: 100%;
}

.heir_relation_box {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .heir_relation_box {
    gap: 40px;
    margin: 40px 0;
  }
}
.heir_relation_container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .heir_relation_container {
    flex-direction: row;
    gap: 24px;
  }
}
.heir_relation_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.heir_relation_img {
  background: hsl(0, 0%, 100%);
  border-radius: 12px;
  border: 1px solid hsl(0, 0%, 82%);
  padding: 40px 24px;
}
.heir_relation_img img {
  width: 100%;
}
.heir_relation_text_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.heir_relation_text_bold {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .heir_relation_text_bold {
    font-size: clamp(18px, 1.4285714286vw, 20px);
  }
}
.heir_relation_text_bold_br {
  display: block;
}
@media (min-width: 400px) {
  .heir_relation_text_bold_br {
    display: none;
  }
}
@media (min-width: 1100px) {
  .heir_relation_text_bold_br {
    display: none;
  }
}

.calculation_main_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .calculation_main_container {
    gap: 60px;
    margin-top: 60px;
  }
}
.calculation_main_top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calculation_main_middle {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calculation_box_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .calculation_box_wrap {
    margin-top: 60px;
  }
}
.calculation_box_andText {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calculation_box_attention {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  padding-left: 14px;
  position: relative;
}
.calculation_box_attention::before {
  content: "※";
  font-size: inherit;
  position: absolute;
  top: 0;
  left: 0;
}
.calculation_box_red {
  padding: 16px;
  background: hsl(0, 100%, 98%);
  border-radius: 12px;
}
@media (min-width: 768px) {
  .calculation_box_red {
    padding: 16px 25px;
  }
}
.calculation_box_yellow {
  padding: 16px;
  background: hsl(46, 100%, 97%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .calculation_box_yellow {
    padding: 32px;
  }
}
.calculation_box_yellow_content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calculation_box_yellow_content:first-child {
  padding-bottom: 16px;
  border-bottom: 1px dashed hsl(0, 0%, 82%);
}
@media (min-width: 768px) {
  .calculation_box_yellow_content:first-child {
    padding-bottom: 24px;
  }
}
.calculation_box_yellow_content:last-child {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .calculation_box_yellow_content:last-child {
    padding-top: 24px;
  }
}
.calculation_box_title {
  display: flex;
  align-items: center;
  gap: 4px;
}
.calculation_formula {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}
@media (min-width: 390px) {
  .calculation_formula {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .calculation_formula {
    font-size: clamp(18px, 1.7142857143vw, 24px);
  }
}
.calculation_formula_br {
  display: block;
}
@media (min-width: 520px) {
  .calculation_formula_br {
    display: none;
  }
}
.calculation_formula_br_sp {
  display: block;
}
@media (min-width: 430px) {
  .calculation_formula_br_sp {
    display: none;
  }
}
.calculation_formula_red {
  color: hsl(0, 86%, 64%);
}
.calculation_small_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .calculation_small_title {
    font-size: clamp(16px, 1.2857142857vw, 18px);
  }
}

.declaration_accordion {
  margin-top: 60px;
}
.declaration_accordion_text_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px dashed hsl(0, 0%, 82%);
}
@media (min-width: 600px) {
  .declaration_accordion_text_container {
    padding-top: 32px;
  }
}
.declaration_accordion_item {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}
.declaration_accordion_item_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 7px;
}

.common_text .declaration_accordion_textBold {
  font-weight: 500;
}
.common_text .link_yellow {
  color: hsl(46, 94%, 46%);
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
}

.declaration_flow_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .declaration_flow_container {
    gap: 40px;
    margin-top: 160px;
  }
}
.declaration_flow_img img {
  width: 100%;
}

.declaration_document_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.declaration_document_content_container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .declaration_document_content_container {
    gap: 80px;
    margin-top: 60px;
  }
}
.declaration_document_table_img img {
  width: 100%;
}

.common_smallText_container.no_margin {
  margin: 0;
}

.attention_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.attention_icon_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.attention_icon_text {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .attention_icon_text {
    font-size: clamp(18px, 1.7142857143vw, 24px);
  }
}

.contact_main {
  max-width: 866px;
  margin: 100px auto 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 768px) {
  .contact_main {
    margin: 180px auto 0;
    gap: 160px;
  }
}
.contact_yellow_box {
  background: hsl(46, 100%, 97%);
  border-radius: 12px;
  width: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .contact_yellow_box {
    padding: 40px;
  }
}
@media (min-width: 920px) {
  .contact_yellow_box {
    padding: 60px;
  }
}
.contact_yellow_box_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 768px) {
  .contact_yellow_box_title {
    font-size: 32px;
  }
}
.contact_yellow_box_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .contact_yellow_box_inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
}
@media (min-width: 920px) {
  .contact_yellow_box_inner {
    gap: 32px;
  }
}
.contact_yellow_box_img {
  max-width: 294px;
}
@media (min-width: 920px) {
  .contact_yellow_box_img {
    max-width: 222px;
  }
}
.contact_yellow_box_wrapText {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .contact_yellow_box_wrapText {
    align-items: flex-start;
  }
}
.contact_yellow_box_contactTel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact_yellow_box_contactTel_img {
  margin-top: 2px;
}
@media (min-width: 920px) {
  .contact_yellow_box_contactTel_img {
    margin-top: 11px;
  }
}
.contact_yellow_box_contactTel_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact_yellow_box_contactTel_num {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
@media (min-width: 768px) {
  .contact_yellow_box_contactTel_num {
    font-size: 48px;
  }
}
@media (min-width: 920px) {
  .contact_yellow_box_contactTel_num {
    font-size: 64px;
  }
}
.contact_yellow_box_contactTel_jp {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .contact_yellow_box_contactTel_jp {
    font-size: 16px;
  }
}
.contact_yellow_box_check_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact_yellow_box_check_content {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contact_yellow_box_check_text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .contact_yellow_box_check_text {
    font-size: 18px;
  }
}
@media (min-width: 920px) {
  .contact_yellow_box_check_text_br_tablet {
    display: none;
  }
}
.contact_yellow_box_check_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .contact_yellow_box_check_text_container {
    align-items: flex-start;
  }
}
.contact_box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact_box {
    gap: 60px;
  }
}
.contact_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .contact_title {
    font-size: 32px;
  }
}

.contact_yellow_box_commonText {
  text-align: center;
}
@media (min-width: 768px) {
  .contact_yellow_box_commonText {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .contact_yellow_box_commonText br {
    display: none;
  }
}

.contact_body {
  max-width: 719px;
  width: 100%;
  margin: 0 auto;
}
.contact_body .wpcf7-form input[type=text],
.contact_body .wpcf7-form input[type=email],
.contact_body .wpcf7-form input[type=tel],
.contact_body .wpcf7-form textarea,
.contact_body .wpcf7-form select {
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid hsl(0, 0%, 82%);
  background-color: hsl(0, 0%, 100%);
  box-sizing: border-box;
}
.contact_body .wpcf7-form input[type=text]::placeholder,
.contact_body .wpcf7-form input[type=email]::placeholder,
.contact_body .wpcf7-form input[type=tel]::placeholder,
.contact_body .wpcf7-form textarea::placeholder,
.contact_body .wpcf7-form select::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
  color: hsl(0, 0%, 82%);
}
.contact_body .wpcf7-form textarea {
  max-height: 719px;
}
.contact_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact_container {
    gap: 40px;
  }
}
.contact_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact_content_top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact_content_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.contact_address_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input[type=date] {
  position: relative;
  width: 100%;
  padding: 16px;
  padding-right: 40px;
  border: 1px solid hsl(0, 0%, 82%);
  border-radius: 4px;
  background-color: hsl(0, 0%, 100%);
  font-size: 16px;
  box-sizing: border-box;
  height: 56px;
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url(../img/contact/select_arrow.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  cursor: pointer;
  z-index: 10;
}

.preferred_date_text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

/* ラジオボタンの項目全体をflexにする */
span.wpcf7-list-item {
  display: inline-flex;
  align-items: center; /* 垂直方向の中央揃え */
  gap: 8px; /* 丸と文字の間の距離（お好みで調整） */
}

/* 都道府県セレクトボックスの親 span */
.wpcf7-form-control-wrap[data-name=your-prefecture] {
  position: relative;
  display: block;
  width: 100%;
  max-width: 425px;
}
.wpcf7-form-control-wrap[data-name=your-prefecture]::after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 10;
  /* --- 赤いのが出たら、下の 3 行を活かして背景色を消す --- */
  background-image: url(../img/contact/select_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* select本体（背景色で矢印を隠さないようにする） */
select[name=your-prefecture] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 16px;
  padding-right: 40px;
  border: 1px solid hsl(0, 0%, 82%);
  border-radius: 4px;
  background-color: hsl(0, 0%, 100%);
  cursor: pointer;
}

.wpcf7-list-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
}

/* チェックボックスの各項目（スパン）に上下の余白を作る */
.checkbox-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* グレーの箱（日付）と、その下の項目の距離も微調整 */
#date-box {
  margin-bottom: 16px !important;
  /* 箱の下にしっかり余白を確保 */
}

/* チェックボックス本体 */
input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid hsl(0, 0%, 82%);
  /* 未選択時の枠線（薄いグレー） */
  border-radius: 50%;
  background-color: hsl(0, 0%, 100%);
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease-out;
  /* 変化を滑らかに */
  margin: 0 0 3px 0;
}

/* 【重要】チェックが入った時に枠線を黒くする */
input[type=radio]:checked {
  border-color: hsl(0, 0%, 13%);
  /* ここで枠線を黒に変更 */
}

/* チェックが入った時の「中の黒丸」 */
input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  /* 枠線との間に少し隙間がある方が綺麗に見えます */
  height: 14px;
  background-color: hsl(0, 0%, 13%);
  border-radius: 50%;
}

span[data-name=checkbox-content] .wpcf7-list-item-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  margin-left: 8px;
}

.wpcf7-list-item {
  margin-right: 15px;
}

/* 日付ボックスを少し右に寄せて、チェックボックスのインデントに合わせる */
#date-box {
  position: relative;
  width: 100%;
  margin: 0 !important;
  border-radius: 12px;
  background: hsl(0, 0%, 95%);
  padding: 20px;
}
@media (min-width: 768px) {
  #date-box {
    padding: 40px;
  }
}

/* CF7が自動で入れるスパンの余白調整 */
.checkbox-wrapper .wpcf7-list-item {
  display: block;
}

.preferred_date_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .preferred_date_wrap {
    gap: 24px;
  }
}
.preferred_date_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .preferred_date_container {
    gap: 18px;
  }
}
.preferred_date_attention {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
  padding-left: 12px;
  position: relative;
}
.preferred_date_attention::before {
  position: absolute;
  content: "※";
  width: 14px;
  height: 14px;
  top: 0.55em;
  left: 0;
  transform: translateY(-50%);
  font-size: inherit;
  color: inherit;
}

.required,
.optional_box {
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1;
  padding: 3px 8px;
  border-radius: 4px;
}

.required {
  background-color: hsl(0, 86%, 64%);
  color: hsl(0, 0%, 100%);
}

.optional_box {
  background: hsl(0, 0%, 82%);
}

.post_code {
  max-width: 425px;
}

.privacy_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 40px 0 20px;
}
@media (min-width: 768px) {
  .privacy_container {
    margin: 60px 0 40px;
  }
}
.privacy_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 600px) {
  .privacy_text br {
    display: none;
  }
}
.privacy_link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  display: inline-block;
  position: relative;
  background-image: linear-gradient(to right, hsl(0, 0%, 13%), hsl(0, 0%, 13%));
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 0;
}
.privacy_link:hover {
  animation: linkLineReverse 0.5s ease forwards;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}

.acceptance .wpcf7-list-item-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-left: 16px;
  display: inline-block;
  vertical-align: middle;
}

.acceptance input[type=checkbox] {
  vertical-align: middle;
  margin: 0;
}

.wpcf7-submit {
  display: block;
  margin: 0 auto;
  padding: 20px;
  max-width: 260px;
  width: 100%;
  color: hsl(0, 0%, 13%);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  border: 1px solid hsl(0, 0%, 13%);
  border-radius: 999px;
  background-color: hsl(46, 86%, 64%);
  transition: opacity 0.3s ease;
  cursor: pointer;
}
@media (min-width: 768px) {
  .wpcf7-submit {
    padding: 32px 20px;
    max-width: 425px;
  }
}

/* 修正版：無効時のスタイル（詳細度を上げるために input を付ける） */
.wpcf7-submit:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed;
  pointer-events: none;
  /* クリックを完全に無効化 */
  background-color: #ccc !important;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
}

.thanks_section {
  padding: 120px 0 80px;
}
@media (min-width: 768px) {
  .thanks_section {
    padding: 124px 0 160px;
  }
}

.thanks_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .thanks_main {
    gap: 60px;
    margin-top: 72px;
  }
}
.thanks_main_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .thanks_main_text_container {
    gap: 40px;
  }
}
.thanks_main_top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thanks_main_top_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 768px) {
  .thanks_main_top_title {
    font-size: 32px;
  }
}
.thanks_main_middle {
  background: hsl(46, 100%, 97%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .thanks_main_middle {
    max-width: 864px;
    padding: 40px 20px;
  }
}
.thanks_main_middle_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
}
@media (min-width: 768px) {
  .thanks_main_middle_title {
    font-size: 20px;
  }
}
.thanks_main_middle_link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  display: inline-block;
  position: relative;
  background-image: linear-gradient(to right, hsl(0, 0%, 13%), hsl(0, 0%, 13%));
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 0;
}
.thanks_main_middle_link:hover {
  animation: linkLineReverse 0.5s ease forwards;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}

@media (min-width: 768px) {
  .thanks_main_top_text_br {
    display: none;
  }
}

@media (min-width: 768px) {
  .thanks_main_middle_text_br {
    display: none;
  }
}

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

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

.notFound_section {
  padding: 120px 0 80px;
}
@media (min-width: 600px) {
  .notFound_section {
    padding: 124px 0 111px;
  }
}
.notFound_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}
@media (min-width: 600px) {
  .notFound_main {
    gap: 60px;
    margin-top: 72px;
  }
}
.notFound_main_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.notFound_main_text_container_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.notFound_num {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 600px) {
  .notFound_num {
    font-size: 100px;
  }
}
.notFound_en {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
}
@media (min-width: 600px) {
  .notFound_en {
    font-size: 64px;
  }
}
.notFound_jp {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 600px) {
  .notFound_jp {
    font-size: 18px;
  }
}

.toTop_btn {
  display: block;
  background: #F2CE56;
  border: 1px solid hsl(0, 0%, 13%);
  border-radius: 46px;
  max-width: 300px;
  padding: 24px;
  width: 100%;
}
@media (min-width: 600px) {
  .toTop_btn {
    max-width: 425px;
    padding: 32px;
  }
}
.toTop_btn_text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 600px) {
  .toTop_btn_text {
    font-size: 18px;
  }
}/*# sourceMappingURL=base.css.map */