@charset "UTF-8";
/* ---------------------------------------------------------

	fine_2026
	Date: 2026.04.01

	00. normalize
	01. base

--------------------------------------------------------- */
/* ---------------------------------------------------------

	00. normalize

--------------------------------------------------------- */
/* ドキュメントの設定
---------------------------------------------------------- */
/* 全ブラウザ用：最適なボックスモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

/* 1.全ブラウザ用：行の高さを揃える */
/* 2.iOS用：テキスト自動調整を停止 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  /* 2 */
}

/* セクショニング・コンテンツの設定
---------------------------------------------------------- */
/* 全ブラウザ用：デフォルトのマージンを削除 */
body {
  margin: 0;
}

/* グルーピング系コンテンツの設定
---------------------------------------------------------- */
/* 1.全ブラウザ用：フォントサイズの継承とスケーリングを修正 */
/* 2.全ブラウザ用：フォントの不規則なサイズを修正 */
pre {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* テキスト系コンテンツの設定
---------------------------------------------------------- */
/* Chrome, Edge, Safari用：正しいフォントウェイトの設定 */
b,
strong {
  font-weight: bolder;
}

/* 1.全ブラウザ用：フォントサイズの継承とスケーリングを修正 */
/* 2.全ブラウザ用：フォントの不規則なサイズを修正 */
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* 全ブラウザ用：正しいフォントサイズを設定 */
small {
  font-size: 80%;
}

/* 全ブラウザ用：sub要素とsup要素が行の高さに影響を与えるのを阻止 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 表組みコンテンツの設定
---------------------------------------------------------- */
/* Chrome, Safari用：表組みの線の色を調整 */
table {
  border-color: currentcolor;
}

/* フォーム系コンテンツの設定
---------------------------------------------------------- */
/* 1.全ブラウザ用：フォントのスタイルを変更 */
/* 2.Firefox, Safari用：マージンを削除 */
button,
input,
optgroup,
select,
textarea {
  /* 2 */
  margin: 0;
  /* 1 */
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

/* iOS, Safari用：クリック可能な要素をスタイルできない問題を修正 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

/* 全ブラウザ用：fieldset要素を取り除いたときのパディングを削除 */
legend {
  padding: 0;
}

/* Chrome, Firefox, Opera用：垂直方向の位置を修正 */
progress {
  vertical-align: baseline;
}

/* Chrome用：増減ボタンのカーソルのスタイルを修正 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/* 1.Chrome, Safari用：正しい属性を追加指定 */
/* 2.Safari用：アウトラインのスタイルを調整 */
[type=search] {
  /* 2 */
  outline-offset: -2px;
  /* 1 */
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

/* macOSのChrome, Safari用：内側のパディングを削除 */
::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

/* 1.iOS, Safari用：クリック可能な要素がスタイルできない問題を修正 */
/* 2.Safari用：フォントプロパティの変更 */
::-webkit-file-upload-button {
  /* 2 */
  font: inherit;
  /* 1 */
  -webkit-appearance: auto;
          appearance: auto;
}

/* インタラクティブ系の設定
---------------------------------------------------------- */
/* 全ブラウザ用：正しい表示方法を設定 */
summary {
  display: list-item;
}

/* その他、独自設定
---------------------------------------------------------- */
/* 全ブラウザ用：マージンのリセット */
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
figure {
  margin: 0;
}

/* 全ブラウザ用：リストスタイルと余白のリセット */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

/* 全ブラウザ用：テーブルのスペース調整 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ---------------------------------------------------------

	01. base

--------------------------------------------------------- */
:root {
  --main-color: #C63D21;
  --sub-color: #3A8070;
  --text-color: #333333;
  --text-sub-color: #999999;
  --bg-color: #E3EDEC;
  --bg-sub-color: #F2F2F2;
  --kurashi-color: #FACE3B;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}
body a {
  color: var(--text-color);
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}

main {
  flex: 1;
}

.sp_only {
  display: none;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/* ---------------------------------------------------------

	02. layout　/　module

--------------------------------------------------------- */
.layout_wrapper {
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout_container,
.layout_container_m,
.layout_container_s {
  box-sizing: content-box;
  max-width: 1200px;
  padding: 0 2%;
  position: relative;
  margin: 0 auto;
}

.layout_container {
  max-width: 1200px;
}

.layout_container_m {
  max-width: 1000px;
}

.layout_container_s {
  max-width: 800px;
}

.module_container {
  padding: 80px 0 120px;
}

.module_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 10px;
  background: var(--text-color);
  border-radius: 999em;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.module_button .module_button_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  transition: right 0.3s ease-in-out;
}
.module_button .module_button_icon::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: var(--text-color);
  mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
}
.module_button:focus-visible .module_button_icon {
  right: 3px;
}

button.module_button {
  line-height: 1.6;
  border: none;
  background: var(--text-color);
}

@media (any-hover: hover) {
  .module_button:hover .module_button_icon {
    right: 3px;
  }
}
.module_button_s {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.4;
  padding: 10px;
  border: 1px solid var(--text-color);
}

.module_button_white {
  color: var(--text-color);
  background-color: #fff;
  border: 1px solid var(--text-color);
}
.module_button_white .module_button_icon {
  background: var(--text-color);
}
.module_button_white .module_button_icon::after {
  background-color: #fff;
}

.module_title_lv1 {
  position: relative;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  z-index: 10;
  padding-top: 50px;
}
.module_title_lv1 span {
  position: absolute;
  bottom: -10px;
  left: -40px;
  z-index: -1;
  opacity: 0.2;
  font-size: 11rem;
  color: #fff;
  text-shadow: 1px 0 0 var(--sub-color), -1px 0 0 var(--sub-color), 0 1px 0 var(--sub-color), 0 -1px 0 var(--sub-color), 1px 1px 0 var(--sub-color), -1px 1px 0 var(--sub-color), 1px -1px 0 var(--sub-color), -1px -1px 0 var(--sub-color);
}

.module_title_lv1_sub span {
  color: var(--bg-color);
  white-space: nowrap;
}

.module_title_lv2 {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.module_title_lv2::after {
  content: "";
  display: block;
  width: 50px;
  height: 8px;
  margin: 18px auto 0;
  background: linear-gradient(to right, var(--sub-color) 0 50%, var(--main-color) 50% 100%);
  border-radius: 4px;
}

.module_title_lv3 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 20px;
  margin-bottom: 60px;
  border-left: 8px solid var(--sub-color);
}

.module_title_lv4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 20px;
  margin-bottom: 40px;
  position: relative;
}
.module_title_lv4::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc((1.6em - 10px) / 2);
  width: 10px;
  height: 10px;
  background: var(--sub-color);
}

.module_page_title {
  position: relative;
  overflow: hidden;
}
.module_page_title::before {
  content: "";
  position: absolute;
  left: -26%;
  bottom: 0;
  width: 125%;
  height: 1200px;
  background: var(--bg-color);
  border-radius: 50%;
  z-index: -1;
}

.module_page_title_container {
  display: flex;
  align-items: center;
  height: 350px;
}

.module_breadcrumbs {
  position: absolute;
  top: 10px;
  left: 2%;
  display: flex;
  flex-wrap: wrap;
  transition: opacity 0.3s ease-in-out;
}
.module_breadcrumbs li {
  position: relative;
}
.module_breadcrumbs li:not(:last-child)::after {
  content: "/";
  padding: 0 15px;
}
.module_breadcrumbs p {
  color: var(--text-sub-color);
}

.module_pager {
  display: flex;
  justify-content: center;
}

.module_pager_item {
  width: 50px;
  margin: 0 12px;
}
.module_pager_item a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  background: var(--bg-sub-color);
  color: var(--text-sub-color);
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out;
}
.module_pager_item a.is-current {
  background: var(--text-color);
  color: #fff;
}

.module_breadcrumbs:focus-visible {
  opacity: 0.7;
}

.module_pager_item a:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .module_breadcrumbs:hover {
    opacity: 0.7;
  }
  .module_pager_item a:hover {
    opacity: 0.7;
  }
}
.module_section > * + * {
  margin-top: 60px;
}
.module_section + .module_section {
  margin-top: 80px;
}

.module_text {
  line-height: 2;
}
.module_text + .module_text {
  margin-top: 24px;
}
.module_text a {
  text-decoration: underline;
  text-decoration-color: oklch(from var(--main-color) 0.7 0.15 27);
  text-underline-offset: 0.25em;
}

.module_text_center {
  text-align: center;
}

.module_note {
  line-height: 2;
  margin-top: 24px;
}
.module_note li {
  position: relative;
  padding-left: 1em;
}
.module_note li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
  position: absolute;
}

.module_list {
  display: grid;
  gap: 0.5em;
}
.module_list li {
  line-height: 2;
  margin-left: 1em;
  text-indent: -1em;
}
.module_list li::before {
  content: "・";
  color: currentColor;
  font-weight: 900;
}

.module_ollist {
  display: grid;
  gap: 0.5em;
  list-style: decimal;
  padding-left: 1em;
}
.module_ollist li {
  line-height: 2;
}

.module_list_inner {
  text-indent: 0;
}

.module_images {
  width: 100%;
}

.module_cms_image {
  max-width: 80rem;
  margin-inline: auto;
}

.module_cms_image_large {
  max-width: 100rem;
  margin-inline: auto;
}

.module_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid var(--sub-color);
}
.module_table th, .module_table td {
  padding: 10px 12px;
  border: 1px solid var(--sub-color);
  vertical-align: middle;
}
.module_table thead th {
  background-color: var(--bg-color);
  font-weight: 700;
  text-align: left;
}
.module_table tbody th {
  background-color: var(--bg-color);
  font-weight: 700;
  text-align: left;
}

/* module_tab */
.module_tab_group {
  width: 100%;
}

.module_tab_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.module_tab {
  margin: 0 0.5%;
}
.module_tab a {
  display: block;
  text-align: center;
  padding: 8px 40px;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--bg-sub-color);
  border-radius: 10px 10px 0 0;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.module_tab.is-active a {
  font-size: 2rem;
  color: #fff;
  background: var(--text-color);
}
.module_tab:focus-visible a {
  color: #fff;
  background: var(--text-color);
}

@media (any-hover: hover) {
  .module_tab:hover a {
    color: #fff;
    background: var(--text-color);
  }
}
.module_panel_wrap {
  border-top: 2px solid var(--text-color);
  padding: 60px 0 0;
}

.module_panel {
  display: none;
}
.module_panel.is-show {
  display: block;
}

@media screen and (max-width: 767px) {
  .module_tab {
    margin: 0 0.5%;
  }
  .module_tab a {
    padding: 8px 20px;
    font-size: 1.4rem;
  }
  .module_tab.is-active a {
    font-size: 1.6rem;
  }
  .module_panel_wrap {
    padding: 40px 0 0;
  }
}
/* module_accordion */
.module_accordion {
  background: var(--bg-sub-color);
  border-radius: 10px;
}
.module_accordion + .module_accordion {
  margin-top: 24px;
}
.module_accordion .banner {
  max-width: 40%;
  margin: 10px 0 24px;
}

.module_accordion_title {
  cursor: pointer;
  position: relative;
  padding: 15px 50px 15px 24px;
  font-size: 2.4rem;
  font-weight: 700;
}
.module_accordion_title::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -2px;
  width: 24px;
  height: 3px;
  background: var(--sub-color);
  transition: transform 0.3s ease-out;
}
.module_accordion_title::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -12px;
  width: 3px;
  height: 24px;
  background: var(--sub-color);
  transition: transform 0.3s ease-out;
}
.module_accordion_title.is-active::before {
  display: none;
}
.module_accordion_title.is-active::after {
  transform: rotate(180deg);
}

.module_accordion_contents {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.module_accordion_contents.is-open {
  grid-template-rows: 1fr;
}

.module_accordion_contents > .module_accordion_inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 60px;
  transition: padding 0.3s ease;
}

.module_accordion_contents.is-open > .module_accordion_inner {
  padding: 16px 60px 40px;
}

.module_accordion_s {
  background: #fff;
}
.module_accordion_s + .module_accordion_s {
  margin-top: 24px;
}
.module_accordion_s .module_accordion_title {
  font-size: 1.8rem;
  padding: 15px 50px 15px 24px;
}
.module_accordion_s .module_accordion_contents > .module_accordion_inner {
  padding: 0 40px;
}
.module_accordion_s .module_accordion_contents.is-open > .module_accordion_inner {
  padding: 24px 40px;
}

@media screen and (max-width: 767px) {
  .module_accordion .banner {
    max-width: 60%;
  }
  .module_accordion_title {
    padding: 10px 40px 10px 15px;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .module_accordion_title::after {
    right: 10px;
    margin-top: -1px;
    width: 20px;
    height: 2px;
  }
  .module_accordion_title::before {
    right: 19px;
    margin-top: -10px;
    width: 2px;
    height: 20px;
  }
  .module_accordion_contents > .module_accordion_inner {
    padding: 0 10px;
  }
  .module_accordion_contents.is-open > .module_accordion_inner {
    padding: 10px;
  }
  .module_accordion_s + .module_accordion_s {
    margin-top: 20px;
  }
  .module_accordion_s .module_accordion_title {
    font-size: 1.6rem;
    padding: 10px 40px 10px 15px;
  }
  .module_accordion_s .module_accordion_contents > .module_accordion_inner {
    padding: 0 10px;
  }
  .module_accordion_s .module_accordion_contents.is-open > .module_accordion_inner {
    padding: 0 10px 10px;
  }
}
/* module_external_link */
.module_external_link {
  font-feature-settings: 'palt';
  position: relative;
  text-decoration: none;
}
.module_external_link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-inline: 0.25em;
  background: url(/assets/common/img/icon_external_link.svg) no-repeat center/contain;
  position: relative;
  top: 0.075em;
}
.module_external_link:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .module_external_link:hover {
    opacity: 0.7;
  }
}

/* form周り*/
.module_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  padding: 16px;
  outline: 0;
  border: none;
  background: url(/assets/common/img/icon_select.svg) right 5px center no-repeat;
  border: 1px solid var(--text-sub-color);
  cursor: pointer;
  width: 100%;
  font-size: 1.6rem;
}

.module_input {
  border-radius: 10px;
  padding: 16px;
  outline: 0;
  border: none;
  border: 1px solid var(--text-sub-color);
  width: 100%;
  font-size: 1.6rem;
}

.module_textarea {
  border-radius: 10px;
  padding: 16px;
  outline: 0;
  border: none;
  border: 1px solid var(--text-sub-color);
  width: 100%;
  line-height: 1.75;
  height: 180px;
  font-size: 1.6rem;
}

.module_checkbox {
  display: none;
}

.module_checkbox_text {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 0 0 0 40px;
}
.module_checkbox_text::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--text-sub-color);
  border-radius: 5px;
}

.module_checkbox:checked + .module_checkbox_text::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 8px;
  height: 16px;
  transform: rotate(40deg);
  border-bottom: 3px solid var(--sub-color);
  border-right: 3px solid var(--sub-color);
}

@media screen and (max-width: 1250px) {
  .module_title_lv1 {
    font-size: 4.2rem;
  }
  .module_title_lv1 span {
    left: 0%;
    font-size: 10rem;
  }
  .module_page_title::before {
    content: "";
    left: -50%;
    width: 150%;
  }
  .module_page_title_container {
    height: 36vw;
  }
}
@media screen and (max-width: 1100px) {
  .layout_wrapper {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .layout_wrapper {
    padding-top: 60px;
  }
  .layout_container,
  .layout_container_m,
  .layout_container_s {
    padding: 0 5%;
  }
  .module_container {
    padding: 60px 0;
  }
  .module_button {
    font-size: 1.6rem;
    padding: 17px 10px;
  }
  .module_button .module_button_icon {
    width: 40px;
    height: 40px;
  }
  .module_button_s {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 10px;
  }
  .module_title_lv1 {
    font-size: 7.1vw;
    font-feature-settings: "palt";
    line-height: 1.2;
    margin-bottom: 40px;
    padding-top: 25px;
  }
  .module_title_lv1 span {
    line-height: 1.2;
    bottom: 50%;
    top: -8px;
    left: -10px;
    font-size: 12.8vw;
  }
  .module_title_lv1_sub {
    transform: translateY(20px);
  }
  .module_title_lv1_sub span {
    line-height: 1.1;
  }
  .module_title_lv2 {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
  .module_title_lv2::after {
    width: 40px;
    height: 6px;
  }
  .module_title_lv3 {
    font-size: 1.8rem;
    padding-left: 15px;
    margin-bottom: 40px;
    border-left: 6px solid var(--sub-color);
  }
  .module_title_lv4 {
    font-size: 1.8rem;
    padding-left: 15px;
    margin-bottom: 20px;
  }
  .module_title_lv4::before {
    top: calc((1.6em - 6px) / 2);
    width: 6px;
    height: 6px;
  }
  .module_page_title {
    height: 200px;
  }
  .module_page_title::before {
    left: -86%;
    bottom: 0;
    width: 220%;
    height: 600px;
  }
  .module_page_title_container {
    height: 200px;
  }
  .module_breadcrumbs {
    left: 5%;
  }
  .module_breadcrumbs li:not(:last-child)::after {
    padding: 0 10px;
  }
  .module_breadcrumbs li {
    font-size: 1.2rem;
  }
  .module_section > * + * {
    margin-top: 40px;
  }
  .module_section + .module_section {
    margin-top: 60px;
  }
}
/* ---------------------------------------------------------

	03. header

--------------------------------------------------------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
  background-color: rgba(255, 255, 255, 0.8);
  --header-height: 100px;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header_logo {
  display: block;
  max-width: 346px;
  width: 21%;
  transition: opacity 0.3s ease-in-out;
}
.header_logo:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .header_logo:hover {
    opacity: 0.7;
  }
}
.header_nav_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 77%;
}
.header_nav_wrap .header_search_form {
  display: none;
}

.header_nav_list {
  display: flex;
  align-items: center;
  column-gap: 2.25em;
  margin-inline-end: 2.25em;
  height: 100%;
}
.header_nav_list > li {
    height: 100%;
    display: grid;
    align-items: center;
}
.header_nav_list a {
  transition: opacity 0.3s ease-in-out;
}
.header_nav_list a:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .header_nav_list a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 1101px) {
  .header_nav_sub_wrap {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .header_nav_list > li:hover .header_nav_sub_wrap {
    opacity: 1;
    visibility: visible;
  }
  .header_nav_sub_list {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(4, auto);
    gap: 1em 3em;
    row-gap: 0.75em;
    background-color: rgba(227, 237, 236, 1);
    box-shadow: 0 1em 1em -1em rgba(0, 0, 0, 0.1);
    padding: 2em 2em;
    white-space: nowrap;
  }
  .header_nav_sub_list li {
    display: grid;
    white-space: nowrap;
  }
  .header_nav_consultant .header_nav_sub_list {
    grid-template-columns: repeat(2, auto);
  }
  .header_nav_accordion_btn {
    display: none;
  }
}

.header_button_executive {
  margin-right: 10px;
  height: 40px;
  line-height: 40px;
  font-size: 1.6rem;
  background: var(--main-color);
  max-width: 180px;
  justify-content: flex-start;
  padding-left: 20px;
}
.header_button_executive .module_button_icon {
  right: 5px;
  width: 30px;
  height: 30px;
}
.header_button_executive .module_button_icon::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: var(--main-color);
}
.header_button_executive .module_button_icon:focus-visible {
  right: 1px;
}

@media (any-hover: hover) {
  .header_button_executive:hover .module_button_icon {
    right: 1px;
  }
}
.header_button_contact {
  margin-right: 10px;
  height: 40px;
  line-height: 40px;
  font-size: 1.6rem;
  background: var(--sub-color);
  max-width: 180px;
  justify-content: flex-start;
  padding-left: 20px;
}
.header_button_contact .module_button_icon {
  right: 5px;
  width: 30px;
  height: 30px;
}
.header_button_contact .module_button_icon::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: var(--sub-color);
}
.header_button_contact .module_button_icon:focus-visible {
  right: 1px;
}

@media (any-hover: hover) {
  .header_button_contact:hover .module_button_icon {
    right: 1px;
  }
}
.header_button_search {
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 1.6rem;
  border: 1px solid var(--text-color);
  background: #fff;
  max-width: 60px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}
.header_button_search span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.header_button_search::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 23px;
  transform: translate(-50%, -50%);
  background-color: var(--text-color);
  mask: url(/assets/common/img/icon_search.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_search.svg) center/contain no-repeat;
}
.header_button_search:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .header_button_search:hover {
    opacity: 0.7;
  }
}
.menu_toggle {
  display: none;
}

.header_search {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-block: 1.25em;
  background-color: rgba(227, 237, 236, 1);
  box-shadow: 0 1em 1em -1em rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header_search.is-show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.header_search_form {
  position: relative;
  max-width: 500px;
  width: 100%;
}
.header_search_form input {
  max-width: 500px;
  width: 100%;
  height: 60px;
  padding: 5px 80px 5px 20px;
  border: none;
  border-radius: 30px;
  background: #fff;
  outline: none;
}
.header_search_form button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--sub-color);
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
.header_search_form button::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 23px;
  height: 23px;
  background-color: #fff;
  mask: url(/assets/common/img/icon_search.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_search.svg) center/contain no-repeat;
}
.header_search_form button:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .header_search_form button:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1319px) {
  .header_nav_list {
    column-gap: 1.5em;
    margin-inline-end: 1.5em;
  }
}
@media screen and (max-width: 1250px) {
  .header_logo {
    width: 20%;
  }
  .header_nav_wrap {
    width: 79%;
  }
  .header_nav_list li {
    font-size: 1.4rem;
  }
  .header_button_executive {
    font-size: 1.4rem;
    max-width: 160px;
  }
  .header_button_contact {
    font-size: 1.4rem;
    max-width: 160px;
  }
}
@media screen and (max-width: 1100px) {
  .header {
    --header-height: 80px;
  }
  .header_logo {
    width: 30%;
  }
  .header_nav_wrap {
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: var(--header-height);
    width: 100%;
    height: calc(100vh - var(--header-height));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    padding: 3em 5% 5em;
    justify-content: center;
    flex-direction: column;
    overflow-y: auto;
    display: block;
  }
  .header_nav_wrap .header_search_form {
    display: block;
    max-width: 500px;
    margin-top: 3em;
    margin-inline: auto;
  }
  .header_nav_wrap .header_search_form input {
    max-width: 500px;
    border: 1px solid var(--text-color);
  }

  .header_nav_list {
    display: grid;
    row-gap: 0.25em;
    margin-block-end: 3em;
    height: auto;
    position: relative;
    left: 50%;
    translate: -50% 0;
    width: 100vw;
  }
  .header_nav_list > li {
    background-color: var(--bg-color);
    display: grid;
    justify-content: center;
    height: auto;
  }
  .header_nav_list a {
    font-size: 1.8rem;
    padding-block: 0.75em;
  }

  .header_nav_item_inner {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 1em;
    padding-inline: 1.5em;
    width: 300px;
  }
  .header_nav_item_inner > a {
    flex: 1;
    min-width: 0;
  }
  .header_nav_accordion_btn {
    flex-shrink: 0;
    width: 2.5em;
    height: 2.5em;
    padding: 0;
    border: 1px solid var(--text-color);
    border-radius: 999em;
    background: #fff url(/assets/common/img/icon_select.svg) center/2em auto no-repeat;
    cursor: pointer;
    transition: rotate 0.25s ease;
  }
  .header_nav_list > li.is-open .header_nav_accordion_btn {
    rotate: -180deg;
  }
  .header_nav_sub_wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    padding-inline: 1.5em;
    transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .header_nav_list > li.is-open .header_nav_sub_wrap {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
  }
  .header_nav_sub_list {
    font-size: 1.4rem;
    display: grid;
    row-gap: 0.25em;
    padding-block-end: 1.5em;
  }
  .header_nav_sub_list a {
    display: block;
    font-size: 1.6rem;
    font-feature-settings: "palt";
    padding-block: 0.5em;
    width: fit-content;
  }

  .header_button_executive {
    margin: 30px auto 0;
    height: 50px;
    line-height: 50px;
    font-size: 1.8rem;
    max-width: 300px;
    width: 80%;
  }
  .header_button_executive .module_button_icon {
    width: 40px;
    height: 40px;
  }
  .header_button_contact {
    margin: 10px auto 0;
    height: 50px;
    line-height: 50px;
    font-size: 1.8rem;
    max-width: 300px;
    width: 80%;
  }
  .header_button_contact .module_button_icon {
    width: 40px;
    height: 40px;
  }
  .header_button_search {
    display: none;
  }
  .menu_toggle {
    position: absolute;
    top: calc(50% - 12px);
    right: 3%;
    display: block;
    height: 24px;
    cursor: pointer;
  }
  .menu_toggle div {
    position: relative;
    width: 32px;
  }
  .menu_toggle span {
    width: 100%;
    z-index: 100;
    height: 2px;
    right: 0;
    display: block;
    background: #000;
    position: absolute;
    transition: transform 0.3s ease-out;
  }
  .menu_toggle span:nth-child(1) {
    top: 0;
  }
  .menu_toggle span:nth-child(2) {
    top: 11px;
  }
  .menu_toggle span:nth-child(3) {
    top: 22px;
  }
  body.is-open {
    overflow: hidden;
  }
  body.is-open .header_nav_wrap {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  body.is-open .menu_toggle span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
  }
  body.is-open .menu_toggle span:nth-child(2) {
    opacity: 0;
  }
  body.is-open .menu_toggle span:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  .header {
    --header-height: 60px;
    padding: 0 5%;
  }
  .header_logo {
    width: 55%;
  }
  .header_nav_sub_list a {
    font-size: 1.5rem;
  }
}
/* ---------------------------------------------------------

	04. top

--------------------------------------------------------- */
/* top mv
---------------------------------------------------------- */
.top_mv {
  position: relative;
  padding-block: 6.25vw;
  overflow: hidden;
}

.top_mv_background {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.top_mv_background .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: blur(5px);
  opacity: 0.8;
}

.top_mv_slider_wrap {
  display: none;
  position: relative;
  z-index: 10;
}

.top_mv_slider_wrap:has(.swiper-initialized) {
	display: block;
}

.top_mv_slider {
  padding: 10px 0;
  overflow: hidden;
}
.top_mv_slider .swiper-slide {
  transform: scale(0.93);
  transition: transform 0.3s ease-in-out;
}
.top_mv_slider .swiper-slide-active,
.top_mv_slider .swiper-slide-duplicate-active {
  transform: scale(1);
  z-index: 1;
}

.top_mv_slider_item_link {
  display: block;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  aspect-ratio: 1400/640;
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.top_mv_slider_images {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

/* top_mv_background */
.top_mv_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.7;
}

.top_mv_background_item {
  aspect-ratio: 1600/890;
  width: 100%;
  height: 100%;
}
.top_mv_background_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: blur(5px);
}

.top_mv_slider_item_link:focus-visible .top_mv_slider_images {
  transform: scale(1.1);
}

@media (any-hover: hover) {
  .top_mv_slider_item_link:hover .top_mv_slider_images {
    transform: scale(1.1);
  }
}
/* ドット（pagination） */
.top_mv_slider_wrap .top_mv_slider_pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: -35px !important;
  right: calc(12% + 100px) !important;
  left: auto !important;
  width: auto !important;
  text-align: center;
}

.top_mv_slider_pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-color);
  opacity: 0.4;
  margin: 0 5px;
}

.top_mv_slider_pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* 矢印 */
.top_mv_slider_prev,
.top_mv_slider_next {
  position: absolute;
  bottom: -40px;
  cursor: pointer;
  outline: none;
  height: 30px;
  width: 30px;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  background: url(/assets/common/img/icon_arrow.svg) center no-repeat #fff;
  background-size: 20px;
  transition: opacity 0.3s ease-in-out;
}

.top_mv_slider_prev:focus-visible,
.top_mv_slider_next:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .top_mv_slider_prev:hover,
  .top_mv_slider_next:hover {
    opacity: 0.7;
  }
}
.top_mv_slider_prev {
  right: calc(12% + 45px);
  transform: rotate(-180deg);
}

.top_mv_slider_next {
  right: 12%;
}

.top_mv_slider_prev::after,
.top_mv_slider_next::after {
  content: "";
}

@media screen and (max-width: 767px) {
  .top_mv {
    position: relative;
    padding-block: 10.25vw;
  }
  .top_mv_slider_wrap .top_mv_slider_pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -25px !important;
    right: calc(12% + 90px) !important;
  }
  .top_mv_slider_prev,
  .top_mv_slider_next {
    bottom: -30px;
  }
}
/* top information
---------------------------------------------------------- */
.top_information {
  padding: 60px 0 100px;
  overflow: hidden;
}

.top_information_title {
  text-align: right;
}
.top_information_title span {
  right: -4%;
}

.information_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 3%;
  margin-bottom: 60px;
}

.information_item_link {
  display: block;
}

.information_images {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--text-sub-color);
  border-radius: 20px;
}
.information_images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.information_meta {
  display: flex;
  align-items: center;
  margin: 20px 0 10px;
}
.information_meta li + li {
  margin-left: 20px;
}

.information_date {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.information_tag {
  border: 1px solid var(--text-color);
  border-radius: 5px;
  font-weight: 700;
  padding: 0 10px;
}

.top_information_button_wrap {
  max-width: 360px;
  margin: 0 auto;
}

.information_item_link:focus-visible .information_images img {
  transform: scale(1.1);
}

@media (any-hover: hover) {
  .information_item_link:hover .information_images img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 1250px) {
  .top_information_title span {
    right: -2%;
  }
}
@media screen and (max-width: 767px) {
  .top_information {
    padding: 40px 0 60px;
  }
  .information_list {
    max-width: 80%;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0 auto 40px;
  }
  .information_meta {
    margin: 10px 0 5px;
  }
  .information_meta li + li {
    margin-left: 10px;
  }
}
/* top about
---------------------------------------------------------- */
.top_about {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
.top_about::before {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  width: 180%;
  height: 120%;
  background: var(--bg-color);
  border-radius: 50% 50% 0 0;
  z-index: -1;
}

.top_about_title span {
  color: var(--bg-color);
}

.top_about_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6% 2%;
}
.top_about_list h3 {
  font-size: 1.6rem;
}

.top_about_item_link {
  display: block;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px 3% 15px;
  text-align: center;
  position: relative;
}
.top_about_item_link .top_about_item_link_arrow {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--main-color);
  z-index: 1;
  transition: right 0.3s ease-in-out;
}
.top_about_item_link .top_about_item_link_arrow::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: #fff;
  mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
}
.top_about_item_link:focus-visible .top_about_item_link_arrow {
  right: -10px;
}

@media (any-hover: hover) {
  .top_about_item_link:hover .top_about_item_link_arrow {
    right: -10px;
  }
}
.top_about_icon {
  height: 78px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.top_about_item_title {
  font-weight: 700;
}

.top_about_item_title_2lines {
  line-height: 1.4;
  margin-top: -1.2em;
}

@media screen and (max-width: 1250px) {
  .top_about_list h3 {
    font-size: 1.4vw;
  }
  .top_about_item_link .top_about_item_link_arrow {
    bottom: 0.6vw;
    right: 0.4vw;
    width: 4vw;
    height: 4vw;
    border: 0.4vw solid #fff;
  }
  .top_about_item_link:focus-visible .top_about_item_link_arrow {
    right: -0.8vw;
  }
}
@media screen and (max-width: 1250px) and (any-hover: hover) {
  .top_about_item_link:hover .top_about_item_link_arrow {
    right: -0.8vw;
  }
}
@media screen and (max-width: 767px) {
  .top_about {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
  }
  .top_about::before {
    left: -80%;
    width: 220%;
  }
  .top_about_title {
    font-size: 6.15vw;
  }
  .top_about_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .top_about_list h3 {
    font-size: 3vw;
  }
  .top_about_item_link .top_about_item_link_arrow {
    right: 0;
    bottom: 1vw;
    width: 40px;
    height: 40px;
    border: 3px solid #fff;
  }
  .top_about_item_title {
    font-weight: 700;
  }
}
/* top zone
---------------------------------------------------------- */
.top_zone {
  background: var(--sub-color);
  padding: 80px 0;
}

.top_zone_container {
  max-width: 648px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_zone_content {
  width: 45%;
  text-align: center;
  margin-right: 8%;
}

.top_zone_title {
  max-width: 266px;
  margin: 0 auto 40px;
}

.top_zone_text {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 40px;
}

.top_zone_button_wrap {
  max-width: 280px;
  margin: 0 auto;
}
.top_zone_button_wrap img {
  display: block;
  max-width: 80px;
  margin-right: 5px;
}

.top_zone_button {
  justify-content: flex-start;
  padding-left: 15%;
}

.top_zone_image {
  background: #f6f6f6;
  padding: 20px;
  width: 37%;
}

@media screen and (max-width: 767px) {
  .top_zone {
    padding: 60px 0;
  }
  .top_zone_container {
    display: block;
  }
  .top_zone_content {
    width: 100%;
    margin: 0 0 40px;
  }
  .top_zone_title {
    max-width: 60%;
    margin: 0 auto 30px;
  }
  .top_zone_text {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .top_zone_button {
    padding-left: 19%;
  }
  .top_zone_image {
    width: 60%;
    margin: 0 auto;
  }
}
/* top lifesupport
---------------------------------------------------------- */
.top_lifesupport {
  padding: 120px 0 240px;
  overflow: hidden;
  position: relative;
}
.top_lifesupport::before {
  content: "";
  position: absolute;
  right: -60%;
  bottom: 0;
  width: 180%;
  height: 120%;
  background: var(--bg-color);
  border-radius: 0 0 50% 50%;
  z-index: -1;
}

.top_lifesupport_title {
  text-align: right;
}
.top_lifesupport_title span {
  right: -4%;
  color: var(--bg-color);
}

.top_lifesupport_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 2%;
}

.top_lifesupport_link {
  display: block;
}
.top_lifesupport_link:focus-visible .top_lifesupport_link_arrow {
  right: -5px;
}
.top_lifesupport_link:focus-visible .top_lifesupport_images img {
  transform: scale(1.1);
}

.top_lifesupport_wrap {
  position: relative;
}
.top_lifesupport_wrap .top_lifesupport_link_arrow {
  position: absolute;
  top: 78%;
  right: -5px;
  width: 60px;
  height: 60px;
  border: 5px solid var(--bg-color);
  border-radius: 50%;
  background: var(--main-color);
  transition: right 0.3s ease-in-out;
  z-index: 10;
}
.top_lifesupport_wrap .top_lifesupport_link_arrow::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: #fff;
  mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
}

.top_lifesupport_images {
  aspect-ratio: 10/10;
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.top_lifesupport_images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .top_lifesupport_link:hover .top_lifesupport_link_arrow {
    right: -10px;
  }
  .top_lifesupport_link:hover .top_lifesupport_images img {
    transform: scale(1.1);
  }
}
.top_lifesupport_item_title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.top_lifesupport_item_text {
  width: 90%;
  margin: 10px auto 0;
  font-size: 1.4rem;
  text-align: justify;
  text-align: justify;
}

@media screen and (max-width: 1250px) {
  .top_lifesupport_wrap .top_lifesupport_link_arrow {
    top: 78%;
    width: 4.8vw;
    height: 4.8vw;
    border: 0.4vw solid var(--bg-color);
  }
  .top_lifesupport_item_title span {
    right: -2%;
  }
}
@media screen and (max-width: 1023px) {
  .top_lifesupport_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .top_lifesupport {
    padding: 60px 0 120px;
  }
  .top_lifesupport::before {
    right: -80%;
    width: 220%;
  }
  .top_lifesupport_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .top_lifesupport_wrap .top_lifesupport_link_arrow {
    top: 78%;
    right: 0;
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-color);
  }
  .top_lifesupport_item_title {
    font-size: 1.4rem;
  }
  .top_lifesupport_item_text {
    font-size: 1.2rem;
  }
}
/* top consultant
---------------------------------------------------------- */
.top_consultant {
  width: 96%;
  margin: -120px auto 0;
  background: #fff;
  border-radius: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 80px 0;
  overflow: hidden;
}

.top_consultant_list {
  display: flex;
  justify-content: space-between;
}

.top_consultant_item {
  width: 48%;
}

.top_consultant_link {
  display: block;
}
.top_consultant_link:focus-visible .top_consultant_link_arrow {
  right: -25px;
}
.top_consultant_link:focus-visible .top_consultant_images img {
  transform: scale(1.1);
}

@media (any-hover: hover) {
  .top_consultant_link:hover .top_consultant_link_arrow {
    right: -25px;
  }
  .top_consultant_link:hover .top_consultant_images img {
    transform: scale(1.1);
  }
}
.top_consultant_wrap {
  position: relative;
}

.top_consultant_link_arrow {
  position: absolute;
  top: 87%;
  right: -15px;
  width: 70px;
  height: 70px;
  border: 5px solid #fff;
  background: var(--main-color);
  border-radius: 50%;
  transition: right 0.3s ease-in-out;
  z-index: 10;
}
.top_consultant_link_arrow::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: #fff;
  mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
}

.top_consultant_images {
  aspect-ratio: 570/336;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.top_consultant_images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.top_consultant_item_title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (max-width: 1250px) {
  .top_consultant_wrap .top_consultant_link_arrow {
    right: -1.2vw;
    width: 5.6vw;
    height: 5.6vw;
    border: 0.4vw solid #fff;
  }
  .top_consultant_item_title {
    font-size: 1.92vw;
  }
  .top_consultant_item_text {
    font-size: 1.28vw;
  }
}
@media screen and (max-width: 767px) {
  .top_consultant {
    width: 90%;
    margin: -60px auto 0;
    border-radius: 30px;
    padding: 40px 0;
  }
  .top_consultant_list {
    display: block;
  }
  .top_consultant_item {
    width: 100%;
  }
  .top_consultant_item + .top_consultant_item {
    margin-top: 30px;
  }
  .top_consultant_wrap .top_consultant_link_arrow {
    top: 80%;
    right: -10px;
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
  }
  .top_consultant_images {
    aspect-ratio: 570/336;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }
  .top_consultant_images img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .top_consultant_item_title {
    font-size: 1.8rem;
  }
  .top_consultant_item_text {
    font-size: 1.4rem;
  }
}
/* top banner
---------------------------------------------------------- */
.top_banner {
  padding: 80px 0;
}

.top_banner_slider_wrap {
  position: relative;
  padding: 0 40px;
}
.top_banner_slider_wrap .top_banner_slider {
  padding: 0;
  position: relative;
}
.top_banner_slider_wrap .swiper-wrapper {
  align-items: center;
}
.top_banner_slider_wrap .swiper-slide {
  margin: 0;
}
.top_banner_slider_wrap .swiper-button-prev,
.top_banner_slider_wrap .swiper-button-next {
  position: absolute;
  top: calc(50% + 5px);
  cursor: pointer;
  outline: none;
  height: 30px;
  width: 30px;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  background: url(/assets/common/img/icon_arrow.svg) center no-repeat #fff;
  background-size: 20px;
  transition: opacity 0.3s ease-in-out;
}
.top_banner_slider_wrap .swiper-button-prev {
  left: 0;
  transform: rotate(-180deg);
}
.top_banner_slider_wrap .swiper-button-next {
  right: 0;
}
.top_banner_slider_wrap .swiper-button-prev::after,
.top_banner_slider_wrap .swiper-button-next::after {
  content: "";
}

.top_banner_link {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
.top_banner_link img {
  border: 1px solid #ccc;
  border-radius: 10px;
}

.top_banner_link:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .top_banner_link:hover {
    opacity: 0.7;
  }
  .top_banner_slider_wrap .swiper-button-prev:hover,
  .top_banner_slider_wrap .swiper-button-next:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1250px) {
  .top_banner {
    padding: 6.4vw 0;
  }
}
@media screen and (max-width: 767px) {
  .top_banner {
    padding: 40px 0;
  }
}
/* ---------------------------------------------------------

	05. footer

--------------------------------------------------------- */
.footer {
  padding: 60px 0;
  background: var(--text-color);
}

.footer_list {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.footer_list li {
  margin: 0 10px;
}
.footer_list a {
  color: #fff;
  font-weight: 700;
  transition: opacity 0.3s ease-in-out;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}

.footer_copy {
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}

.footer_list a:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .footer_list a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
  .footer_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 25px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .footer_list li {
    margin: 0;
  }
  .footer_list a {
    font-size: 1.2rem;
  }
  .footer_copy {
    font-size: 1rem;
  }
}
/* ---------------------------------------------------------

	06. information

--------------------------------------------------------- */
.information_nav {
  max-width: 860px;
  margin: 0 auto 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.333%;
}

.information_nav_item {
  width: 24%;
  margin-bottom: 10px;
}

.information_nav_button {
  padding: 15px 55px 15px 12%;
  justify-content: flex-start;
  background: var(--bg-sub-color);
  color: var(--text-sub-color);
  font-size: 1.6rem;
}
.information_nav_button .module_button_icon {
  width: 35px;
  height: 35px;
}
.information_nav_button .module_button_icon::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: var(--text-sub-color);
}
.information_nav_button.is-current {
  background: var(--text-color);
  color: #fff;
}
.information_nav_button.is-current .module_button_icon::after {
  background-color: var(--text-color);
}

@media screen and (max-width: 767px) {
  .information {
    padding: 60px 0;
  }
  .information_nav {
    margin: 0 auto 40px;
  }
  .information_nav_item {
    width: 48%;
  }
  .information_nav_button {
    font-size: 1.2rem;
  }
}
/* information_contents */
.information_heading {
  margin-bottom: 60px;
}

.information_heading_title {
  font-size: 3.6rem;
  font-weight: 700;
  position: relative;
}
.information_heading_title::after {
  content: "";
  display: block;
  width: 50px;
  height: 8px;
  margin: 18px 0 0;
  background: linear-gradient(to right, var(--sub-color) 0 50%, var(--main-color) 50% 100%);
  border-radius: 4px;
}

:where(.information_contents) h2 {
  font-size: 3.2rem;
  font-weight: 700;
  padding-left: 15px;
  margin-bottom: 40px;
  border-left: 8px solid var(--sub-color);
  border-bottom: 2px solid var(--sub-color);
  padding-bottom: 5px;
}

:where(.information_contents) h2:not(:first-child) {
  margin-top: 2.25em;
}

:where(.information_contents) h3 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 15px;
  margin-bottom: 30px;
  border-left: 6px solid var(--sub-color);
}

:where(.information_contents) h3:not(:first-child) {
  margin-top: 2em;
}

:where(.information_contents) h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 20px;
  margin-bottom: 20px;
  position: relative;
}
:where(.information_contents) h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc((1.6em - 10px) / 2);
  width: 10px;
  height: 10px;
  background: var(--sub-color);
}

:where(.information_contents) h4:not(:first-child) {
  margin-top: 1.5em;
}

:where(.information_contents) h2.has-text-align-center,
:where(.information_contents) h3.has-text-align-center,
:where(.information_contents) h4.has-text-align-center {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

:where(.information_contents) h2.has-text-align-right,
:where(.information_contents) h3.has-text-align-right,
:where(.information_contents) h4.has-text-align-right {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

:where(.information_contents) h2.has-text-align-left,
:where(.information_contents) h3.has-text-align-left,
:where(.information_contents) h4.has-text-align-left {
  margin-inline: 0 auto;
  text-align: left;
}

:where(.information_contents) .has-text-align-center {
  text-align: center;
}

:where(.information_contents) .has-text-align-right {
  text-align: right;
}

:where(.information_contents) p {
  line-height: 2;
}

:where(.information_contents) p:not(:first-child) {
  margin-top: 1.5em;
}

.information_contents a {
  color: var(--sub-color);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

:where(.information_contents) ul {
  display: grid;
  gap: 0.5em;
}
:where(.information_contents) ul li {
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}
:where(.information_contents) ul li::before {
  content: "・";
  color: currentColor;
  font-weight: 900;
}

:where(.information_contents) ul:not(:first-child) {
  margin-top: 1.5em;
}

:where(.information_contents) ol {
  display: grid;
  gap: 0.5em;
}
:where(.information_contents) ol li {
  line-height: 2;
  list-style: decimal;
  margin-left: 1.5em;
}

:where(.information_contents) ol:not(:first-child) {
  margin-top: 1.5em;
}

:where(.information_contents) :where(ul, ol) :is(ul, ol) {
  margin-top: 1em;
  padding-left: 1em;
}

/*	font size	*/
:where(.information_contents) h2.has-small-font-size,
:where(.information_contents) h3.has-small-font-size,
:where(.information_contents) h4.has-small-font-size,
:where(.information_contents) p.has-small-font-size,
:where(.information_contents) li.has-small-font-size {
  font-size: 1.2rem;
}

:where(.information_contents) h2.has-normal-font-size,
:where(.information_contents) h3.has-normal-font-size,
:where(.information_contents) h4.has-normal-font-size,
:where(.information_contents) p.has-normal-font-size,
:where(.information_contents) li.has-normal-font-size {
  font-size: 1.4rem;
}

:where(.information_contents) h2.has-medium-font-size,
:where(.information_contents) h3.has-medium-font-size,
:where(.information_contents) h4.has-medium-font-size,
:where(.information_contents) p.has-medium-font-size,
:where(.information_contents) li.has-medium-font-size {
  font-size: 1.6rem;
}

:where(.information_contents) h2.has-large-font-size,
:where(.information_contents) h3.has-large-font-size,
:where(.information_contents) h4.has-large-font-size,
:where(.information_contents) p.has-large-font-size,
:where(.information_contents) li.has-large-font-size {
  font-size: 2rem;
}

:where(.information_contents) h2.has-huge-font-size,
:where(.information_contents) h3.has-huge-font-size,
:where(.information_contents) h4.has-huge-font-size,
:where(.information_contents) p.has-huge-font-size,
:where(.information_contents) li.has-huge-font-size {
  font-size: 2.4rem;
}

/*	highlight	*/
.information_contents .has-black-color {
  color: var(--color-text-default);
}

.information_contents .has-cyan-bluish-gray-color {
  color: rgb(171, 184, 195);
}

.information_contents .has-white-color {
  color: rgb(255, 255, 255);
}

.information_contents .has-pale-pink-color {
  color: rgb(247, 141, 167);
}

.information_contents .has-vivid-red-color {
  color: rgb(207, 46, 46);
}

.information_contents .has-luminous-vivid-orange-color {
  color: rgb(255, 105, 0);
}

.information_contents .has-luminous-vivid-amber-color {
  color: rgb(252, 185, 0);
}

.information_contents .has-light-green-cyan-color {
  color: rgb(123, 220, 181);
}

.information_contents .has-vivid-green-cyan-color {
  color: rgb(0, 208, 132);
}

.information_contents .has-pale-cyan-blue-color {
  color: rgb(142, 209, 252);
}

.information_contents .has-vivid-cyan-blue-color {
  color: rgb(6, 147, 227);
}

.information_contents .has-vivid-purple-color {
  color: rgb(155, 81, 224);
}

/*	image	*/
:where(.information_contents) figure {
  margin-block: 2em 2.5em;
}

:where(.information_contents) figure:last-child {
  margin-bottom: 0;
}

:where(.information_contents) figure.aligncenter {
  text-align: center;
}

:where(.information_contents) figure.alignright {
  text-align: right;
}

:where(.information_contents) figure.alignfull img {
  width: 100%;
}

.information_contents img {
  border: 1px solid var(--color-text-default);
}

.information_contents figure:not(.is-style-rounded) img {
  border-radius: 1em;
}

.information_contents figure.is-style-rounded img {
  border-radius: 999em;
}

.information_contents figcaption {
  font-size: 0.9em;
  line-height: 1.5;
  margin-top: 0.5em;
  padding-inline: 0.5em;
}

/*	YouTube	*/
:where(.information_contents) .wp-block-embed__wrapper iframe {
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
}

/*	Columns	*/
:where(.information_contents) .wp-block-columns {
  display: grid;
  gap: 2em;
}

:where(.information_contents) .wp-block-columns:not(:first-child) {
  margin-block: 3em;
}

:where(.information_contents) .wp-block-columns figure {
  margin-block: 0;
}

/*	other	*/
.information_contents code {
  background-color: #eee;
  padding-inline: 0.25em;
}

.information_contents kbd {
  background-color: #eee;
  border: 1px solid #b4b4b4;
  border-radius: 0.25em;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
  color: #333;
  display: inline-block;
  line-height: 1;
  padding: 0.125em 0.25em;
  white-space: nowrap;
}

:where(.information_contents) .module_table_normal:not(:first-child) {
  margin-top: 2.5em;
}

@media screen and (max-width: 767px) {
  .information_heading {
    margin-bottom: 40px;
  }
  .information_heading_title {
    font-size: 2.8rem;
  }
  .information_heading_title::after {
    width: 40px;
    height: 6px;
  }
  :where(.information_contents) h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    border-left: 6px solid var(--sub-color);
  }
  :where(.information_contents) h2:not(:first-child) {
    margin-top: 2em;
  }
  :where(.information_contents) h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25em;
    border-left: 4px solid var(--sub-color);
  }
  :where(.information_contents) h3:not(:first-child) {
    margin-top: 2em;
  }
  :where(.information_contents) h4 {
    font-size: 1.6rem;
  }
  :where(.information_contents) h4::before {
    top: calc((1.6em - 6px) / 2);
    width: 6px;
    height: 6px;
  }
  :where(.information_contents) h4:not(:first-child) {
    margin-top: 1em;
  }
}
@media screen and (min-width: 768px) {
  /*	font size	*/
  :where(.information_contents) h2.has-small-font-size,
  :where(.information_contents) h3.has-small-font-size,
  :where(.information_contents) h4.has-small-font-size,
  :where(.information_contents) p.has-small-font-size,
  :where(.information_contents) li.has-small-font-size {
    font-size: 1.3rem;
  }
  :where(.information_contents) h2.has-normal-font-size,
  :where(.information_contents) h3.has-normal-font-size,
  :where(.information_contents) h4.has-normal-font-size,
  :where(.information_contents) p.has-normal-font-size,
  :where(.information_contents) li.has-normal-font-size {
    font-size: 1.6rem;
  }
  :where(.information_contents) h2.has-medium-font-size,
  :where(.information_contents) h3.has-medium-font-size,
  :where(.information_contents) h4.has-medium-font-size,
  :where(.information_contents) p.has-medium-font-size,
  :where(.information_contents) li.has-medium-font-size {
    font-size: 2rem;
  }
  :where(.information_contents) h2.has-large-font-size,
  :where(.information_contents) h3.has-large-font-size,
  :where(.information_contents) h4.has-large-font-size,
  :where(.information_contents) p.has-large-font-size,
  :where(.information_contents) li.has-large-font-size {
    font-size: 3.6rem;
  }
  :where(.information_contents) h2.has-huge-font-size,
  :where(.information_contents) h3.has-huge-font-size,
  :where(.information_contents) h4.has-huge-font-size,
  :where(.information_contents) p.has-huge-font-size,
  :where(.information_contents) li.has-huge-font-size {
    font-size: 4.2rem;
  }
  /*	image	*/
  :where(.information_contents) figure {
    margin-block: 3em 3.5em;
  }
  .information_contents figure:not(.is-style-rounded) img {
    border-radius: 2em;
  }
  .information_contents figcaption {
    font-size: 0.9em;
    line-height: 1.75;
    margin-top: 0.75em;
    padding-inline: 1.5em;
  }
  /*	Columns	*/
  :where(.information_contents) .wp-block-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ---------------------------------------------------------

	07. organization

--------------------------------------------------------- */
.organization_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 4%;
       column-gap: 4%;
  row-gap: 40px;
}

.organization_link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  position: relative;
}
.organization_link:focus-visible .organization_link_arrow {
  right: -15px;
}

@media (any-hover: hover) {
  .organization_link:hover .organization_link_arrow {
    right: -20px;
  }
}
.organization_link_title {
  margin-bottom: 20px;
}

.organization_link_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.organization_link_icon {
  width: 25%;
  text-align: center;
}

.organization_link_text {
  width: 70%;
  line-height: 2;
}

.organization_link_arrow {
  position: absolute;
  top: 82%;
  right: -10px;
  width: 60px;
  height: 60px;
  border: 5px solid #fff;
  background: var(--main-color);
  border-radius: 50%;
  transition: right 0.3s ease-in-out;
  z-index: 10;
}
.organization_link_arrow::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: #fff;
  mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .organization_list {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 30px;
  }
  .organization_link {
    padding: 20px 30px;
  }
  .organization_link_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .organization_link_text {
    line-height: 1.8;
  }
  .organization_link_arrow {
    width: 50px;
    height: 50px;
  }
}
/* umbrella_organization */
.umbrella_organization_table {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.umbrella_organization_table_text {
  text-align: right;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

/* group_numbers */
.group_numbers_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.group_numbers_wrap .module_section {
  width: 47%;
}
.group_numbers_wrap .module_section + .module_section {
  margin-top: 0;
}

.group_numbers_table_text {
  text-align: right;
  margin-top: 10px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .group_numbers_wrap {
    display: block;
    margin-bottom: 40px;
  }
  .group_numbers_wrap .module_section {
    width: 100%;
  }
  .group_numbers_wrap .module_section + .module_section {
    margin-top: 40px;
  }
  .group_numbers_table_text {
    text-align: right;
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
/* unions
---------------------------------------------------------- */
.unions_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 2em;
}
.unions_list li {
  font-size: 1.2rem;
  position: relative;
  padding-inline-start: 1em;
  text-indent: -1em;
}
.unions_list li::before {
  content: "・";
}

@media screen and (max-width: 1023px) {
  .unions_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .unions_list {
    display: block;
  }
  .unions_list li {
    font-size: 1.4rem;
    width: 100%;
  }
  .unions_list li + li {
    margin-top: 10px;
  }
}
/* ---------------------------------------------------------

	08. contact

--------------------------------------------------------- */
.contact_text {
  margin-bottom: 30px;
}

.contact_table {
  width: 100%;
  margin-top: -15px;
}
.contact_table th {
  width: 40%;
  padding-right: 6%;
  vertical-align: top;
  text-align: left;
  padding-top: 27px;
}
.contact_table td {
  width: 60%;
  padding: 15px 0;
}

.contact_item {
  display: flex;
  align-items: flex-start;
}

.contact_label_required,
.contact_label_optional {
  width: 48px;
  text-align: center;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 2px 0;
  margin-right: 10px;
  margin-top: 1px;
}

.contact_label_required {
  background: var(--main-color);
  color: #fff;
}

.contact_label_optional {
  border: 1px solid var(--text-color);
}

.contact_item_title {
  flex: 1;
}
.contact_item_title span {
  font-size: 1.4rem;
}

.contact_checkbox_list {
  margin: 30px 0 20px;
}
.contact_checkbox_list li + li {
  margin-top: 15px;
}

.contact_note {
  background: var(--bg-color);
  padding: 30px 40px;
  border-radius: 20px;
  margin: 30px 0 20px;
}
.contact_note p {
  margin-bottom: 20px;
}
.contact_note a {
  text-decoration: underline;
}
.contact_note ol {
  margin-left: 1.5em;
}
.contact_note ol li {
  list-style: decimal;
}
.contact_note ol li + li {
  margin-top: 10px;
}

.contact_agreement {
  text-align: center;
}

.contact_submit {
  max-width: 360px;
  margin: 40px auto 0;
}

.contact_confirm_text {
  padding: 10px 0;
}

.contact_submit_button {
  pointer-events: none;
  opacity: 0.2;
}

.contact_agreement:has(input:checked) ~ .contact_submit .contact_submit_button {
  pointer-events: auto;
  opacity: 1;
}

.contact_confirm_button {
  max-width: 740px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}
.contact_confirm_button li {
  width: 49%;
}

.contact_return_button {
  border: 1px solid var(--text-color);
  background: #fff;
  color: var(--text-color);
}
.contact_return_button .module_button_icon {
  right: auto;
  left: 10px;
  transform: translateY(-50%) rotate(-180deg);
  background: var(--text-color);
}
.contact_return_button .module_button_icon::after {
  background-color: #fff;
}
.contact_return_button:focus-visible .module_button_icon {
  left: 3px;
}

.contact_message_error {
  color: #f00;
  margin-top: 0.5em;
}
input:has(+ .contact_message_error),
select:has(+ .contact_message_error),
textarea:has(+ .contact_message_error) {
  border-color: #f00;
}

@media (any-hover: hover) {
  .contact_return_button:hover .module_button_icon {
    left: 3px;
  }
}
.contact_complete_button {
  max-width: 360px;
  margin: 100px auto 0;
}

@media screen and (max-width: 767px) {
  .contact_text {
    margin-bottom: 20px;
  }
  .contact_table {
    margin-top: 0;
  }
  .contact_table th {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-top: 0;
  }
  .contact_table td {
    display: block;
    width: 100%;
    padding: 10px 0 30px;
  }
  .contact_item_title span {
    font-size: 1.2rem;
  }
  .contact_checkbox_list {
    margin-block-start: 0;
  }
  .contact_checkbox_list li + li {
    margin-top: 10px;
  }
  .contact_table th:has(+ td > .contact_checkbox_list) {
    display: none;
  }
  .contact_note {
    padding: 20px 15px;
    margin: 0 0 20px;
  }
  .contact_note p {
    margin-bottom: 20px;
  }
  .contact_note a {
    text-decoration: underline;
  }
  .contact_note ol {
    margin-left: 1.5em;
  }
  .contact_note ol li {
    list-style: decimal;
  }
  .contact_note ol li + li {
    margin-top: 10px;
  }
  .contact_agreement {
    text-align: left;
  }
  .contact_submit {
    max-width: 360px;
    margin: 30px auto 0;
  }
  .contact_confirm_text {
    padding: 0;
  }
  .contact_confirm_button {
    margin: 30px auto 0;
    flex-direction: column-reverse;
  }
  .contact_confirm_button li {
    width: 100%;
  }
  .contact_confirm_button li + li {
    margin-bottom: 20px;
  }
  .contact_complete_button {
    max-width: 360px;
    margin: 40px auto 0;
  }
}
/* ---------------------------------------------------------

	09. movie

--------------------------------------------------------- */
/* movie_login */
.movie_login {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.movie_login_member,
.movie_login_executive {
  width: 48%;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
}
.movie_login_member .module_button,
.movie_login_executive .module_button {
  margin-top: auto;
  max-width: 330px;
  margin: auto auto 0;
}

.movie_login_title {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.movie_login_input {
  margin-bottom: 60px;
}

.movie_login_executive {
  background: var(--bg-color);
}

.movie_login_text {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .movie_login {
    display: block;
  }
  .movie_login_member,
  .movie_login_executive {
    width: 100%;
    padding: 30px 20px;
  }
  .movie_login_member .module_button,
  .movie_login_executive .module_button {
    max-width: 100%;
  }
  .movie_login_input {
    margin-bottom: 30px;
  }
  .movie_login_executive {
    margin-top: 30px;
  }
}
/* movie_member */
.movie_local_nav {
  background: var(--bg-color);
  padding: 24px 0;
  border-radius: 100px;
  margin: 60px auto;
}

.movie_local_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.movie_local_nav_list li {
  margin: 0 1.5%;
}

.movie_local_nav_link {
  display: inline-flex;
  align-items: center;
}
.movie_local_nav_link::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: 10px;
  background: url(/assets/common/img/icon_arrow.svg) center no-repeat #fff;
  background-size: 18px;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}
.movie_local_nav_link:focus-visible::after {
  transform: rotate(90deg) translateX(5px);
}

@media (any-hover: hover) {
  .movie_local_nav_link:hover::after {
    transform: rotate(90deg) translateX(5px);
  }
}
.movie_section + .movie_section {
  margin-top: 60px;
}

.movie_section_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.movie_section_item {
  display: flex;
  flex-direction: column;
}

.movie_section_link {
  display: block;
}
.movie_section_link:focus-visible .movie_section_thumb img {
  transform: scale(1.1);
}

@media (any-hover: hover) {
  .movie_section_link:hover .movie_section_thumb img {
    transform: scale(1.1);
  }
}
.movie_section_thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--text-sub-color);
  width: 100%;
  margin-bottom: 5px;
  aspect-ratio: 16/9;
}
.movie_section_thumb img {
  width: 105%;
  height: 105%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: transform 0.3s ease-in-out;
}
.movie_section_thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 37px;
  background: url(/assets/common/img/icon_movie.png) center/contain no-repeat;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .movie_local_nav {
    padding: 12px 0;
    margin: 30px auto;
    border-radius: 20px;
  }
  .movie_local_nav_list {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .movie_local_nav_list li {
    width: 50%;
    margin: 0;
    text-align: center;
  }
  .movie_local_nav_list li:nth-child(-n+2) {
    margin-bottom: 20px;
  }
  .movie_section_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 5%;
  }
  .movie_section_thumb {
    border-radius: 10px;
  }
  .movie_section_item_text {
    font-size: 1.2rem;
  }
}
/* movie_modal */
.movie_modal_overlay,
.movie_modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.movie_modal_overlay.is-show,
.movie_modal.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.movie_modal_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.movie_modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.movie_modal_inner {
  position: relative;
  max-width: 1200px;
  width: 90%;
  background: #000;
}

.movie_modal_player {
  position: relative;
  padding-top: 56.25%;
}

.movie_modal_iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie_modal_close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  z-index: 2;
}

.movie_modal_close::before,
.movie_modal_close::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 60%;
  height: 2px;
  margin: auto;
  background: #333;
}

.movie_modal_close::before {
  transform: rotate(45deg);
}

.movie_modal_close::after {
  transform: rotate(-45deg);
}

body.is-modal-open {
  overflow: hidden;
}

/* ---------------------------------------------------------

	10. represent

--------------------------------------------------------- */
.represent_wrap {
  display: flex;
  justify-content: space-between;
}

.represent_images {
  width: 36%;
}
.represent_images img {
  border-radius: 20px;
}

.represent_position {
  margin-top: 10px;
}

.represent_name {
  font-size: 2.4rem;
  font-weight: 700;
}

.represent_name-en {
  font-size: 1.4rem;
}

.represent_text {
  width: 57.6%;
}

@media screen and (max-width: 767px) {
  .represent_wrap {
    flex-direction: column-reverse;
  }
  .represent_images {
    width: 70%;
    margin: 40px auto 0;
  }
  .represent_images img {
    border-radius: 20px;
  }
  .represent_name {
    font-size: 1.8rem;
  }
  .represent_name-en {
    font-size: 1.2rem;
  }
  .represent_text {
    width: 100%;
  }
}
/* ---------------------------------------------------------

	11. basic_principles

--------------------------------------------------------- */
.basic_principles .module_section > * + * {
  margin-top: 24px;
}
.basic_principles .basic_principles_title {
  margin-top: 40px;
  margin-bottom: 24px;
}

/* ---------------------------------------------------------

	12. our_task

--------------------------------------------------------- */
.our_task .module_section > * + * {
  margin-top: 24px;
}
.our_task .our_task_title {
  margin-bottom: 24px;
}
.our_task * + .our_task_title {
  margin-top: 60px;
}

.our_task_box {
  background: var(--bg-color);
  border-radius: 10px;
  padding: 24px;
}
.our_task_box .module_title_lv4 {
  margin-bottom: 10px;
}

/* ---------------------------------------------------------

	13. access

--------------------------------------------------------- */
.access .access_title {
  margin-bottom: 24px;
}
.access .access_title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.access * + .access_title {
  margin-top: 60px;
}

.access_wrap {
  display: flex;
  justify-content: space-between;
}

.access_wrap_text {
  width: 38.6%;
}

.access_wrap_images {
  width: 55%;
}
.access_wrap_images img {
  border-radius: 20px;
}

.access_wrap_02 {
  display: flex;
  justify-content: space-between;
}
.access_wrap_02 div {
  width: 46.8%;
}

.access_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  margin-top: 80px;
  overflow: hidden;
}
.access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .access_wrap {
    display: block;
  }
  .access_wrap_text {
    width: 100%;
    margin-bottom: 20px;
  }
  .access_wrap_images {
    width: 100%;
  }
  .access_wrap_02 {
    display: block;
  }
  .access_wrap_02 div {
    width: 100%;
  }
  .access_wrap_02 div + div {
    margin-top: 40px;
  }
  .access_map {
    padding-bottom: 70%;
    margin-top: 40px;
  }
}
/* ---------------------------------------------------------

	00. sitemap

--------------------------------------------------------- */
.sitemap .module_title_lv3 {
  display: block;
  margin-bottom: 24px;
}
.sitemap .module_title_lv4 {
  display: block;
  margin-bottom: 20px;
}
.sitemap * + .module_title_lv4 {
  margin-top: 30px;
}
.sitemap .module_list .module_list {
  margin: 8px 0 8px 16px;
}
.sitemap a {
  transition: opacity 0.3s ease-in-out;
}

.sitemap_wrap {
  display: flex;
  justify-content: space-between;
}
.sitemap_wrap > div:nth-child(1) {
  width: 30%;
}
.sitemap_wrap > div:nth-child(2) {
  width: 35%;
}
.sitemap_wrap > div:nth-child(3) {
  width: 25%;
}

.sitemap a:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .sitemap a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .sitemap .module_title_lv4 {
    margin-bottom: 10px;
  }
  .sitemap_wrap {
    display: block;
  }
  .sitemap_wrap > div:nth-child(1) {
    width: 100%;
  }
  .sitemap_wrap > div:nth-child(2) {
    width: 100%;
    margin-top: 30px;
  }
  .sitemap_wrap > div:nth-child(3) {
    width: 100%;
    margin-top: 30px;
  }
}
/* ---------------------------------------------------------

	00. relative_site02

--------------------------------------------------------- */
.relative_site02 .module_title_lv3 {
  display: block;
  margin-bottom: 20px;
}
.relative_site02 a {
  transition: opacity 0.3s ease-in-out;
}

.relative_site02 a:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .relative_site02 a:hover {
    opacity: 0.7;
  }
}
.relative_site02_wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}
.relative_site02_wrap > div {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .relative_site02 .module_title_lv3 {
    margin-bottom: 10px;
  }
  .relative_site02_wrap > div {
    width: 100%;
  }
}
/* ---------------------------------------------------------

	00. privacy_policy

--------------------------------------------------------- */
.policy .module_title_lv3 {
  margin-bottom: 32px;
}
.policy .module_title_lv4 {
  margin-bottom: 20px;
}
.policy * + .module_title_lv3 {
  margin-top: 48px;
}
.policy * + .module_title_lv4 {
  margin-top: 32px;
}
.policy * + .module_list,
.policy * + .module_ollist,
.policy * + .module_text {
  margin-top: 24px;
}
.policy a {
  text-decoration: underline;
}
.policy .module_table th {
  width: 35%;
}
.policy .module_table td {
  width: 65%;
}
.policy .module_table .module_ollist {
  margin-top: 0;
}

.policy_section + .policy_section {
  margin-top: 80px;
}

.policy a:focus-visible {
  text-decoration: none;
}

@media (any-hover: hover) {
  .policy a:hover {
    text-decoration: none;
  }
}
/* ---------------------------------------------------------

	00. executive

--------------------------------------------------------- */
.executive_wrap {
  display: flex;
  justify-content: space-between;
}

.executive_fine,
.executive_tunag {
  width: 48%;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.executive_fine .module_button,
.executive_tunag .module_button {
  margin-top: auto;
  max-width: 330px;
  margin: auto auto 0;
}

.executive_tunag .module_title_lv2 img {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .executive_wrap {
    display: block;
  }
  .executive_fine,
  .executive_tunag {
    width: 100%;
    padding: 30px 20px;
  }
  .executive_fine .module_button,
  .executive_tunag .module_button {
    max-width: 100%;
  }
  .executive_tunag {
    margin-top: 30px;
  }
}
/* ---------------------------------------------------------

	00. life_support

--------------------------------------------------------- */
.life_support .top_lifesupport_wrap .top_lifesupport_link_arrow {
  border: 5px solid #fff;
}

.life_support_intro {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .life_support_intro {
    margin-bottom: 40px;
  }
}
/* ---------------------------------------------------------

	00. consultant

--------------------------------------------------------- */
.consultant .module_title_lv3 {
  margin-bottom: 16px;
}
.consultant * + .module_title_lv3 {
  margin-top: 40px;
}

.consultant_intro {
  margin-bottom: 80px;
}

.consultant_movie {
  max-width: 480px;
  margin: 0 auto 40px;
}

.consultant_box {
  background: var(--bg-color);
  border-radius: 20px;
  padding: 48px 60px;
}

.consultant_box + .consultant_box {
  margin-top: 80px;
}

.consultant_tell {
  display: flex;
  justify-content: center;
  align-items: center;
}
.consultant_tell .module_title_lv4 {
  width: 230px;
  margin-bottom: 0;
}

.consultant_tell + .consultant_tell {
  margin-top: 10px;
}

.consultant_tell_number {
  padding-left: 105px;
  background: url(/assets/common/img/loog_freedial.png) left center no-repeat;
  background-size: 97px;
  font-size: 4rem;
  font-weight: 700;
}

.consultant_tell_text {
  max-width: 490px;
  margin: 24px auto 0;
  line-height: 2;
}

.consultant_text {
  text-align: center;
}

.consultant_table {
  max-width: 386px;
  width: 100%;
  margin: 24px auto 0;
  border-collapse: collapse;
  border: 1px solid var(--sub-color);
}
.consultant_table tr:first-child th {
  border-bottom-color: #fff;
}
.consultant_table th, .consultant_table td {
  padding: 10px 12px;
  border: 1px solid var(--sub-color);
  vertical-align: middle;
}
.consultant_table th {
  background: var(--sub-color);
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.consultant_table td {
  background: #fff;
}

.consultant_box_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.consultant_box_wrap > div {
  width: 46%;
}

.consultant_box_inner {
  width: 46%;
}
.consultant_box_inner img {
  border-radius: 20px;
  margin-bottom: 24px;
}
.consultant_box_inner .module_button + .module_button {
  margin-top: 16px;
}

.consultant_button {
  font-size: 1.6rem;
  text-align: center;
  max-width: 490px;
  margin: 40px auto 0;
}

.consultant_kateinoigaku_note {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-color);
  margin-top: 24px;
  margin-bottom: 16px;
}

.consultant_kateinoigaku_table {
  max-width: 330px;
  width: 100%;
  margin: 24px auto;
  border-collapse: collapse;
  border: 1px solid var(--sub-color);
}
.consultant_kateinoigaku_table th, .consultant_kateinoigaku_table td {
  padding: 10px 12px;
  border: 1px solid var(--sub-color);
  vertical-align: middle;
}
.consultant_kateinoigaku_table th {
  background: var(--sub-color);
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.consultant_kateinoigaku_table td {
  background: #fff;
  text-align: center;
}

.overseas_section {
  margin-top: 80px;
}

.overseas_button_wrap01 {
  max-width: 360px;
  margin: 60px auto 0;
}

.overseas_button_wrap02 {
  max-width: 360px;
  margin: 30px auto 0;
}

.overseas_button_wrap03 {
  max-width: 360px;
  margin: 40px auto 0;
}

.overseas_wrap {
  display: flex;
  justify-content: space-between;
}

.overseas_wrap_text {
  width: 57.6%;
}

.overseas_wrap_images {
  width: 36%;
}
.overseas_wrap_images img {
  border-radius: 20px;
}
.overseas_wrap_images .images_outline {
  border: 1px solid #E3E3E3;
}

.overseas_qrcode {
  max-width: 440px;
  margin: 30px auto 0;
  background: var(--bg-color);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overseas_qrcode img {
  max-width: 64px;
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .consultant_page_title .module_title_lv1 {
    transform: translateY(30px);
  }
  .consultant_page_title .module_title_lv1 span {
    bottom: 45px;
  }
  .consultant_intro {
    margin-bottom: 60px;
  }
  .consultant_box {
    padding: 20px;
  }
  .consultant_box + .consultant_box {
    margin-top: 60px;
  }
  .consultant_tell {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .consultant_tell .module_title_lv4 {
    width: 100%;
    margin-bottom: 10px;
  }
  .consultant_tell_number {
    display: inline-block;
    padding-left: 75px;
    background-size: 70px;
    font-size: 2.8rem;
  }
  .consultant_text {
    text-align: left;
  }
  .consultant_table th {
    white-space: nowrap;
  }
  .consultant_box_wrap {
    display: block;
  }
  .consultant_box_wrap > div {
    width: 100%;
  }
  .consultant_box_wrap div + div {
    margin-top: 40px;
  }
  .consultant_kateinoigaku_note {
    font-size: 1.6rem;
  }
  .consultant_kateinoigaku_table th {
    font-size: 1.6rem;
  }
  .consultant_button {
    justify-content: flex-start;
    padding-left: 5.12vw;
    font-size: 2.9vw;
  }
  .overseas_section {
    margin-top: 60px;
  }
  .overseas_button_wrap01 {
    margin: 40px auto 0;
  }
  .overseas_wrap {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
  .overseas_wrap_text {
    width: 100%;
  }
  .overseas_wrap_images {
    width: 80%;
    margin: 0 auto;
  }
  .overseas_qrcode {
    max-width: 440px;
    margin: 30px auto 0;
    background: var(--bg-color);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .overseas_qrcode img {
    max-width: 64px;
    margin-left: 15px;
  }
}
/* ---------------------------------------------------------

	00. club-off

--------------------------------------------------------- */
.club-off .module_title_lv3 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.club-off_section + .club-off_section {
  margin-top: 80px;
}

.club-off_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3%;
}
.club-off_list p {
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.4;
}
.club-off_list li {
  display: block;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px 3% 15px;
  text-align: center;
}
.club-off_list li:nth-child(4n) p {
  margin-top: 16px;
}

.club-off_movie {
  max-width: 480px;
  margin: 0 auto 40px;
}

.club-off_login {
  background: var(--bg-color);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.club-off_button_wrap {
  max-width: 360px;
  margin: -30px auto 30px;
}

.club-off_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto;
}

.club-off_wrap_images {
  width: 170px;
  margin-right: 9%;
}

.club-off_wrap_contents {
  flex: 1;
}

.club-off_wrap_contents_button_wrap {
  max-width: 330px;
  margin-top: 30px;
}

.club-off_tab_group {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .club-off_section + .club-off_section {
    margin-top: 60px;
  }
  .club-off_list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 50px;
  }
  .club-off_list li {
    padding: 20px 3% 15px;
  }
  .club-off_list li:nth-child(4n) p {
    margin-top: 16px;
  }
  .club-off_wrap_contents_button_wrap {
    margin: 30px auto 0;
  }
  .club-off_login {
    padding: 24px 20px;
  }
  .club-off_button_wrap {
    margin: -10px auto 20px;
  }
  .club-off_wrap {
    display: block;
  }
  .club-off_wrap_images {
    width: 50%;
    margin: 0 auto 30px;
  }
}
/* ---------------------------------------------------------

	00. yuyu

--------------------------------------------------------- */
.yuyu .movie_section_list {
  margin-top: 40px;
}

.yuyu_button_wrap {
  max-width: 360px;
  margin: 40px auto 0;
}

/* ---------------------------------------------------------

	00. annuity

--------------------------------------------------------- */
.annuity .module_title_lv2 {
  margin-bottom: 40px;
}
.annuity .module_title_lv3 {
  margin-bottom: 24px;
}
.annuity * + .module_title_lv3 {
  margin-top: 40px;
}

.annuity_section .tell_number {
  margin-bottom: 24px;
}

.annuity_section + .annuity_section {
  margin-top: 80px;
}

.annuity_box {
  background: var(--bg-color);
  border-radius: 20px;
  padding: 48px 60px;
  margin-top: 80px;
}

.annuity_button_wrap {
  max-width: 360px;
  margin: 40px auto 0;
}

.annuity_box_wrap {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}

.annuity_list {
  line-height: 2;
  margin-left: 1em;
  text-indent: -1em;
}

.tell_number {
  text-align: center;
  margin: 24px auto 0;
}
.tell_number span {
  padding-left: 105px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  background: url(/assets/common/img/loog_freedial.png) left center no-repeat;
  background-size: 97px;
}

@media screen and (max-width: 767px) {
  .annuity .module_title_lv2 {
    margin-bottom: 40px;
  }
  .annuity .module_title_lv3 {
    margin-bottom: 24px;
  }
  .annuity * + .module_title_lv3 {
    margin-top: 40px;
  }
  .annuity_section + .annuity_section {
    margin-top: 60px;
  }
  .annuity_box {
    padding: 20px;
    margin-top: 60px;
  }
  .annuity_box_wrap {
    padding: 15px;
  }
  .tell_number {
    text-align: center;
    margin: 24px auto 0;
  }
  .tell_number span {
    padding-left: 75px;
    font-size: 2.8rem;
    background-size: 70px;
  }
}
/* ---------------------------------------------------------

	00. monetary_gift

--------------------------------------------------------- */
.monetary_gift_section .module_table {
  margin-bottom: 24px;
}
.monetary_gift_section .module_table thead th:nth-child(1) {
  width: 50%;
}
.monetary_gift_section .module_table thead th:nth-child(2) {
  width: 25%;
}
.monetary_gift_section .module_table thead th:nth-child(3) {
  width: 25%;
}

.monetary_gift_section + .monetary_gift_section {
  margin-top: 80px;
}

.monetary_gift_note {
  line-height: 2;
  margin-left: 2.5em;
  text-indent: -2.5em;
}

@media screen and (max-width: 767px) {
  .monetary_gift_section + .monetary_gift_section {
    margin-top: 60px;
  }
}
/* ---------------------------------------------------------

	00. anshin

--------------------------------------------------------- */
.anshin .tell_number {
  margin: 30px 0 8px;
}
.anshin .module_table thead th:nth-child(1) {
  width: 9%;
}
.anshin .module_table thead th:nth-child(2) {
  width: 45%;
}
.anshin .module_table thead th:nth-child(3) {
  width: 24%;
}
.anshin .module_table thead th:nth-child(4) {
  width: 22%;
}
.anshin .module_table td {
  line-height: 2;
}
.anshin .module_table td span {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .anshin .module_table th, .anshin .module_table td {
    padding: 8px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .anshin .module_table thead th:nth-child(1) {
    width: 10%;
  }
  .anshin .module_table thead th:nth-child(2) {
    width: 49%;
  }
  .anshin .module_table thead th:nth-child(3) {
    width: 26%;
  }
  .anshin .module_table thead th:nth-child(4) {
    width: 16%;
  }
  .anshin .module_table thead th:nth-child(1),
  .anshin .module_table tbody td:nth-child(1) {
    writing-mode: vertical-rl;
    text-align: center;
  }
  .anshin .module_table td span {
    font-size: 1rem;
  }
  .anshin .module_table .module_ollist li {
    line-height: 1.5;
  }
}
/* ---------------------------------------------------------

	00. kenkokaigo

--------------------------------------------------------- */
.kenkokaigo .tell_number {
  margin: 30px 0 8px;
}
.kenkokaigo .module_table thead th:nth-child(1) {
  width: 50%;
}
.kenkokaigo .module_table thead th:nth-child(2) {
  width: 25%;
}
.kenkokaigo .module_table thead th:nth-child(3) {
  width: 25%;
}
.kenkokaigo .module_table p {
  line-height: 2;
}
.kenkokaigo .module_table p + p {
  margin-top: 20px;
}
.kenkokaigo .module_table a {
  overflow-wrap: break-word;
}

.kenkokaigo_note {
  text-align: right;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .kenkokaigo .module_table p {
    line-height: 1.5;
  }
}
/* ---------------------------------------------------------

	00. faculty_search

--------------------------------------------------------- */
.faculty_search_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.faculty_search_link {
  display: block;
}
.faculty_search_link:focus-visible .faculty_search_link_arrow {
  right: -25px;
}
.faculty_search_link:focus-visible .faculty_search_item_images img {
  transform: scale(1.1);
}

@media (any-hover: hover) {
  .faculty_search_link:hover .faculty_search_link_arrow {
    right: -25px;
  }
  .faculty_search_link:hover .faculty_search_item_images img {
    transform: scale(1.1);
  }
}
.faculty_search_item_wrap {
  position: relative;
}
.faculty_search_item_wrap .faculty_search_link_arrow {
  position: absolute;
  top: 87%;
  right: -15px;
  width: 60px;
  height: 60px;
  border: 5px solid #fff;
  background: var(--main-color);
  border-radius: 50%;
  transition: right 0.3s ease-in-out;
  z-index: 10;
}
.faculty_search_item_wrap .faculty_search_link_arrow::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: #fff;
  mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
}

.faculty_search_item_images {
  aspect-ratio: 570/336;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.faculty_search_item_images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.faculty_search_item_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (max-width: 1250px) {
  .faculty_search_item_wrap .faculty_search_link_arrow {
    right: -1.2vw;
    width: 5.6vw;
    height: 5.6vw;
    border: 0.4vw solid #fff;
  }
  .faculty_search_item_title {
    font-size: 1.44vw;
  }
}
@media screen and (max-width: 767px) {
  .faculty_search_list {
    grid-template-columns: 1fr;
  }
  .faculty_search_item_wrap .faculty_search_link_arrow {
    top: 80%;
    right: -10px;
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
  }
  .faculty_search_item_images {
    aspect-ratio: 570/336;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }
  .faculty_search_item_images img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .faculty_search_item_title {
    font-size: 1.6rem;
  }
}
.faculty_search_section .module_list,
.faculty_search_section .module_ollist,
.faculty_search_section .module_title_lv3 {
  margin-bottom: 24px;
}
.faculty_search_section .module_title_lv2 span {
  font-size: 2.4rem;
}
.faculty_search_section + .faculty_search_section {
  margin-top: 60px;
}

.faculty_search_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
}

.faculty_search_images {
  width: 48%;
}
.faculty_search_images img {
  border-radius: 20px;
}

.faculty_search_button_wrap {
  width: 44%;
}
.faculty_search_button_wrap .module_button {
  font-size: 1.6rem;
}
.faculty_search_button_wrap .module_button + .module_button {
  margin-top: 20px;
}

.faculty_search_list02 em {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
}

.faculty_search_table01 {
  margin-bottom: 24px;
}
.faculty_search_table01 thead th,
.faculty_search_table01 tbody th,
.faculty_search_table01 tbody td {
  text-align: center;
}

.yunitopia_table,
.aiai_table {
  margin-bottom: 24px;
}
.yunitopia_table thead th,
.yunitopia_table tbody th,
.yunitopia_table tbody td,
.aiai_table thead th,
.aiai_table tbody th,
.aiai_table tbody td {
  text-align: center;
}

.faculty_search_table02 {
  margin-bottom: 40px;
}
.faculty_search_table02 tbody th {
  width: 20%;
}
.faculty_search_table02 tbody td {
  width: 80%;
}

.selling_point {
  display: flex;
  justify-content: space-between;
}
.selling_point li {
  width: 48%;
}
.selling_point li img {
  border-radius: 20px;
}

.fuji_tax_info {
  margin-block-start: -0.5em;
  padding-inline: 2em;
}
.fuji_tax_info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-block-end: 0.5em;
}
.fuji_tax_info * + h3 {
  margin-block-start: 1.5em;
}
.fuji_tax_info .module_table {
  margin-block-start: 1em;
  width: auto;
}

@media screen and (max-width: 767px) {
  .faculty_search_section .module_title_lv2 span {
    font-size: 1.5rem;
  }
  .faculty_search_wrap {
    display: block;
  }
  .faculty_search_images {
    width: 100%;
    margin-bottom: 40px;
  }
  .faculty_search_button_wrap {
    width: 100%;
  }
  .faculty_search_button_wrap .module_button {
    font-size: 1.4rem;
  }
  .faculty_search_list02 em {
    font-size: 1.6rem;
  }
  .yunitopia_table {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .yunitopia_table th:nth-child(1) {
    writing-mode: vertical-rl;
    text-align: center;
    padding: 0;
    width: 10%;
  }
  .yunitopia_table th:nth-child(2) {
    width: 10%;
    writing-mode: vertical-rl;
    text-align: center;
    padding: 0;
  }
  .aiai_table {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .aiai_table th:nth-child(1) {
    writing-mode: vertical-rl;
    text-align: center;
    padding: 0;
    width: 10%;
  }
  .faculty_search_table02 tbody th {
    width: 28%;
  }
  .faculty_search_table02 tbody td {
    width: 72%;
  }
  .fuji_page_title .module_title_lv1,
  .ua_page_title .module_title_lv1 {
    transform: translateY(30px);
  }
  .fuji_page_title .module_title_lv1 span,
  .ua_page_title .module_title_lv1 span {
    bottom: 45px;
  }

  .fuji_tax_info {
    padding-inline: 1em;
  }
}
/* ---------------------------------------------------------

	00. kurashi

--------------------------------------------------------- */
.kurashi_wrapper .module_page_title::before {
  background: var(--kurashi-color);
  opacity: 0.2;
}
.kurashi_wrapper .module_title_lv1 span {
  opacity: 0.4;
  color: #fbf3d6;
  text-shadow: 1px 0 0 var(--kurashi-color), -1px 0 0 var(--kurashi-color), 0 1px 0 var(--kurashi-color), 0 -1px 0 var(--kurashi-color), 1px 1px 0 var(--kurashi-color), -1px 1px 0 var(--kurashi-color), 1px -1px 0 var(--kurashi-color), -1px -1px 0 var(--kurashi-color);
}
.kurashi_wrapper .module_title_lv3 {
  margin: 40px 0 24px;
  border-left: 8px solid var(--kurashi-color);
}
.kurashi_wrapper .module_button {
  color: var(--text-color);
  background: var(--kurashi-color);
}
.kurashi_wrapper .module_button_s {
  border: 1px solid var(--kurashi-color);
}

.kurashi_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.kurashi_list img {
  border: 1px solid var(--text-color);
  border-radius: 20px;
}

.kurashi_button_wrap01 {
  margin: 40px auto 80px;
  max-width: 330px;
}

.kurashi_button_wrap02 {
  margin: 40px auto 0;
  max-width: 330px;
}

.kurashi_button_wrap_vertical {
  position: fixed;
  top: calc(50% - 120px);
  right: 0;
}

.kurashi_button_vertical {
  display: flex;
  align-items: center;
  width: 80px;
  height: 240px;
  background: var(--kurashi-color);
  border-radius: 20px 0 0 20px;
  padding-top: 30px;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
}
.kurashi_button_vertical .module_button_icon {
  position: absolute;
  bottom: 30px;
  transform: translateX(50%);
  right: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  transition: right 0.3s ease-in-out;
}
.kurashi_button_vertical .module_button_icon::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: var(--text-color);
  mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
}
.kurashi_button_vertical:focus-visible .module_button_icon {
  right: 38%;
}

@media (any-hover: hover) {
  .kurashi_button_vertical:hover .module_button_icon {
    right: 38%;
  }
}
@media screen and (max-width: 767px) {
  .kurashi_list {
    gap: 10px;
  }
  .kurashi_button_wrap01 {
    margin: 40px auto 60px;
  }
  .kurashi_button_vertical {
    width: 45px;
    height: 180px;
    border-radius: 10px 0 0 10px;
    padding-top: 20px;
    font-size: 1.4rem;
  }
  .kurashi_button_vertical .module_button_icon {
    bottom: 20px;
    width: 24px;
    height: 24px;
  }
}
/* ---------------------------------------------------------

	00. history

--------------------------------------------------------- */
.history {
  overflow-x: hidden;
  padding-bottom: 0;
}

.history_section {
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}
.history_section::before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: calc(50% - 2px);
  top: 0;
  background: var(--sub-color);
  z-index: -1;
}

.history_section_70,
.history_section_80,
.history_section_00 {
  padding-bottom: 40px;
}

.history_section_20 {
  padding-bottom: 120px;
}

.history_section_title {
  text-align: center;
  color: var(--sub-color);
  font-size: 2.4rem;
  background: #fff;
  margin-bottom: 80px;
}
.history_section_title em {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 6rem;
}

.history_wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

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

.history_images {
  background-color: #fff;
  width: calc(50% + 100px);
}
.history_images img {
  border-radius: 20px;
}

.history_images_line img {
  border: 1px solid #B3B3B3;
}

.history_images_right {
  margin-left: -100px;
}

.history_images_left {
  margin-right: -100px;
}

.history_contents {
  background: var(--bg-sub-color);
  width: calc(50% - 50px);
  border-radius: 20px;
  position: relative;
  z-index: 10;
}

.history_contents + .history_wrap {
  margin-top: 40px;
}

.history_contents_right {
  margin: 0 0 0 auto;
}
.history_contents_right .history_date::before {
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  left: -57px;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: var(--sub-color);
}
.history_contents_right .history_date::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: -50px;
  width: 65px;
  height: 4px;
  background: var(--sub-color);
}

.history_contents_left .history_date {
  text-align: right;
}
.history_contents_left .history_date::before {
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  right: -57px;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: var(--sub-color);
}
.history_contents_left .history_date::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -50px;
  width: 65px;
  height: 4px;
  background: var(--sub-color);
}

.history_date {
  background: var(--bg-color);
  border-radius: 20px 20px 0 0;
  color: var(--sub-color);
  font-size: 3.2rem;
  font-weight: 700;
  padding: 8px 30px 12px;
  line-height: 1.2;
  position: relative;
}
.history_date span {
  font-size: 1.6rem;
}

.history_contents_inner {
  padding: 20px 30px 30px;
}

.history_contents_title {
  font-size: 2rem;
  font-weight: 700;
}

.history_contents_text {
  margin-top: 8px;
}

/* animation */
.history_contents_left,
.history_contents_right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(50px);
}

.history_images_left,
.history_images_right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.3s;
  transform: translateX(-30px);
}

.history_images_right {
  transform: translateX(30px);
}

.history_contents_left.is-show,
.history_contents_right.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

.history_images.is-show:has(+ .history_contents_left.is-show),
.history_images.is-show:has(+ .history_contents_right.is-show) {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 1100px) {
  .history_date {
    font-size: 2.9091vw;
    border-radius: 10px 10px 0 0;
    padding: 0.7273vw 2.7273vw 1.0909vw;
  }
  .history_date span {
    font-size: 1.4545vw;
  }
  .history_images img {
    border-radius: 10px;
  }
  .history_contents {
    border-radius: 10px;
  }
  .history_contents_inner {
    padding: 1.8182vw 2.7273vw 2.7273vw;
  }
  .history_contents_title {
    font-size: 1.8182vw;
  }
  .history_contents_text {
    font-size: 1.4545vw;
    margin-top: 0.7273vw;
  }
}
@media screen and (max-width: 767px) {
  .history_section {
    padding-bottom: 60px;
  }
  .history_section::before {
    left: 1em;
  }
  .history_section_70,
  .history_section_80,
  .history_section_00 {
    padding-bottom: 20px;
  }
  .history_section_20 {
    padding-bottom: 80px;
  }
  .history_section_title {
    font-size: 1.6rem;
    margin-bottom: 40px;
    text-align: left;
  }
  .history_section_title em {
    font-size: 3.6rem;
  }
  .history_wrap {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .history_wrap .history_images img {
    border-radius: 0 0 10px 10px;
  }
  .history_wrap .history_contents {
    border-radius: 10px 10px 0 0;
  }
  .history_images {
    width: calc(100% - 3em);
  }
  .history_images img {
    border-color: #ddd;
    border-top: none;
  }
  .history_images_right,
  .history_images_left {
    margin: 0 0 0 auto;
  }
  .history_contents {
    width: calc(100% - 3em);
  }
  .history_contents + .history_contents {
    margin-top: 40px;
  }
  .history_contents_right,
  .history_contents_left {
    margin-inline-start: auto;
  }
  .history_contents_right .history_date,
  .history_contents_left .history_date {
    padding-inline-start: 0.75em;
    text-align: left;
  }
  .history_contents_right .history_date::before,
  .history_contents_left .history_date::before {
    right: auto;
    left: -1.375em;
  }
  .history_contents_right .history_date::after,
  .history_contents_left .history_date::after {
    right: auto;
    left: -1.375em;
    width: 1.75em;
  }
  .history_date {
    font-size: 2.4rem;
    padding: 8px 10px 10px;
  }
  .history_date span {
    font-size: 1.2rem;
  }
  .history_contents_inner {
    padding: 10px 1.25em;
  }
  .history_contents_title {
    font-size: 1.4rem;
  }
  .history_contents_text {
    font-size: 1.2rem;
  }
  /* animation */
  .history_contents_left,
  .history_contents_right {
    transform: translateX(60px);
  }
  .history_images_left,
  .history_images_right {
    transition-delay: 0s;
    transform: translateX(60px);
  }
  .history_images:has(+ .history_contents_left.is-show),
  .history_images:has(+ .history_contents_right.is-show) {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* ---------------------------------------------------------

	00. relative_site

--------------------------------------------------------- */
.relative_site_section + .relative_site_section {
  margin-top: 80px;
}

.relative_site_images {
  margin: 24px auto 0;
}
.relative_site_images img {
  border-radius: 20px;
}

.relative_site_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}

.relative_site_item {
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
.relative_site_item .module_title_lv3 {
  margin-bottom: 24px;
}
.relative_site_item .module_text {
  margin-bottom: 24px;
}
.relative_site_item .module_button_s {
  padding: 15px 10px 15px 0;
  vertical-align: middle;
  font-size: 1.4rem;
  align-items: baseline;
}
.relative_site_item .module_button_s em {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: normal;
  margin: 0 0.25em;
}

.parliament_item {
  width: 36%;
}

.councilor_item {
  width: 61%;
}

.relative_site_button_list {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.relative_site_button_list li {
  width: 48.5%;
}

@media screen and (max-width: 1100px) {
  .relative_site_wrap {
    display: block;
  }
  .parliament_item {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
  .councilor_item {
    max-width: 600px;
    width: 100%;
    margin: 40px auto;
  }
}
@media screen and (max-width: 767px) {
  .relative_site_section + .relative_site_section {
    margin-top: 60px;
  }
  .relative_site_wrap {
    margin-top: 60px;
  }
  .relative_site_item {
    padding: 20px;
  }
  .relative_site_button_list {
    display: block;
  }
  .relative_site_button_list li {
    width: 100%;
  }
  .relative_site_button_list li + li {
    margin-top: 20px;
  }
}
/* ---------------------------------------------------------

	00. parliament

--------------------------------------------------------- */
.parliament_list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.parliament_list li {
  text-align: center;
  flex: 1;
  max-width: 232px;
}

.parliament_images {
  display: block;
  margin-inline: auto;
  border-radius: 10px;
  margin-block-end: 5px;
}

.parliament_role {
  display: inline-block;
  padding: 2px 15px;
  border-radius: 5px;
  background: var(--text-color);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.parliament_house {
  font-size: 1.4rem;
  font-weight: 700;
}

.parliament_list_item {
  display: grid;
  justify-items: center;
  row-gap: 5px;
}

.parliament_name {
  font-size: 2rem;
  font-weight: 700;
}

.parliament_list_item .parliament_sns_list {
  margin-block-start: 5px;
}

@media screen and (max-width: 767px) {
  .parliament_list {
    gap: 20px;
    flex-wrap: wrap;
  }
  .parliament_list_item {
    flex: auto;
    flex: 0 0 calc(50% - 10px);
  }
}
/* ---------------------------------------------------------

	00. prefectural_assembly

--------------------------------------------------------- */
.parliament_wrap {
  display: flex;
  justify-content: space-between;
}
.parliament_wrap + .parliament_wrap {
  border-top: 1px solid #CCCCCC;
  padding-top: 64px;
  margin-top: 64px;
}

.parliament_details {
  display: grid;
  align-content: start;
  row-gap: 10px;
  width: 19%;
  min-width: 180px;
  margin-right: 4%;
  text-align: center;
}
.parliament_details .module_button .module_button_icon {
  width: 30px;
  height: 30px;
}

.parliament_details_images {
  max-width: 90px;
  margin-inline: auto;
}
.parliament_details_images img {
  border-radius: 10px;
}

.parliament_details_wrap {
  display: grid;
  row-gap: 10px;
}

.parliament_name {
  font-size: 2rem;
  font-weight: 700;
}

.parliament_sns_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.parliament_sns_list li {
  display: grid;
  width: 28px;
}
.parliament_sns_list a {
  display: grid;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}
.parliament_sns_list a:focus-visible {
  opacity: 0.7;
}

.parliament_button_wrap {
  margin-block-start: 5px;
}

@media (any-hover: hover) {
  .parliament_sns_list a:hover {
    opacity: 0.7;
  }
}

.parliament_pdf_list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6%;
}
.parliament_pdf_list li {
  display: grid;
  align-content: start;
  justify-items: start;
  row-gap: 10px;
  position: relative;
}
.parliament_pdf_list a img {
  border-radius: 10px;
}
.parliament_pdf_list a {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
.parliament_pdf_list a:focus-visible {
  opacity: 0.7;
}
.parliament_pdf_list .badge_new::after {
  content: "NEW";
  position: absolute;
  top: -10px;
  left: -10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--main-color);
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
}

@media (any-hover: hover) {
  .parliament_pdf_list a:hover {
    opacity: 0.7;
  }
}

.parliament_pdf_number {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 5px;
  background: var(--text-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-block-end: -5px;
}

.parliament_pdf_title {
  font-size: 1.4rem;
  font-weight: 700;
}

.like_button {
  border: none;
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 15px 0 39px;
  border: 1px solid var(--sub-color);
  border-radius: 999em;
  background-color: #fff;
  background-image: url(/assets/user/img/about/relative_site/icon_like_off.svg);
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 24px;
  transition: background-color 0.3s ease;
}
.like_button span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sub-color);
  padding-left: 6px;
  transition: color 0.3s ease;
}
.like_button:focus-visible {
  background-color: var(--sub-color);
  background-image: url(/assets/user/img/about/relative_site/icon_like_on.svg);
}
.like_button:focus-visible span {
  color: #fff;
}

@media (any-hover: hover) {
  .like_button:hover {
    background-color: var(--sub-color);
    background-image: url(/assets/user/img/about/relative_site/icon_like_on.svg);
  }
  .like_button:hover span {
    color: #fff;
  }
}
.like_button_on {
  background-color: var(--sub-color);
  background-image: url(/assets/user/img/about/relative_site/icon_like_on.svg);
}
.like_button_on span {
  color: #fff;
}
.like_button_on:focus-visible {
  background-color: #fff;
  background-image: url(/assets/user/img/about/relative_site/icon_like_off.svg);
}
.like_button_on:focus-visible span {
  color: var(--sub-color);
}

@media (any-hover: hover) {
  .like_button_on:hover {
    background-color: #fff;
    background-image: url(/assets/user/img/about/relative_site/icon_like_off.svg);
  }
  .like_button_on:hover span {
    color: var(--sub-color);
  }
}
@media screen and (max-width: 767px) {
  .prefectural_assembly_page_title .module_title_lv1,
  .city_councilor_page_title .module_title_lv1 {
    transform: translateY(30px);
  }
  .prefectural_assembly_page_title .module_title_lv1 span,
  .city_councilor_page_title .module_title_lv1 span {
    bottom: 45px;
  }
  .parliament_wrap {
    display: block;
  }
  .parliament_wrap + .parliament_wrap {
    padding-top: 40px;
    margin-top: 40px;
  }
  .parliament_details {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 30px;
  }
  .parliament_details_images {
    margin-inline: 0;
  }
  .parliament_details_wrap {
    flex-grow: 0;
    align-content: center;
    row-gap: 5px;
  }
  .parliament_pdf_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 4%;
  }
  .parliament_pdf_list .badge_new::after {
    font-size: 1.2rem;
    height: 40px;
    width: 40px;
  }
}
/* ---------------------------------------------------------

	00. city_councilor

--------------------------------------------------------- */
.city_councilor .module_title_lv3 {
  margin-bottom: 24px;
}
.city_councilor * .module_title_lv3 {
  margin-top: 40px;
}
.city_councilor .module_accordion + .module_accordion {
  margin-top: 16px;
}
.city_councilor .module_accordion_title {
  font-size: 1.8rem;
}
.city_councilor .module_accordion_title .badge_new {
  position: relative;
}
.city_councilor .module_accordion_title .badge_new::after {
  content: "NEW";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -62px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--main-color);
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
}

.city_councilor_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.city_councilor_list li {
  position: relative;
}
.city_councilor_list p {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 8px;
}
.city_councilor_list a img {
  border: 1px solid #999999;
  border-radius: 10px;
}
.city_councilor_list a {
  transition: opacity 0.3s ease-in-out;
}
.city_councilor_list a:focus-visible {
  opacity: 0.7;
}
.city_councilor_list .badge_new::after {
  content: "NEW";
  position: absolute;
  top: -10px;
  left: -10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--main-color);
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
}

@media (any-hover: hover) {
  .city_councilor_list a:hover {
    opacity: 0.7;
  }
}
.city_councilor_button_wrap_vertical {
  position: fixed;
  top: calc(50% - 120px);
  right: 0;
}

.city_councilor_button_vertical {
  display: flex;
  align-items: center;
  width: 80px;
  height: 200px;
  background: var(--text-color);
  border-radius: 20px 0 0 20px;
  padding-top: 30px;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
}
.city_councilor_button_vertical .city_councilor_button_icon {
  position: absolute;
  bottom: 30px;
  transform: translateX(50%);
  right: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
}
.city_councilor_button_vertical .city_councilor_button_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 20px;
  height: 20px;
  transform: translateX(50%) translateY(-50%);
  background: url(/assets/user/img/about/relative_site/icon_area.svg) no-repeat;
  background-size: contain;
  transition: transform 0.3s ease-out;
}
.city_councilor_button_vertical:focus-visible .city_councilor_button_icon::after {
  transform: translateX(50%) translateY(-35%);
}

@media (any-hover: hover) {
  .city_councilor_button_vertical:hover .city_councilor_button_icon::after {
    transform: translateX(50%) translateY(-35%);
  }
}
.modal_area_inner {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.modal_area_inner .module_title_lv3 {
  margin-bottom: 24px;
}

.modal_are_scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.modal_area_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.modal_area_list a {
  display: inline-flex;
  align-items: center;
  padding: 2px 32px 2px 16px;
  border: 1px solid var(--text-color);
  border-radius: 999em;
  white-space: nowrap;
  position: relative;
}
.modal_area_list a span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 16px;
  height: 16px;
  background: var(--text-color);
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}
.modal_area_list a span::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 21%;
  width: 52%;
  height: 52%;
  background-color: #fff;
  mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
  -webkit-mask: url(/assets/common/img/icon_arrow.svg) center/contain no-repeat;
  transform: rotate(90deg);
}
.modal_area_list a:focus-visible span {
  transform: translateY(-30%);
}

@media (any-hover: hover) {
  .modal_area_list a:hover span {
    transform: translateY(-30%);
  }
}
@media screen and (max-width: 767px) {
  .city_councilor .module_accordion_title .badge_new::after {
    right: -52px;
    font-size: 1.2rem;
    height: 40px;
    width: 40px;
  }
  .city_councilor_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 4%;
  }
  .city_councilor_list .badge_new::after {
    font-size: 1.2rem;
    height: 40px;
    width: 40px;
  }
  .city_councilor_button_wrap_vertical {
    top: 25%;
  }
  .city_councilor_button_vertical {
    width: 45px;
    height: 150px;
    border-radius: 10px 0 0 10px;
    padding-top: 20px;
    font-size: 1.4rem;
  }
  .city_councilor_button_vertical .city_councilor_button_icon {
    bottom: 20px;
    width: 24px;
    height: 24px;
  }
  .modal_area_inner {
    padding: 20px;
  }
}
/* ---------------------------------------------------------

	00. policy_modal

--------------------------------------------------------- */
.policy_modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.policy_modal.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.policy_modal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.policy_modal_inner {
  position: relative;
  max-width: 1000px;
  max-height: 90vh;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.policy_modal_scroll {
  max-height: calc(90vh - 80px);
  overflow: hidden;
}

.policy_modal_body {
  height: 100%;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  min-height: 0;
}

.policy_modal_images {
  width: 120px;
  text-align: center;
  margin-right: 4%;
}
.policy_modal_images img {
  display: block;
  width: 90px;
  margin: 0 auto;
  border-radius: 10px;
}
.policy_modal_images p {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 8px;
}

.policy_modal_contents {
  flex: 1;
  min-width: 0;
  max-height: calc(90vh - 160px);
  overflow-y: auto;
}
.policy_modal_contents .module_title_lv3 {
  margin-bottom: 24px;
}
.policy_modal_contents .module_title_lv4 {
  margin-bottom: 8px;
}
.policy_modal_contents * + .module_title_lv4 {
  margin-top: 24px;
}
.policy_modal_contents * + .module_text {
  margin-top: 8px;
}
.policy_modal_contents .module_list {
  gap: 0;
}

.policy_modal_close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.policy_modal_close::before,
.policy_modal_close::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 60%;
  height: 2px;
  margin: auto;
  background: #333;
}

.policy_modal_close::before {
  transform: rotate(45deg);
}

.policy_modal_close::after {
  transform: rotate(-45deg);
}

body.is-modal-open {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .policy_modal_scroll {
    max-height: calc(90vh - 40px);
    overflow-y: auto;
  }
  .policy_modal_body {
    height: auto;
    padding: 20px;
    display: block;
    min-height: auto;
  }
  .policy_modal_images {
    margin: 0 auto 24px;
  }
  .policy_modal_contents {
    max-height: none;
    overflow-y: visible;
  }
}/*# sourceMappingURL=style.css.map */
/* ---------------------------------------------------------

	00. search

--------------------------------------------------------- */
.gsc-control-cse.gsc-control-cse-ja {
    padding-block-start: 0;
}

.gsc-above-wrapper-area table.gsc-above-wrapper-area-container {
    margin-block-start: 0;
}

.gsc-results-wrapper-visible {
	margin-block-start: -7em;
	padding-block-start: 7em;
	.gsc-above-wrapper-area,
	.gsc-wrapper {
		max-width: 100%;
	}
}
