@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
}

p {
  margin-block: 1em;
}

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

strong {
  font-weight: bold;
}

html {
  overflow-block: scroll;
  scroll-padding-block-start: 72px;
}

img {
  max-inline-size: 100%;
}

ol {
  padding-inline-start: 1.2em;
}

:root {
  --txt-color: #323232;
  --base-font: Noto sans JP, "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --base-color: #FFF;
  --theme-color: #2574DA;
  --bg-color: #DDE9F9;
  --accent-color: #F37B05;
  --accent-color-d: #AB5602;
  --accent-color-w: #FFE3C8;
  --link-color: #1423CC;
  --content-size-l: 1376px;
  --content-size-m: 1200px;
  --padding-pc: 2rem;
  --padding-tab: 1rem;
  --box-shadow: 0 0 1rem rgba(0, 0, 0, .5);
  --hover-anm: all .2s ease-in 0s;
  --scroll-anm: all .2s ease-in 0s;
}

ul {
  margin-block: 1rem;
  padding-inline: 0;
  list-style: none;
}
ul li {
  position: relative;
  padding-inline-start: 2rem;
}
ul li + li {
  margin-block-start: 1rem;
}
ul li::before {
  content: "";
  display: block;
  position: absolute;
  inset-inline-start: 0.7em;
  inset-block-start: 0.5em;
  inline-size: 0.5rem;
  block-size: 0.5rem;
  border-radius: 50%;
  background-color: var(--theme-color);
}

.wrapper {
  display: block;
  max-width: 1366px;
  margin: 0 auto;
  padding-block: 0;
  padding-inline: 32px;
}
@media screen and (max-width: 1000px) {
  .wrapper {
    padding: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 8px;
  }
}

.word_wrap {
  display: inline-block;
  font-weight: inherit;
}

.al_r {
  text-align: right;
}

.stripe-area {
  padding-block: 4rem;
  padding-inline: 1rem;
  background: var(--bg-color) url(../img/top/bg_stripe.png) left top repeat;
}
.stripe-area__inner {
  box-sizing: border-box;
  max-inline-size: var(--content-size-l);
  margin-inline: auto;
  padding-block: 1.5rem;
  padding-inline: 5rem;
  border-radius: 1rem;
  background: var(--base-color);
}
@media screen and (max-width: 1376px) {
  .stripe-area__inner {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .stripe-area__inner {
    padding-inline: var(--padding-tab);
  }
}
@media screen and (max-width: 480px) {
  .stripe-area {
    padding-block: 2rem;
  }
}

.bg-area {
  margin-block: 6.5rem 0;
  padding-block: 4rem;
  padding-inline: 1rem;
  background: var(--bg-color);
}
.bg-area .wrapper {
  padding-inline: 0;
}
@media screen and (max-width: 768px) {
  .bg-area {
    margin-block: 3.5rem 0rem;
    padding-block: 2rem;
  }
}
.bg-area .center-ttl {
  margin-block-start: 0rem;
}

.btn-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  padding-block: 0.375rem 0.5625rem;
  padding-inline: 1rem 2.375rem;
  border-radius: 9999px;
  background: var(--link-color);
  color: var(--base-color);
  transition: inherit;
}
.btn-link__txt {
  font-weight: 600;
  transition: all 0.5s ease-in 0s;
}
.btn-link::before {
  content: "";
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: -130%;
  inline-size: 120%;
  block-size: 100%;
  background: var(--base-color);
  transform: skewX(-25deg);
}
.btn-link::after {
  content: "";
  display: block;
  position: absolute;
  inset-inline-end: 1rem;
  inset-block: 0;
  inline-size: 0.5rem;
  block-size: 0.5rem;
  border-inline-end: 1px var(--base-color) solid;
  border-block-end: 1px var(--base-color) solid;
  margin: auto;
  transform: rotate(-45deg);
  transition: all 0.5s ease-in 0s;
}
.btn-link:hover {
  opacity: 1;
  outline: 1px var(--link-color) solid;
}
.btn-link:hover .btn-link__txt {
  position: relative;
  z-index: 1;
  color: var(--link-color);
}
.btn-link:hover::before {
  animation: skewanime 0.5s forwards;
}
.btn-link:hover::after {
  border-color: var(--link-color);
  inset-inline-end: 0.75rem;
}
.btn-link--contact {
  padding-block: 0.5625rem 0.75rem;
  padding-inline: 2.25rem 3.625rem;
  border: 1px var(--accent-color-d) solid;
  border-radius: 0.5rem;
  box-shadow: 0 4px 0 var(--accent-color-d);
  background-color: var(--accent-color);
}
.btn-link--contact .btn-link__txt {
  font-weight: bold;
}
.btn-link--contact:hover {
  outline: none;
}
.btn-link--contact:hover .btn-link__txt {
  color: var(--accent-color);
}
.btn-link--contact:hover::after {
  border-color: var(--accent-color);
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}
body.sub .content {
  padding-block: 1vw 10vw;
}
@media screen and (max-width: 768px) {
  body.sub .content {
    padding-block: 5vw 20vw;
  }
}
@media screen and (max-width: 480px) {
  body.sub .content {
    padding-block: 5vw 30vw;
  }
}

.breadcrumb__list {
  display: flex;
  gap: 0 1rem;
  list-style: none;
}
.breadcrumb__item + .breadcrumb__item {
  position: relative;
  padding-inline-start: 1.5em;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "＞";
  position: absolute;
  inset-inline-start: 0em;
  inset-block-start: 0.1em;
  font-weight: bold;
  font-size: 90%;
}

.two-col {
  display: grid !important;
  grid-template-columns: 1fr 272px;
  gap: 0 24px;
}
.two-col__side .local_menu {
  position: sticky;
  inset-block-start: 200px;
}
.two-col__side .local_menu__list {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .two-col__side .local_menu__list {
    font-size: 2.625vw;
  }
}
@media screen and (max-width: 480px) {
  .two-col__side .local_menu__list {
    font-size: 3.5vw;
  }
}
.two-col__side .local_menu__item {
  margin-block: 0 3rem;
}
.two-col__side .local_menu__link .font-weight {
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 3vw;
  }
  .two-col__main {
    order: 2;
  }
  .two-col__side {
    display: grid;
    grid-template-columns: auto;
    place-content: center;
    order: 1;
  }
  .two-col__side .local_menu {
    border: 1px var(--theme-color) solid;
    border-radius: 8px;
    background: var(--bg-color);
  }
  .two-col__side .local_menu__list {
    padding-inline: 1em;
  }
  .two-col__side .local_menu__item {
    margin-block: 0 1rem;
  }
}

.page-ttl {
  background: var(--theme-color);
  clip-path: url(#visual_mask);
}
.page-ttl__inner {
  padding-block: 17rem 5vw;
}
@media screen and (max-width: 1200px) {
  .page-ttl__inner {
    padding-block-start: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .page-ttl__inner {
    padding-block-start: 10rem;
  }
}
.page-ttl__txt {
  position: relative;
  padding-inline-start: 3em;
  font-size: 2rem;
  color: var(--base-color);
}
@media screen and (max-width: 768px) {
  .page-ttl__txt {
    font-size: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .page-ttl__txt {
    font-size: 8vw;
  }
}
.page-ttl__txt::before {
  content: attr(data-txt);
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 2.2em;
  box-sizing: border-box;
  inline-size: 1.5em;
  aspect-ratio: 1;
  overflow: hidden;
  padding-inline-start: 0.8em;
  border-radius: 50%;
  background: var(--base-color);
  color: var(--theme-color);
}
@media screen and (max-width: 768px) {
  .page-ttl__txt {
    padding-inline-start: 1.5em;
  }
  .page-ttl__txt::before {
    inset-inline-start: 0.7em;
  }
}

.menu-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
}
.menu-col__ttl {
  padding-block: 0.5em;
  color: var(--base-color);
  background: var(--theme-color);
  text-align: center;
}
* + .menu-col__ttl {
  margin-block-start: 2em;
}
.menu-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-col__item {
  margin: 0;
  padding-block: 0.5em;
  padding-inline: 0.5em;
  border-block-end: 1px solid var(--txt-color);
}
.menu-col__item::before {
  display: none;
}
.menu-col__cate {
  display: inline-block;
  padding-inline: 0.5em;
  font-size: 0.9em;
}
.menu-col__cate::before {
  content: "：";
}
@media screen and (max-width: 768px) {
  .menu-col {
    grid-template-columns: 1fr;
  }
}

.thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  inline-size: fit-content;
  margin-inline: auto;
}
.thumbnail img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.center-ttl {
  position: relative;
  margin-block: 6.5rem 3.5rem;
  color: var(--theme-color);
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .center-ttl {
    font-size: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .center-ttl {
    font-size: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .center-ttl {
    margin-block: 3.5rem 2rem;
    font-size: 6vw;
  }
}
.center-ttl__txt {
  display: inline-block;
  position: relative;
  padding-inline: 1rem;
}
.center-ttl__txt::before, .center-ttl__txt::after {
  content: "";
  display: block;
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  block-size: 2px;
  inline-size: 0.5rem;
  margin: auto;
  background: var(--accent-color);
}
.center-ttl__txt::after {
  inset-inline: auto 0;
}

.img-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-block: 2rem;
}
@media screen and (max-width: 1000px) {
  .img-list {
    gap: 2rem;
  }
}
@media screen and (max-width: 900px) {
  .img-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .img-list {
    grid-template-columns: 1fr;
  }
}
.img-list__item {
  margin: 0;
  padding: 0;
  border: 2px var(--theme-color) solid;
  border-radius: 1rem;
  overflow: hidden;
}
.img-list__item::before {
  display: none;
}
.img-list__img {
  position: relative;
  inline-size: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.img-list__img img {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: var(--hover-anm);
}
.img-list__txt {
  padding-block: 1rem 1.5rem;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .img-list__txt {
    font-size: 3.75vw;
  }
}
@media screen and (max-width: 480px) {
  .img-list__txt {
    font-size: 5vw;
  }
}
.img-list__txt small {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .img-list__txt {
    padding-block: 0.5rem;
  }
}
.img-list__link:hover .img-list__img img {
  inline-size: 110%;
  block-size: 110%;
  opacity: 1;
}

.map_wrap {
  position: relative;
  block-size: 0;
  overflow: hidden;
  padding-block-start: 90.4838709677%;
}
.map_wrap iframe {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  inline-size: 100%;
  block-size: 100%;
  border: none;
}
@media screen and (max-width: 768px) {
  .map_wrap {
    padding-block-start: 46.1538461538%;
  }
}

table.noborder {
  line-height: 1.5;
  border: none;
  font-family: "Times New Roman";
  font-size: 1rem;
}
table.noborder th, table.noborder td {
  padding: 0.2em;
  border: none;
  text-align: left;
}
table.noborder th {
  min-inline-size: 5em;
  padding-inline-end: 1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  table.noborder {
    font-size: 3vw;
  }
}
@media screen and (max-width: 480px) {
  table.noborder {
    font-size: 4vw;
  }
}

.bg_scroll {
  position: relative;
  padding-block-start: 60%;
  overflow: hidden;
}
.bg_scroll img {
  position: absolute;
  inline-size: 100%;
  inset-inline-start: 0;
  inset-block-start: -28%;
  transition: all 8s linear 0s;
}

.bg_scroll_v {
  position: relative;
  padding-block-start: 101%;
  overflow: hidden;
}
.bg_scroll_v img {
  position: absolute;
  inline-size: 100%;
  inset-inline-start: 0;
  inset-block-start: 0%;
}

.scroll.slideUp {
  opacity: 0;
  transform: translate(0, 24px);
  transition: all 0.4s ease-out 0s;
}
.scroll.slideUp.slide2 {
  transition: all 0.4s ease-out 0.3s;
}
.scroll.slideUp.slide3 {
  transition: all 0.4s ease-out 0.6s;
}
.scroll.slideUp.slide4 {
  transition: all 0.4s ease-out 0.9s;
}
.scroll.slideUp.slide5 {
  transition: all 0.4s ease-out 1.2s;
}
.scroll.slideUp[data-flg=true] {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 900px) {
  .scroll.slideUp {
    transition: all 0.4s ease-out 0s !important;
  }
}

.loader {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 200;
  inline-size: 100%;
  block-size: 100%;
  background: var(--theme-color);
}
.loader__inner {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  inline-size: 201px;
  block-size: 241px;
  margin: auto;
}
.loader__inner img {
  vertical-align: top;
}
.loader-fade {
  position: fixed;
  inset-block: 0;
  inset-inline: 0;
  z-index: 150;
  background: var(--base-color);
}

.pagetop {
  inset-inline-end: 16px;
  z-index: 20;
  inline-size: 4rem;
  text-align: center;
  font-weight: bold;
  line-height: 1;
}

.copyright {
  margin: 0;
  padding-block: 0.5rem;
  background: var(--theme-color);
  color: var(--base-color);
  text-align: end;
}

.def_page {
  display: flow-root;
}
.def_page em {
  font-style: italic;
}
.def_page h1 {
  font-size: 2em;
  font-weight: bold;
}
.def_page h2 {
  clear: both;
  margin: 2em 0 0.8em;
  padding: 0.5em;
  padding-block: 0.2em;
  background: #DDD;
  border: 1px var(--theme-color) solid;
  border-block-start: none;
  border-inline-start: none;
  border-radius: 4px;
  font-size: 1.5em;
  font-weight: normal;
}
.def_page h3 {
  clear: both;
  margin: 24px 0 16px;
  border-block-end: 1px currentColor solid;
  font-size: 1.25em;
  font-weight: bold;
}
.def_page h4 {
  clear: both;
  margin: 16px 0 16px;
  font-size: 1em;
  font-weight: bold;
}
.def_page h5 {
  clear: both;
  margin: 16px 0 16px;
  font-size: 0.8em;
  font-weight: bold;
}
.def_page h6 {
  clear: both;
  margin: 16px 0 16px;
  font-size: 0.6em;
  font-weight: bold;
}
.def_page ul, .def_page ol {
  padding-inline-start: 2.5em;
}
.def_page blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
.def_page img {
  height: auto;
  max-inline-size: 100%;
}
.def_page .aligncenter {
  display: block;
  margin-block: 0;
  margin-inline: auto;
}
.def_page .alignright {
  float: right;
  margin-block: 0 2.5em;
  margin-inline: 20px 0;
}
@media screen and (max-width: 768px) {
  .def_page .alignright {
    display: block;
    float: none;
    inline-size: fit-content;
    margin-inline: auto;
  }
}
.def_page .alignleft {
  float: left;
  margin-block: 0 2.5em;
  margin-inline: 0 20px;
}
@media screen and (max-width: 768px) {
  .def_page .alignleft {
    display: block;
    float: none;
    inline-size: fit-content;
    margin-inline: auto;
  }
}
.def_page .wp-caption {
  border: 1px solid #ddd;
  text-align: start;
  background-color: #f3f3f3;
  padding: 5px;
  border-radius: 3px;
}
.def_page .wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}
.def_page .wp-caption p.wp-caption-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .def_page .wp-caption p.wp-caption-text {
    font-size: 2.625vw;
  }
}
@media screen and (max-width: 480px) {
  .def_page .wp-caption p.wp-caption-text {
    font-size: 3.5vw;
  }
}
.def_page .is-style-clear {
  overflow: hidden;
}
.def_page .has-text-align-center {
  text-align: center;
}
.def_page .has-text-align-right {
  text-align: right;
}
.def_page .wp-block-table table {
  margin-block: 48px;
  margin-inline: auto;
  border-collapse: collapse;
}
.def_page .wp-block-table table th, .def_page .wp-block-table table td {
  border: 1px #888 solid;
  padding-block: 0.5em;
  padding-inline: 1em;
  text-align: start;
}
.def_page .wp-block-table table tr:nth-child(odd) {
  background: #EEE;
}
.def_page .single__ttl {
  padding-inline: 0.5em;
  padding-block-end: 0.5em;
  border-block-end: 2px var(--theme-color) solid;
}
.def_page .single__cate__link {
  display: inline-block;
  padding-inline: 0.5em;
  border-radius: 9999px;
  background: var(--theme-color);
  color: var(--base-color);
}
.def_page .thumbnail {
  float: right;
}

.nav-links {
  display: flex;
  justify-content: center;
  margin-block: 40px 0;
  margin-inline: auto;
  max-inline-size: 800px;
  line-height: 1;
}
.nav-links .page-numbers {
  display: inline-block;
  box-sizing: border-box;
  inline-size: 1.5em;
  block-size: 1.5em;
  margin-block: 0;
  margin-inline: 1%;
  padding-block: 0.2em;
  padding-inline: 0.5em;
}
.nav-links .page-numbers.current {
  color: var(--base-color);
  border-radius: 50%;
  background: #003C64;
}
.nav-links .page-numbers.prev, .nav-links .page-numbers.next {
  width: auto;
}
.nav-links a {
  color: inherit;
}

html.menu_open_body {
  overflow: hidden;
}

body {
  position: relative;
  line-height: 1.5;
  min-inline-size: 320px;
  padding-inline: 0;
  background: #FFF;
  color: var(--txt-color);
  font-family: var(--base-font);
  background: var(--base-color);
}
@media screen and (max-width: 480px) {
  body {
    font-size: 4vw;
  }
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: var(--hover-anm);
}
a:hover {
  color: #003C64;
  opacity: 0.8;
}

.header-label {
  line-height: 2;
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 90;
  box-sizing: border-box;
  inline-size: 100%;
  padding-inline: var(--padding-pc);
  background: var(--theme-color);
}
@media screen and (max-width: 1000px) {
  .header-label {
    padding-inline: var(--padding-tab);
  }
}
@media screen and (max-width: 768px) {
  .header-label {
    padding-inline: 8px;
  }
}
.header-label__outer {
  display: flex;
  justify-content: space-between;
  max-inline-size: var(--content-size-l);
  margin-inline: auto;
  padding-block: 0.25rem;
  color: var(--base-color);
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .header-label__outer {
    font-size: 2.25vw;
  }
}
@media screen and (max-width: 480px) {
  .header-label__outer {
    font-size: 3vw;
  }
}
.header-label__outer p {
  margin: 0;
}
.header-label__outer p a {
  color: var(--base-color);
}
.header-label__outer p a img {
  inline-size: 0.875rem;
  margin-inline-end: 0.5em;
  vertical-align: sub;
}
@media screen and (max-width: 370px) {
  .header-label__outer {
    font-size: 3.5vw;
  }
}
.header-label__inner {
  display: grid;
  grid-template-columns: auto 1fr;
}
.header-label__inner p {
  padding-inline: 1rem;
}
.header-label__inner p + p {
  position: relative;
  padding-inline-end: 0;
}
.header-label__inner p + p::before {
  content: "";
  display: block;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: -1px;
  inline-size: 1px;
  block-size: 70%;
  background: var(--base-color);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header-label__inner p {
    display: none;
  }
}
.header-wrapper {
  position: relative;
  max-inline-size: var(--content-size-l);
  margin-inline: auto;
}
@media screen and (max-width: 1376px) {
  .header-wrapper {
    margin-inline: var(--padding-pc);
  }
}
.header-head {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 1rem;
  place-content: center;
  position: absolute;
  z-index: 50;
  inset-block-start: 2rem;
  inset-inline-end: 0;
  padding-block: 1rem;
}
.header-head__inner--phone {
  margin: 0;
  color: var(--base-color);
  font-weight: bold;
  font-size: 2rem;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 768px) {
  .header-head__inner--phone {
    font-size: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .header-head__inner--phone {
    font-size: 8vw;
  }
}
.header-head__inner--phone img {
  inline-size: 2.0625rem;
  vertical-align: bottom;
}
.header-head__inner--phone * {
  color: var(--base-color);
}
.header-head__inner--link {
  display: flex;
  align-items: center;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .header-head {
    display: none;
  }
}
.header-body {
  display: grid;
  grid-template-columns: min(30%, 317px) 1fr;
  align-items: center;
  position: fixed;
  z-index: 90;
  inset-block-start: 7rem;
  inset-inline: 0;
  box-sizing: border-box;
  padding-block: 1rem;
  padding-inline: 72px;
  background: var(--base-color);
  border-radius: 9999px;
  max-inline-size: var(--content-size-l);
  margin: auto;
  transition: var(--scroll-anm);
}
@media screen and (max-width: 1376px) {
  .header-body {
    inset-inline: var(--padding-pc);
    padding-inline: 40px;
    padding-block: 0;
  }
}
@media screen and (max-width: 1200px) {
  .header-body {
    inset-block-start: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .header-body {
    inset-inline: var(--padding-tab);
  }
}
@media screen and (max-width: 768px) {
  .header-body {
    grid-template-columns: min(50%, 317px) 1fr;
    inset-inline: 8px;
    padding-inline: 24px;
  }
}
@media screen and (max-width: 480px) {
  .header-body {
    padding-inline: 16px;
    border-radius: 1rem;
  }
}
.header-body__inner--site-name {
  max-inline-size: 317px;
}
.header-body__inner--site-name img {
  vertical-align: top;
}
.header-body__inner--mq-show {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header-body__inner--mq-show {
    display: flex;
    justify-content: end;
    gap: 0 1rem;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .header-body__inner--mq-show {
    gap: 0 0.5rem;
  }
}
.header-body__logo {
  margin-block: 1em;
}
.header-body__contact {
  margin: 0;
}
.header-body__contact--phone {
  margin: 0;
  color: var(--link-color);
  font-weight: bold;
  font-size: 2rem;
}
.header-body__contact--phone svg {
  inline-size: 2.0625rem;
  vertical-align: bottom;
  fill: var(--link-color);
}
@media screen and (max-width: 900px) {
  .header-body__contact--phone {
    font-size: 1.5rem;
  }
  .header-body__contact--phone svg {
    inline-size: 1.8rem;
    block-size: 1.8rem;
    vertical-align: text-bottom;
  }
}
@media screen and (max-width: 768px) {
  .header-body__contact--phone {
    display: none;
  }
}
.header-body__contact--link .btn-link {
  padding-inline: 1.25rem 2.625rem;
}
@media screen and (max-width: 480px) {
  .header-body__contact--link .btn-link {
    padding-inline: 0.5rem;
    padding-block: 0.3rem;
  }
  .header-body__contact--link .btn-link::after {
    display: none;
  }
}
.header-body .menu-open {
  display: inline-block;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  position: relative;
  z-index: 110;
  inline-size: 40px;
  line-height: 1;
  vertical-align: top;
  padding: 0;
  padding-block-start: 32px;
  border-radius: 4px;
  text-align: center;
}
.header-body .menu-open::before {
  content: "";
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  inline-size: 100%;
  block-size: 4px;
  border-radius: 9999px;
  background: var(--link-color);
  transition: all 1s ease 0s;
}
.header-body .menu-open__txt {
  display: block;
  font-size: 0.75rem;
  color: var(--link-color);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header-body .menu-open__txt {
    font-size: 2.25vw;
  }
}
@media screen and (max-width: 480px) {
  .header-body .menu-open__txt {
    font-size: 3vw;
  }
}
.header-body .menu-open__txt::before {
  content: "";
  display: block;
  position: absolute;
  inset-block-start: 12px;
  inset-inline-end: 0;
  inline-size: 100%;
  block-size: 4px;
  border-radius: 9999px;
  background: var(--link-color);
  transition: all 1s ease 0s;
}
.header-body .menu-open::after {
  content: "";
  display: block;
  position: absolute;
  inset-block-end: 4px;
  inset-block-start: 24px;
  inline-size: 100%;
  block-size: 4px;
  border-radius: 9999px;
  background: var(--link-color);
  transition: all 1s ease 0s;
}
.header-body .menu-open:focus {
  outline: 2px var(--theme-color) solid;
}
.header-body__nav__list {
  display: flex;
  justify-content: flex-end;
  gap: 0 3rem;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 1376px) {
  .header-body__nav__list {
    gap: 0 2rem;
  }
}
.header-body__nav__item {
  margin: 0;
  padding: 0;
}
.header-body__nav__item::before {
  display: none;
}
.header-body__nav__item a {
  color: inherit;
}
.header-body__nav__item--company, .header-body__nav__item--contact {
  display: none;
}
.header-body__nav__footer {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header-body__nav {
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 100%;
    inline-size: 100%;
    block-size: 100%;
    background: var(--theme-color);
    transition: var(--hover-anm);
  }
  .header-body__nav__list {
    display: none;
    padding-block-start: 5rem;
    padding-inline: 1.5rem;
  }
  .header-body__nav__item {
    margin-block-start: 2rem;
  }
  .header-body__nav__item a {
    color: var(--base-color);
  }
  .header-body__nav__item--company {
    display: block;
  }
  .header-body__nav__item--contact {
    display: block;
    position: absolute;
    inline-size: 100%;
    inset-block-end: 2rem;
    inset-inline-start: 0;
    text-align: center;
  }
  .header-body__nav__footer {
    display: block;
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    margin: 0;
    background: var(--base-color);
    text-align: center;
  }
}

html.menu_open_body .header-body .menu-open::before {
  inset-block-start: 10px;
  background: var(--base-color);
  transform: rotate(-315deg);
}
html.menu_open_body .header-body .menu-open::after {
  inset-block-start: 10px;
  background: var(--base-color);
  transform: rotate(135deg);
}
html.menu_open_body .header-body .menu-open__txt {
  color: var(--base-color);
}
html.menu_open_body .header-body .menu-open__txt::before {
  background: var(--base-color);
  transform: rotate(180deg);
  opacity: 0;
}
html.menu_open_body .header-body__nav {
  inset-inline-start: 0;
}
html.menu_open_body .header-body__nav__list {
  display: block;
}

body.js_scroll .header-body {
  position: fixed;
  inset-block-start: 3rem;
  inset-inline: 0;
  margin: auto;
  padding-block: 0;
  box-shadow: var(--box-shadow);
}
@media screen and (max-width: 1376px) {
  body.js_scroll .header-body {
    inset-inline: var(--padding-pc);
  }
}
@media screen and (max-width: 1000px) {
  body.js_scroll .header-body {
    inset-inline: var(--padding-tab);
  }
}
@media screen and (max-width: 768px) {
  body.js_scroll .header-body {
    inset-inline: 8px;
  }
}
body.js_scroll .header-body__inner--site-name {
  max-inline-size: 200px;
}

.visual {
  display: grid;
  grid-template-rows: 1fr;
  block-size: calc(100vh - 2rem);
  min-block-size: 760px;
  max-block-size: 980px;
  overflow: hidden;
  background: var(--theme-color);
}
@media screen and (max-width: 1000px) {
  .visual {
    block-size: 95vw;
    min-block-size: 0;
  }
}
@media screen and (max-width: 768px) {
  .visual {
    block-size: 110vw;
  }
}
.visual__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  clip-path: url(#visual_mask);
}
.visual__txt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0rem;
  position: absolute;
  inset-block-start: 16rem;
  inset-inline: 0;
  max-inline-size: var(--content-size-l);
  margin-inline: auto;
}
@media screen and (max-width: 1376px) {
  .visual__txt {
    inline-size: 95vw;
  }
}
@media screen and (max-width: 1200px) {
  .visual__txt {
    inset-block-start: 10rem;
  }
}
@media screen and (max-width: 1000px) {
  .visual__txt {
    grid-template-columns: 1fr;
    grid-template-rows: 15vw;
  }
}
@media screen and (max-width: 768px) {
  .visual__txt {
    inset-block-start: 11rem;
  }
}
@media screen and (max-width: 480px) {
  .visual__txt {
    inset-block-start: 7.5rem;
  }
}
.visual__txt__img {
  inline-size: 296px;
  align-self: center;
}
@media screen and (max-width: 1376px) {
  .visual__txt__img {
    inline-size: 20vw;
  }
}
@media screen and (max-width: 1000px) {
  .visual__txt__img {
    inline-size: 20vw;
    margin-inline: auto;
    text-align: center;
  }
}
.visual__txt__txt {
  position: relative;
  color: var(--base-color);
  font-weight: bold;
  text-shadow: 0 0.25rem 0.35rem #000;
  overflow: hidden;
  margin-inline: auto;
  margin-block: 0;
}
body.loaded .visual__txt__txt {
  --skewX: 0deg;
  --cover-x: 101%;
  --x: 0;
}
.visual__txt__txt .first_row {
  display: inline-block;
  font-size: 4rem;
  text-indent: 0.5rem;
  text-transform: uppercase;
  transform: translateX(var(--x, -110%)) skewX(var(--skewX, 8deg));
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .visual__txt__txt .first_row {
    font-size: 12vw;
  }
}
@media screen and (max-width: 480px) {
  .visual__txt__txt .first_row {
    font-size: 16vw;
  }
}
@media screen and (max-width: 1376px) {
  .visual__txt__txt .first_row {
    font-size: 4.4vw;
  }
}
@media screen and (max-width: 1000px) {
  .visual__txt__txt .first_row {
    font-size: 5.5vw;
  }
}
.visual__txt__txt .second_row {
  display: inline-block;
  font-size: 4.5rem;
  transform: translateX(var(--x, -110%)) skewX(var(--skewX, 8deg));
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .visual__txt__txt .second_row {
    font-size: 13.5vw;
  }
}
@media screen and (max-width: 480px) {
  .visual__txt__txt .second_row {
    font-size: 18vw;
  }
}
@media screen and (max-width: 1376px) {
  .visual__txt__txt .second_row {
    font-size: 5vw;
  }
}
@media screen and (max-width: 1000px) {
  .visual__txt__txt .second_row {
    font-size: 6.5vw;
  }
}
.visual__txt__txt .cushion {
  display: inline-block;
  margin-block-start: 0.3em;
  margin-inline: 0.2em;
  padding-inline: 0.3em;
  border-radius: 0.2em;
  background: var(--base-color);
  color: var(--theme-color);
  text-shadow: none;
}
.visual__txt__txt .cushion .visuallyHidden {
  display: block;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visual__txt__txt .cushion .txt {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
body.loaded .visual__txt__txt .cushion .txt {
  --y: 0;
}
.visual__txt__txt .cushion .txt .char {
  display: inline-block;
  transform: translateY(var(--y, 110%));
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.9s + 0.04s * var(--char-index));
}
.visual__txt__txt::before, .visual__txt__txt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50vh;
  transform: translateX(var(--cover-x, -101%));
  transition: transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.visual__txt__txt::before {
  background-color: var(--base-color);
}
.visual__txt__txt::after {
  background-color: var(--bg-color);
  transition-delay: 0.16s;
}
.visual__sub-img {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  max-inline-size: var(--content-size-l);
  block-size: calc(100% - 28rem);
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  .visual__sub-img {
    block-size: 38vw;
  }
}
@media screen and (max-width: 768px) {
  .visual__sub-img {
    block-size: 43vw;
  }
}
.visual__sub-img .img {
  position: absolute;
  inset-block-end: 0;
  inline-size: auto;
}
.visual__sub-img .img--1 {
  inset-block-end: -40%;
  inset-inline-start: 5%;
  block-size: 140%;
  opacity: 0;
  transform-origin: bottom;
}
body.loaded .visual__sub-img .img--1 {
  animation: slideInY 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1.5s forwards;
}
@media screen and (max-width: 1200px) {
  .visual__sub-img .img--1 {
    inset-inline-start: 1%;
  }
}
.visual__sub-img .img--2 {
  inset-inline-end: 5%;
  z-index: 5;
  block-size: 95%;
  opacity: 0;
  transform-origin: bottom;
}
body.loaded .visual__sub-img .img--2 {
  animation: slideInY 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1.8s forwards;
}
@media screen and (max-width: 1200px) {
  .visual__sub-img .img--2 {
    inset-inline-end: 1%;
  }
}
.visual__sub-img .img--3 {
  inset-block-end: -30%;
  inset-inline-end: 20%;
  block-size: 120%;
  opacity: 0;
}
body.loaded .visual__sub-img .img--3 {
  animation: slideInX 0.5s cubic-bezier(0.12, 0, 0.39, 0) 2.1s forwards;
}
@keyframes slideInY {
  0% {
    transform: scaleY(0) translateY(140px);
    opacity: 0;
  }
  50% {
    transform: scaleY(110%) translateY(0);
  }
  65% {
    transform: scaleY(95%) translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
  20%, 100% {
    opacity: 1;
  }
}
@keyframes slideInX {
  0% {
    transform: translateX(140px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
  20%, 100% {
    opacity: 1;
  }
}
.visual__bg-img {
  position: absolute;
  z-index: -1;
  inset-block-start: 0;
  inset-inline-start: 50%;
  block-size: 100%;
  inline-size: 100%;
  object-fit: cover;
  transform: translateX(-50%);
}

.top-area1 {
  display: grid;
  grid-template-columns: 1fr 31.41%;
  gap: 0 11%;
}
@media screen and (max-width: 1376px) {
  .top-area1 {
    gap: 0 3%;
  }
}
@media screen and (max-width: 900px) {
  .top-area1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto max(60vw, 320px);
  }
}
@media screen and (max-width: 768px) {
  .top-area1 {
    grid-template-rows: auto min(55vw, 320px);
  }
}
.top-area1__inner .border-list {
  margin-block-start: 0;
  padding-block: 1rem;
  border-block: 2px var(--theme-color) solid;
}
.top-area1__inner .border-list__item {
  font-weight: bold;
}
.top-area1__inner--img {
  border-radius: 1rem;
  overflow: hidden;
}
.top-area1__inner--img img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}
.top-area2__ttl {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-area2__ttl {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 480px) {
  .top-area2__ttl {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .top-area2__ttl {
    font-size: 4vw;
    text-align: center;
  }
}
.top-area2__wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0 3rem;
}
@media screen and (max-width: 1000px) {
  .top-area2__wrap {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}
.top-area2__inner--img {
  position: relative;
  padding-block-start: 3em;
}
@media screen and (max-width: 1000px) {
  .top-area2__inner--img {
    margin-inline: auto;
    inline-size: min(100%, 400px);
  }
}
.top-area2__inner--img .txt {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  box-sizing: border-box;
  inline-size: fit-content;
  overflow: hidden;
  padding-inline: 1.5rem;
  border: 1px var(--theme-color) solid;
  border-radius: 9999px;
  background: var(--base-color);
  text-align: center;
}
.top-area2__inner--img .img {
  animation: 5s fuwafuwa infinite;
}
.top-area2__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 1000px) {
  .top-area2__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .top-area2__list {
    grid-template-columns: 1fr;
  }
}
.top-area2__list__item {
  position: relative;
  z-index: 1;
}
.top-area2__list__item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset-block-end: 0;
  inline-size: 100%;
  block-size: calc(100% - 110px);
  border-radius: 1rem;
  background-color: var(--base-color);
}
@media screen and (max-width: 1000px) {
  .top-area2__list__item {
    transition: all 0.4s ease-out 0s !important;
  }
}
.top-area2__list__term {
  color: var(--theme-color);
  font-weight: bold;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-area2__list__term {
    font-size: 3.75vw;
  }
}
@media screen and (max-width: 480px) {
  .top-area2__list__term {
    font-size: 5vw;
  }
}
.top-area2__list__img {
  inline-size: 220px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-inline: auto;
  border: 4px var(--base-color) solid;
  border-radius: 50%;
}
@media screen and (max-width: 480px) {
  .top-area2__list__img {
    inline-size: 160px;
  }
}
.top-area2__list__img img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}
.top-area2__list__dscrpt {
  padding: 1rem;
  padding-block-end: 2rem;
}
@media screen and (max-width: 480px) {
  .top-area2__list__dscrpt {
    padding-block: 0.5rem 1rem;
  }
}
.top-area3 {
  padding-inline: 1rem;
  text-align: center;
}
.top-area3__inner {
  inline-size: 100%;
  max-inline-size: var(--content-size-m);
  margin-inline: auto;
}
.top-area4 {
  margin-block-start: 6.5rem;
}
@media screen and (max-width: 768px) {
  .top-area4 {
    margin-block-start: 3.5rem;
  }
}
.top-area4__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 3rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-area4__head {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.top-area4__head p {
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .top-area4 .wrapper {
    padding-inline: 0;
  }
}
.top-area4 .center-ttl {
  margin: 0;
}
.top-area4__foot {
  margin-block-start: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-area4__foot {
    margin-block-start: 2rem;
  }
}
.top-area5__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 3rem 2rem;
}
@media screen and (max-width: 768px) {
  .top-area5__list {
    gap: 2rem 1rem;
  }
}
.top-area5__item {
  inline-size: calc(25% - 2rem);
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .top-area5__item {
    inline-size: calc(33% - 2rem);
  }
}
@media screen and (max-width: 768px) {
  .top-area5__item {
    inline-size: calc(50% - 1rem);
  }
}
@media screen and (max-width: 480px) {
  .top-area5__item {
    inline-size: 100%;
  }
}
.top-area5__item::before {
  display: none;
}
.top-area5__link {
  display: grid;
  gap: 0.5em 0;
  padding: 0.5rem;
  border: 1px var(--link-color) solid;
  border-radius: 0.5rem;
  text-decoration: underline;
}
.top-area5__link:hover {
  opacity: 1;
}
.top-area5__link:hover .top-area5__img img {
  inline-size: 140%;
  block-size: 140%;
}
.top-area5__img {
  position: relative;
  inline-size: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.top-area5__img img {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: var(--hover-anm);
}
.top-area5__txt {
  display: grid;
  grid-template-columns: auto 1fr;
  font-weight: bold;
  align-items: center;
}
.top-area5__txt img {
  inline-size: 3rem;
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.support-flow-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-block: 5rem 3rem;
}
@media screen and (max-width: 768px) {
  .support-flow-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .support-flow-list {
    margin-block: 2rem 3rem;
  }
}
.support-flow-list__term {
  position: relative;
  padding-block: 0.5rem;
  border-radius: 1rem 0 0 0;
  background: var(--theme-color);
  color: var(--base-color);
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .support-flow-list__term {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 480px) {
  .support-flow-list__term {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .support-flow-list__term {
    writing-mode: vertical-lr;
  }
}
.support-flow-list__term::after {
  content: "";
  display: block;
  position: absolute;
  inset-inline-start: calc(100% - 1px);
  inset-block-start: 50%;
  z-index: 1;
  inline-size: 2rem;
  block-size: calc(100% + 1.5rem);
  transform: translateY(-50%);
  background: var(--theme-color);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 768px) {
  .support-flow-list__term::after {
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
}
.support-flow-list__term--2 {
  border-radius: 0 1rem 0 0;
  background-color: var(--accent-color);
}
.support-flow-list__term--2::after {
  display: none;
  background: var(--accent-color);
}
@media screen and (max-width: 768px) {
  .support-flow-list__term--2 {
    border-radius: 0;
  }
}
.support-flow-list__dscrpt {
  padding-block: 2rem;
  padding-inline: 1rem;
  background: var(--bg-color);
  text-align: start;
}
.support-flow-list__item {
  display: grid;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 768px) {
  .support-flow-list__item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
  }
}
.support-flow-list__item + .support-flow-list__item .support-flow-list__dscrpt {
  position: relative;
}
.support-flow-list__item + .support-flow-list__item .support-flow-list__dscrpt::before {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: -1px;
  inline-size: 2px;
  block-size: calc(100% - 2rem);
  background: var(--accent-color);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .support-flow-list__item + .support-flow-list__item .support-flow-list__dscrpt::before {
    inset-block-start: -1px;
    inset-inline-start: 50%;
    block-size: 2px;
    inline-size: calc(100% - 2rem);
    transform: translateX(-50%);
  }
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  margin-block: 0 48px;
}
.three-col__img {
  inline-size: 100%;
  aspect-ratio: 16/9;
}
.three-col__img img {
  object-fit: cover;
  inline-size: 100%;
  block-size: 100%;
}
@media screen and (max-width: 900px) {
  .three-col {
    grid-template-columns: 1fr;
  }
}

.article-list {
  margin-block: 32px;
  padding: unset;
}
.article-list__item {
  margin-block: 0;
  padding-block: 1em;
  padding-inline: 1em;
}
.article-list__item::before {
  display: none;
}
.article-list__item + .article-list__item {
  border-block-start: 2px var(--theme-color) dashed;
}
.article-list__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2em;
}
@media screen and (max-width: 768px) {
  .article-list__inner {
    grid-template-columns: 1fr;
  }
}

.reason-comment {
  margin-block: 0 48px;
}
.reason-comment__inner {
  display: grid;
  grid-template-columns: 1fr clamp(120px, 30%, 240px);
  align-items: center;
  gap: 8px;
  margin-block-start: 24px;
}
.reason-comment__comment {
  margin: 10px 0;
  padding-block: 20px;
}
.reason-comment__comment .speechBubble {
  position: relative;
  display: inline-block;
  padding-inline: 16px;
  border: 2px solid #2574da;
  border-radius: 8px;
  background-color: #ddecff;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}
.reason-comment__comment .speechBubble::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent transparent #2574da;
  translate: 100% -50%;
}
.reason-comment__comment .speechBubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 0 0 15.2px 15.2px;
  border-color: transparent transparent transparent #ddecff;
  translate: 100% calc(-50% + 0.4px);
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block-start: 3rem;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .voice-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .voice-list {
    grid-template-columns: 1fr;
  }
}
.voice-list__inner {
  overflow: hidden;
  border-radius: 1rem;
  background: var(--base-color);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.voice-list__img {
  position: relative;
  inline-size: 100%;
  aspect-ratio: 1/0.7;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .voice-list__img {
    aspect-ratio: 16/9;
  }
}
.voice-list__img img {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: var(--hover-anm);
}
.voice-list__link {
  display: block;
  font-weight: bold;
  text-decoration: underline;
}
.voice-list__link:hover img {
  inline-size: 120%;
  block-size: 120%;
  opacity: 1;
}
.voice-list__term__txt {
  padding-block: 1rem;
  padding-inline: 1rem;
}
@media screen and (max-width: 480px) {
  .voice-list__term__txt {
    padding-block: 0.5rem;
  }
}
.voice-list__term__ttl {
  display: block;
  padding-inline: 0.5em;
}
.voice-list__cate {
  display: inline-block;
  margin-inline: 0.3em;
  margin-block: 0.2em;
  background: var(--link-color);
  color: var(--base-color);
  padding-inline: 0.5em;
  padding-block: 0 0.1em;
  font-size: 0.9em;
}
.voice-list__dscrpt {
  position: relative;
  padding: 1rem;
  padding-block-end: 2rem;
}
@media screen and (max-width: 480px) {
  .voice-list__dscrpt {
    padding-block: 0.5rem 1rem;
  }
}
.voice-list__dscrpt::before {
  content: "";
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  inline-size: calc(100% - 2rem);
  block-size: 2px;
  margin-inline: auto;
  background: var(--theme-color);
}

.def_page .step {
  position: relative;
  overflow: hidden;
  margin-block: 2vw 3vw;
  padding-inline: 6em 0;
  padding-block: 0.5em 2vw;
  border-block-end: 1px #CCC solid;
}
@media screen and (max-width: 480px) {
  .def_page .step {
    padding-inline-start: 5em;
  }
}
.def_page .step__ttl {
  margin: 0;
  padding-block: 0.5em;
  padding-inline: 1em;
  border-radius: 4px;
  background: #DDD;
  font-weight: normal;
  font-size: 100%;
}
.def_page .step__ttl__txt {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .def_page .step__ttl__txt {
    font-size: 3.375vw;
  }
}
@media screen and (max-width: 480px) {
  .def_page .step__ttl__txt {
    font-size: 4.5vw;
  }
}
.def_page .step__num {
  display: grid;
  place-content: center;
  position: absolute;
  inset-block: 0 auto;
  inset-inline: 0 auto;
  aspect-ratio: 1;
  padding: 1em;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--base-color);
  font-weight: bold;
  text-align: center;
}
.def_page .step__num__inner {
  line-height: 1;
}
.def_page .step__num__num {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .def_page .step__num__num {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 480px) {
  .def_page .step__num__num {
    font-size: 6vw;
  }
}
.def_page .step__img-wrap-outer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1em;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .def_page .step__img-wrap-outer {
    grid-template-columns: auto;
    gap: 0;
  }
}
.def_page .step__img-wrap {
  float: right;
  overflow: hidden;
  margin-block: 32px;
  margin-inline: 24px 16px;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .def_page .step__img-wrap {
    float: none;
    inline-size: fit-content;
    margin-inline: auto;
    margin-block-end: 16px;
  }
}
.def_page .step__img-wrap--left {
  float: left;
}
.def_page .step__img {
  inline-size: 100%;
  max-inline-size: 320px;
}
.def_page .step__inner {
  overflow: hidden;
}

.def_page .departure {
  padding-block: 1em;
  padding-inline: 2em;
  border-radius: 1em;
  background: var(--theme-color);
  color: var(--base-color);
}
.def_page .departure__ttl {
  margin-block-start: 0;
  border-inline: none;
  background: none;
}
@media screen and (max-width: 768px) {
  .def_page .departure__ttl {
    padding-inline: 0;
  }
}

.contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 3em;
  margin-block: 24px 0;
}
.contact-box .phone {
  display: flex;
  align-items: center;
  margin: 0;
}
.contact-box .phone__number {
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .contact-box .phone__number {
    font-size: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .contact-box .phone__number {
    font-size: 8vw;
  }
}
.contact-box .phone-open {
  display: grid;
  grid-template-columns: 6.5em 1fr;
  gap: 0;
}
@media screen and (max-width: 1200px) {
  .contact-box {
    display: grid;
    gap: 2em;
    margin-block-end: 2em;
  }
}

.top-news__inner {
  display: grid;
  grid-template-columns: 40% 1fr;
}
.top-news__ttl {
  color: var(--theme-color);
  font-weight: bold;
  font-size: 2rem;
}
.top-news__ttl::after {
  content: "";
  display: inline-block;
  inline-size: 0.5em;
  block-size: 2px;
  vertical-align: middle;
  margin-inline-start: 0.2em;
  background: var(--accent-color);
}
.top-news__left {
  padding-inline-start: 1em;
}
.top-news__right {
  padding-inline: 2rem;
  border-radius: 1rem;
  background: var(--base-color);
}
.top-news__foot {
  grid-column: 1/3;
  padding-block-start: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-news__inner {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .top-news .article-list {
    margin-block: 16px;
  }
  .top-news__foot {
    padding-block-start: 1rem;
    grid-column: 1;
  }
}

.area-contact {
  margin-block: 0;
  padding-block: 4.5rem;
  background: var(--accent-color-w);
}
@media screen and (max-width: 768px) {
  .area-contact {
    padding-block: 2rem 4.5rem;
  }
}
.area-contact__wrapper {
  display: grid;
  grid-template-columns: auto 30rem;
  gap: 0 3rem;
  place-content: center;
}
@media screen and (max-width: 900px) {
  .area-contact__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.area-contact__inner--white {
  display: grid;
  place-content: center;
  gap: 1rem 0;
  padding-block: 2.5em;
  border-radius: 1rem;
  background: var(--base-color);
}
.area-contact__txt01 {
  display: grid;
  place-content: center;
  margin-block: 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .area-contact__txt01 {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 480px) {
  .area-contact__txt01 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 1200px) {
  .area-contact__txt01 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 900px) {
  .area-contact__txt01 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 900px) and (max-width: 768px) {
  .area-contact__txt01 {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 900px) and (max-width: 480px) {
  .area-contact__txt01 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .area-contact__txt01 {
    font-size: 4vw;
  }
}
.area-contact__txt01 p {
  position: relative;
  margin: 0;
  padding-inline-start: 2em;
  padding-block: 0.5em;
  border-block-end: 1px var(--base-color) solid;
}
.area-contact__txt01 p img {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.5em;
  vertical-align: bottom;
  inline-size: 1.5em;
  margin-inline-end: 0.3em;
}
.area-contact__txt02 {
  margin-block: 2rem 0;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .area-contact__txt02 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .area-contact__txt02 {
    font-size: 8vw;
  }
}
.area-contact__txt02 .cushion {
  position: relative;
  font-weight: bold;
}
.area-contact__txt02 .cushion::after {
  content: "";
  display: block;
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .area-contact__txt02 {
    font-size: 2.7vw;
  }
}
@media screen and (max-width: 900px) {
  .area-contact__txt02 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 900px) and (max-width: 768px) {
  .area-contact__txt02 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 900px) and (max-width: 480px) {
  .area-contact__txt02 {
    font-size: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .area-contact__txt02 {
    font-size: 5vw;
  }
}
.area-contact__link {
  margin: 0;
}
.area-contact__link--btn {
  text-align: center;
}
.area-contact__link--btn .btn-link {
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .area-contact__link--btn .btn-link {
    font-size: 6.75vw;
  }
}
@media screen and (max-width: 480px) {
  .area-contact__link--btn .btn-link {
    font-size: 9vw;
  }
}
@media screen and (max-width: 768px) {
  .area-contact__link--btn .btn-link {
    font-size: 5vw;
  }
}
.area-contact__link--phone {
  color: var(--link-color);
  font-weight: bold;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .area-contact__link--phone {
    font-size: 9vw;
  }
}
@media screen and (max-width: 480px) {
  .area-contact__link--phone {
    font-size: 12vw;
  }
}
.area-contact__link--phone img {
  vertical-align: middle;
  inline-size: 3rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .area-contact__link--phone {
    font-size: 8vw;
  }
}

.footer {
  overflow: hidden;
  padding-block: 4.5rem 0;
  background: var(--bg-color);
}
.footer-head {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
}
@media screen and (max-width: 768px) {
  .footer-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.footer-head__logo {
  margin-block: 0;
}
.footer-head__logo img {
  inline-size: 23.75rem;
}
.footer-head__address {
  margin: 0;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .footer-head__address {
    font-size: 3vw;
  }
}
@media screen and (max-width: 480px) {
  .footer-head__address {
    font-size: 4vw;
  }
}
.footer-body {
  margin-block: 2.5625rem 0;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer-nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
.footer-nav__item {
  margin: 0;
  padding: 0;
}
.footer-nav__item::before {
  display: none;
}
.footer-nav__item > .footer-nav__link {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer-nav__item--foot {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .footer-nav__item--foot .footer-nav__inner-item {
    padding-block: 0.5em;
    border-block: 1px var(--txt-color) solid;
  }
  .footer-nav__item--foot .footer-nav__inner-item + .footer-nav__inner-item {
    margin-block-start: 0;
    border-block-start: none;
  }
}
.footer-nav__inner-list {
  margin: 0;
}
.footer-nav__inner-item {
  margin-block-start: 1rem;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .footer-nav__inner-item {
    margin-block-start: 1.5rem;
  }
}
.footer-nav__inner-item--first {
  margin-block-start: 0;
}
.footer-nav__inner-item::before {
  display: none;
}
.footer-nav__link {
  color: inherit;
}
.footer-foot {
  margin-block-end: 4.5rem;
  text-align: end;
}
.footer-foot__link + .footer-foot__link {
  margin-inline-start: 2rem;
}/*# sourceMappingURL=style.css.map */