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

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: inherit;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
  padding: 0;
  border: none;
  background-color: transparent;
}

input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.gothic {
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.en {
  font-family: "Montserrat", sans-serif;
}

:root {
  --extend: min(calc(( 50vw - 50% ) * -1), 0px);
  --sideW: min(4.66vw, 70px);
  --headerHeight: 156px;
  --sectionWrap: 5em;
  --contentsWideS: 1016px;
  --contentsWideM: 1220px;
  --contentsWideL: 1360px;
}

@media screen and (max-width: 767px) {
  :root {
    --sideW: 6.8vw;
    --headerHeight: 70px;
    --sectionWrap: 3.75em;
  }
}
@media screen and (max-width: 1023px) {
  :root {
    --headerHeight: 70px;
  }
}
html {
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--headerHeight);
}

body {
  font: 400 16px/1.8 "Zen Kaku Gothic Antique", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.08em;
  color: #343434;
  text-align: left;
  counter-reset: number 0;
}

.l_container_wrap {
  position: relative;
  padding-top: var(--headerHeight);
}
.l_container_wrap:before {
  content: "";
  display: block;
  width: min(41.73vw, 626px);
  height: calc(100vh + 124px);
  background-color: #12757C;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l_container_wrap:before {
    width: 81.3vw;
    height: 282px;
  }
}

@media screen and (max-width: 767px) {
  .home .l_container_wrap:before {
    height: calc(100vh + 54px);
    width: 81.3vw;
  }
}

.l_container {
  position: relative;
}

.section_wrap {
  padding: var(--sectionWrap) 0;
}

.inner, .inner_l, .inner_m, .inner_s {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}

.inner_s {
  max-width: calc(var(--contentsWideS) + var(--sideW) * 2);
}

.inner_m {
  max-width: calc(var(--contentsWideM) + var(--sideW) * 2);
}

.inner_l {
  max-width: calc(var(--contentsWideL) + var(--sideW) * 2);
}

.add_ttl {
  border-left: 4px solid #12757C;
  margin: 1.5em 0 1em;
  padding-left: 0.75em;
  line-height: 1.6;
  font-size: 1.75em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .add_ttl {
    font-size: 1.3em;
  }
}

.add_ttl_02 {
  position: relative;
  margin: 1.5em 0 0.5em;
  line-height: 1.6;
  font-size: 1.5em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .add_ttl_02 {
    font-size: 1.2em;
  }
}

a.add_link {
  text-decoration: underline !important;
}
a.add_link:hover {
  opacity: 0.7;
}

a.add_link_02 {
  margin: 1.5em 0;
  width: min(100%, 285px);
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #135257 url(../images/ico_arrow_right_01_white.svg) no-repeat center right 1em/12px;
  color: #fff;
  font-weight: 700;
  text-decoration: none !important;
}
a.add_link_02:hover {
  filter: brightness(1.5);
  box-shadow: 0 0 10px rgba(52, 52, 52, 0.5);
}

span.marker_org {
  background: linear-gradient(transparent 75%, #FFDE00 75%);
}

.login h1 a {
  width: 100px !important;
  height: 100px !important;
  background: url(../images/login_logo.png) no-repeat center/contain !important;
}

.post_content p {
  line-height: 2;
  margin: 1.5em 0;
}
@media screen and (max-width: 767px) {
  .post_content p {
    font-size: 15px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-weight: inherit;
  line-height: 1.5;
}

label {
  cursor: pointer;
}

button {
  padding: 0;
  border: none;
  color: inherit;
}

picture {
  display: contents;
}
picture img {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
  width: auto;
}

.opacity, .footer .grecaptcha_text a {
  transition: 0.5s;
}
@media (hover: hover) {
  .opacity:hover, .footer .grecaptcha_text a:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.tab {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .tab {
    display: block;
  }
}

.hidden {
  display: none !important;
}

.img_only {
  display: block;
}
.img_only img {
  display: block;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 1em;
  border-radius: 0;
  border: 1px solid #12757C;
  background: #fff;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-size: 16px !important;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 1em 28px 1em 1em;
  border-radius: 0;
  border: 1px solid #12757C;
  background: url(../images/icon_tri_select.svg?ver=20250730) no-repeat center right 10px/10px 8px #fff;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-size: 16px !important;
}

textarea {
  height: 15em;
}

input[type=checkbox] {
  accent-color: #12757C;
  inline-size: 1.5em;
  block-size: 1.5em;
}

input[type=radio] {
  accent-color: #12757C;
  inline-size: 1.5em;
  block-size: 1.5em;
}

.dlist_form .group {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 2.25em;
}
@media screen and (max-width: 767px) {
  .dlist_form .group {
    flex-direction: column;
    gap: 0.75em;
  }
}
.dlist_form .group:last-child {
  border-top: 1px solid #343434;
  margin-top: 60px;
  padding-top: 40px;
}
.dlist_form .group dt {
  width: 287px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .dlist_form .group dt {
    width: 100%;
  }
}
.dlist_form .group dt.require:after {
  content: "必須";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background-color: #12757C;
  width: 45px;
  height: 23px;
}
.dlist_form .group dd {
  flex-grow: 1;
}
.dlist_form .group dd .list_kome {
  margin-top: 0.5em;
  font-size: 0.8125rem;
}

span[data-name=your-policy] .wpcf7-list-item {
  margin: 0;
}
span[data-name=your-policy] .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 1em;
}
span[data-name=your-policy] input {
  border-radius: 0;
}
span[data-name=your-policy] .policy_link {
  position: relative;
}
span[data-name=your-policy] .policy_link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #343434;
}

span[data-name=your-content] .wpcf7-list-item {
  margin: 0;
  display: block;
  margin-bottom: 0.75em;
  font-weight: 500;
}
span[data-name=your-content] .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
span[data-name=your-content] .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 1em;
}
span[data-name=your-content] input {
  border-radius: 0;
}

.wpcf7-submit,
.btn_back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 60px;
  border-radius: 50px;
  margin: 3.125rem auto 0;
  background-color: #12757C;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: 0.3s;
}
.wpcf7-submit:hover,
.btn_back:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn_back {
  margin-left: 0;
}

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

.grecaptcha-badge {
  visibility: hidden;
}

@keyframes fade_in {
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
[class^=fade_anim] {
  opacity: 0;
}
[class^=fade_anim].js-active {
  animation: fade_in 0.3s ease-out forwards;
}

.fade_anim.js-active {
  animation: fade_in 0.3s ease-in forwards;
}

.fade_anim_bottom {
  transform: translate(0, 60px);
}

.fade_anim_left {
  transform: translate(-40px, 0);
}

.fade_anim_right {
  transform: translate(60px, 0);
}

@keyframes scrolldown {
  0% {
    height: 100%;
    top: unset;
    bottom: 0;
  }
  50% {
    height: 0;
    top: unset;
    bottom: 0;
  }
  51% {
    height: 0;
    top: 0;
    bottom: unset;
  }
  100% {
    height: 100%;
    top: 0;
    bottom: unset;
  }
}
.ttl_cmn_01 {
  color: #12757C;
  margin-bottom: 40px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.ttl_cmn_01:before {
  content: attr(data-en);
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01:before {
    font-size: 50px;
  }
}

.ttl_cmn_02 {
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 25px;
}
.ttl_cmn_02 span {
  background: linear-gradient(transparent 75%, #EBFF00 75%);
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    font-size: 2rem;
  }
}

.para_cmn_01, .top_sec_10 p, .top_sec_08 h2 + p, .top_sec_07 h2 + p, .top_sec_06__textbox, .top_sec_06 h2 + p, .top_sec_03__subttl + p, .top_sec_03__text, .top_sec_01 h2 + p {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .para_cmn_01, .top_sec_10 p, .top_sec_08 h2 + p, .top_sec_07 h2 + p, .top_sec_06__textbox, .top_sec_06 h2 + p, .top_sec_03__subttl + p, .top_sec_03__text, .top_sec_01 h2 + p {
    font-size: 0.875rem;
  }
}

.btn_style_demo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #135257 url(../images/ico_arrow_right_01_white.svg) no-repeat center right 10px/8px;
  color: #fff;
  font-weight: 700;
}
.btn_style_demo:hover {
  filter: brightness(1.5);
  box-shadow: 0 0 10px rgba(52, 52, 52, 0.5);
}

.btn_style_download {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #12757C url(../images/ico_arrow_right_01_white.svg) no-repeat center right 10px/8px;
  color: #fff;
  font-weight: 700;
}
.btn_style_download:hover {
  filter: brightness(1.5);
  box-shadow: 0 0 10px rgba(52, 52, 52, 0.5);
}

.btn_cmn_01 {
  width: 100%;
  max-width: 592px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #EBFF00 url(../images/ico_arrow_right_01_dgreen.svg) no-repeat center right 18px/11px;
  color: #135257;
  font-size: 1.125rem;
  font-weight: 700;
}
.btn_cmn_01:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 10px rgba(52, 52, 52, 0.5);
}
@media screen and (max-width: 767px) {
  .btn_cmn_01 {
    height: 68px;
  }
}

.btn_cmn_02 {
  width: 100%;
  aspect-ratio: 260/45;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #12757C url(../images/ico_arrow_right_01_white.svg) no-repeat center right 10px/8px;
  color: #fff;
  font-weight: 700;
}
.btn_cmn_02:hover {
  filter: brightness(1.5);
  box-shadow: 0 0 10px rgba(52, 52, 52, 0.5);
}

.btn_cmn_03 {
  width: 100%;
  max-width: 592px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #12757C url(../images/ico_arrow_right_01_white.svg) no-repeat center right 18px/11px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}
.btn_cmn_03:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 10px rgba(52, 52, 52, 0.5);
}
@media screen and (max-width: 767px) {
  .btn_cmn_03 {
    height: 68px;
  }
}

.list_kome > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_kome > li:before {
  content: "※";
}

.list_dot > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_dot > li:before {
  content: "・";
}

.list_ast > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_ast > li:before {
  content: "＊";
}

.list_maru > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_maru > li:before {
  content: "●";
}

.list_number {
  counter-reset: number 0;
}
.list_number > li {
  counter-increment: number 1;
}
.list_number > li:before {
  content: counter(number);
}

.list_news {
  flex-grow: 1;
}
.list_news li {
  margin-bottom: 10px;
  border-bottom: 1px solid #12757C;
}
@media screen and (max-width: 767px) {
  .list_news li {
    margin-bottom: 0;
  }
}
.list_news li:last-child {
  margin-bottom: 0;
}
.list_news li a {
  display: flex;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .list_news li a {
    font-size: 1rem;
    padding: 20px 0;
    flex-direction: column;
  }
}
.list_news li a .date {
  width: 124px;
  flex-shrink: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .list_news li a .date {
    width: 100%;
    margin-bottom: 2px;
  }
}
.list_news li a .ttl {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.list_news li a:hover {
  color: #12757C;
}

.navigation.pagination {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .navigation.pagination {
    margin-top: 40px;
  }
}
.navigation.pagination .nav-links .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #12757C;
  width: 18px;
  aspect-ratio: 1/1.8;
  border-bottom: 2px solid transparent;
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .navigation.pagination .nav-links .page-numbers {
    font-size: 1.125rem;
  }
}
.navigation.pagination .nav-links .page-numbers:first-child {
  margin-left: 0;
}
.navigation.pagination .nav-links .page-numbers.current, .navigation.pagination .nav-links .page-numbers:hover {
  border-color: #12757C;
}

.single_pagination {
  margin: 5rem 0 0;
  padding: 1.75rem 1.5rem;
  border-top: 1px solid #12757C;
  border-bottom: 1px solid #12757C;
  display: flex;
  align-items: center;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .single_pagination {
    padding: 1.25rem 0;
    position: relative;
    gap: 10%;
    font-size: 14px;
  }
}
.single_pagination li a:hover {
  color: #12757C;
}
.single_pagination li.prev {
  width: 100%;
}
.single_pagination li.prev a {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.single_pagination li.archive {
  flex-shrink: 0;
}
.single_pagination li.archive:before, .single_pagination li.archive:after {
  content: "｜";
}
@media screen and (max-width: 767px) {
  .single_pagination li.archive:before, .single_pagination li.archive:after {
    content: none;
  }
}
.single_pagination li.archive a {
  margin: 0 1em;
}
@media screen and (max-width: 767px) {
  .single_pagination li.archive {
    position: absolute;
    top: calc(100% + 1em);
    left: 50%;
    transform: translateX(-50%);
  }
}
.single_pagination li.next {
  width: 100%;
}
.single_pagination li.next a {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.loading.end {
  opacity: 0;
  visibility: hidden;
}

.hbm_btn {
  padding: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70px;
  aspect-ratio: 1/1;
  position: relative;
  background-color: #135257;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
}
.hbm_btn .box {
  display: block;
  width: 50%;
  position: relative;
}
.hbm_btn .box .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.5s;
}
@media screen and (min-width: 1024px) {
  .hbm_btn {
    display: none !important;
  }
}

[data-hbm-bar="3"] .box {
  aspect-ratio: 2/1;
  margin: 15% 0 10%;
}
[data-hbm-bar="3"] .bar:nth-child(1) {
  top: 0;
}
[data-hbm-bar="3"] .bar:nth-child(2) {
  top: 50%;
}
[data-hbm-bar="3"] .bar:nth-child(3) {
  top: 100%;
}
[data-hbm-bar="3"].js-active .bar:nth-child(1) {
  top: 50%;
  transform: rotate(135deg);
}
[data-hbm-bar="3"].js-active .bar:nth-child(2) {
  top: 50%;
  transform: rotateY(90deg);
}
[data-hbm-bar="3"].js-active .bar:nth-child(3) {
  top: 50%;
  transform: rotate(-135deg);
}

[data-hbm-bar="2"] .box {
  aspect-ratio: 3/1;
  margin: 15% 0;
}
[data-hbm-bar="2"] .bar:nth-child(1) {
  top: 0;
}
[data-hbm-bar="2"] .bar:nth-child(2) {
  top: 100%;
}
[data-hbm-bar="2"].js-active .bar:nth-child(1) {
  top: 50%;
  transform: rotate(160deg);
}
[data-hbm-bar="2"].js-active .bar:nth-child(2) {
  top: 50%;
  transform: rotate(-160deg);
}

.header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  transition: 0.3s;
}
.header__container {
  height: var(--headerHeight);
  display: flex;
  align-items: center;
  gap: 3%;
  justify-content: space-between;
  transition: height 0.3s;
}
@media screen and (max-width: 1023px) {
  .header__container {
    padding-right: 0;
    background-color: #12757C;
  }
}
.header.js-active {
  background-color: rgba(255, 255, 255, 0.8);
}
.header.js-active .header__container {
  height: 120px;
}
.header.js-active .gnavi .main {
  margin-top: 10px;
}
.header__logo {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .header__logo {
    width: 196px;
  }
}

.gnavi {
  flex-shrink: 0;
}
.gnavi_wrap {
  display: contents;
}
@media screen and (max-width: 1023px) {
  .gnavi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #12757C;
    color: #fff;
    overflow: scroll;
    transition: 0.3s;
    transform: translateX(100%);
  }
  .gnavi.js-active {
    transform: translateX(0);
  }
  .gnavi_wrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    padding: calc(var(--headerHeight) * 1.24) var(--sideW) 0;
  }
}
.gnavi .sub {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1023px) {
  .gnavi .sub {
    flex-direction: column;
    margin-top: 40px;
  }
}
.gnavi .sub li {
  width: 100%;
  max-width: 260px;
}
@media screen and (max-width: 1023px) {
  .gnavi .sub li {
    max-width: 275px;
  }
}
.gnavi .sub li a {
  height: 45px;
}
@media screen and (max-width: 1023px) {
  .gnavi .sub li a {
    height: 64px;
  }
}
@media screen and (max-width: 1023px) {
  .gnavi .sub .btn_cmn_02 {
    background-color: #fff;
    color: #135257;
    background-image: url(../images/ico_arrow_right_01_dgreen.svg);
  }
}
.gnavi .main {
  transition: 0.3s;
  margin-top: 20px;
  display: flex;
  gap: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .gnavi .main {
    flex-direction: column;
    align-items: center;
    gap: 1em;
    font-size: 22px;
  }
}
.gnavi .main li a {
  display: block;
  padding: 5px 0;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .gnavi .main li a {
    padding: 0;
  }
}
.gnavi .main li a:after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: #343434;
  transition: 0.3s;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1023px) {
  .gnavi .main li a:after {
    content: none;
  }
}
.gnavi .main li a:hover:after {
  width: 100%;
  left: 0;
}

.footer {
  margin-top: 124px;
  position: relative;
  background-color: #135257;
  color: #fff;
  padding: 4.25rem 0 5rem;
  text-align: center;
}
.footer__logo {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer__logo .image:nth-child(1) {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer__logo .image:nth-child(1) {
    max-width: 250px;
    margin: 0 auto 1rem;
  }
}
.footer__logo .image:nth-child(2) {
  margin-top: 0.55rem;
}
.footer__logo .image:nth-child(2) img {
  width: 122px;
}
@media screen and (max-width: 767px) {
  .footer__logo .image:nth-child(2) {
    margin-top: 0.375rem;
  }
}
.footer address {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}
.footer .copyright {
  margin-top: 1.5rem;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 0.75rem;
  }
}
.footer .grecaptcha_text {
  margin-top: 1.5rem;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer .grecaptcha_text {
    font-size: 0.75rem;
  }
}
.footer .grecaptcha_text a {
  text-decoration: underline;
}

.follow-sp {
  position: fixed;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  padding: 13px;
  transition: 0.3s;
  transform: translateY(100%);
  background-color: #135257;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .follow-sp {
    display: none !important;
  }
}
.follow-sp.js-active {
  transform: translateY(0%);
}
.follow-sp li {
  width: 100%;
}
.follow-sp li a {
  font-size: 0.75rem;
  height: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.top_hero {
  display: flex;
  align-items: center;
  height: max(100vh - var(--headerHeight), 500px);
  position: relative;
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .top_hero {
    margin-bottom: 7.5rem;
  }
}
.top_hero--main {
  position: relative;
  margin-left: calc(var(--sideW) * -0.5);
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_hero--main {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top_hero--main {
    font-size: 21px;
    margin-left: 0;
  }
}
.top_hero--main span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  background-color: #135257;
  color: #fff;
  padding: 17px 15px 17px 20px;
  position: relative;
  transform-origin: center left;
  transition: 0.5s;
  transform: rotateY(90deg);
}
@media screen and (max-width: 767px) {
  .top_hero--main span {
    margin-bottom: 8px;
  }
}
.top_hero--main span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #135257;
  transition: 0.5s;
}
.top_hero--main span:nth-child(1):after {
  transition-delay: 0.3s;
}
.top_hero--main span:nth-child(2):after {
  transition-delay: 0.6s;
}
.top_hero--main span:nth-child(3):after {
  transition-delay: 0.9s;
}
.top_hero--main span:nth-child(4):after {
  transition-delay: 0.6s;
}
.top_hero--main span:nth-child(5):after {
  transition-delay: 0.9s;
}
.top_hero--main span:nth-child(6):after {
  transition-delay: 1.2s;
}
.top_hero--main.js-active span {
  transform: rotateY(0);
}
.top_hero--main.js-active span:after {
  width: 0;
}
.top_hero--sub {
  position: relative;
  margin-top: 0.75em;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .top_hero--sub {
    margin-top: 14px;
    font-size: 1.125rem;
  }
}
.top_hero--sub span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  clip-path: inset(0 100% 0 0);
  transition: 0.5s 1.2s;
}
@media screen and (max-width: 767px) {
  .top_hero--sub span {
    transition: 0.5s 1.5s;
  }
}
.top_hero--sub.js-active span {
  clip-path: inset(0 0 0 0);
}
.top_hero--scroll {
  display: block;
  writing-mode: vertical-rl;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: absolute;
  bottom: -30px;
  left: var(--sideW);
  padding: 0 0 40px 10px;
}
@media screen and (max-width: 767px) {
  .top_hero--scroll {
    font-size: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
}
.top_hero--scroll:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  animation: scrolldown 3s ease-in-out infinite;
}
.top_hero:before {
  content: "";
  display: block;
  width: 83.2%;
  height: 100%;
  background: url(../images/top_hero_01.jpg?ver=20250730) no-repeat center/cover;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .top_hero:before {
    width: 100%;
  background: url(../images/top_hero_02.jpg?ver=20250812) no-repeat center/cover;
  }
}

.top_sec_01 {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top_sec_01 {
    margin-bottom: 5rem;
  }
}
.top_sec_01__ttl {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_01__ttl {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_01__ttl {
    font-size: 1.4375em;
  }
}
.top_sec_01__ttl span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #12757C;
  color: #fff;
  margin: 0 auto 20px;
  padding: 10px 30px;
  position: relative;
}
.top_sec_01__ttl span:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .top_sec_01__ttl span {
    margin-bottom: 10px;
    padding: 10px 24px;
  }
}
.top_sec_01__ttl span:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #12757C;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
}
.top_sec_01__ttl.js-active span:after {
  width: 0;
}
.top_sec_01__ttl.js-active span:nth-child(2):after {
  transition-delay: 0.3s;
}
.top_sec_01__ttl.js-active span:nth-child(3):after {
  transition-delay: 0.3s;
}
.top_sec_01__ttl.js-active span:nth-child(4):after {
  transition-delay: 0.6s;
}
.top_sec_01 h2 + p {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_sec_01 h2 + p {
    padding: 0 var(--sideW);
    text-align: left;
    font-size: 0.875rem;
  }
}
.top_sec_01__list {
  width: 100%;
  max-width: 752px;
  display: flex;
  flex-wrap: wrap;
  gap: 42px 9.84%;
  margin: 0 auto 60px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_01__list {
    gap: 42px 6%;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_01__list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.top_sec_01__list > li {
  text-align: center;
  width: 26.7733333333%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_01__list > li {
    width: 29.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_01__list > li {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    text-align: left;
    gap: 18px;
  }
}
.top_sec_01__list > li .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .top_sec_01__list > li .image {
    width: 114px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.top_sec_01__list > li .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_sec_01__list > li p small {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 1.77;
  text-align: center;
  margin: 10px -16% 0;
}
@media screen and (max-width: 767px) {
  .top_sec_01__list > li p small {
    text-align: left;
    margin: 10px 0 0;
    font-size: 0.75rem;
  }
}
.top_sec_01__movie {
  width: 100%;
  max-width: var(--contentsWideS);
  margin: 0 auto;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.top_sec_01__movie iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.top_sec_02 {
  padding: 100px 0;
  background: url(../images/top_sec_02_01.jpg) no-repeat center/cover;
  position: relative;
  margin-bottom: 7.5rem;
}
.top_sec_02:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 117, 124, 0.72);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_sec_02 {
    background: url(../images/top_sec_02_01_sp.jpg) no-repeat center/cover;
    padding: 4.5rem 0 5rem;
    margin-bottom: 5rem;
  }
}
.top_sec_02 .inner {
  position: relative;
}
.top_sec_02 h2 {
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 3.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top_sec_02 h2 {
    margin-bottom: 16px;
    font-size: 2.5rem;
  }
}
.top_sec_02 h2 + p {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top_sec_02 h2 + p {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}
.top_sec_02 dl {
  width: 100%;
  max-width: 896px;
  margin: 0 auto 20px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_02 dl {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_02 dl {
    font-size: 1rem;
  }
}
.top_sec_02 dl .item {
  display: flex;
  border-radius: 100px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_sec_02 dl .item {
    flex-direction: column;
  }
}
.top_sec_02 dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em calc(4.4% + 55px) 2rem 4.4%;
  width: 100%;
  background-color: #fff;
  border-radius: 100px 0 0 100px;
  margin-right: -55px;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 55px) 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .top_sec_02 dl dt {
    clip-path: unset;
    width: auto;
    margin-right: calc(var(--sideW) * -1);
    padding: 1.375em var(--sideW) 1.5em;
    justify-content: flex-start;
  }
}
.top_sec_02 dl dd {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 2em 4.4% 2rem calc(4.4% + 17px);
  width: 100%;
  background-color: #135257;
  color: #fff;
  border-radius: 0 100px 100px 0;
  margin-left: -17px;
  clip-path: polygon(55px 0, 100% 0%, 100% 100%, 0 100%);
}
.top_sec_02 dl dd small {
  font-size: 0.875rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_02 dl dd small {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_02 dl dd {
    font-size: 0.875rem;
    width: auto;
    justify-content: flex-start;
    margin-right: calc(var(--sideW) * -1);
    margin-left: 0;
    margin-top: -13px;
    padding: 1.75em var(--sideW) 1.75em 58px;
  }
  .top_sec_02 dl dd small {
    font-size: 0.75rem;
  }
}
.top_sec_02 dl + p {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top_sec_02 dl + p {
    font-size: 1rem;
  }
}

.top_sec_03 {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top_sec_03 {
    margin-bottom: 5rem;
  }
}
.top_sec_03__ttl {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .top_sec_03__ttl {
    font-size: 1.625rem;
    margin-bottom: 16px;
  }
}
.top_sec_03__text {
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .top_sec_03__text {
    text-align: left;
    padding: 0 var(--sideW);
    margin-bottom: 30px;
  }
}
.top_sec_03__subttl {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 23px;
  padding-top: 4.25rem;
  background: url(../images/top_sec_03_02.svg) no-repeat center top/75px;
}
@media screen and (max-width: 767px) {
  .top_sec_03__subttl {
    background-size: 60px;
  }
}
.top_sec_03__subttl + p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_sec_03__subttl + p {
    text-align: left;
    padding: 0 var(--sideW);
    letter-spacing: 0.04em;
  }
}

.top_sec_04 {
  margin-bottom: 7.5rem;
  padding-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_sec_04 {
    padding-bottom: 40px;
    margin-bottom: 5rem;
  }
}
.top_sec_04:before {
  content: "";
  display: block;
  width: 100%;
  height: 354px;
  background-color: #E4F1F2;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_sec_04:before {
    height: 270px;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_04 {
    margin-bottom: 5rem;
  }
  .top_sec_04 .ttl_cmn_01 {
    padding: 0 var(--sideW);
  }
}
.top_sec_04 .top_case--slider {
  overflow: hidden;
  margin: 0 var(--extend);
  padding: 0 calc(var(--sideW) * 2);
}
.top_sec_04 .splide__track {
  overflow: visible;
}
.top_sec_04 .splide.is-initialized:not(.is-active) .splide__list {
  display: flex !important;
  gap: 4.4%;
}
.top_sec_04 .splide.is-initialized:not(.is-active) .splide__list li {
  width: 30.4%;
}
.top_sec_04 .splide__slide {
  width: 100%;
}
.top_sec_04 .splide__slide .image {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .top_sec_04 .splide__slide .image {
    margin-bottom: 1.5rem;
  }
}
.top_sec_04 .splide__slide .image:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 66.13%;
}
.top_sec_04 .splide__slide .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.top_sec_04 .splide__slide h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .top_sec_04 .splide__slide h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_04 .splide__slide p {
    font-size: 0.875rem;
  }
}

.top_sec_05 {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top_sec_05 {
    margin-bottom: 5rem;
  }
}
.top_sec_05 h2 + p {
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top_sec_05 h2 + p {
    font-weight: 400;
  }
}
.top_sec_05__wrapper {
  margin: 0 var(--extend);
  padding: 100px var(--sideW);
  background-color: #12757C;
}
@media screen and (max-width: 767px) {
  .top_sec_05__wrapper {
    padding: 60px var(--sideW);
  }
}
.top_sec_05 .inner_s {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.65%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_05 .inner_s {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .inner_s {
    flex-direction: column;
    padding: 0;
  }
}
.top_sec_05 .plan {
  background-color: #fff;
  border-radius: 10px;
  width: 31.5666666667%;
  padding: 30px 3% 32px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top_sec_05 .plan {
    width: 100%;
    padding: 30px var(--sideW) 40px;
    margin-bottom: 30px;
  }
  .top_sec_05 .plan:last-child {
    margin-bottom: 0;
  }
}
.top_sec_05 .plan h3 {
  color: #12757C;
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #12757C;
  margin-bottom: 18px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_05 .plan h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .plan h3 {
    font-size: 1.8rem;
  }
}
.top_sec_05 .plan .price {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_05 .plan .price {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .plan .price {
    font-size: 1.125rem;
  }
}
.top_sec_05 .plan .price .num {
  font-family: "Roboto", sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #12757C;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_05 .plan .price .num {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .plan .price .num {
    font-size: 3rem;
  }
}
.top_sec_05 .plan .price .year {
  font-size: 1.125rem;
}
.top_sec_05 .plan dl {
  font-weight: 500;
  margin-top: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_05 .plan dl {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .plan dl {
    font-size: 0.875rem;
  }
}
.top_sec_05 .plan dt:before {
  content: "■";
}
.top_sec_05 .plan .ask {
  display: grid;
  place-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  flex-grow: 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_05 .plan .ask {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .plan .ask {
    padding: 22px 0 0;
  }
}
.top_sec_05 .option {
  margin-top: 40px;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 5% 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_05 .option {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .option {
    margin-top: 0;
    flex-direction: column;
    gap: 16px;
    padding: 30px var(--sideW);
  }
}
.top_sec_05 .option h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-right: 1px solid #343434;
  padding-right: 40px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_05 .option h3 {
    flex-shrink: 0;
    font-size: 1.25rem;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .option h3 {
    font-size: 1.375rem;
    border-right: 0;
    border-bottom: 1px solid #343434;
    width: 100%;
    padding: 0 0 0.75em;
    text-align: center;
  }
}
.top_sec_05 .option div {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top_sec_05 .option div {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .option div {
    font-size: 1rem;
  }
}
.top_sec_05 .option + p {
  margin: 20px 0 40px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top_sec_05 .option + p {
    font-size: 1rem;
    margin: 20px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_05 .btn_cmn_01 {
    margin: 14px auto 0;
  }
}

.top_sec_06 {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top_sec_06 {
    margin-bottom: 5rem;
  }
}
.top_sec_06 h2 + p {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_sec_06 h2 + p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
.top_sec_06 .js-scrollable {
  margin-bottom: 40px;
  padding: 10px 0;
}
.top_sec_06 .scroll-hint-icon {
  z-index: 1;
  width: 130px;
  height: 90px;
}
.top_sec_06 ul {
  display: flex;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .top_sec_06 ul {
    width: 984px;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_06 ul {
    flex-direction: column;
  }
}
.top_sec_06 ul > li {
  width: 100%;
  color: #fff;
  padding: 25px 30px 25px 56px;
}
@media screen and (max-width: 767px) {
  .top_sec_06 ul > li {
    padding: 30px 35px 20px;
  }
}
.top_sec_06 ul > li h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 18px;
}
.top_sec_06 ul > li .num {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top_sec_06 ul > li .num {
    line-height: 1.3;
  }
}
.top_sec_06 ul > li .num span {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top_sec_06 ul > li .num span {
    line-height: 1.3;
  }
}
.top_sec_06 ul > li p {
  line-height: 1.625;
}
.top_sec_06 ul > li:nth-child(1) {
  background-color: #90D3D8;
  position: relative;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .top_sec_06 ul > li:nth-child(1) {
    padding-top: 15px;
  }
}
.top_sec_06 ul > li:nth-child(1):after {
  content: "";
  display: block;
  width: 26px;
  height: 100%;
  background-color: #90D3D8;
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(100% - 1px);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 767px) {
  .top_sec_06 ul > li:nth-child(1):after {
    width: 100%;
    height: 21px;
    top: calc(100% - 1px);
    left: 0;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }
}
.top_sec_06 ul > li:nth-child(2) {
  background-color: #12757C;
  position: relative;
}
.top_sec_06 ul > li:nth-child(2):after {
  content: "";
  display: block;
  width: 26px;
  height: 100%;
  background-color: #12757C;
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(100% - 1px);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 767px) {
  .top_sec_06 ul > li:nth-child(2):after {
    width: 100%;
    height: 21px;
    top: calc(100% - 1px);
    left: 0;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }
}
.top_sec_06 ul > li:nth-child(3) {
  background-color: #135257;
  position: relative;
}
.top_sec_06 ul > li:nth-child(3):after {
  content: "";
  display: block;
  width: 26px;
  height: calc(100% + 2px);
  background-color: #fff;
  position: absolute;
  z-index: 1;
  top: -1px;
  left: calc(100% - 26px);
  clip-path: polygon(100% 0, 100% 100%, 0% 100%, 100% 50%, 0% 0%);
}
@media screen and (max-width: 767px) {
  .top_sec_06 ul > li:nth-child(3):after {
    background-color: #135257;
    width: 100%;
    height: 21px;
    top: calc(100% - 1px);
    left: 0;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }
}
.top_sec_06__image {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
.top_sec_06__textbox {
  text-align: center;
}

.top_sec_07 {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top_sec_07 {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .top_sec_07 h2 {
    line-height: 1.7;
  }
}
.top_sec_07 h2 + p {
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top_sec_07 h2 + p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.top_sec_07__container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_sec_07__container {
    flex-direction: column;
  }
}
.top_sec_07__container .image {
  margin-right: -5.57%;
}
@media screen and (max-width: 767px) {
  .top_sec_07__container .image {
    margin: 0 var(--extend) 12px;
  }
}
.top_sec_07__container .text {
  flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top_sec_07__container .text {
    width: 100%;
  }
}
.top_sec_07__container .text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.64;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_sec_07__container .text h3 {
    font-size: 1.375rem;
  }
}
.top_sec_07__container .text li {
  font-weight: 500;
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .top_sec_07__container .text li {
    font-size: 0.875rem;
    padding-left: 30px;
  }
}
.top_sec_07__container .text li:last-child {
  margin-bottom: 0;
}
.top_sec_07__container .text li:before {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
  background: url(../images/ico_check_01.svg) no-repeat center/contain;
  position: absolute;
  top: 1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_sec_07__container .text li:before {
    width: 20px;
    top: 2px;
  }
}
.top_sec_07 .btn_cmn_03 {
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .top_sec_07 .btn_cmn_03 {
    margin-top: 40px;
  }
}

.top_sec_08 {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top_sec_08 {
    margin-bottom: 5rem;
  }
}
.top_sec_08 h2 + p {
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top_sec_08 h2 + p {
    padding: 0 var(--sideW);
  }
}
.top_sec_08 dl {
  margin: 0 var(--extend);
  padding: 100px var(--sideW);
  background-color: #E4F1F2;
}
@media screen and (max-width: 767px) {
  .top_sec_08 dl {
    padding: 60px var(--sideW);
  }
}
.top_sec_08 dl .item {
  max-width: var(--contentsWideS);
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 2.8% 50px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .top_sec_08 dl .item {
    padding: 40px var(--sideW) 35px;
  }
}
.top_sec_08 dl .item:last-of-type {
  margin-bottom: 0;
}
.top_sec_08 dl .item dt {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.33;
  padding-left: 72px;
  margin-bottom: 2.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_sec_08 dl .item dt {
    font-size: 1.125rem;
    padding-left: 46px;
    margin-bottom: 14px;
  }
}
.top_sec_08 dl .item dt:before {
  content: "Q.";
  font-family: "Roboto", sans-serif;
  font-size: 3.75rem;
  font-weight: 500;
  color: #12757C;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top_sec_08 dl .item dt:before {
    font-size: 40px;
    transform: translateY(-75%);
  }
}
.top_sec_08 dl .item dd {
  padding-left: 72px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_sec_08 dl .item dd {
    font-size: 0.875rem;
    padding-left: 46px;
  }
}
.top_sec_08 dl .item dd:before {
  content: "A.";
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: #12757C;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(25%);
}
@media screen and (max-width: 767px) {
  .top_sec_08 dl .item dd:before {
    font-size: 30px;
  }
}

.top_sec_09 {
  margin-bottom: 100px;
}
.top_sec_09 .inner_s {
  display: flex;
  align-items: flex-start;
  gap: 7.58%;
}
@media screen and (max-width: 767px) {
  .top_sec_09 .inner_s {
    flex-direction: column;
  }
}
.top_sec_09 .inner_s .box_left {
  flex-shrink: 0;
  width: min(100%, 272px);
}
@media screen and (max-width: 767px) {
  .top_sec_09 .inner_s .box_left {
    display: contents;
  }
  .top_sec_09 .inner_s .box_left h2 {
    order: 1;
    margin-bottom: 16px;
  }
  .top_sec_09 .inner_s .box_left a {
    order: 3;
    margin: 40px auto 0;
  }
}
.top_sec_09 .list_news {
  padding-top: 6.15%;
}
@media screen and (max-width: 767px) {
  .top_sec_09 .list_news {
    order: 2;
    padding-top: 0;
  }
}
.top_sec_09__link {
  width: 188px;
  height: 42px;
}

.top_sec_10 {
  margin-bottom: 7.5rem;
  padding: 8.125rem 0;
  background: url(../images/top_sec_10_02.jpg) no-repeat center/cover;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_sec_10 {
    background: url(../images/top_sec_10_02_sp.jpg) no-repeat center/cover;
    padding: 8.125rem 0 6rem;
    margin-bottom: 5rem;
  }
}
.top_sec_10:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 117, 124, 0.72);
  position: absolute;
  top: 0;
  left: 0;
}
.top_sec_10 .inner_s {
  position: relative;
}
.top_sec_10 h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_sec_10 h2 {
    font-size: 1.75rem;
  }
}
.top_sec_10 h2:before {
  content: "";
  display: block;
  width: 408px;
  aspect-ratio: 408/164;
  background: url(../images/top_sec_10_01.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top_sec_10 h2:before {
    width: min(100%, 305px);
    transform: translate(-50%, -70%);
  }
}
.top_sec_10 h2 span {
  position: relative;
}
.top_sec_10 p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_sec_10 p {
    text-align: left;
  }
}

.top_sec_11__ttl {
  text-align: center;
  margin-bottom: 50px;
}

.contact_lead {
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact_lead {
    font-size: 0.9375rem;
    margin-bottom: 2.5rem;
  }
}

.dlist_domain {
  background-color: #F7F7F7;
  padding: 30px 3.7%;
}
@media screen and (max-width: 767px) {
  .dlist_domain {
    padding: 30px var(--sideW);
  }
}
.dlist_domain dt {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.dlist_domain dd {
  margin-top: 0.75em;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

.page_hero {
  width: 83.86%;
  margin-left: auto;
  height: 350px;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_hero {
    height: 180px;
  }
}
.page_hero img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.layout_col_2 {
  display: flex;
  align-items: flex-start;
  gap: var(--sideW);
  padding: 0 var(--sideW);
}
@media screen and (max-width: 767px) {
  .layout_col_2 {
    flex-direction: column;
    gap: 0;
  }
}
.layout_col_2 .box_left {
  flex-shrink: 0;
  width: calc(min(41.73vw, 626px) - var(--sideW));
}
@media screen and (max-width: 767px) {
  .layout_col_2 .box_left {
    width: 100%;
  }
}
.layout_col_2 .box_left .ttl_cmn_01 {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .layout_col_2 .box_left .ttl_cmn_01 {
    color: #12757C;
  }
}
.layout_col_2 .box_right {
  flex-grow: 1;
}

.archive.category .ttl_cmn_01 {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .archive.category .ttl_cmn_01 {
    color: #12757C;
  }
}

.single-post .ttl_cmn_01 {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .single-post .ttl_cmn_01 {
    color: #12757C;
  }
}

.article .date {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .article .date {
    font-size: 15px;
  }
}
.article .ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 0.75em;
  border-bottom: 1px solid #12757C;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .article .ttl {
    font-size: 1.6rem;
    padding-bottom: 1em;
  }
}

.page-privacy-policy .section_wrap {
  padding-bottom: 0;
}
.page-privacy-policy .ttl_cmn_01 {
  margin-bottom: 0;
  color: #fff;
}
.page-privacy-policy .ttl_cmn_01:before {
  font-size: min(3.6vw, 56px);
}
@media screen and (max-width: 767px) {
  .page-privacy-policy .ttl_cmn_01:before {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .page-privacy-policy .ttl_cmn_01 {
    color: #12757C;
    margin-bottom: 20px;
  }
}

.policy_hero {
  padding: 3.75rem var(--sideW);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .policy_hero {
    padding: 5rem var(--sideW) 0;
  }
}
.policy_hero .ttl_cmn_01 {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .policy_hero .ttl_cmn_01:before {
    font-size: 32px;
  }
}

.txt_polisy {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .txt_polisy {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .dlist_policy {
    font-size: 15px;
  }
}
.dlist_policy dt {
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .dlist_policy dt {
    font-size: 16px;
  }
}
.dlist_policy_inner {
  margin-bottom: 40px;
}