@charset "UTF-8";
/* CSS Document */
/*
Theme Name: MEEX
Author: 株式会社重富プラス

*/
h1,
h2,
h3,
h4,
h5 {
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 480px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: 3.75vw;
  }
}

/* 欧文フォント */
.eg {
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* 日本語フォント */
.jp {
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
}

/* 文字寄せ */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* ノートパソコン改行 */
@media screen and (max-width: 1350px) {
  .npbr {
    display: block;
  }
}

/* タブレット改行 */
@media screen and (max-width: 768px) {
  .tbbr {
    display: block;
  }
}

/* スマホ改行 */
@media screen and (max-width: 480px) {
  .spbr {
    display: block;
  }
}

/* タブレット非表示 */
@media screen and (max-width: 768px) {
  .tbnone {
    display: none;
  }
}

/* スマホ非表示 */
@media screen and (max-width: 480px) {
  .spnone {
    display: none;
  }
}

/* 見出し */
/* 段落 */
/* 注釈 */
.note {
  padding-left: 1em;
  text-indent: -1em;
  color: #0e9b94;
  font-size: 0.85em;
  line-height: 1.25em;
}
.note::before {
  content: "※";
}

/* 画像 */
img {
  vertical-align: bottom;
}
img.img100 {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.imgbox {
  line-height: 0;
}

.grunge {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.grunge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/grunge.webp");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 0 0;
  background-size: 100% 100%;
  -webkit-mask-image: var(--svg-url);
  mask-image: var(--svg-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  mix-blend-mode: hard-light;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}
.grunge img {
  display: block;
  width: 100%;
  height: auto;
}

/* 読み込み遅延 */
img {
  transition: 1.2s ease;
  backface-visibility: hidden;
}
img.lazyload {
  opacity: 0;
  filter: alpha(opacity=0);
}
img.lazyloaded {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* 読み込み遅延 */
.lazyload0,
.lazyload1,
.lazyload2,
.lazyload3,
.lazyload4 {
  transition: 1.2s ease;
  backface-visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lazyload0.lazyloaded,
.lazyload1.lazyloaded,
.lazyload2.lazyloaded,
.lazyload3.lazyloaded,
.lazyload4.lazyloaded {
  transition: 1.2s ease;
  backface-visibility: hidden;
  opacity: 1;
  filter: alpha(opacity=100);
}

.lazyload1 {
  transform: translate(0, 5em);
}
.lazyload1.lazyloaded {
  transform: translate(0, 0);
}

.lazyload2 {
  transform: translate(-5em, 0);
}
.lazyload2.lazyloaded {
  transform: translate(0, 0);
}

.lazyload3 {
  transform: translate(5em, 0);
}
.lazyload3.lazyloaded {
  transform: translate(0, 0);
}

.lazyload4 {
  transform: translate(0, -5em);
}
.lazyload4.lazyloaded {
  transform: translate(0, 0);
}

/* トップページ内コンテンツの場合 */
#front-page section .lazyload0.lazyloaded,
#front-page section .lazyload1.lazyloaded,
#front-page section .lazyload2.lazyloaded,
#front-page section .lazyload3.lazyloaded,
#front-page section .lazyload4.lazyloaded {
  opacity: 0;
  filter: alpha(opacity=0);
}
#front-page section .lazyload1.lazyloaded {
  transform: translate(0, 5em);
}
#front-page section .lazyload2.lazyloaded {
  transform: translate(-5em, 0);
}
#front-page section .lazyload3.lazyloaded {
  transform: translate(5em, 0);
}
#front-page section .lazyload4.lazyloaded {
  transform: translate(0, -5em);
}
#front-page section.on .lazyload0.lazyloaded,
#front-page section.on .lazyload1.lazyloaded,
#front-page section.on .lazyload2.lazyloaded,
#front-page section.on .lazyload3.lazyloaded,
#front-page section.on .lazyload4.lazyloaded {
  opacity: 1;
  filter: alpha(opacity=100);
}
#front-page section.on .lazyload1.lazyloaded {
  transform: translate(0, 0);
}
#front-page section.on .lazyload2.lazyloaded {
  transform: translate(0, 0);
}
#front-page section.on .lazyload3.lazyloaded {
  transform: translate(0, 0);
}
#front-page section.on .lazyload4.lazyloaded {
  transform: translate(0, 0);
}
@media screen and (min-width: 1921px) and (max-aspect-ratio: 100/53) {
  #front-page section.onsp .lazyload0.lazyloaded,
  #front-page section.onsp .lazyload1.lazyloaded,
  #front-page section.onsp .lazyload2.lazyloaded,
  #front-page section.onsp .lazyload3.lazyloaded,
  #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 1920px) and (min-width: 1351px) and (max-aspect-ratio: 2/1) {
  #front-page section.onsp .lazyload0.lazyloaded,
  #front-page section.onsp .lazyload1.lazyloaded,
  #front-page section.onsp .lazyload2.lazyloaded,
  #front-page section.onsp .lazyload3.lazyloaded,
  #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 1350px) and (min-width: 769px) and (max-aspect-ratio: 25/13) {
  #front-page section.onsp .lazyload0.lazyloaded,
  #front-page section.onsp .lazyload1.lazyloaded,
  #front-page section.onsp .lazyload2.lazyloaded,
  #front-page section.onsp .lazyload3.lazyloaded,
  #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) and (max-aspect-ratio: 25/37) {
  #front-page section.onsp .lazyload0.lazyloaded,
  #front-page section.onsp .lazyload1.lazyloaded,
  #front-page section.onsp .lazyload2.lazyloaded,
  #front-page section.onsp .lazyload3.lazyloaded,
  #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 480px) and (max-aspect-ratio: 35/68) {
  #front-page section.onsp .lazyload0.lazyloaded,
  #front-page section.onsp .lazyload1.lazyloaded,
  #front-page section.onsp .lazyload2.lazyloaded,
  #front-page section.onsp .lazyload3.lazyloaded,
  #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}

/* リンク */
a {
  color: #000;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
a img {
  transition: 0.3s ease;
  backface-visibility: hidden;
}
a:hover {
  color: #0e9b94;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.voc_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5em 1.6em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .voc_list {
    grid-template-columns: 1fr;
    gap: 5em;
  }
}
.voc_item {
  width: 100%;
  height: auto;
  min-height: 8em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .voc_item {
    min-height: 11.5em;
  }
}
@media screen and (max-width: 480px) {
  .voc_item {
    min-height: 10em;
  }
}
.voc_item .link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
  background: #ffffff;
  border-radius: 1em;
  padding: 1em 1em;
  position: relative;
  text-decoration: none;
}
.voc_item .link:has(.job) {
  padding-bottom: 3em;
}
@media screen and (max-width: 480px) {
  .voc_item .link {
    padding: 1em;
  }
}
.voc_item .link:hover {
  opacity: 1;
}
.voc_item .link:hover .imgwrap {
  scale: 1.1;
}
.voc_item .link:hover .imgwrap img {
  opacity: 1;
}
.voc_item .ttl {
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
  color: #32294d;
  position: absolute;
  top: -1.5em;
  right: 0;
}
.voc_item .imgwrap {
  position: absolute;
  top: -1em;
  left: 1em;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
@media screen and (max-width: 480px) {
  .voc_item .imgwrap {
    font-size: 3vw;
  }
}
.voc_item .imgwrap .count {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.voc_item .imgwrap .count .number {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
}
.voc_item .imgwrap .imgbox {
  width: 7.5em;
  height: 7.5em;
  border-radius: 50%;
  padding-top: 0.5em;
  overflow: hidden;
  position: relative;
}
.voc_item .imgwrap .imgbox.man {
  background-color: #32294d;
}
.voc_item .imgwrap .imgbox.woman {
  background-color: #b0dbd9;
}
.voc_item .imgwrap .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.voc_item .user_info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-left: 7em;
  min-height: 5em;
}
@media screen and (max-width: 480px) {
  .voc_item .user_info {
    margin-left: 5em;
  }
}
.voc_item .user_info .name {
  width: 100%;
  display: inline-block;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  color: #32294d;
  padding-left: 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 0.2em solid #0e9b94;
}
.voc_item .user_info .cat_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  width: 100%;
  line-height: 1;
  padding-top: 0.5em;
  padding-left: 1.5em;
}
.voc_item .user_info .cat_list .item {
  display: inline-block;
  background: #0e9b94;
  color: #fff;
  padding: 0.2em 0.4em;
  border-radius: 2em;
}
.voc_item .user_info .cat_list .item .txt {
  display: flex;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
}
.voc_item .user_info .type {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding-top: 0.5em;
  padding-left: 1.5em;
}
.voc_item .user_info .type .txt {
  display: flex;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
  color: #0e9b94;
}
.voc_item .comment {
  white-space: wrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  margin-top: 1.25em;
}
.voc_item .job {
  position: absolute;
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
  width: 100%;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1em;
  display: block;
  padding: 0.8em 1em;
  background: #d3ebea;
  color: rgb(9.775147929, 108.224852071, 103.3372781065);
  border-radius: 0 0 1em 1em;
}
.voc_item .job span {
  font-size: 1.2em;
  font-weight: 600;
}

.blog_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .blog_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }
}
@media screen and (max-width: 480px) {
  .blog_list {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
.blog_item {
  width: 100%;
  height: auto;
}
.blog_item a {
  display: inline-block;
  width: 100%;
  height: auto;
  text-decoration: none;
}
.blog_item a:hover img {
  scale: 1.1;
  opacity: 1;
}
.blog_item .date {
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  color: #0e9b94;
  margin-bottom: 0.5em;
}
.blog_item .thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 368/230;
  border-radius: 1em;
  margin-bottom: 0.75em;
  overflow: hidden;
}
.blog_item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_item .ttl {
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.65;
  color: #000;
  white-space: wrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.blog_item .cat_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  width: 100%;
  line-height: 1;
  padding-top: 0.5em;
}
.blog_item .cat_list .item {
  display: inline-block;
  background: #d3ebea;
  color: #0e9b94;
  padding: 0.2em 0.4em;
  border-radius: 2em;
}
.blog_item .cat_list .item .txt {
  display: flex;
  font-size: 0.8em;
  font-weight: 600;
  line-height: 1;
}

.btn {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 3vw;
  }
}
.btn a {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.btn a:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}

/* ************************************
 * ファーストビューアニメーション
 *************************************/
body#front-page .main_fv_copy {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: top 1s 1s, left 1s 1s, translate 1s 1s;
}
body#front-page .main_fv_copy .txt_1 {
  opacity: 0;
}
body#front-page .main_fv_copy .txt_2 {
  opacity: 0;
}
body#front-page .main_fv_copy.st {
  top: 2.8em;
  left: 82em;
  translate: 0 0;
}
@media screen and (max-width: 768px) {
  body#front-page .main_fv_copy.st {
    top: 12.5em;
    left: 27.5em;
  }
}
@media screen and (max-width: 480px) {
  body#front-page .main_fv_copy.st {
    top: 11.5em;
    left: 18em;
  }
}
body#front-page .main_fv_copy.st .txt_1 {
  opacity: 1;
  transition: opacity 0.8s;
}
body#front-page .main_fv_copy.st .txt_2 {
  opacity: 1;
  transition: opacity 0.8s 0.4s;
}
body#front-page .main_fv_bg .imgbox.bg1, body#front-page .main_fv_bg .imgbox.bg2 {
  opacity: 0;
  translate: -10em -10em;
  transition: opacity 1s 1s, translate 1s 1s;
}
body#front-page .main_fv_bg .imgbox.bg3, body#front-page .main_fv_bg .imgbox.bg4 {
  opacity: 0;
  translate: 10em 10em;
  transition: opacity 1s 1s, translate 1s 1s;
}
body#front-page .main_fv_bg.st .imgbox.bg1, body#front-page .main_fv_bg.st .imgbox.bg2, body#front-page .main_fv_bg.st .imgbox.bg3, body#front-page .main_fv_bg.st .imgbox.bg4 {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_fv_img {
  opacity: 0;
  transition: opacity 0.6s 1.4s;
}
body#front-page .main_fv_img.st {
  opacity: 1;
}
body#front-page .main_fv_typo {
  opacity: 0;
  translate: -10em 0;
  transition: opacity 1s 1s, translate 1s 1s;
}
body#front-page .main_fv_typo.st {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_topnews {
  opacity: 0;
  translate: 0 -2.5em;
  transition: opacity 1s 2s, translate 1s 2s;
}
body#front-page .main_topnews.st {
  opacity: 1;
  translate: 0 0;
}
body#front-page .side_column {
  opacity: 0;
  translate: -10em 0;
  transition: opacity 1s 2s, translate 1s 2s;
}
body#front-page .side_column.st {
  opacity: 1;
  translate: 0 0;
}
body#front-page .hm_btn {
  opacity: 0;
  translate: 5em 0;
  transition: opacity 1s 2s, translate 1s 2s;
}
body#front-page .hm_btn.st {
  opacity: 1;
  translate: 0 0;
}

/* ************************************
 * スクロールアニメーション
 *************************************/
body#front-page .main_lead_ttl {
  opacity: 0;
  translate: 0 -5%;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_lead_ttl.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_lead_copy, body#front-page .main_lead_txt, body#front-page .main_lead_btn {
  opacity: 0;
  translate: 0 5%;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_lead_copy.on, body#front-page .main_lead_txt.on, body#front-page .main_lead_btn.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_lead_deco.img1 {
  opacity: 0;
  translate: -5% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_lead_deco.img1.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_lead_deco.img4 {
  opacity: 0;
  translate: 5% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_lead_deco.img4.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_lead_deco.grunge {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0.2s ease-in-out, translate 1s 0.2s ease-in-out;
}
body#front-page .main_lead_deco.grunge.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_lead_deco.img3, body#front-page .main_lead_deco.img7 {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0.4s ease-in-out, translate 1s 0.4s ease-in-out;
}
body#front-page .main_lead_deco.img3.on, body#front-page .main_lead_deco.img7.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_style_deco.img1, body#front-page .main_style_deco.img2, body#front-page .main_style_deco.img3 {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_style_deco.img1.on, body#front-page .main_style_deco.img2.on, body#front-page .main_style_deco.img3.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_style_deco.img4 {
  opacity: 0;
  translate: -5% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_style_deco.img4.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_style_deco.img5 {
  opacity: 0;
  translate: 5% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_style_deco.img5.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_style_ttl {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_style_ttl.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_style_list .main_style_item {
  opacity: 0;
}
body#front-page .main_style_list.on .main_style_item {
  opacity: 1;
  transition: opacity 1s;
}
body#front-page .main_style_list.on .main_style_item:nth-child(1) {
  transition-delay: 0.1s;
}
body#front-page .main_style_list.on .main_style_item:nth-child(2) {
  transition-delay: 0.2s;
}
body#front-page .main_style_list.on .main_style_item:nth-child(3) {
  transition-delay: 0.3s;
}
body#front-page .main_style_list.on .main_style_item:nth-child(4) {
  transition-delay: 0.4s;
}
body#front-page .main_style_list.on .main_style_item:nth-child(5) {
  transition-delay: 0.5s;
}
body#front-page .main_style .txtloop {
  opacity: 0;
  transition: opacity 1s ease-in-out 1s;
}
body#front-page .main_style .txtloop.on {
  opacity: 1;
}
body#front-page .main_support_head .txt_eg {
  opacity: 0;
  translate: 0 -10%;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_support_head .txt_eg.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_support_head .txt_ja {
  opacity: 0;
  translate: 0 10%;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_support_head .txt_ja.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_support_list .main_support_item {
  opacity: 0;
}
body#front-page .main_support_list.on .main_support_item {
  opacity: 1;
  transition: opacity 1s;
}
body#front-page .main_support_list.on .main_support_item:nth-child(1) {
  transition-delay: 0.1s;
}
body#front-page .main_support_list.on .main_support_item:nth-child(2) {
  transition-delay: 0.2s;
}
body#front-page .main_support_list.on .main_support_item:nth-child(3) {
  transition-delay: 0.3s;
}
body#front-page .main_support_list.on .main_support_item:nth-child(4) {
  transition-delay: 0.4s;
}
body#front-page .main_support_list.on .main_support_item:nth-child(5) {
  transition-delay: 0.5s;
}
body#front-page .main_result_box {
  opacity: 0;
}
body#front-page .main_result_box.on {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
body#front-page .main_result_item {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0.2s ease-in-out, translate 1s 0.2s ease-in-out;
}
body#front-page .main_result_item.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_result_deco.img1 {
  opacity: 0;
  translate: -10% 10%;
  transition: opacity 1s 0.4s ease-in-out, translate 1s 0.4s ease-in-out;
}
body#front-page .main_result_deco.img1.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_result_deco.img2 {
  opacity: 0;
  translate: 0 10%;
  transition: opacity 1s 0.4s ease-in-out, translate 1s 0.4s ease-in-out;
}
body#front-page .main_result_deco.img2.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_result_deco.img3 {
  opacity: 0;
  translate: -10% 0;
  transition: opacity 1s 0.4s ease-in-out, translate 1s 0.4s ease-in-out;
}
body#front-page .main_result_deco.img3.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_result_deco.img4 {
  opacity: 0;
  translate: 10% 0;
  transition: opacity 1s 0.4s ease-in-out, translate 1s 0.4s ease-in-out;
}
body#front-page .main_result_deco.img4.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_result .txtloop {
  opacity: 0;
  transition: opacity 1s ease-in-out 1s;
}
body#front-page .main_result .txtloop.on {
  opacity: 1;
}
body#front-page .main_flow_txtbox {
  opacity: 0;
  translate: 5% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_flow_txtbox.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_flow_imgbox .imgbox.bg1, body#front-page .main_flow_imgbox .imgbox.bg2, body#front-page .main_flow_imgbox .imgbox.bg3 {
  opacity: 0;
  translate: -5% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_flow_imgbox .imgbox.bg1.on, body#front-page .main_flow_imgbox .imgbox.bg2.on, body#front-page .main_flow_imgbox .imgbox.bg3.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_flow_imgbox .imgbox.img1, body#front-page .main_flow_imgbox .imgbox.img2, body#front-page .main_flow_imgbox .imgbox.img3, body#front-page .main_flow_imgbox .imgbox.img4 {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_flow_imgbox .imgbox.img1.on, body#front-page .main_flow_imgbox .imgbox.img2.on, body#front-page .main_flow_imgbox .imgbox.img3.on, body#front-page .main_flow_imgbox .imgbox.img4.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_faq_txtbox {
  opacity: 0;
  translate: -5% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_faq_txtbox.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_faq_imgbox .imgbox.bg1, body#front-page .main_faq_imgbox .imgbox.bg2, body#front-page .main_faq_imgbox .imgbox.bg3 {
  opacity: 0;
  translate: 5% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_faq_imgbox .imgbox.bg1.on, body#front-page .main_faq_imgbox .imgbox.bg2.on, body#front-page .main_faq_imgbox .imgbox.bg3.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_faq_imgbox .imgbox.img1, body#front-page .main_faq_imgbox .imgbox.img2, body#front-page .main_faq_imgbox .imgbox.img3, body#front-page .main_faq_imgbox .imgbox.img4 {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0.4s ease-in-out, translate 1s 0.4s ease-in-out;
}
body#front-page .main_faq_imgbox .imgbox.img1.on, body#front-page .main_faq_imgbox .imgbox.img2.on, body#front-page .main_faq_imgbox .imgbox.img3.on, body#front-page .main_faq_imgbox .imgbox.img4.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_voc_box {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_voc_box.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_voc_head .txt_eg {
  opacity: 0;
  translate: 0 -10%;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_voc_head .txt_eg.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_voc_head .txt_ja {
  opacity: 0;
  translate: 0 10%;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_voc_head .txt_ja.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_voc_list .main_voc_item {
  opacity: 0;
}
body#front-page .main_voc_list.on .main_voc_item {
  opacity: 1;
  transition: opacity 1s;
}
body#front-page .main_voc_list.on .main_voc_item:nth-child(1) {
  transition-delay: 0.1s;
}
body#front-page .main_voc_list.on .main_voc_item:nth-child(2) {
  transition-delay: 0.2s;
}
body#front-page .main_voc_list.on .main_voc_item:nth-child(3) {
  transition-delay: 0.3s;
}
body#front-page .main_voc_list.on .main_voc_item:nth-child(4) {
  transition-delay: 0.4s;
}
body#front-page .main_voc_list.on .main_voc_item:nth-child(5) {
  transition-delay: 0.5s;
}
body#front-page .main_voc_btn {
  opacity: 0;
  translate: 0 5%;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_voc_btn.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_voc_deco {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0.4s ease-in-out, translate 1s 0.4s ease-in-out;
}
body#front-page .main_voc_deco.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_blog_box {
  opacity: 0;
  translate: 0 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_blog_box.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_blog_head {
  opacity: 0;
  translate: -10% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_blog_head.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_blog_list .main_blog_item {
  opacity: 0;
}
body#front-page .main_blog_list.on .main_blog_item {
  opacity: 1;
  transition: opacity 1s;
}
body#front-page .main_blog_list.on .main_blog_item:nth-child(1) {
  transition-delay: 0.1s;
}
body#front-page .main_blog_list.on .main_blog_item:nth-child(2) {
  transition-delay: 0.2s;
}
body#front-page .main_blog_list.on .main_blog_item:nth-child(3) {
  transition-delay: 0.3s;
}
body#front-page .main_blog_list.on .main_blog_item:nth-child(4) {
  transition-delay: 0.4s;
}
body#front-page .main_blog_list.on .main_blog_item:nth-child(5) {
  transition-delay: 0.5s;
}
body#front-page .main_blog_btn {
  opacity: 0;
  translate: 10% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_blog_btn.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_blog_deco.img1 {
  opacity: 0;
  translate: 10% 0;
  transition: opacity 1s 0.4s ease-in-out, translate 1s 0.4s ease-in-out;
}
body#front-page .main_blog_deco.img1.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_blog_deco.img2 {
  opacity: 0;
  translate: -10% 0;
  transition: opacity 1s 0.4s ease-in-out, translate 1s 0.4s ease-in-out;
}
body#front-page .main_blog_deco.img2.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_instagram_head {
  opacity: 0;
  translate: 10% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_instagram_head.on {
  opacity: 1;
  translate: 0 0;
}
body#front-page .main_instagram_box {
  opacity: 0;
  translate: -10% 0;
  transition: opacity 1s 0s ease-in-out, translate 1s 0s ease-in-out;
}
body#front-page .main_instagram_box.on {
  opacity: 1;
  translate: 0 0;
}

/* ************************************
 * 流れるテキスト共通
 *************************************/
@keyframes txtloop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* 左から右 */
@keyframes txtloop_reverse {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.txtloop {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.txtloop_inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}
.txtloop .txt {
  display: block;
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 0.25em;
  -webkit-transform: translateZ(0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: clip;
}

ul li {
  list-style-type: none;
}

/* =======================================================================================================================
　　　　　　　　　全体
======================================================================================================================= */
body {
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 3.75vw;
  }
}
body {
  line-height: 2em;
  letter-spacing: 0;
  background: #ebf5f5;
  color: #000;
}

/* =======================================================================================================================
　　　　　　　　　レイアウト
======================================================================================================================= */
.sec {
  width: auto;
  position: relative;
  box-sizing: border-box;
  padding: 15em 0;
}
@media screen and (max-width: 768px) {
  .sec {
    padding: 7.5em 0;
  }
}

.innerbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0 10em;
}
@media screen and (max-width: 768px) {
  .innerbox {
    padding: 0 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .innerbox {
    padding: 0 1.5em;
  }
}

#main_column {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* =======================================================================================================================
　　　　　　　　　ヘッダー
======================================================================================================================= */
#side_column {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: auto;
  min-height: 40em;
  height: 100vh;
  max-height: 80em;
  padding: 1em 0;
  box-sizing: border-box;
  z-index: 999;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/750) {
  #side_column {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #side_column {
    width: 14em;
    min-height: auto;
    height: auto;
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding: 0;
  }
}
.page-template-page-form-step #side_column {
  width: 14em;
  min-height: auto;
  height: auto;
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: 0;
}
#side_column .wrap {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 100%;
  padding: 2.5em 0.5em 0.5em;
  border-radius: 0 1em 1em 0;
  background: #ffffff;
  width: 18em;
  height: 100%;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  #side_column .wrap {
    padding-top: 5vh;
  }
}
@media screen and (max-width: 768px) {
  #side_column .wrap {
    width: 100%;
    height: auto;
    padding: 1em 1.5em;
    border-radius: 0 0 1em 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.page-template-page-form-step #side_column .wrap {
  width: 100%;
  height: auto;
  padding: 1em 1.5em;
  border-radius: 0 0 1em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#side_column .wrap #header {
  width: auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #side_column .wrap #header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.page-template-page-form-step #side_column .wrap #header {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#side_column .wrap #header a {
  text-decoration: none;
}
#side_column .wrap #header .logobox {
  margin-bottom: 2.4em;
  text-align: center;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  #side_column .wrap #header .logobox {
    margin-bottom: 3vh;
  }
}
@media screen and (max-width: 768px) {
  #side_column .wrap #header .logobox {
    margin-bottom: 0;
  }
}
#side_column .wrap #header .logobox #logo {
  display: block;
}
#side_column .wrap #header .logobox #logo img {
  width: auto;
  height: 4em;
  aspect-ratio: 236/80;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  #side_column .wrap #header .logobox #logo img {
    font-size: 2vh;
  }
}
@media screen and (max-width: 768px) {
  #side_column .wrap #header .logobox #logo img {
    height: 3em;
  }
}
.page-template-page-form-step #side_column .wrap #header .logobox #logo img {
  height: 3em;
}
#side_column .wrap #header ul.gnav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 3.5em;
}
@media screen and (max-width: 768px) {
  #side_column .wrap #header ul.gnav {
    display: none;
  }
}
.page-template-page-form-step #side_column .wrap #header ul.gnav {
  display: none;
}
#side_column .wrap #header ul.gnav li {
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  #side_column .wrap #header ul.gnav li {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 480px) {
  #side_column .wrap #header ul.gnav li {
    font-size: 3.75vw;
  }
}
#side_column .wrap #header ul.gnav li {
  font-weight: 600;
  line-height: 1em;
  padding-bottom: 2em;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  #side_column .wrap #header ul.gnav li {
    padding-bottom: 3vh;
  }
}
#side_column .wrap #header ul.gnav li a {
  display: inline-block;
  color: #32294d;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  #side_column .wrap #header ul.gnav li a {
    font-size: 2vh;
  }
}
#side_column .wrap #header ul.gnav li a:hover {
  color: #0e9b94;
}
#side_column .wrap #header .contact_btn {
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  #side_column .wrap #header .contact_btn {
    margin-bottom: 3vh;
  }
}
#side_column .wrap #header .contact_btn a {
  min-width: 15em;
  background: #0e9b94;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  #side_column .wrap #header .contact_btn a {
    font-size: 2vh;
  }
}
@media screen and (max-width: 768px) {
  #side_column .wrap #header .contact_btn {
    display: none;
    width: auto;
    margin-bottom: 0;
    margin-right: 3em;
  }
  #side_column .wrap #header .contact_btn a {
    line-height: 0.8em;
    min-width: 10em;
    height: 3em;
    padding: 1em 2em;
  }
}
.page-template-page-form-step #side_column .wrap #header .contact_btn {
  display: none;
}
@media screen and (max-width: 480px) {
  #side_column .wrap #header .contact_btn {
    display: none;
  }
}

/* ==========================================================================
    スライドショー : 
   ========================================================================== */
.slide_show {
  width: 100%;
  height: auto;
  aspect-ratio: 340/210;
  border-radius: 0.75em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .slide_show.pc {
    display: none;
  }
}
.slide_show.sp {
  margin-top: 4em;
}
@media screen and (min-width: 769px) {
  .slide_show.sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) and (min-aspect-ratio: 2000/750) {
  .slide_show.sp {
    display: block;
  }
}

/* ==========================================================================
    ページトップに戻るボタン
   ========================================================================== */
#page_top {
  width: 6em;
  height: auto;
  aspect-ratio: 1/1;
  position: fixed;
  right: 1.5em;
  bottom: 1.5em;
  background: rgb(9.775147929, 108.224852071, 103.3372781065);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5em);
  z-index: 999;
  transition: all 0.3s ease;
}
#page_top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#page_top a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding-bottom: 1em;
}
#page_top a::before {
  content: "";
  background-image: url("/images/ya_w_top.svg");
  background-size: 1em;
  background-repeat: no-repeat;
  font-size: 1em;
  color: #ffffff;
  position: absolute;
  width: 1em;
  height: 1em;
  top: -2.5em;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  transition: top ease 0.3s;
}
#page_top a span {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.5em;
}
#page_top a:hover::before {
  top: -3em;
}

/* =======================================================================================================================
　　　　　　　　　スマートフォンナビゲーション
======================================================================================================================= */
/* -------------------------- メニューボタン ------------------------------------------- */
.hm_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4em;
  height: 4em;
  position: fixed;
  top: 1em;
  left: auto;
  right: 1em;
  bottom: auto;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
}
.hm_btn_line {
  display: inline-block;
  width: 1.5em;
  height: 0.1em;
  background: #32294d;
  position: relative;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
.hm_btn_line::before, .hm_btn_line::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 0.1em;
  background: #32294d;
  position: absolute;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
.hm_btn_line::before {
  top: 0.5em;
}
.hm_btn_line::after {
  top: -0.5em;
}

/* 開閉時のアニメーション */
.hm_menu_check:checked ~ .hm_btn .hm_btn_line {
  height: 0em;
}
.hm_menu_check:checked ~ .hm_btn .hm_btn_line::before, .hm_menu_check:checked ~ .hm_btn .hm_btn_line::after {
  top: 0;
}
.hm_menu_check:checked ~ .hm_btn .hm_btn_line::before {
  transform: rotate(25deg);
}
.hm_menu_check:checked ~ .hm_btn .hm_btn_line::after {
  transform: rotate(-25deg);
}
.hm_menu_check:checked ~ .hm_btn::before {
  background: rgba(0, 0, 0, 0);
  box-shadow: #0e9b94 0 0.532em 0;
  transform: rotate(45deg) translate3d(0.5em, -0.25em, 0);
}
.hm_menu_check:checked ~ .hm_btn::after {
  background: #0e9b94;
  transform: rotate(-45deg) translate3d(0.5em, -0.25em, 0);
}

/* -------------------------- 格納領域 ------------------------------------------- */
.hm_menu_wrap {
  width: 100%;
  background: rgba(229, 229, 229, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: 0.7s;
  box-sizing: border-box;
  overflow: hidden;
  visibility: hidden;
  z-index: 9999;
}
.hm_menu_wrap .hm_inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  margin: 1em 0 1em 10em;
  border-radius: 2.5em 0 0 2.5em;
}
@media screen and (max-width: 480px) {
  .hm_menu_wrap .hm_inner {
    margin: 1em 0 1em 5em;
  }
}
.hm_menu_wrap .hm_inner .menucontent {
  box-sizing: border-box;
  padding: 4em;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: 0.3s ease;
  backface-visibility: hidden;
}
@media screen and (max-width: 480px) {
  .hm_menu_wrap .hm_inner .menucontent {
    padding: 3em 2em;
  }
}
.hm_menu_wrap .hm_inner .menucontent {
  /* 中身デザイン ------------------------------------------- */
}
.hm_menu_wrap .hm_inner .menucontent .gnav {
  padding-bottom: 2.5em;
}
.hm_menu_wrap .hm_inner .menucontent .gnav_main_wrap {
  padding-bottom: 4em;
}
@media screen and (max-width: 480px) {
  .hm_menu_wrap .hm_inner .menucontent .gnav_main_wrap {
    gap: 2em;
    padding-bottom: 2em;
    margin-bottom: 2em;
  }
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li {
  line-height: 1em;
  padding-top: 2em;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li a {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  gap: 0.5em;
  line-height: 1;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .hm_menu_wrap .hm_inner .menucontent .gnav ul li a {
    font-size: 0.9em;
  }
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li a::before {
  content: attr(data-eg);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1em;
  font-weight: 900;
  display: block;
  margin-bottom: -0.1em;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul {
  /* メインメニュー */
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul.main_menu li a {
  color: #000;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul.main_menu li a.eg {
  font-weight: 600;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul.main_menu li a {
  /* マウスオーバー下線 */
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul.main_menu li a::after {
  border-bottom-color: #0e9b94;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul.main_menu li.btn {
  font-size: 1em;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul.main_menu li.btn a {
  color: #ebf5f5;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul.main_menu li.btn a:hover {
  color: #0e9b94;
}

/* 開閉時のアニメーション */
.hm_menu_check:checked ~ .hm_menu_wrap {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
.hm_menu_check:checked ~ .hm_menu_wrap .menucontent {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateX(0);
}

/* ================= 格納ナビゲーション ============================================================ */
@media screen and (min-width: 769px) {
  .hm_btn,
  .hm_menu_wrap {
    display: none;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) and (min-aspect-ratio: 2000/750) {
  .hm_btn,
  .hm_menu_wrap {
    display: flex;
  }
}

.hm_menu_check {
  /* チェックボックスを隠す */
  display: none;
}

/* =======================================================================================================================
　　　　　　　　　フッター
======================================================================================================================= */
#footer {
  margin-top: -2em;
}
#footer .sec {
  padding: 5em 0;
}
#footer a {
  text-decoration: none;
}
#footer .footer_top {
  background: #ffffff;
  border-radius: 2em 2em 0 0;
}
#footer .footer_top .innerbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .innerbox {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer_top .leftbox {
    width: 100%;
  }
}
#footer .footer_top .leftbox .footer_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3em;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .leftbox .footer_nav {
    display: flex;
    justify-content: center;
    gap: 5em;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer_top .leftbox .footer_nav {
    gap: 2.5em;
  }
}
#footer .footer_top .leftbox .footer_nav ul.navlist li {
  display: block;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .leftbox .footer_nav ul.navlist li {
    padding-top: 0.5em;
  }
}
#footer .footer_top .leftbox .footer_nav ul.navlist li a {
  display: inline-block;
  font-weight: 600;
  line-height: 2em;
}
@media screen and (max-width: 480px) {
  #footer .footer_top .leftbox .footer_nav ul.navlist li a {
    font-size: 0.9em;
  }
}
#footer .footer_top .rightbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5em;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox {
    margin-top: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer_top .rightbox {
    width: 100%;
    justify-content: center;
    gap: 2.5em;
  }
}
#footer .footer_top .rightbox .map {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .map {
    width: 100%;
  }
}
#footer .footer_top .rightbox .map .linktxt {
  display: block;
  width: 100%;
  text-align: right;
}
#footer .footer_top .rightbox .map .linktxt a {
  font-size: 0.8em;
}
#footer .footer_top .rightbox .map .linktxt a i {
  margin-left: 0.5em;
}
#footer .footer_top .rightbox .map .googlemap {
  width: 25em;
  height: 16.5em;
  border-radius: 1em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .map .googlemap {
    width: 100%;
  }
}
#footer .footer_top .rightbox .map .googlemap iframe {
  height: 36.5em;
  margin-top: -10em;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .map .googlemap iframe {
    width: 100%;
    height: 46.5em;
    margin-top: -15em;
  }
}
#footer .footer_top .rightbox .map .address {
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1.5em;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .map .address {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer_top .rightbox .map .address {
    font-size: 0.68em;
    line-height: 1.5;
  }
}
#footer .footer_top .rightbox .convbox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .convbox {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .convbox .btn {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .convbox .btn a {
    width: 100%;
  }
}
#footer .footer_top .rightbox .convbox .recruit_btn {
  margin-bottom: 2.5em;
}
#footer .footer_top .rightbox .convbox .recruit_btn a {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #32294d;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
#footer .footer_top .rightbox .convbox .recruit_btn a:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .convbox .recruit_btn a {
    width: 100%;
  }
}
#footer .footer_top .rightbox .convbox .contact_btnbox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
#footer .footer_top .rightbox .convbox .contact_btnbox span {
  color: #0e9b94;
}
#footer .footer_top .rightbox .convbox .contact_btnbox span.stxt {
  display: block;
  line-height: 1em;
  font-weight: 500;
}
#footer .footer_top .rightbox .convbox .contact_btnbox span.ltxt {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.8em;
}
#footer .footer_top .rightbox .convbox .contact_btnbox .contact_btn {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .convbox .contact_btnbox .telbox {
    text-align: center;
  }
}
#footer .footer_top .rightbox .convbox .contact_btnbox .telbox .tel {
  display: block;
  font-size: 0.68em;
  line-height: 2em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .convbox .contact_btnbox .telbox .tel {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer_top .rightbox .convbox .contact_btnbox .telbox .tel {
    font-size: 1.15em;
  }
}
#footer .footer_top .rightbox .convbox .contact_btnbox .telbox .tel .number {
  display: inline-block;
  font-size: 1.25em;
  color: #0e9b94;
}
@media screen and (max-width: 480px) {
  #footer .footer_top .rightbox .convbox .contact_btnbox .telbox .tel .spnone {
    display: none;
  }
}
#footer .footer_top .rightbox .convbox .contact_btnbox .telbox .mail {
  display: flex;
  font-size: 0.68em;
  line-height: 2em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #footer .footer_top .rightbox .convbox .contact_btnbox .telbox .mail {
    font-size: 1em;
  }
}
#footer .footer_top .rightbox .convbox .contact_btnbox .telbox .mail i {
  display: block;
  font-size: 1.8em;
  line-height: 1.1em;
  margin-right: 0.3em;
}
#footer .footer_top .rightbox .convbox .contact_btnbox .telbox .mail .address {
  display: block;
  font-size: 1.25em;
  color: #0e9b94;
}
#footer .footer_btm {
  background: #0e9b94;
  color: #ffffff;
}
#footer .footer_btm a {
  color: #ffffff;
}
#footer .footer_btm .innerbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 480px) {
  #footer .footer_btm .innerbox {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer_btm .innerbox .footer_logo {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer_btm .innerbox .footer_logo {
    font-size: 1em;
    text-align: center;
  }
}
#footer .footer_btm .innerbox .footer_logo .logotxt {
  font-size: 0.8em;
  font-weight: 600;
  line-height: 2.5em;
}
#footer .footer_btm .innerbox .footer_logo .logotxt .strong {
  font-size: 1.25em;
  font-weight: 700;
}
#footer .footer_btm .innerbox .footer_logo .imgbox {
  width: 17.5em;
  height: auto;
}
#footer .footer_btm .innerbox .footer_logo .imgbox a {
  display: inline-block;
  width: 100%;
}
#footer .footer_btm .innerbox .footer_logo .imgbox img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .footer_btm .innerbox .linkbox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: auto;
}
@media screen and (max-width: 480px) {
  #footer .footer_btm .innerbox .linkbox {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 2.5em;
    gap: 2.5em;
  }
}
#footer .footer_btm .innerbox .linkbox ul.snslist {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}
#footer .footer_btm .innerbox .linkbox ul.snslist li {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#footer .footer_btm .innerbox .linkbox ul.snslist li a {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#footer .footer_btm .innerbox .linkbox ul.snslist li a i {
  font-size: 2em;
  color: #b0dbd9;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
#footer .footer_btm .innerbox .linkbox ul.snslist li a:hover i {
  color: #fff;
}
#footer .footer_btm .innerbox .linkbox .linklist {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}
#footer .footer_btm .innerbox .linkbox .linklist li {
  font-size: 0.8em;
  font-weight: 500;
  line-height: 2.5em;
  color: #b0dbd9;
}
#footer .footer_btm .innerbox .linkbox .linklist li a {
  color: inherit;
}
#footer .footer_btm .innerbox .linkbox .linklist li a:hover {
  color: #fff;
}

.main a {
  text-decoration: none;
}
.main a:hover {
  color: inherit;
}
.main a:hover img {
  opacity: 1;
}
.main .btn a:hover {
  color: #fff;
}
.main img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.main_head .txt_eg {
  display: inline-block;
  font-size: 6.8em;
  line-height: 1;
  color: #32294d;
  margin-bottom: 0.1em;
}
@media screen and (max-width: 768px) {
  .main_head .txt_eg {
    font-size: 5em;
  }
}
@media screen and (max-width: 480px) {
  .main_head .txt_eg {
    font-size: 4em;
  }
}
.main_head .txt_eg .accent {
  color: #0e9b94;
}
.main_head .txt_ja {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8em;
  line-height: 1;
  color: #32294d;
}
@media screen and (max-width: 768px) {
  .main_head .txt_ja {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_head .txt_ja {
    font-size: 1.2em;
  }
}
.main_topnews {
  position: absolute;
  top: 1em;
  left: 19em;
  z-index: 10;
}
@media screen and (min-width: 769px) and (min-width: 769px) and (min-aspect-ratio: 2000/750) {
  .main_topnews {
    left: 1em;
  }
}
@media screen and (max-width: 768px) {
  .main_topnews {
    width: calc(100% - 2em);
    top: 6em;
    left: 1em;
  }
}
.main_topnews_link {
  width: 100%;
  height: 2.5em;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 2.5em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .main_topnews_link {
    height: 4em;
    flex-direction: column;
    border-radius: 1em;
  }
}
.main_topnews_link:hover .btn_wrap {
  background-position: right 0.25em top 50%;
  background-size: auto 0.7em;
}
.main_topnews_ttl {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0 1.2em 0 1.1em;
  border-radius: 2.5em 0 0 2.5em;
  background: #d3ebea;
  color: #0e9b94;
}
@media screen and (max-width: 768px) {
  .main_topnews_ttl {
    display: none;
  }
}
.main_topnews_ttl .txt_en {
  display: flex;
  font-size: 1.2em;
  font-weight: 900;
  line-height: 1;
}
.main_topnews_ttl .txt_ja {
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1;
}
.main_topnews_contents {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  padding: 0 0.5em 0 1.4em;
  border-radius: 0 2.5em 2.5em 0;
}
@media screen and (max-width: 768px) {
  .main_topnews_contents {
    width: 100%;
    border-radius: 0 0 1em 1em;
    padding: 0 1em;
    gap: 1em;
  }
}
.main_topnews_contents .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .main_topnews_contents .item {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    /* Opera9,10対応 */
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .main_topnews_contents .item {
    width: 30em;
  }
}
.main_topnews_contents .date {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .main_topnews_contents .date {
    font-size: 0.8em;
  }
}
.main_topnews_contents .ttl {
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  /* Opera9,10対応 */
}
@media screen and (min-width: 769px) {
  .main_topnews_contents .ttl {
    width: 18em;
  }
}
@media screen and (max-width: 768px) {
  .main_topnews_contents .ttl {
    font-size: 0.8em;
  }
}
.main_topnews_contents .btn {
  display: flex;
}
@media screen and (max-width: 768px) {
  .main_topnews_contents .btn {
    width: 8em;
    margin-top: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_topnews_contents .btn {
    width: 13em;
  }
}
.main_topnews_contents .btn_wrap {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.main_topnews_contents .btn_wrap:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
.main_topnews_contents .btn_wrap {
  display: flex;
  align-items: center;
  min-width: auto;
  height: 1.5em;
  padding: 0 2em 0 1em;
  background-position: right 0.5em top 50%;
  background-size: auto 0.7em;
  pointer-events: none;
}
.main_topnews_contents .btn_wrap .txt {
  display: flex;
  font-size: 0.7em;
  font-weight: 500;
  line-height: 1;
}
.main_fv {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  min-height: 40em;
  height: 100vh;
  max-height: 75em;
  padding-left: 18em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main_fv {
    min-height: 50em;
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .main_fv {
    min-height: 38em;
    max-height: 55em;
  }
}
.main_fv_copy {
  display: flex;
  position: absolute;
  z-index: 10;
}
.main_fv_copy .txt {
  font-size: 2.5em;
  line-height: 1.8;
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  writing-mode: vertical-rl;
  color: #32294d;
  text-indent: -0.5em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .main_fv_copy .txt {
    font-size: 2em;
  }
}
@media screen and (max-width: 480px) {
  .main_fv_copy .txt {
    font-size: 1.5em;
  }
}
.main_fv_typo {
  position: absolute;
  bottom: -1.5em;
  left: 17.5em;
  z-index: 4;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/750) {
  .main_fv_typo {
    left: -1em;
  }
}
@media screen and (max-width: 768px) {
  .main_fv_typo {
    bottom: -1em;
    left: -0.5em;
  }
}
.main_fv_typo .txt_ja {
  position: absolute;
  top: 5.5em;
  left: 36em;
}
@media screen and (max-width: 768px) {
  .main_fv_typo .txt_ja {
    top: 2.5em;
    left: 20em;
  }
}
@media screen and (max-width: 480px) {
  .main_fv_typo .txt_ja {
    top: 1.5em;
    left: 14em;
  }
}
.main_fv_typo .txt_ja .txt {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #197069;
}
@media screen and (max-width: 768px) {
  .main_fv_typo .txt_ja .txt {
    font-size: 1em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 480px) {
  .main_fv_typo .txt_ja .txt {
    font-size: 0.75em;
  }
}
.main_fv_typo .txt_en {
  font-size: 10em;
  line-height: 0.9;
  color: #32294d;
}
@media screen and (max-width: 768px) {
  .main_fv_typo .txt_en {
    font-size: 5.5em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 480px) {
  .main_fv_typo .txt_en {
    font-size: 3.75em;
  }
}
.main_fv_typo .txt_en .accent {
  color: #197069;
}
.main_fv_bg, .main_fv_img {
  width: 100%;
  height: 100svh;
  min-height: 45em;
  max-height: 60em;
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 768px) {
  .main_fv_bg, .main_fv_img {
    min-height: 85em;
    max-height: 124.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_fv_bg, .main_fv_img {
    min-height: 95em;
  }
}
@media screen and (max-width: 768px) {
  .main_fv_bg {
    font-size: 1.5vw;
  }
}
.main_fv_bg .imgbox {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .main_fv_bg .imgbox {
    font-size: 2vw;
  }
}
.main_fv_bg .imgbox.bg1 {
  width: 63.65em;
  aspect-ratio: 1273/870;
  background: linear-gradient(135deg, #cfaaeb 0%, #4f9bdc 100%);
  -webkit-mask-image: url(/images/main_bg01.svg);
  mask-image: url(/images/main_bg01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  bottom: 8.8em;
  right: 31.25em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .main_fv_bg .imgbox.bg1 {
    bottom: 26em;
    right: 16em;
    transform: rotate(45deg);
  }
}
.main_fv_bg .imgbox.bg2 {
  width: 60em;
  aspect-ratio: 1203/880;
  background: linear-gradient(45deg, #4f9bdc 0%, #86ebcd 80%);
  -webkit-mask-image: url(/images/main_bg02.svg);
  mask-image: url(/images/main_bg02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  bottom: 7.8em;
  right: 30.75em;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .main_fv_bg .imgbox.bg2 {
    bottom: 28em;
    right: 15em;
    transform: rotate(45deg);
  }
}
.main_fv_bg .imgbox.bg3 {
  width: 35em;
  aspect-ratio: 700/510;
  background: linear-gradient(315deg, #ecc1be 0%, #fdb0d8 50%, #cfaaeb 100%);
  -webkit-mask-image: url(/images/main_bg03.svg);
  mask-image: url(/images/main_bg03.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  bottom: -2em;
  right: -2em;
  z-index: 1;
}
.main_fv_bg .imgbox.bg4 {
  width: 33.75em;
  aspect-ratio: 675/462;
  background: linear-gradient(45deg, #86ebe6 0%, #fde85e 80%);
  -webkit-mask-image: url(/images/main_bg04.svg);
  mask-image: url(/images/main_bg04.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  bottom: 0.5em;
  right: -9em;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .main_fv_bg .imgbox.bg4 {
    bottom: 7.5em;
  }
}
.main_fv_bg .imgbox.bg4 .img {
  width: 25em;
  height: 16.25em;
  position: absolute;
  bottom: -1.35em;
  left: 1.25em;
}
@media screen and (max-width: 768px) {
  .main_fv_bg .imgbox.bg4 .img {
    bottom: -4em;
  }
}
.main_fv_img {
  position: absolute;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .main_fv_img {
    font-size: 1.5vw;
  }
}
.main_fv_img .imgbox {
  position: absolute;
}
.main_fv_img .imgbox.img1 {
  width: 8.5em;
  aspect-ratio: 170/220;
  right: 1.3em;
  bottom: 15.6em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img1 {
    bottom: 28em;
  }
}
.main_fv_img .imgbox.img2 {
  width: 7em;
  aspect-ratio: 140/248;
  right: 11.4em;
  bottom: 15.6em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img2 {
    bottom: 28em;
  }
}
.main_fv_img .imgbox.img3 {
  width: 7em;
  aspect-ratio: 140/244;
  right: 18.4em;
  bottom: 22.25em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img3 {
    bottom: 34em;
  }
}
.main_fv_img .imgbox.img4 {
  width: 6.7em;
  aspect-ratio: 134/277;
  right: 27.4em;
  bottom: 14.35em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img4 {
    right: 35em;
    bottom: 23.5em;
  }
}
.main_fv_img .imgbox.img5 {
  width: 7.95em;
  aspect-ratio: 159/238;
  right: 26.15em;
  bottom: 33.65em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img5 {
    right: 23em;
    bottom: 52em;
  }
}
.main_fv_img .imgbox.img6 {
  width: 4.7em;
  aspect-ratio: 94/197;
  right: 36.7em;
  bottom: 38.65em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img6 {
    right: 31.7em;
    bottom: 67.65em;
  }
}
.main_fv_img .imgbox.img7 {
  width: 3.4em;
  aspect-ratio: 68/255;
  right: 38.4em;
  bottom: 23.4em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img7 {
    bottom: 43.4em;
  }
}
.main_fv_img .imgbox.img8 {
  width: 6.1em;
  aspect-ratio: 122/270;
  right: 42.65em;
  bottom: 23.8em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img8 {
    bottom: 43.8em;
  }
}
.main_fv_img .imgbox.img9 {
  width: 7.05em;
  aspect-ratio: 141/233;
  right: 49.3em;
  bottom: 36.4em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img9 {
    right: 45em;
    bottom: 76.5em;
  }
}
.main_fv_img .imgbox.img10 {
  width: 3.85em;
  aspect-ratio: 77/236;
  right: 52em;
  bottom: 18.2em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img10 {
    bottom: 51.2em;
  }
}
.main_fv_img .imgbox.img11 {
  width: 2.75em;
  aspect-ratio: 55/243;
  right: 59em;
  bottom: 30.9em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img11 {
    right: 41em;
    bottom: 63em;
  }
}
.main_fv_img .imgbox.img12 {
  width: 6.55em;
  aspect-ratio: 131/159;
  right: 61.5em;
  bottom: 40.5em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img12 {
    right: 57.5em;
    bottom: 85.5em;
  }
}
.main_fv_img .imgbox.img13 {
  width: 13.1em;
  aspect-ratio: 262/224;
  right: 66.5em;
  bottom: 33.75em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img13 {
    right: 52.5em;
    bottom: 66.75em;
  }
}
.main_fv_img .imgbox.img14 {
  width: 16em;
  aspect-ratio: 320/282;
  right: 61.75em;
  bottom: 18.1em;
}
@media screen and (max-width: 768px) {
  .main_fv_img .imgbox.img14 {
    right: 47.75em;
    bottom: 32.1em;
  }
}
.main_lead {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .main_lead {
    padding: 25em 0 15em;
  }
}
.main_lead .innerbox {
  z-index: 1;
}
.main_lead_ttl {
  font-size: 1em;
  line-height: 1;
  text-align: center;
  padding-bottom: 2.5em;
  position: relative;
}
@media screen and (max-width: 480px) {
  .main_lead_ttl {
    text-align: left;
  }
}
.main_lead_ttl .txt {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3em;
  line-height: 1.5;
  color: #32294d;
}
@media screen and (max-width: 768px) {
  .main_lead_ttl .txt {
    font-size: 2em;
  }
}
@media screen and (max-width: 480px) {
  .main_lead_ttl .txt {
    font-size: 1.7em;
  }
}
.main_lead_copy {
  line-height: 1;
  text-align: center;
  padding-bottom: 1.1em;
  position: relative;
}
@media screen and (max-width: 480px) {
  .main_lead_copy {
    text-align: left;
  }
}
.main_lead_copy .txt {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .main_lead_copy .txt {
    font-size: 1.25em;
  }
}
.main_lead_txt {
  line-height: 1;
  text-align: center;
  padding-bottom: 3.4em;
  position: relative;
}
@media screen and (max-width: 480px) {
  .main_lead_txt {
    text-align: left;
  }
}
.main_lead_txt .txt {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .main_lead_txt .txt {
    font-size: 1em;
  }
}
.main_lead_btn {
  text-align: center;
  position: relative;
  margin-bottom: 0;
}
.main_lead_deco {
  position: absolute;
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  .main_lead_deco {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .main_lead_deco {
    font-size: 2.5vw;
  }
}
.main_lead_deco.img1 {
  width: 27.5em;
  height: 33.75em;
  top: 5.5em;
  left: -2.5em;
  background: linear-gradient(135deg, #86ebcd 0%, #fde85e 100%);
  -webkit-mask-image: url(/images/yourstyle_bg01.svg);
  mask-image: url(/images/yourstyle_bg01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
@media screen and (max-width: 480px) {
  .main_lead_deco.img1 {
    top: 15.5em;
  }
}
.main_lead_deco.img2 {
  width: 21.8em;
  aspect-ratio: 218/280;
  top: 12.5em;
  left: -1em;
}
@media screen and (max-width: 768px) {
  .main_lead_deco.img2 {
    width: 15em;
  }
}
@media screen and (max-width: 480px) {
  .main_lead_deco.img2 {
    width: 12em;
    top: 22.5em;
    left: 0.5em;
  }
}
.main_lead_deco.img3 {
  width: 30em;
  height: 24.4em;
  top: 28.5em;
  left: -8.5em;
}
@media screen and (max-width: 768px) {
  .main_lead_deco.img3 {
    top: 72.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_lead_deco.img3 {
    top: 93.5em;
    z-index: 1;
  }
}
.main_lead_deco.img4 {
  width: 36.5em;
  height: 41.5em;
  top: 15.5em;
  right: -7.5em;
  background: linear-gradient(45deg, #4f9bdc 0%, #cfaaeb 50%, #fdb0d8 100%);
  -webkit-mask-image: url(/images/yourstyle_bg02.svg);
  mask-image: url(/images/yourstyle_bg02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
@media screen and (max-width: 768px) {
  .main_lead_deco.img4 {
    top: 47em;
  }
}
@media screen and (max-width: 480px) {
  .main_lead_deco.img4 {
    top: 74em;
  }
}
.main_lead_deco.img5 {
  width: 12.5em;
  height: 13.85em;
  top: 25.5em;
  right: 14em;
}
@media screen and (max-width: 768px) {
  .main_lead_deco.img5 {
    top: 70em;
  }
}
@media screen and (max-width: 480px) {
  .main_lead_deco.img5 {
    top: 84em;
  }
}
.main_lead_deco.img6 {
  width: 7.25em;
  height: 18.5em;
  top: 36.5em;
  right: 5em;
}
@media screen and (max-width: 768px) {
  .main_lead_deco.img6 {
    top: 57.5em;
    right: 2em;
  }
}
@media screen and (max-width: 480px) {
  .main_lead_deco.img6 {
    top: 89.5em;
  }
}
.main_lead_deco.img7 {
  width: 30em;
  aspect-ratio: 3000/1935;
  top: 5.5em;
  right: -7.5em;
}
@media screen and (max-width: 768px) {
  .main_lead_deco.img7 {
    width: 40em;
  }
}
@media screen and (max-width: 480px) {
  .main_lead_deco.img7 {
    width: 35em;
    top: 15em;
  }
}
.main_style_ttl {
  display: flex;
  justify-content: center;
  padding: 12.5em 0 10em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main_style_ttl {
    padding: 12.5em 0 11.5em;
  }
}
.main_style_ttl .txt {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  writing-mode: vertical-rl;
  font-size: 1.5em;
  line-height: 1.5;
  color: #32294d;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .main_style_ttl .txt {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 480px) {
  .main_style_ttl .txt {
    font-size: 1.1em;
  }
}
.main_style_list {
  width: 42em;
  height: auto;
  aspect-ratio: 840/805;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .main_style_list {
    width: 32em;
  }
}
@media screen and (max-width: 480px) {
  .main_style_list {
    width: 95%;
    aspect-ratio: 840/900;
  }
}
.main_style_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12em;
  height: auto;
  aspect-ratio: 1/1;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .main_style_item {
    width: 8.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_style_item {
    width: 7.5em;
  }
}
.main_style_item:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.main_style_item:nth-child(2) {
  top: 10.5em;
  right: 0;
}
@media screen and (max-width: 480px) {
  .main_style_item:nth-child(2) {
    top: 8.5em;
  }
}
.main_style_item:nth-child(3) {
  bottom: 0;
  right: 6em;
}
@media screen and (max-width: 480px) {
  .main_style_item:nth-child(3) {
    right: 3em;
  }
}
.main_style_item:nth-child(4) {
  bottom: 0;
  left: 6em;
}
@media screen and (max-width: 480px) {
  .main_style_item:nth-child(4) {
    left: 3em;
  }
}
.main_style_item:nth-child(5) {
  top: 10.5em;
  left: 0;
}
@media screen and (max-width: 480px) {
  .main_style_item:nth-child(5) {
    top: 8.5em;
  }
}
.main_style_item .txt {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1;
  color: #0e9b94;
}
@media screen and (max-width: 768px) {
  .main_style_item .txt {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 480px) {
  .main_style_item .txt {
    font-size: 0.75em;
  }
}
.main_style_deco {
  height: auto;
  position: absolute;
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  .main_style_deco {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .main_style_deco {
    font-size: 2.5vw;
  }
}
.main_style_deco.img1 {
  width: 67.5%;
  aspect-ratio: 675/375;
  top: 15em;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(135deg, #fdb0d8 20%, #fde85e 85%);
  -webkit-mask-image: url(/images/yourstyle_bg03.svg);
  mask-image: url(/images/yourstyle_bg03.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
@media screen and (max-width: 768px) {
  .main_style_deco.img1 {
    width: 120%;
    top: 12em;
  }
}
@media screen and (max-width: 480px) {
  .main_style_deco.img1 {
    width: 140%;
    top: 18.5em;
  }
}
.main_style_deco.img2 {
  width: 10.5%;
  aspect-ratio: 1050/1675;
  top: 3.35em;
  right: 18%;
}
@media screen and (max-width: 768px) {
  .main_style_deco.img2 {
    width: 21%;
    top: 0;
    right: 6%;
  }
}
@media screen and (max-width: 480px) {
  .main_style_deco.img2 {
    top: 10em;
  }
}
.main_style_deco.img3 {
  width: 6.75%;
  aspect-ratio: 675/1415;
  top: 6.4em;
  right: 24.75%;
}
@media screen and (max-width: 768px) {
  .main_style_deco.img3 {
    width: 13.5%;
    top: 3em;
    right: 18%;
  }
}
@media screen and (max-width: 480px) {
  .main_style_deco.img3 {
    top: 13em;
  }
}
.main_style_deco.img4 {
  width: 23.9%;
  aspect-ratio: 478/927;
  bottom: -5em;
  left: -5%;
}
@media screen and (max-width: 768px) {
  .main_style_deco.img4 {
    width: 27.485%;
    bottom: -4em;
  }
}
.main_style_deco.img5 {
  width: 19.25%;
  aspect-ratio: 385/686;
  right: -1.5%;
  bottom: -1.5em;
}
@media screen and (max-width: 768px) {
  .main_style_deco.img5 {
    width: 22.1375%;
  }
}
.main_style .txtloop {
  position: absolute;
  bottom: 4em;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .main_style .txtloop {
    bottom: -1.25em;
  }
}
.main_style .txtloop_inner {
  animation: txtloop 100s linear infinite;
}
.main_style .txtloop .txt {
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
  color: #b0dbd9;
}
@media screen and (max-width: 480px) {
  .main_style .txtloop .txt {
    font-size: 25vw;
  }
}
.main_support {
  background: #d3ebea;
}
.main_support_list {
  display: flex;
  gap: 1.6em;
  margin-top: 5em;
}
@media screen and (max-width: 768px) {
  .main_support_list {
    flex-wrap: wrap;
    padding: 0 2.5em;
    gap: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_support_list {
    padding: 0;
  }
}
.main_support_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 3.2em) / 3);
  border-radius: 1em;
  padding: 0 1.5em 2.5em;
}
@media screen and (max-width: 768px) {
  .main_support_item {
    width: 100%;
  }
}
.main_support_item:nth-child(1) {
  background: linear-gradient(-45deg, #4f9bdc, #cfaaeb);
}
.main_support_item:nth-child(1) .imgbox {
  width: 18.9em;
}
.main_support_item:nth-child(1) .btn a {
  color: #4f9bdc;
  background-image: url(/images/ya_b.svg);
}
.main_support_item:nth-child(2) {
  background: linear-gradient(-45deg, #bdd753, #2fc6d4);
}
.main_support_item:nth-child(2) .imgbox {
  width: 15.35em;
}
.main_support_item:nth-child(2) .btn a {
  color: #78b15c;
  background-image: url(/images/ya_g.svg);
}
.main_support_item:nth-child(3) {
  background: linear-gradient(-45deg, #fdce5e, #f38a83);
}
.main_support_item:nth-child(3) .imgbox {
  width: 15.2em;
}
.main_support_item:nth-child(3) .btn a {
  color: #f38a83;
  background-image: url(/images/ya_r.svg);
}
.main_support_item .imgbox {
  margin-top: -2.5em;
  margin-bottom: 1.5em;
  position: relative;
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  .main_support_item .imgbox {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .main_support_item .imgbox {
    font-size: 2.5vw;
  }
}
.main_support_item .ttl {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .main_support_item .ttl {
    font-size: 1.3em;
  }
}
.main_support_item .txt {
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  padding: 1em 0 1.5em;
}
@media screen and (max-width: 480px) {
  .main_support_item .txt {
    font-size: 0.85em;
  }
}
.main_support_item .btn {
  width: auto;
  margin-bottom: 0;
}
.main_support_item .btn a {
  background-color: #ffffff;
}
.main_point {
  background: #d3ebea;
  padding: 0;
}
@media screen and (max-width: 768px) and (min-width: 481px) and (min-aspect-ratio: 1/1) {
  .main_point {
    width: 100%;
    height: 100vh;
  }
}
@media screen and (max-width: 480px) and (min-aspect-ratio: 400/525) {
  .main_point {
    width: 100%;
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  .main_point::before {
    content: "お使いの端末では閲覧することができません";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #0e9b94;
    color: #fff;
    align-items: center;
    justify-content: center;
    display: none;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) and (min-aspect-ratio: 1/1) {
  .main_point::before {
    display: flex;
  }
}
@media screen and (max-width: 480px) and (min-aspect-ratio: 400/525) {
  .main_point::before {
    display: flex;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) and (min-aspect-ratio: 1/1) {
  .main_point .innerbox {
    display: none;
  }
}
@media screen and (max-width: 480px) and (min-aspect-ratio: 400/525) {
  .main_point .innerbox {
    display: none;
  }
}
.main_point_stk {
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 10;
  pointer-events: none;
}
.main_point_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 29em;
  height: 100vh;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .main_point_head {
    justify-content: flex-start;
    width: 100%;
    padding-top: 5em;
  }
}
@media screen and (max-width: 768px) and (min-aspect-ratio: 600/700) {
  .main_point_head {
    padding-top: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_point_head {
    padding-top: 2.5em;
  }
}
.main_point_head .btn {
  margin-top: 5em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .main_point_head .btn {
    margin-top: 2.5em;
  }
}
.main_point_steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
  position: absolute;
  top: 50%;
  right: -5em;
  transform: translateY(-50%);
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .main_point_steps {
    right: -1.5em;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) and (max-aspect-ratio: 600/701) {
  .main_point_steps {
    flex-direction: row;
    inset: auto auto 1em 50%;
    transform: translateX(-50%) translateY(0);
  }
}
@media screen and (max-width: 480px) {
  .main_point_steps {
    right: -1em;
  }
}
@media screen and (max-width: 480px) and (max-aspect-ratio: 400/651) {
  .main_point_steps {
    flex-direction: row;
    inset: auto auto 1em 50%;
    transform: translateX(-50%) translateY(0);
  }
}
.main_point_steps .step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  aspect-ratio: 1/1;
  background: #ffffff;
  border-radius: 50%;
}
.main_point_steps .step.active {
  background: #0e9b94;
}
.main_point_steps .step.active .number {
  opacity: 1;
  color: #fff;
}
.main_point_steps .step:hover .number {
  opacity: 1;
}
.main_point_steps .step .number {
  font-size: 1.2em;
  font-weight: 700;
  opacity: 0.5;
  color: #0e9b94;
}
.main_point_list {
  margin-top: -100vh;
  position: relative;
}
.main_point_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  padding-left: 29em;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 768px) {
  .main_point_item {
    padding-left: 0;
  }
}
.main_point_item:nth-child(1) {
  z-index: 1;
}
.main_point_item:nth-child(2) {
  z-index: 2;
}
.main_point_item:nth-child(3) {
  z-index: 3;
}
.main_point_item:nth-child(4) {
  z-index: 4;
}
.main_point_item:nth-child(5) {
  z-index: 5;
}
.main_point_item_box {
  display: flex;
  width: 100%;
  height: 43em;
  background: #ffffff;
  padding: 2.5em 2em 2em 1.5em;
  border-radius: 1em;
  /* スクロール演出 */
  transform-origin: center center;
  transition: transform 0.1s ease-out;
  will-change: transform;
  /* 初期状態 */
  transform: translateY(200px) rotateX(-25deg) rotateY(15deg) scale(0.9);
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  .main_point_item_box {
    font-size: 2vh;
  }
}
@media screen and (max-width: 768px) {
  .main_point_item_box {
    height: auto;
    flex-direction: column;
    position: absolute;
    top: 60vh;
    translate: 0% -25vh;
  }
}
@media screen and (max-width: 768px) and (min-aspect-ratio: 600/700) {
  .main_point_item_box {
    padding: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_point_item_box {
    padding: 2.5em 1.5em;
  }
}
@media screen and (max-width: 480px) and (min-aspect-ratio: 400/650) {
  .main_point_item_box {
    padding: 1em 1.5em;
    min-height: 65%;
  }
}
.main_point_item_box .leftbox {
  display: flex;
  align-items: center;
  gap: 2em;
}
@media screen and (min-width: 769px) {
  .main_point_item_box .leftbox {
    flex-direction: column;
    padding-right: 1.5em;
    border-right: 0.2em solid #d3ebea;
    margin-right: 2em;
  }
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  .main_point_item_box .leftbox {
    width: 10em;
  }
}
@media screen and (max-width: 768px) {
  .main_point_item_box .leftbox {
    flex-direction: row;
    padding-bottom: 1em;
    border-bottom: 0.2em solid #d3ebea;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 480px) {
  .main_point_item_box .leftbox {
    gap: 1em;
  }
}
.main_point_item_box .leftbox .circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5em;
  height: 5em;
  background: #d3ebea;
  color: #0e9b94;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .main_point_item_box .leftbox .circle {
    font-size: 2vw;
  }
}
.main_point_item_box .leftbox .circle .eg {
  line-height: 1;
  font-weight: 700;
}
.main_point_item_box .leftbox .circle .number {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1;
}
.main_point_item_box .leftbox .ttl_ja {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  writing-mode: vertical-rl;
  font-size: 2em;
  line-height: 1.5;
  color: #0e9b94;
}
@media screen and (max-width: 768px) {
  .main_point_item_box .leftbox .ttl_ja {
    writing-mode: horizontal-tb;
    font-size: 1.25em;
  }
}
@media screen and (max-width: 480px) {
  .main_point_item_box .leftbox .ttl_ja {
    font-size: 1.1em;
  }
}
.main_point_item_box .rightbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  .main_point_item_box .rightbox {
    width: calc(100% - 10em);
  }
}
.main_point_item_box .rightbox .ttl_en {
  display: inline-block;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .main_point_item_box .rightbox .ttl_en {
    top: -7.5em;
  }
}
@media screen and (max-width: 768px) and (min-aspect-ratio: 600/700) {
  .main_point_item_box .rightbox .ttl_en {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .main_point_item_box .rightbox .ttl_en {
    top: -7em;
  }
}
@media screen and (max-width: 480px) and (min-aspect-ratio: 400/650) {
  .main_point_item_box .rightbox .ttl_en {
    display: none;
  }
}
.main_point_item_box .rightbox .ttl_en .eg {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
  color: #0e9b94;
}
@media screen and (max-width: 768px) {
  .main_point_item_box .rightbox .ttl_en .eg {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  .main_point_item_box .rightbox .ttl_en .eg {
    font-size: 0.9em;
  }
}
.main_point_item_box .rightbox .imgbox {
  padding: 0 4em;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  .main_point_item_box .rightbox .imgbox {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .main_point_item_box .rightbox .imgbox {
    height: 100%;
    padding: 0;
    margin: 0 auto 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_point_item_box .rightbox .imgbox {
    margin: 0 auto 1.5em;
  }
}
.main_point_item_box .rightbox .imgbox .item1,
.main_point_item_box .rightbox .imgbox .item2,
.main_point_item_box .rightbox .imgbox .item3,
.main_point_item_box .rightbox .imgbox .item4,
.main_point_item_box .rightbox .imgbox .item5 {
  width: 100%;
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  .main_point_item_box .rightbox .imgbox .item1,
  .main_point_item_box .rightbox .imgbox .item2,
  .main_point_item_box .rightbox .imgbox .item3,
  .main_point_item_box .rightbox .imgbox .item4,
  .main_point_item_box .rightbox .imgbox .item5 {
    width: 56vh;
  }
}
@media screen and (max-width: 768px) {
  .main_point_item_box .rightbox .imgbox .item1,
  .main_point_item_box .rightbox .imgbox .item2,
  .main_point_item_box .rightbox .imgbox .item3,
  .main_point_item_box .rightbox .imgbox .item4,
  .main_point_item_box .rightbox .imgbox .item5 {
    width: auto;
    height: 20vh;
  }
}
@media screen and (max-width: 480px) {
  .main_point_item_box .rightbox .imgbox .item1,
  .main_point_item_box .rightbox .imgbox .item2,
  .main_point_item_box .rightbox .imgbox .item3,
  .main_point_item_box .rightbox .imgbox .item4,
  .main_point_item_box .rightbox .imgbox .item5 {
    height: 12.5vh;
  }
}
.main_point_item_box .rightbox .imgbox .item1 {
  aspect-ratio: 605/385;
}
.main_point_item_box .rightbox .imgbox .item2 {
  aspect-ratio: 588/398;
}
.main_point_item_box .rightbox .imgbox .item3 {
  aspect-ratio: 592/491;
}
.main_point_item_box .rightbox .imgbox .item4 {
  aspect-ratio: 576/356;
}
.main_point_item_box .rightbox .imgbox .item5 {
  aspect-ratio: 593/365;
}
.main_point_item_box .rightbox .txt {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .main_point_item_box .rightbox .txt {
    font-size: 0.9em;
  }
}
@media screen and (min-width: 769px) {
  .main_point_item:nth-child(1) .imgbox, .main_point_item:nth-child(2) .imgbox, .main_point_item:nth-child(4) .imgbox {
    margin-bottom: 6em;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  .main_point_item:nth-child(1) .imgbox, .main_point_item:nth-child(2) .imgbox, .main_point_item:nth-child(4) .imgbox {
    margin-bottom: 4vh;
  }
}
@media screen and (min-width: 769px) {
  .main_point_item:nth-child(3) .imgbox {
    margin-bottom: 3.5em;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  .main_point_item:nth-child(3) .imgbox {
    margin-bottom: 4vh;
  }
}
@media screen and (min-width: 769px) {
  .main_point_item:nth-child(5) .imgbox {
    margin-bottom: 8.75em;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) and (min-aspect-ratio: 2000/950) {
  .main_point_item:nth-child(5) .imgbox {
    margin-bottom: 4vh;
  }
}
.main_result {
  background: #d3ebea;
  padding-top: 5em;
}
.main_result_box {
  width: 100%;
  height: 40em;
  background: #ebf5f5;
  border-radius: 1em;
  padding: 5.5em 7.25em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main_result_box {
    height: auto;
    padding: 5em;
  }
}
@media screen and (max-width: 480px) {
  .main_result_box {
    padding: 5em 2.5em;
  }
}
.main_result_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .main_result_item {
    flex-direction: column;
    gap: 5em;
  }
}
.main_result_item .job {
  width: 28em;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: conic-gradient(#0e9b94 var(--p1), #6cbcb6 var(--p1) var(--p2), #9cd8d2 var(--p2) var(--p3), #32294d var(--p3) 100%);
  position: relative;
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .main_result_item .job {
    width: 100%;
  }
}
.main_result_item .job .total {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78.5%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  .main_result_item .job .total {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .main_result_item .job .total {
    font-size: 2.5vw;
  }
}
.main_result_item .job .total .ttl {
  display: inline-block;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  color: #0e9b94;
}
.main_result_item .job .total .number {
  display: inline-block;
  font-size: 9em;
  font-weight: 700;
  line-height: 1;
  color: #0e9b94;
}
.main_result_item .job .total .unit {
  display: inline-block;
  font-size: 4.5em;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -0.1em;
  color: #0e9b94;
}
.main_result_item .job .subtotal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  gap: 0.25em;
  white-space: nowrap;
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  .main_result_item .job .subtotal {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .main_result_item .job .subtotal {
    font-size: 2.5vw;
  }
}
.main_result_item .job .subtotal.item1 {
  top: 10%;
  left: 92%;
  color: #0e9b94;
}
.main_result_item .job .subtotal.item2 {
  top: 103%;
  left: 50%;
  transform: translateX(-50%);
  color: #6cbcb6;
}
.main_result_item .job .subtotal.item3 {
  top: 7.5%;
  left: -7.5%;
}
.main_result_item .job .subtotal.item3 .ttl {
  font-size: 0.9em;
}
.main_result_item .job .subtotal.item4 {
  top: -13%;
  left: 32.5%;
  color: #32294d;
}
.main_result_item .job .subtotal.item4 .ttl {
  font-size: 0.9em;
}
.main_result_item .job .subtotal .ttl {
  display: inline-block;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
}
.main_result_item .job .subtotal .number {
  display: inline-block;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
}
.main_result_item .job .subtotal .unit {
  display: inline-block;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1;
}
.main_result_item .corp {
  position: relative;
  margin-right: -2.25em;
}
@media screen and (max-width: 768px) {
  .main_result_item .corp {
    margin-right: 0;
  }
}
.main_result_item .corp .total {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  .main_result_item .corp .total {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .main_result_item .corp .total {
    font-size: 2.5vw;
  }
}
.main_result_item .corp .total {
  color: #32294d;
}
.main_result_item .corp .total .ttl {
  display: inline-block;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
}
.main_result_item .corp .total .number {
  display: inline-block;
  font-size: 9em;
  font-weight: 700;
  line-height: 1;
}
.main_result_item .corp .total .unit {
  display: inline-block;
  font-size: 4.5em;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -0.1em;
}
.main_result_item .corp .total .txt {
  display: inline-block;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -0.2em;
}
.main_result_item .corp .bgbox {
  width: 32.5em;
  aspect-ratio: 650/470;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main_result_item .corp .bgbox {
    width: 110%;
    margin-left: -5%;
  }
}
.main_result_item .corp .bgbox.bg1 {
  background: linear-gradient(135deg, #cfaaeb 0%, #4f9bdc 100%);
  -webkit-mask-image: url(/images/works_company_bg01.svg);
  mask-image: url(/images/works_company_bg01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  inset: 0;
}
.main_result_item .btn {
  position: absolute;
  bottom: -1.4em;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main_result_item .btn {
    position: relative;
    bottom: auto;
  }
}
.main_result_deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  .main_result_deco {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .main_result_deco {
    font-size: 2.5vw;
  }
}
.main_result_deco.img1 {
  width: 9em;
  height: 13.35em;
  top: 5em;
  right: 3.5em;
}
@media screen and (max-width: 768px) {
  .main_result_deco.img1 {
    top: 32.5em;
  }
}
.main_result_deco.img2 {
  width: 7.2em;
  height: 12.4em;
  top: -5em;
  left: -1.5em;
}
.main_result_deco.img3 {
  width: 6.7em;
  height: 13.7em;
  bottom: 1em;
  left: 0.5em;
}
.main_result_deco.img4 {
  width: 14.2em;
  height: 14.6em;
  bottom: -2.5em;
  right: 1em;
}
@media screen and (max-width: 768px) {
  .main_result_deco.img4 {
    bottom: -10em;
  }
}
.main_result .txtloop {
  position: absolute;
  bottom: 16em;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .main_result .txtloop {
    bottom: 2.25em;
  }
}
.main_result .txtloop_inner {
  animation: txtloop 100s linear infinite;
}
.main_result .txtloop .txt {
  font-size: 16vw;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .main_result .txtloop .txt {
    font-size: 25vw;
  }
}
.main_flow {
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .main_flow {
    padding: 45em 0 30em;
  }
}
@media screen and (max-width: 480px) {
  .main_flow {
    padding: 30em 0 20em;
  }
}
.main_flow_txtbox {
  padding-left: calc(50% - 0.5em);
}
@media screen and (max-width: 768px) {
  .main_flow_txtbox {
    padding-left: 0;
  }
}
.main_flow_head {
  margin-bottom: 5em;
}
@media screen and (max-width: 768px) {
  .main_flow_head {
    margin-bottom: 2.5em;
  }
}
.main_flow_lead {
  font-weight: 500;
  line-height: 2;
  margin-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .main_flow_lead {
    margin-bottom: 2.5em;
  }
}
.main_flow_imgbox {
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.main_flow_imgbox .imgbox {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .main_flow_imgbox .imgbox {
    font-size: 1.9vw;
  }
}
.main_flow_imgbox .imgbox.bg1 {
  width: 100em;
  height: 68.5em;
  top: -12.5em;
  left: -23.5em;
  background: linear-gradient(135deg, #86ebe6 10%, #fde85e 90%);
  -webkit-mask-image: url(/images/flow_bg01.svg);
  mask-image: url(/images/flow_bg01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
@media screen and (max-width: 768px) {
  .main_flow_imgbox .imgbox.bg1 {
    top: 12.5em;
  }
}
.main_flow_imgbox .imgbox.bg2 {
  width: 49em;
  height: 42em;
  top: 22em;
  left: -2.5em;
  background: linear-gradient(135deg, #ecc1be 0%, #fdb0d8 50%, #cfaaeb 100%);
  -webkit-mask-image: url(/images/flow_bg02.svg);
  mask-image: url(/images/flow_bg02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.main_flow_imgbox .imgbox.bg3 {
  width: 32em;
  height: 35em;
  top: -5em;
  left: -5em;
  background: linear-gradient(135deg, #4f9bdc 0%, #86ebcd 100%);
  -webkit-mask-image: url(/images/flow_bg03.svg);
  mask-image: url(/images/flow_bg03.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.main_flow_imgbox .imgbox.img1 {
  width: 30em;
  height: 24em;
  top: 2.5em;
  left: -2.5em;
}
.main_flow_imgbox .imgbox.img2 {
  width: 26em;
  height: 16.25em;
  top: 19.5em;
  left: 22.5em;
}
.main_flow_imgbox .imgbox.img3 {
  width: 30em;
  height: 24em;
  top: 36.5em;
  left: 10em;
}
.main_flow_imgbox .imgbox.img4 {
  width: 38.5em;
  height: 30em;
  top: 36em;
  right: -4em;
}
@media screen and (max-width: 768px) {
  .main_flow_imgbox .imgbox.img4 {
    top: auto;
    bottom: 20em;
  }
}
.main_faq {
  z-index: 1;
}
.main_faq_head {
  margin-bottom: 5em;
}
@media screen and (max-width: 768px) {
  .main_faq_head {
    margin-bottom: 2.5em;
  }
}
.main_faq_lead {
  font-weight: 500;
  line-height: 2;
  margin-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .main_faq_lead {
    margin-bottom: 2.5em;
  }
}
.main_faq_imgbox {
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .main_faq_imgbox {
    top: -25em;
    left: -2.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_faq_imgbox {
    top: -15em;
  }
}
.main_faq_imgbox .imgbox {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .main_faq_imgbox .imgbox {
    font-size: 1.5vw;
  }
}
.main_faq_imgbox .imgbox.bg1 {
  width: 92.5em;
  height: 73.5em;
  top: -10em;
  right: -15em;
  background: linear-gradient(135deg, #86ebcd 15%, #4f9bdc 100%);
  -webkit-mask-image: url(/images/qanda_bg.svg);
  mask-image: url(/images/qanda_bg.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.main_faq_imgbox .imgbox.img1 {
  width: 45em;
  height: 41.25em;
  top: 8.75em;
  right: 9.5em;
}
.main_voc {
  width: 100%;
  height: auto;
  background: #b0dbd9;
  padding: 7.5em 0;
  position: relative;
}
@media screen and (min-width: 1351px) {
  .main_voc .innerbox {
    padding: 0 5em;
  }
}
.main_voc_box {
  background: #0e9b94;
  padding: 7.5em 5em;
  border-radius: 2em;
}
@media screen and (max-width: 768px) {
  .main_voc_box {
    padding: 4em 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_voc_box {
    padding: 4em 1.5em;
  }
}
.main_voc_head {
  margin-bottom: 5em;
}
.main_voc_head .txt_eg .accent {
  color: #d3ebea;
}
.main_voc_head .txt_ja {
  color: #fff;
}
.main_voc_btn {
  margin-top: 5em;
  text-align: center;
}
.main_voc_btn a {
  background-color: #32294d;
}
.main_voc_deco {
  position: absolute;
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  .main_voc_deco {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .main_voc_deco {
    font-size: 2.5vw;
  }
}
.main_voc_deco.img1 {
  width: 11.5em;
  aspect-ratio: 230/285;
  left: 18.5em;
  bottom: -1.75em;
}
@media screen and (max-width: 768px) {
  .main_voc_deco.img1 {
    width: 9em;
    left: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_voc_deco.img1 {
    bottom: -7.5em;
  }
}
.main_voc_deco.img2 {
  width: 7.5em;
  aspect-ratio: 150/310;
  top: -2.5em;
  right: 12.5em;
}
@media screen and (max-width: 768px) {
  .main_voc_deco.img2 {
    width: 5em;
    right: 2em;
  }
}
@media screen and (max-width: 480px) {
  .main_voc_deco.img2 {
    top: -7.5em;
  }
}
.main_blog {
  width: 100%;
  height: auto;
  background: #b0dbd9;
  padding-bottom: 7.5em;
  position: relative;
}
@media screen and (min-width: 1351px) {
  .main_blog .innerbox {
    padding: 0 5em;
  }
}
.main_blog_box {
  background: #ebf5f5;
  padding: 7.5em 5em;
  border-radius: 2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main_blog_box {
    padding: 4em 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .main_blog_box {
    padding: 4em 1.5em;
  }
}
.main_blog_head {
  margin-bottom: 2.5em;
}
.main_blog_btn {
  width: auto;
  position: absolute;
  top: 12.75em;
  right: 5em;
}
@media screen and (max-width: 768px) {
  .main_blog_btn {
    top: 12.25em;
    right: 3em;
  }
}
@media screen and (max-width: 480px) {
  .main_blog_btn {
    position: relative;
    inset: auto;
    margin-top: 2.5em;
  }
}
.main_blog_deco {
  position: absolute;
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  .main_blog_deco {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .main_blog_deco {
    font-size: 2.5vw;
  }
}
.main_blog_deco.img1 {
  width: 11.5em;
  aspect-ratio: 230/285;
  top: -4em;
  right: 4em;
}
@media screen and (max-width: 768px) {
  .main_blog_deco.img1 {
    width: 9em;
    right: 2em;
  }
}
.main_blog_deco.img2 {
  width: 9.75em;
  aspect-ratio: 195/210;
  left: -1.5em;
  bottom: -4em;
}
.main_instagram {
  width: 100%;
  height: auto;
  background: #b0dbd9;
  padding-bottom: 9.5em;
  position: relative;
}
.main_instagram_flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 4.5em;
}
@media screen and (max-width: 768px) {
  .main_instagram_flex {
    flex-direction: column;
  }
}
.main_instagram_head {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .main_instagram_head {
    text-align: left;
  }
}
.main_instagram_head .btn {
  margin-top: 5em;
}
.main_instagram_box {
  width: 46.5em;
}
@media screen and (max-width: 768px) {
  .main_instagram_box {
    width: 100%;
  }
}
.main_instagram_box #sbi_images {
  padding: 0 !important;
  gap: 0.5em;
}
.main_instagram_box #sbi_images .sbi_item {
  border-radius: 1em;
  overflow: hidden;
}

button {
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  button {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 480px) {
  button {
    font-size: 3.75vw;
  }
}
button {
  border: none;
  cursor: pointer;
  background: none;
}
button:hover .btn span {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  translate: 0 0.25em;
}

.open-modal {
  cursor: pointer;
}

.modal-btn {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 100%;
  background: linear-gradient(150deg, #fde85e 0%, #fdb0d8 100%);
  color: #0e9b94;
}
.modal-btn .txtbox {
  position: absolute;
  top: 0.83em;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, 0);
  width: 100%;
  font-size: 1.2em;
  line-height: 1em;
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .modal-btn .txtbox {
    font-size: 1em;
  }
}
.modal-btn .imgbox {
  position: absolute;
  top: auto;
  left: 50%;
  right: auto;
  bottom: 0.8em;
  transform: translate(-50%, 0);
  width: 12.25em;
  height: auto;
}
@media screen and (max-width: 768px) {
  .modal-btn .imgbox {
    width: 9.25em;
  }
}
.modal-btn .imgbox img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.modal-btn .btn {
  position: absolute;
  top: auto;
  left: 50%;
  right: auto;
  bottom: 0.5em;
  transform: translate(-50%, 0);
  width: -moz-fit-content;
  width: fit-content;
}
.modal-btn .btn span {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.modal-btn .btn span:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
.modal-btn .btn span {
  background-image: url("/images/ya_dg.svg");
  line-height: 2.5em;
  min-width: 15em;
  padding: 0 3em 0 2em;
  background-color: #ffffff;
  color: #0e9b94;
}
.modal-btn .btn span:hover {
  color: #0e9b94;
}

.slider-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 59, 56, 0.8);
  display: none;
  z-index: 9999;
}

.slider-modal-inner {
  width: 50em;
  height: auto;
  aspect-ratio: 8/5;
  margin: 10vh auto;
  background: #fff;
  border-radius: 1em;
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .slider-modal-inner {
    width: 80vw;
    margin: 20vh auto;
  }
}

.slider-close {
  position: absolute;
  top: -2.2em;
  left: auto;
  right: 0;
  bottom: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4em;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .slider-close {
    top: -1.5em;
  }
}
.slider-close .txtbox {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .slider-close .txtbox {
    font-size: 0.7em;
  }
}
.slider-close .imgbox {
  width: 1.5em;
  height: 1.5em;
}
@media screen and (max-width: 768px) {
  .slider-close .imgbox {
    width: 1em;
    height: 1em;
  }
}
.slider-close .imgbox img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.slider-step1 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 100%;
}
.slider-step1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  border-radius: 1em;
  overflow: hidden;
  content: "";
  width: 100%;
  height: 100%;
  background: url("/images/slider_index.webp");
  background-repeat: no-repeat;
  background-size: 100%;
}
.slider-step1 .slider-container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 1em;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 5em 3.5em;
}
@media screen and (max-width: 768px) {
  .slider-step1 .slider-container {
    padding: 3em 2em;
  }
}
@media screen and (max-width: 480px) {
  .slider-step1 .slider-container {
    padding: 2em 1.5em;
  }
}
.slider-step1 .slider-container .slider-select {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.slider-step1 .slider-container .slider-select:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
.slider-step1 .slider-container .slider-select {
  width: 30em;
  padding-left: 2em;
  margin-bottom: 0.5em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .slider-step1 .slider-container .slider-select {
    font-size: 0.7em;
    line-height: 3.5em;
    width: 28em;
  }
}
@media screen and (max-width: 480px) {
  .slider-step1 .slider-container .slider-select {
    font-size: 0.49em;
    width: 26em;
  }
}
.slider-step1 .slider-container .slider-select:last-of-type {
  margin-bottom: 0;
}

.slider-step2 {
  display: none;
  width: 100%;
  height: 100%;
}
.slider-step2 .slider-container {
  border-radius: 1em;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.slider-step2 .slider-container .slider-item {
  display: none;
  width: 100%;
  height: 100%;
}
.slider-step2 .slider-container .slider-item .metaslider {
  width: 100%;
  height: 100%;
}
.slider-step2 .slider-container .slider-item .metaslider .metaslider_container_1999,
.slider-step2 .slider-container .slider-item .metaslider .metaslider_container_2009,
.slider-step2 .slider-container .slider-item .metaslider .metaslider_container_2013,
.slider-step2 .slider-container .slider-item .metaslider .metaslider_container_2017 {
  width: 100%;
  height: 100%;
}
.slider-step2 .slider-container .slider-item .metaslider .flexslider {
  width: 100%;
  height: 100%;
}
.slider-step2 .slider-container .slider-item .metaslider .flex-viewport {
  width: 100%;
  height: 100%;
}
.slider-step2 .slider-container .slider-item .metaslider .slides {
  width: 100%;
  height: 100%;
}
.slider-step2 .slider-container .slider-item .metaslider .slides li {
  width: 100%;
  height: 100%;
}
.slider-step2 .slider-container .slider-item .metaslider .slides li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* ←これがキモ */
}
.slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li a {
  opacity: 0.55;
  filter: alpha(opacity=55);
  width: 2em;
  height: 2em;
}
@media screen and (max-width: 480px) {
  .slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li a {
    width: 1.5em;
    height: 1.5em;
  }
}
.slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li a::before, .slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li a::after {
  -webkit-mask-size: 1.25em auto !important;
          mask-size: 1.25em auto !important;
}
@media screen and (max-width: 768px) {
  .slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li a::before, .slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li a::after {
    -webkit-mask-size: 1em auto !important;
            mask-size: 1em auto !important;
  }
}
@media screen and (max-width: 480px) {
  .slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li a::before, .slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li a::after {
    -webkit-mask-size: 0.7em auto !important;
            mask-size: 0.7em auto !important;
  }
}
.slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li.flex-nav-prev a {
  left: 1em;
}
@media screen and (max-width: 768px) {
  .slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li.flex-nav-prev a {
    left: 0.25em;
  }
}
.slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li.flex-nav-next a {
  right: 1em;
}
@media screen and (max-width: 768px) {
  .slider-step2 .slider-container .slider-item .metaslider .flex-direction-nav li.flex-nav-next a {
    right: 0.25em;
  }
}
.slider-step2 .slider-container .slider-item .metaslider .caption-wrap {
  bottom: 4.5em !important;
  background: none !important;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .slider-step2 .slider-container .slider-item .metaslider .caption-wrap {
    bottom: 3em !important;
  }
}
@media screen and (max-width: 480px) {
  .slider-step2 .slider-container .slider-item .metaslider .caption-wrap {
    bottom: 2em !important;
  }
}
.slider-step2 .slider-container .slider-item .metaslider .caption-wrap .caption {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}
@media screen and (max-width: 768px) {
  .slider-step2 .slider-container .slider-item .metaslider .caption-wrap .caption {
    gap: 1em;
  }
}
@media screen and (max-width: 480px) {
  .slider-step2 .slider-container .slider-item .metaslider .caption-wrap .caption {
    gap: 0.5em;
  }
}
.slider-step2 .slider-container .slider-item .metaslider .caption-wrap .caption a {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.slider-step2 .slider-container .slider-item .metaslider .caption-wrap .caption a:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
.slider-step2 .slider-container .slider-item .metaslider .caption-wrap .caption a {
  width: 22.75em;
}
@media screen and (max-width: 768px) {
  .slider-step2 .slider-container .slider-item .metaslider .caption-wrap .caption a {
    font-size: 0.7em;
    line-height: 3.5em;
    width: 20.75em;
  }
}
@media screen and (max-width: 480px) {
  .slider-step2 .slider-container .slider-item .metaslider .caption-wrap .caption a {
    font-size: 0.49em;
    width: 19.75em;
  }
}
.slider-step2 .slider-container .slider-item .metaslider .caption-wrap .caption a:hover {
  opacity: 1;
}

/* =======================================================================================================================
　　　　　　　　　下層ページ（共通）
======================================================================================================================= */
.page-header {
  width: auto;
  position: relative;
  box-sizing: border-box;
  color: #32294d;
  min-height: 40em;
  height: 100vh;
  max-height: 80em;
}
@media screen and (max-width: 768px) {
  .page-header {
    min-height: 42em;
  }
}
@media screen and (max-width: 480px) {
  .page-header {
    max-height: 55em;
  }
}
@media screen and (max-width: 768px) {
  .page-header_bg {
    max-height: 100em;
  }
}
@media screen and (max-width: 480px) {
  .page-header_bg {
    min-height: 99em;
    max-height: 120em;
  }
}
.page-header_bg .imgbox.bg1 {
  right: 22em;
  transform: rotate(0deg);
}
@media screen and (max-width: 768px) {
  .page-header_bg .imgbox.bg1 {
    width: calc(100% + 12em);
    top: 5em;
    right: -6em;
    bottom: auto;
  }
}
.page-header_bg .imgbox.bg2 {
  right: 25em;
  transform: rotate(0deg);
}
@media screen and (max-width: 768px) {
  .page-header_bg .imgbox.bg2 {
    width: calc(100% + 6em);
    top: 7.5em;
    bottom: auto;
    right: -3em;
  }
}
.page-header_bg .imgbox.bg2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .page-header_bg .imgbox.bg3 {
    width: 50em;
  }
}
@media screen and (max-width: 480px) {
  .page-header_bg .imgbox.bg4 {
    width: 50em;
  }
}
.page-header_ttl {
  position: absolute;
  width: calc(100% - 18em);
  bottom: 5vh;
  left: 18em;
  padding: 0 2em;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .page-header_ttl {
    width: 100%;
    left: 0;
    padding: 0 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .page-header_ttl {
    padding: 0 1.5em;
  }
}
.page-header_ttl {
  /* 英語タイトル */
}
.page-header_ttl .eg_ttl {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #32294d;
  font-size: 10em;
  line-height: 0.8;
}
@media screen and (max-width: 768px) {
  .page-header_ttl .eg_ttl {
    font-size: 6em;
    line-height: 0.9;
  }
}
@media screen and (max-width: 480px) {
  .page-header_ttl .eg_ttl {
    font-size: 4em;
  }
}
.page-header_ttl .eg_ttl::first-letter {
  color: #0e9b94;
}
.page-header_ttl {
  /* 日本語タイトル */
}
.page-header_ttl .page_ttl {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #0e9b94;
  font-size: 2.5em;
  line-height: 1;
  margin-top: 0.25em;
}
@media screen and (max-width: 768px) {
  .page-header_ttl .page_ttl {
    font-size: 2em;
  }
}
@media screen and (max-width: 480px) {
  .page-header_ttl .page_ttl {
    font-size: 1.5em;
  }
}
.page-header_ttl .btnbox {
  position: absolute;
  top: 0.4em;
  left: auto;
  right: 2em;
  bottom: auto;
  border-radius: 1em;
  overflow: hidden;
  background: #ffffff;
  padding: 1em;
  width: auto;
  min-width: 30em;
  max-width: 46em;
  height: auto;
  min-height: 10.8em;
}
@media screen and (max-width: 768px) {
  .page-header_ttl .btnbox {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: auto;
    height: auto;
    min-height: auto;
    margin-top: 2.5em;
  }
}
.page-header_ttl .btnbox .btn_ttl {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1em;
  text-align: left;
  width: 100%;
}
.page-header_ttl .btnbox .btn_ttl i {
  margin-right: 0.5em;
}
.page-header_ttl .btnbox .btn_wrap {
  padding-top: 1em;
}
.page-header_ttl .btnbox .btn_wrap .cat_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.25em;
}
@media screen and (max-width: 768px) {
  .page-header_ttl .btnbox .btn_wrap .cat_list {
    justify-content: flex-start;
  }
}
.page-header_ttl .btnbox .btn_wrap .cat_list .btn {
  width: auto;
}
.page-header_ttl .btnbox .btn_wrap .cat_list .btn a {
  min-width: 6em;
  line-height: 2em;
  padding: 0 1em;
  border: #d3ebea solid 0.2em;
  background-color: #d3ebea;
  color: #0e9b94;
  background-image: none;
}
.page-header_ttl .btnbox .btn_wrap .cat_list .btn a.active {
  border: #32294d solid 0.2em;
  background-color: #32294d;
  color: #ffffff;
}
.page-header_ttl .btnbox .btn_wrap .cat_list .btn a:hover {
  border: #32294d solid 0.2em;
  translate: 0 0;
  background-color: #32294d;
  color: #ffffff;
}
.page-header_ttl .btnbox .btn_wrap.condition, .page-header_ttl .btnbox .btn_wrap.job {
  padding-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .page-header_ttl .btnbox .btn_wrap.condition, .page-header_ttl .btnbox .btn_wrap.job {
    padding-top: 1.5em;
  }
}
.page-header_ttl .btnbox .btn_wrap.condition .cat_type, .page-header_ttl .btnbox .btn_wrap.job .cat_type {
  width: 100%;
  line-height: 2em;
  align-items: center;
}
.page-header_ttl .btnbox .btn_wrap.condition .cat_type .txt, .page-header_ttl .btnbox .btn_wrap.job .cat_type .txt {
  display: block;
  font-weight: 700;
}
.page-header_ttl .btnbox .btn_wrap.condition .cat_type .line, .page-header_ttl .btnbox .btn_wrap.job .cat_type .line {
  display: block;
  width: auto;
  height: 0.05em;
  background: #000;
}
.page-header_ttl .btnbox .btn_wrap.condition .cat_list, .page-header_ttl .btnbox .btn_wrap.job .cat_list {
  justify-content: flex-start;
  margin-top: 0.5em;
}
.page-header_ttl .btnbox .btn_wrap.condition .cat_list .btn, .page-header_ttl .btnbox .btn_wrap.job .cat_list .btn {
  width: auto;
  line-height: 1.5em;
}
.page-header_ttl .btnbox .btn_wrap.condition .cat_list .btn a, .page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a {
  font-size: 0.8em;
  min-width: 6em;
  line-height: 1.5em;
  font-weight: 600;
  padding: 0 0.5em;
  border: #0e9b94 solid 0.2em;
  background-color: #0e9b94;
  color: #ffffff;
  background-image: none;
}
@media screen and (max-width: 768px) {
  .page-header_ttl .btnbox .btn_wrap.condition .cat_list .btn a, .page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a {
    font-size: 1em;
  }
}
.page-header_ttl .btnbox .btn_wrap.condition .cat_list .btn a.active, .page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a.active {
  border: #32294d solid 0.2em;
  background-color: #32294d;
  color: #ffffff !important;
}
.page-header_ttl .btnbox .btn_wrap.condition .cat_list .btn a:hover, .page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a:hover {
  border: #32294d solid 0.2em;
  translate: 0 0;
  background-color: #32294d;
  color: #ffffff !important;
}
.page-header_ttl .btnbox .btn_wrap.job .cat_type {
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .page-header_ttl .btnbox .btn_wrap.job .cat_type {
    line-height: 2em;
  }
}
.page-header_ttl .btnbox .btn_wrap.job .cat_list {
  gap: 0 1em;
}
@media screen and (max-width: 768px) {
  .page-header_ttl .btnbox .btn_wrap.job .cat_list {
    gap: 0.5em 1em;
  }
}
.page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.25em;
  color: rgb(9.775147929, 108.224852071, 103.3372781065);
  border: none;
  background: none;
  padding: 0;
  min-width: auto;
}
.page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a.active {
  border: none;
  background: none;
  color: rgb(9.775147929, 108.224852071, 103.3372781065) !important;
  text-decoration: underline;
}
.page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a.active img {
  text-decoration: none;
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateX(0.2em);
}
.page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a:hover {
  border: none;
  background: none;
  text-decoration: underline;
  color: rgb(9.775147929, 108.224852071, 103.3372781065) !important;
}
.page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a:hover img {
  text-decoration: none;
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateX(0.2em);
}
.page-header_ttl .btnbox .btn_wrap.job .cat_list .btn a img {
  width: 1em;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.page-header .btn_bl.btn_pc {
  position: absolute;
  top: 2em;
  left: auto;
  right: 2em;
  bottom: auto;
  text-align: right;
  z-index: 10;
}
.is-voc .page-header .btn_bl.btn_pc {
  right: 27em;
}
@media screen and (max-width: 768px) {
  .page-header .btn_bl.btn_pc {
    display: none;
  }
}
.page-header .btn_bl.btn_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-header .btn_bl.btn_sp {
    position: absolute;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    text-align: right;
    display: block;
    top: 0.6em;
    right: 2.5em !important;
  }
}
@media screen and (max-width: 480px) {
  .page-header .btn_bl.btn_sp {
    top: 0.4em;
    right: 1.5em !important;
  }
  .page-header .btn_bl.btn_sp a {
    min-width: 12em;
  }
}

/* 背景スライドショー ------------------------------------------- */
/* =======================================================================================================================
　　　　　　　　　お問い合わせ
======================================================================================================================= */
.contactpage-ctt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  /* 見出し */
}
.contactpage-ctt .parts-h3 {
  font-size: 3em;
  padding-bottom: 1.5em;
  line-height: 1.25em;
}
@media screen and (max-width: 768px) {
  .contactpage-ctt .parts-h3 {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .contactpage-ctt .parts-h3 {
    font-size: 1.8em;
  }
}
.contactpage-ctt .parts-h3 .small_eng {
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
  display: block;
  font-size: 0.5em;
  line-height: 2em;
}
.contactpage-ctt {
  /* 段落 */
}
.contactpage-ctt p {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.contactpage-ctt p.contact_info {
  font-size: 1.1em;
}
.contactpage-ctt {
  /* =============== 電話 ========================================================= */
}
.contactpage-ctt .contact_tel {
  text-align: center;
  /* -------------------------- 電話セット ------------------------------------------- */
}
.contactpage-ctt .contact_tel .tel_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -2em;
}
.contactpage-ctt .contact_tel .tel_list li {
  padding-right: 5em;
  margin-top: 2em;
}
.contactpage-ctt .contact_tel .tel_list li:last-child {
  padding-right: 0;
}
.contactpage-ctt .contact_tel .tel_list li {
  /* 支店 ------------------------------------------- */
}
.contactpage-ctt .contact_tel .tel_list li .contacttel_shop {
  font-size: 1.1em;
  font-variation-settings: "wght" 700;
  line-height: 1.2em;
  padding-bottom: 0.25em;
}
.contactpage-ctt .contact_tel .tel_list li {
  /* 番号 ------------------------------------------- */
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 3em;
  line-height: 1em;
  padding-bottom: 0.1em;
  color: #000;
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel img {
  height: 1em;
  width: auto;
  margin-right: 0.25em;
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel a {
  text-decoration: none;
  color: #000;
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel a:hover {
  color: #000;
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel a .eg {
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel a .eg::before {
  font-size: 0.8em;
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
  content: "\f095";
  padding-right: 0.2em;
}
.contactpage-ctt .contact_tel .tel_list li {
  /* 受付時間・定休日 ------------------------------------------- */
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday {
  color: #cfaaeb;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  line-height: 1.5em;
  padding-bottom: 0;
}
@media screen and (max-width: 480px) {
  .contactpage-ctt .contact_tel .tel_list li p.time_holiday {
    line-height: 1.2em;
  }
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday {
  /* 受付時間 */
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_time {
  display: inline-block;
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-size: 1.5em;
  font-style: normal;
  padding-bottom: 0;
  bottom: -0.05em;
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_time::before {
  display: inline-block;
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 0.67em;
  content: "受付時間";
  padding-right: 0.5em;
  bottom: 0.05em;
}
@media screen and (max-width: 480px) {
  .contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_time {
    font-size: 1.25em;
  }
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday {
  /* 定休日 */
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_holiday {
  display: inline-block;
  font-size: 1em;
}
@media screen and (max-width: 480px) {
  .contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_holiday {
    font-size: 0.8em;
  }
}
.contactpage-ctt {
  /* =============== WEB ========================================================= */
}
.contactpage-ctt .webcontact {
  text-align: center;
}
.contactpage-ctt .webcontact .ct_info {
  padding-bottom: 5em;
}
.contactpage-ctt .webcontact a {
  color: #000;
  text-decoration: underline;
}

/* ===========================================================================================================
　　　　　　　　　新着記事
=========================================================================================================== */
/* ページナビゲーション（共通） */
.pager {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-weight: 700;
  padding-top: 5em;
}
@media screen and (max-width: 768px) {
  .pager {
    padding-top: 3em;
  }
}
.pager a {
  text-decoration: none;
  color: #0e9b94;
}
.voc_archive .pager a {
  color: #ffffff;
}
.pager p {
  padding-bottom: 0;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.pager .no-link {
  color: #999;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.voc_archive .pager .no-link {
  color: #eee;
}
.pager .first,
.pager .last {
  transform: scale(0.6);
  transform-origin: 50% 50%;
}
.pager .prev,
.pager .next {
  transform: scale(0.7);
  transform-origin: 50% 50%;
}
.pager .nth-box {
  font-size: 1.2em;
}
.pager .nth-box .current {
  font-size: 1.2em;
  display: inline-block;
  color: #999;
  padding: 0 0.5em;
}
.voc_archive .pager .nth-box .current {
  color: #eee;
}
.pager .nth-box .tenten {
  color: #0e9b94;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.voc_archive .pager .nth-box .tenten {
  color: #ffffff;
}
.pager .nth-box a {
  display: inline-block;
  padding: 0 0.5em;
}

/* お知らせ一覧フッター */
#footer-post {
  background: #ffffff;
}
#footer-post .innerbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#footer-post .innerbox li {
  list-style-type: none;
  border-color: #000;
}
#footer-post .innerbox .pf_ttl {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5em;
  padding-bottom: 1em;
  color: #32294d;
}
#footer-post .innerbox .post_sec,
#footer-post .innerbox .archive_sec {
  width: auto;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .post_sec,
  #footer-post .innerbox .archive_sec {
    width: 100%;
  }
}
#footer-post .innerbox .post_sec ul li a,
#footer-post .innerbox .archive_sec ul li a {
  color: #000 !important;
}
#footer-post .innerbox .post_sec ul li a span,
#footer-post .innerbox .archive_sec ul li a span {
  color: #000 !important;
}
#footer-post .innerbox .post_sec {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .post_sec {
    width: 100%;
    padding-bottom: 2.5em;
  }
}
#footer-post .innerbox .post_sec .blog_list {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .post_sec .blog_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  #footer-post .innerbox .post_sec .blog_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#footer-post .innerbox .post_sec .blog_list .blog_item:nth-of-type(4) {
  display: none;
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .post_sec .blog_list .blog_item:nth-of-type(4) {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #footer-post .innerbox .post_sec .blog_list .blog_item:nth-of-type(4) {
    display: none;
  }
}
#footer-post .innerbox .post_sec .blog_list .blog_item a {
  display: block;
}
#footer-post .innerbox .post_sec .blog_list .blog_item .cat_list .item {
  background: #0e9b94;
}
#footer-post .innerbox .post_sec .blog_list .blog_item .cat_list .item .txt {
  color: #ffffff !important;
}
#footer-post .innerbox .archive_sec {
  width: 20%;
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .archive_sec {
    width: 100%;
    border-top: #0e9b94 solid 0.2em;
    padding-top: 2.5em;
  }
}
#footer-post .innerbox .archive_sec ul.m_list {
  width: auto;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .archive_sec ul.m_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
}
#footer-post .innerbox .archive_sec ul.m_list li {
  width: auto;
  position: relative;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1em;
}
#footer-post .innerbox .archive_sec ul.m_list li a:hover {
  color: #0e9b94 !important;
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .archive_sec ul.m_list li:nth-of-type(4) {
    display: none;
  }
}
#footer-post .innerbox .archive_sec select {
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1em;
  font-variation-settings: "wght" 500;
  line-height: 1.5em;
  padding-bottom: 0.2em;
  border: none;
  border-bottom: #000 solid 0.15em;
  background: #ffffff;
  color: #000;
  width: 100%;
  cursor: pointer;
  margin-bottom: 2.5em;
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .archive_sec select {
    width: auto;
  }
}
#footer-post .innerbox .archive_sec .btn a {
  width: 100%;
}
#footer-post .innerbox .line {
  width: 0.1em;
  height: auto;
  background: #000;
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .line {
    width: 100%;
    height: 0.1em;
    margin-bottom: 5em;
  }
}

/* ================= 投稿ページ（共通） ============================================================ */
#newspost {
  /* -------------------------- 投稿記事ヘッダー ------------------------------------------- */
}
#newspost #entry-header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  color: #000;
  padding-top: 1.5em;
  z-index: 10;
}
#newspost #entry-header .innerbox {
  width: auto;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  /* 記事タイトル */
}
#newspost #entry-header .innerbox .entry_ttl {
  width: auto;
  flex: 1;
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 1350px) {
  #newspost #entry-header .innerbox .entry_ttl {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  #newspost #entry-header .innerbox .entry_ttl {
    width: 100%;
  }
}
#newspost #entry-header .innerbox {
  /* 日付 */
}
#newspost #entry-header .innerbox .date {
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  line-height: 1em;
  padding-top: 0.5em;
  padding-left: 0.2em;
  color: #cfaaeb;
}
@media screen and (max-width: 768px) {
  #newspost #entry-header .innerbox .date {
    font-size: 1em;
    width: 100%;
    padding: 0;
    padding-bottom: 0.5em;
    padding-left: 0;
  }
}
#newspost #entry-header .innerbox .date .year {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#newspost #entry-header .innerbox .date .md {
  font-size: 1.5em;
  padding-left: 0.25em;
}
#newspost .is-voc #entry-header {
  position: absolute;
  top: 0.4em;
  left: auto;
  right: 2em;
  bottom: auto;
  padding-top: 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  #newspost .is-voc #entry-header {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding-top: 3em;
  }
}
#newspost .is-voc #entry-header .voc_item {
  width: 36em;
  max-width: 46em;
  min-height: 10.8em;
}
@media screen and (max-width: 768px) {
  #newspost .is-voc #entry-header .voc_item {
    height: auto;
  }
}
#newspost .is-voc #entry-header .voc_item .link {
  padding-bottom: 2.5em;
}
@media screen and (max-width: 768px) {
  #newspost .is-voc #entry-header .voc_item .link {
    padding-bottom: 3em;
  }
}
#newspost .is-voc #entry-header .voc_item .link .imgwrap {
  top: -2.5em;
  left: 1.5em;
}
@media screen and (max-width: 768px) {
  #newspost .is-voc #entry-header .voc_item .link .imgwrap {
    top: -2em;
    left: 1em;
  }
}
#newspost .is-voc #entry-header .voc_item .link .imgwrap .count {
  color: #000;
}
#newspost .is-voc #entry-header .voc_item .link .user_info {
  margin-left: 7.5em;
  min-height: 4em;
}
@media screen and (max-width: 768px) {
  #newspost .is-voc #entry-header .voc_item .link .user_info {
    margin-left: 7em;
  }
}
@media screen and (max-width: 480px) {
  #newspost .is-voc #entry-header .voc_item .link .user_info {
    margin-left: 5em;
  }
}
#newspost .is-voc #entry-header .voc_item .link .user_info .topbox {
  display: flex;
  justify-content: space-between;
  border-bottom: 0.2em solid #0e9b94;
}
#newspost .is-voc #entry-header .voc_item .link .user_info .topbox .name {
  width: auto;
  border: none;
}
#newspost .is-voc #entry-header .voc_item .link .user_info .topbox .count {
  padding-bottom: 0.5em;
  line-height: 1em;
  color: #0e9b94;
}
#newspost .is-voc #entry-header .voc_item .link .user_info .midbox {
  display: flex;
  align-items: center;
}
#newspost .is-voc #entry-header .voc_item .link .user_info .midbox .cat_list {
  width: auto;
}
#newspost .is-voc #entry-header .voc_item .link .user_info .midbox .type {
  padding-left: 1em;
}
@media screen and (max-width: 480px) {
  #newspost .is-voc #entry-header .voc_item .link .user_info .midbox {
    flex-direction: column;
    align-items: flex-start;
  }
  #newspost .is-voc #entry-header .voc_item .link .user_info .midbox .type {
    padding-left: 1.5em;
  }
}
#newspost .is-voc #entry-header .voc_item .link .comment {
  margin-top: 0.2em;
}
@media screen and (max-width: 768px) {
  #newspost .is-voc #entry-header .voc_item .link .comment {
    margin-top: 1.2em;
    white-space: wrap;
    overflow: visible;
    text-overflow: unset;
    -o-text-overflow: unset;
    -webkit-line-clamp: unset;
  }
}
@media screen and (max-width: 480px) {
  #newspost .is-voc #entry-header .voc_item .link .comment {
    margin-top: 0.5em;
  }
}
#newspost .is-voc #entry-header .voc_item .link:hover .imgwrap {
  scale: 1;
}
@media screen and (max-width: 768px) {
  #newspost .is-voc #entry-header .voc_item {
    width: 100%;
    margin-top: 1em;
  }
}
#newspost {
  /* -------------------------- ナビゲーション ------------------------------------------- */
}
#newspost .nav_sec {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 5em 0;
  background: #d3ebea;
}
#newspost .nav_sec .innerbox ul.post_nav {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#newspost .nav_sec .innerbox ul.post_nav li {
  line-height: 2em;
  max-width: 45%;
  width: auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  color: #0e9b94;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
#newspost .nav_sec .innerbox ul.post_nav li:hover {
  color: #32294d;
}
#newspost .nav_sec .innerbox ul.post_nav li a {
  flex: 1;
  width: auto;
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  /* Opera9,10対応 */
  color: inherit;
}
@media screen and (max-width: 480px) {
  #newspost .nav_sec .innerbox ul.post_nav li a {
    font-size: 0.8em;
  }
}
#newspost .nav_sec .innerbox ul.post_nav li a:hover {
  color: #32294d;
}
#newspost .nav_sec .innerbox ul.post_nav li.prev:hover {
  transform: translate(-0.2em, 0);
}
#newspost .nav_sec .innerbox ul.post_nav li.prev a {
  padding-left: 0.25em;
}
#newspost .nav_sec .innerbox ul.post_nav li.next {
  justify-content: flex-end;
}
#newspost .nav_sec .innerbox ul.post_nav li.next:hover {
  transform: translate(0.2em, 0);
}
#newspost .nav_sec .innerbox ul.post_nav li.next a {
  padding-right: 0.25em;
}

/* =======================================================================================================================
　　　　　　　　　フリーページ（カスタムフィールド）
======================================================================================================================= */
.partspage-ctt {
  padding-top: 0;
  padding-bottom: 0;
}

/* =============== 背景色 ========================================================= */
.sec_bg1 {
  background: #ebf5f5;
}

.sec_bg2 {
  background: #d3ebea;
}

.sec_bg3 {
  background: #0e9b94;
  color: #ffffff;
}

.sec_bg1:last-child,
.sec_bg2:last-child,
.sec_bg3:last-child {
  padding-bottom: 17em;
}
@media screen and (max-width: 768px) {
  .sec_bg1:last-child,
  .sec_bg2:last-child,
  .sec_bg3:last-child {
    padding-bottom: 7em;
  }
}

/* 同じ背景色のセクションが続いたときに余白をなくす */
.sec_bg1 + .sec_bg1,
.sec_bg2 + .sec_bg2,
.sec_bg3 + .sec_bg3,
.sec_bg4 + .sec_bg4,
.sec_bg5 + .sec_bg5 {
  padding-top: 0 !important;
}

/* =============== ブロック ========================================================= */
.partspage-ctt .sec {
  padding-left: 0;
  /* ------------ Googleマップ ------------------------------------------- */
}
.partspage-ctt .sec .access_map {
  display: block;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 10em;
}
.partspage-ctt .sec .access_map iframe,
.partspage-ctt .sec .access_map .acf-map {
  width: 100%;
  height: 20em;
}
@media screen and (max-width: 768px) {
  .partspage-ctt .sec .access_map iframe,
  .partspage-ctt .sec .access_map .acf-map {
    height: 15em;
  }
}
@media screen and (max-width: 480px) {
  .partspage-ctt .sec .access_map iframe,
  .partspage-ctt .sec .access_map .acf-map {
    height: 12em;
  }
}
.partspage-ctt .sec .access_map .acf-map img {
  max-width: inherit !important;
}

.partspage-ctt .btn {
  margin-bottom: 5em;
}
.partspage-ctt .btn a {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.partspage-ctt .btn a:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
.partspage-ctt .btn a:hover {
  color: #ffffff !important;
}
.partspage-ctt .card-btn {
  margin-bottom: 0;
  margin-top: 1em;
}
.partspage-ctt .card-btn div {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.partspage-ctt .card-btn div:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
.sec_bg3 .partspage-ctt .card-btn div span {
  background-color: #ffffff;
  color: #0e9b94;
}
.sec_bg3 .partspage-ctt .card-btn div span:hover {
  color: #0e9b94 !important;
}
.partspage-ctt .sec_bg3 .btn a {
  background-color: #ffffff;
  background-image: url("/images/ya_dg.svg");
  color: #0e9b94;
}
.partspage-ctt .sec_bg3 .btn a:hover {
  color: #0e9b94 !important;
}
.partspage-ctt .sec_bg3 .card-btn div {
  background-color: #ffffff;
  background-image: url("/images/ya_dg.svg");
}
.partspage-ctt .sec_bg3 .card-btn div span {
  color: #0e9b94;
}
.partspage-ctt .sec_bg3 .card-btn div span:hover {
  color: #0e9b94 !important;
}

/* =============== フローレイアウト ========================================================= */
.imgcard_flow ul li:last-child::after {
  display: none;
}
.imgcard_flow ul li::after {
  font: var(--fa-font-solid);
  content: "\f105";
  color: #0e9b94;
  font-size: 1em;
  text-align: center;
  position: absolute;
  top: 25%;
  left: auto;
  right: -8%;
  bottom: auto;
}
.sec_bg2 .imgcard_flow ul li::after, .sec_bg4 .imgcard_flow ul li::after {
  color: #ebf5f5;
}
.imgcard_flow.imgcard_l2 ul li::after {
  top: 44%;
}
.imgcard_flow.imgcard_l3 ul li::after {
  top: 41%;
}
.imgcard_flow.imgcard_l4 ul li::after {
  top: 36%;
}
.imgcard_flow.imgcard_l5 ul li::after {
  top: 32%;
}
.imgcard_flow.imgcard_l6 ul li::after {
  top: 30%;
}

/* タブレットの時 -------------------------------- */
@media screen and (max-width: 768px) {
  /* 1つ並び */
  .imgcard_l1_tb.imgcard_flow {
    /* リスト */
  }
  .imgcard_l1_tb.imgcard_flow ul li {
    width: 100%;
    margin-right: 0;
  }
  .imgcard_l1_tb.imgcard_flow ul li::after {
    font: var(--fa-font-solid);
    content: "\f107";
    color: #0e9b94;
    font-size: 2em;
    text-align: center;
    position: absolute;
    top: auto;
    left: 50%;
    right: auto;
    bottom: -1.25em;
    transform: translateX(-50%);
  }
  .sec_bg2 .imgcard_l1_tb.imgcard_flow ul li::after, .sec_bg4 .imgcard_l1_tb.imgcard_flow ul li::after {
    color: #ebf5f5;
  }
  /* 2つ並び */
  .imgcard_l2_tb.imgcard_flow {
    /* リスト */
  }
  .imgcard_l2_tb.imgcard_flow ul li::after {
    top: 32%;
  }
  .imgcard_l2_tb.imgcard_flow ul li {
    margin-right: 6%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l2_tb.imgcard_flow ul li {
    width: 47%;
  }
  .imgcard_l2_tb.imgcard_flow ul li:nth-child(2n) {
    margin-right: 0;
  }
  .imgcard_l2_tb.imgcard_flow ul li:nth-child(2n)::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  /* 3つ並び */
  .imgcard_l3_tb.imgcard_flow {
    /* リスト */
  }
  .imgcard_l3_tb.imgcard_flow ul li::after {
    top: 28%;
  }
  .imgcard_l3_tb.imgcard_flow ul li {
    margin-right: 3.5%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l3_tb.imgcard_flow ul li {
    width: 31%;
  }
  .imgcard_l3_tb.imgcard_flow ul li:nth-child(3n) {
    margin-right: 0;
  }
  .imgcard_l3_tb.imgcard_flow ul li:nth-child(3n)::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  /* 4つ並び */
  .imgcard_l4_tb.imgcard_flow {
    /* リスト */
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l4_tb.imgcard_flow ul li:nth-child(4n) {
    margin-right: 0;
  }
  .imgcard_l4_tb.imgcard_flow ul li:nth-child(4n)::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  /* 5つ並び */
  .imgcard_l5_tb.imgcard_flow {
    /* リスト */
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l5_tb.imgcard_flow ul li:nth-child(5n) {
    margin-right: 0;
  }
  .imgcard_l5_tb.imgcard_flow ul li:nth-child(5n)::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  /* 6つ並び */
  .imgcard_l6_tb.imgcard_flow {
    /* リスト */
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l6_tb.imgcard_flow ul li:nth-child(6n) {
    margin-right: 0;
  }
  .imgcard_l6_tb.imgcard_flow ul li:nth-child(6n)::after {
    display: none;
  }
}
/* スマートフォンの時 -------------------------------- */
@media screen and (max-width: 480px) {
  /* 1つ並び */
  .imgcard_l1_sp.imgcard_flow {
    /* リスト */
  }
  .imgcard_l1_sp.imgcard_flow ul li {
    width: 100%;
    margin-right: 0;
  }
  .imgcard_l1_sp.imgcard_flow ul li::after {
    font: var(--fa-font-solid);
    content: "\f107";
    color: #0e9b94;
    font-size: 2em;
    text-align: center;
    position: absolute;
    top: auto;
    left: 50%;
    right: auto;
    bottom: -1.25em;
    transform: translateX(-50%);
  }
  .sec_bg2 .imgcard_l1_sp.imgcard_flow ul li::after, .sec_bg4 .imgcard_l1_sp.imgcard_flow ul li::after {
    color: #ebf5f5;
  }
  /* 2つ並び */
  .imgcard_l2_sp.imgcard_flow {
    /* リスト */
  }
  .imgcard_l2_sp.imgcard_flow ul li::after {
    top: 28%;
  }
  .imgcard_l2_sp.imgcard_flow ul li {
    margin-right: 6%;
    width: 47%;
  }
  .imgcard_l2_sp.imgcard_flow ul li:nth-child(2n) {
    margin-right: 0;
  }
  .imgcard_l2_sp.imgcard_flow ul li:nth-child(2n)::after {
    display: none;
  }
  /* 3つ並び */
  .imgcard_l3_sp.imgcard_flow {
    /* リスト */
  }
  .imgcard_l3_sp.imgcard_flow ul li::after {
    top: 18%;
  }
  .imgcard_l3_sp.imgcard_flow ul li {
    margin-right: 3.5%;
    width: 31%;
  }
  .imgcard_l3_sp.imgcard_flow ul li:nth-child(3n) {
    margin-right: 0;
  }
  .imgcard_l3_sp.imgcard_flow ul li:nth-child(3n)::after {
    display: none;
  }
  /* 4つ並び */
  .imgcard_l4_sp.imgcard_flow {
    /* リスト */
  }
  .imgcard_l4_sp.imgcard_flow ul li:nth-child(4n) {
    margin-right: 0;
  }
  .imgcard_l4_sp.imgcard_flow ul li:nth-child(4n)::after {
    display: none;
  }
  /* 5つ並び */
  .imgcard_l5_sp.imgcard_flow {
    /* リスト */
  }
  .imgcard_l5_sp.imgcard_flow ul li:nth-child(5n) {
    margin-right: 0;
  }
  .imgcard_l5_sp.imgcard_flow ul li:nth-child(5n)::after {
    display: none;
  }
  /* 6つ並び */
  .imgcard_l6_sp.imgcard_flow {
    /* リスト */
  }
  .imgcard_l6_sp.imgcard_flow ul li:nth-child(6n) {
    margin-right: 0;
  }
  .imgcard_l6_sp.imgcard_flow ul li:nth-child(6n)::after {
    display: none;
  }
}
/* =============== 画像（単体） ========================================================= */
.parts_img {
  width: 100%;
  position: relative;
  padding-bottom: 5em;
  text-align: center;
}
.parts_img.center {
  text-align: center;
}
.parts_img.left {
  text-align: left;
}
.parts_img.right {
  text-align: right;
}
.parts_img img {
  max-width: inherit;
  height: auto;
}
@media screen and (max-width: 768px) {
  .parts_img img {
    width: 100%;
  }
}

/* ------------ 画像（画像＋テキスト） -------------------------------- */
.imgltxt,
.imgrtxt {
  width: 100%;
  position: relative;
  overflow: hidden;
  zoom: 1;
  padding-bottom: 5em;
}
.imgltxt .imgtxt_img,
.imgrtxt .imgtxt_img {
  width: 40%;
  position: relative;
  padding-bottom: 1em;
}
@media screen and (max-width: 1350px) {
  .imgltxt .imgtxt_img,
  .imgrtxt .imgtxt_img {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .imgltxt .imgtxt_img,
  .imgrtxt .imgtxt_img {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .imgltxt .imgtxt_img,
  .imgrtxt .imgtxt_img {
    width: 100%;
    padding-bottom: 2.5em;
  }
}
.imgltxt .imgtxt_img,
.imgrtxt .imgtxt_img {
  /* 画像 */
}
.imgltxt .imgtxt_img img,
.imgrtxt .imgtxt_img img {
  width: 100%;
  height: auto;
}

/* 画像左 -------------------------------- */
.imgltxt .imgtxt_img {
  float: left;
  padding-right: 3%;
}

/* 画像右 -------------------------------- */
.imgrtxt .imgtxt_img {
  float: right;
  padding-left: 3%;
}

@media screen and (max-width: 480px) {
  .imgltxt .imgtxt_img,
  .imgrtxt .imgtxt_img {
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
}

/* テキスト -------------------------------- */
/* 見出し */
.imgtxt_txt h4 {
  font-size: 1.75em;
  line-height: 1.5em;
  padding-bottom: 1em;
  color: #32294d;
}
.sec_bg3 .imgtxt_txt h4 {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .imgtxt_txt h4 {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 480px) {
  .imgtxt_txt h4 {
    font-size: 1.5em;
    padding-bottom: 0.67em;
  }
}

/* ------------ 画像（カード型レイアウト） -------------------------------- */
/* 画像 */
.imgcard_img {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 0.5em;
}

/* テキスト */
.imgcard_txt {
  display: block;
  width: 100%;
  z-index: 1;
  position: relative;
  box-sizing: border-box;
}
.imgcard_txt h3,
.imgcard_txt h4 {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 0.2em;
  text-decoration: none;
  color: #32294d;
}
.sec_bg3 .imgcard_txt h3,
.sec_bg3 .imgcard_txt h4 {
  color: #ffffff;
}
.imgcard_txt p {
  padding-bottom: 0;
  line-height: 1.5em;
  text-decoration: none;
}

/* カード型レイアウト共通設定 -------------------------------- */
.imgcard_l1,
.imgcard_l2,
.imgcard_l3,
.imgcard_l4,
.imgcard_l5,
.imgcard_l6 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 5em;
  /* リスト */
}
.imgcard_l1 ul,
.imgcard_l2 ul,
.imgcard_l3 ul,
.imgcard_l4 ul,
.imgcard_l5 ul,
.imgcard_l6 ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: -2em;
}
@media screen and (max-width: 768px) {
  .imgcard_l1 ul,
  .imgcard_l2 ul,
  .imgcard_l3 ul,
  .imgcard_l4 ul,
  .imgcard_l5 ul,
  .imgcard_l6 ul {
    margin-top: -3em;
  }
}
.imgcard_l1 ul li,
.imgcard_l2 ul li,
.imgcard_l3 ul li,
.imgcard_l4 ul li,
.imgcard_l5 ul li,
.imgcard_l6 ul li {
  width: auto;
  position: relative;
  box-sizing: border-box;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .imgcard_l1 ul li,
  .imgcard_l2 ul li,
  .imgcard_l3 ul li,
  .imgcard_l4 ul li,
  .imgcard_l5 ul li,
  .imgcard_l6 ul li {
    margin-top: 3em;
  }
}
.imgcard_l1 ul li,
.imgcard_l2 ul li,
.imgcard_l3 ul li,
.imgcard_l4 ul li,
.imgcard_l5 ul li,
.imgcard_l6 ul li {
  /* リンク */
}
.imgcard_l1 ul li a,
.imgcard_l2 ul li a,
.imgcard_l3 ul li a,
.imgcard_l4 ul li a,
.imgcard_l5 ul li a,
.imgcard_l6 ul li a {
  text-decoration: none;
}
.imgcard_l1 ul li,
.imgcard_l2 ul li,
.imgcard_l3 ul li,
.imgcard_l4 ul li,
.imgcard_l5 ul li,
.imgcard_l6 ul li {
  /* 画像 */
}
.imgcard_l1 ul li img,
.imgcard_l2 ul li img,
.imgcard_l3 ul li img,
.imgcard_l4 ul li img,
.imgcard_l5 ul li img,
.imgcard_l6 ul li img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}
.imgcard_l1 ul.flex_center,
.imgcard_l2 ul.flex_center,
.imgcard_l3 ul.flex_center,
.imgcard_l4 ul.flex_center,
.imgcard_l5 ul.flex_center,
.imgcard_l6 ul.flex_center {
  justify-content: center;
}
.imgcard_l1 ul.flex_center li:last-child,
.imgcard_l2 ul.flex_center li:last-child,
.imgcard_l3 ul.flex_center li:last-child,
.imgcard_l4 ul.flex_center li:last-child,
.imgcard_l5 ul.flex_center li:last-child,
.imgcard_l6 ul.flex_center li:last-child {
  margin-right: 0;
}

/* 1つ並び -------------------------------- */
.imgcard_l1 {
  /* リスト */
}
@media screen and (min-width: 769px) {
  .imgcard_l1 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .imgcard_l1 ul:has(.youtube_box) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.imgcard_l1 ul li {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .imgcard_l1 ul li:has(.youtube_box) {
    width: 100%;
  }
}
.imgcard_l1.imghbox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 480px) {
  .imgcard_l1.imghbox ul li {
    width: 47%;
  }
}

/* 2つ並び -------------------------------- */
.imgcard_l2 {
  /* リスト */
}
@media screen and (min-width: 769px) {
  .imgcard_l2 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .imgcard_l2 ul:has(.youtube_box) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.imgcard_l2 ul {
  justify-content: space-between;
}
.imgcard_l2 ul li {
  width: 47%;
  margin-right: 6%;
}
.imgcard_l2 ul li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .imgcard_l2 ul li:has(.youtube_box) {
    width: 100%;
  }
}
.imgcard_l2.imghbox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 480px) {
  .imgcard_l2.imghbox ul li {
    width: 47%;
  }
}

/* 3つ並び -------------------------------- */
.imgcard_l3 {
  /* リスト */
}
.imgcard_l3 ul {
  margin-top: -3em;
}
.imgcard_l3 ul li {
  width: 31%;
  margin-right: 3.5%;
  margin-top: 3em;
}
@media screen and (min-width: 769px) {
  .imgcard_l3 ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .imgcard_l3 ul li:has(.youtube_box) {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .imgcard_l3.imghbox ul li {
    width: 31%;
    margin-right: 3.5%;
  }
  .imgcard_l3.imghbox ul li:nth-child(3n) {
    margin-right: 0;
  }
}

/* 4つ並び -------------------------------- */
.imgcard_l4 {
  /* リスト */
}
.imgcard_l4 ul li {
  width: 23.5%;
  margin-right: 2%;
}
@media screen and (min-width: 769px) {
  .imgcard_l4 ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1350px) and (min-width: 481px) {
  .imgcard_l4.imghbox ul li {
    width: 23.5%;
  }
  .imgcard_l4.imghbox ul li:nth-child(2n) {
    margin-right: 2%;
  }
  .imgcard_l4.imghbox ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .imgcard_l4.imghbox ul li {
    width: 23.5%;
  }
  .imgcard_l4.imghbox ul li:nth-child(4n) {
    margin-right: 0;
  }
}

/* 5つ並び -------------------------------- */
.imgcard_l5 {
  /* リスト */
}
.imgcard_l5 ul li {
  width: 18.4%;
  margin-right: 2%;
}
@media screen and (min-width: 769px) {
  .imgcard_l5 ul li:nth-child(5n) {
    margin-right: 0;
  }
}

/* 6つ並び -------------------------------- */
.imgcard_l6 {
  /* リスト */
}
.imgcard_l6 ul li {
  width: 15%;
  margin-right: 2%;
}
@media screen and (min-width: 769px) {
  .imgcard_l6 ul li:nth-child(6n) {
    margin-right: 0;
  }
}

/* タブレットの時 -------------------------------- */
@media screen and (max-width: 768px) {
  /* 1つ並び */
  .imgcard_l1_tb {
    /* リスト */
  }
  .imgcard_l1_tb ul li {
    width: 100%;
    margin-right: 0;
  }
  /* 2つ並び */
  .imgcard_l2_tb {
    /* リスト */
  }
  .imgcard_l2_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l2_tb ul li {
    width: 49%;
  }
  .imgcard_l2_tb ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  /* 3つ並び */
  .imgcard_l3_tb {
    /* リスト */
  }
  .imgcard_l3_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l3_tb ul li {
    width: 32%;
  }
  .imgcard_l3_tb ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  /* 4つ並び */
  .imgcard_l4_tb {
    /* リスト */
  }
  .imgcard_l4_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l4_tb ul li {
    width: 23.5%;
  }
  .imgcard_l4_tb ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  /* 5つ並び */
  .imgcard_l5_tb {
    /* リスト */
  }
  .imgcard_l5_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l5_tb ul li {
    width: 18.4%;
  }
  .imgcard_l5_tb ul li:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  /* 6つ並び */
  .imgcard_l6_tb {
    /* リスト */
  }
  .imgcard_l6_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgcard_l6_tb ul li {
    width: 15%;
  }
  .imgcard_l6_tb ul li:nth-child(6n) {
    margin-right: 0;
  }
}
/* スマートフォンの時 -------------------------------- */
@media screen and (max-width: 480px) {
  /* 1つ並び */
  .imgcard_l1_sp {
    /* リスト */
  }
  .imgcard_l1_sp ul li {
    width: 100%;
    margin-right: 0;
  }
  /* 2つ並び */
  .imgcard_l2_sp {
    /* リスト */
  }
  .imgcard_l2_sp ul li {
    margin-right: 2%;
    width: 49%;
  }
  .imgcard_l2_sp ul li:nth-child(2n) {
    margin-right: 0;
  }
  /* 3つ並び */
  .imgcard_l3_sp {
    /* リスト */
  }
  .imgcard_l3_sp ul li {
    margin-right: 2%;
    width: 32%;
  }
  .imgcard_l3_sp ul li:nth-child(3n) {
    margin-right: 0;
  }
  /* 4つ並び */
  .imgcard_l4_sp {
    /* リスト */
  }
  .imgcard_l4_sp ul li {
    margin-right: 2%;
    width: 23.5%;
  }
  .imgcard_l4_sp ul li:nth-child(4n) {
    margin-right: 0;
  }
  /* 5つ並び */
  .imgcard_l5_sp {
    /* リスト */
  }
  .imgcard_l5_sp ul li {
    margin-right: 2%;
    width: 18.4%;
  }
  .imgcard_l5_sp ul li:nth-child(5n) {
    margin-right: 0;
  }
  /* 6つ並び */
  .imgcard_l6_sp {
    /* リスト */
  }
  .imgcard_l6_sp ul li {
    margin-right: 2%;
    width: 15%;
  }
  .imgcard_l6_sp ul li:nth-child(6n) {
    margin-right: 0;
  }
}
.partspage-ctt img.rd {
  border-radius: 1em;
  overflow: hidden;
}
.partspage-ctt img.cir {
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =============== リスト ========================================================= */
/* リスト共通 -------------------------------- */
.no_list,
.order_list,
.check_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border-radius: 1em;
  overflow: hidden;
  padding: 5em;
  margin: 0 auto;
  margin-bottom: 5em;
  background: #ffffff;
  color: #000;
}
@media screen and (max-width: 1350px) {
  .no_list,
  .order_list,
  .check_list {
    padding: 3em;
  }
}
@media screen and (max-width: 768px) {
  .no_list,
  .order_list,
  .check_list {
    padding: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .no_list,
  .order_list,
  .check_list {
    padding: 1.5em;
  }
}
.no_list,
.order_list,
.check_list {
  /* 見出し */
}
.no_list .list_hd,
.order_list .list_hd,
.check_list .list_hd {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
  color: #0e9b94;
}
@media screen and (max-width: 768px) {
  .no_list .list_hd,
  .order_list .list_hd,
  .check_list .list_hd {
    font-size: 1.3em;
  }
}
.no_list ul,
.no_list ol,
.order_list ul,
.order_list ol,
.check_list ul,
.check_list ol {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
}
.no_list li .li_ttl,
.order_list li .li_ttl,
.check_list li .li_ttl {
  font-size: 1.2em;
  font-weight: 900;
  line-height: 1.25em;
  padding-bottom: 0.5em;
  color: #32294d;
}
.no_list li .li_ttl + .li_txt,
.order_list li .li_ttl + .li_txt,
.check_list li .li_ttl + .li_txt {
  display: block;
}
.no_list li .li_txt,
.order_list li .li_txt,
.check_list li .li_txt {
  text-indent: initial;
}

/* ノーマルリストマークつき -------------------------------- */
.no_list {
  /* リスト */
}
.no_list ul {
  padding-left: 1.5em;
}
.no_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.7em;
  padding-bottom: 1.5em;
}
.no_list ul li::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: #0e9b94;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin-top: 0.2em;
  margin-left: -1.5em;
  margin-right: 0.5em;
}
.no_list ul li:last-child {
  padding-bottom: 0;
}

/* 番号つき -------------------------------- */
.order_list {
  /* リスト */
}
.order_list ol {
  counter-reset: number;
  padding-left: 1.5em;
}
.order_list ol li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.7em;
  padding-bottom: 1.5em;
}
.order_list ol li::before {
  position: absolute;
  display: inline-block;
  width: 1.2em;
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.2em;
  color: #0e9b94;
  margin-left: -1.5em;
}
.order_list ol li:last-child {
  padding-bottom: 0;
}

/* チェックボックスマークつき -------------------------------- */
.check_list {
  /* リスト */
}
.check_list ul {
  padding-left: 1.5em;
}
.check_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.7em;
  padding-bottom: 1.5em;
}
.check_list ul li::before {
  position: absolute;
  left: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: 900;
  color: #0e9b94;
  margin-left: -1.5em;
}
.check_list ul li:last-child {
  padding-bottom: 0;
}

/* 表型 -------------------------------- */
.table {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 5em;
  /* 見出し */
}
.table h3,
.table h4 {
  display: inline-block;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .table h3,
  .table h4 {
    font-size: 1.3em;
  }
}
.table {
  /* リスト */
}
.table ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border-radius: 1em;
  overflow: hidden;
  text-align: left;
  overflow: hidden;
}
.table ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 0.2em;
  overflow: hidden;
  background: inherit;
  color: #000;
}
.table ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .table ul li {
    border-radius: 1em;
    overflow: hidden;
    margin-bottom: 0.5em;
  }
}
.table ul li.table_li span {
  flex: 1;
}
.table ul li.table_li span.w-1 {
  flex: none;
  width: calc(1% - 0.2em);
}
.table ul li.table_li span.w-2 {
  flex: none;
  width: calc(2% - 0.2em);
}
.table ul li.table_li span.w-3 {
  flex: none;
  width: calc(3% - 0.2em);
}
.table ul li.table_li span.w-4 {
  flex: none;
  width: calc(4% - 0.2em);
}
.table ul li.table_li span.w-5 {
  flex: none;
  width: calc(5% - 0.2em);
}
.table ul li.table_li span.w-6 {
  flex: none;
  width: calc(6% - 0.2em);
}
.table ul li.table_li span.w-7 {
  flex: none;
  width: calc(7% - 0.2em);
}
.table ul li.table_li span.w-8 {
  flex: none;
  width: calc(8% - 0.2em);
}
.table ul li.table_li span.w-9 {
  flex: none;
  width: calc(9% - 0.2em);
}
.table ul li.table_li span.w-10 {
  flex: none;
  width: calc(10% - 0.2em);
}
.table ul li.table_li span.w-11 {
  flex: none;
  width: calc(11% - 0.2em);
}
.table ul li.table_li span.w-12 {
  flex: none;
  width: calc(12% - 0.2em);
}
.table ul li.table_li span.w-13 {
  flex: none;
  width: calc(13% - 0.2em);
}
.table ul li.table_li span.w-14 {
  flex: none;
  width: calc(14% - 0.2em);
}
.table ul li.table_li span.w-15 {
  flex: none;
  width: calc(15% - 0.2em);
}
.table ul li.table_li span.w-16 {
  flex: none;
  width: calc(16% - 0.2em);
}
.table ul li.table_li span.w-17 {
  flex: none;
  width: calc(17% - 0.2em);
}
.table ul li.table_li span.w-18 {
  flex: none;
  width: calc(18% - 0.2em);
}
.table ul li.table_li span.w-19 {
  flex: none;
  width: calc(19% - 0.2em);
}
.table ul li.table_li span.w-20 {
  flex: none;
  width: calc(20% - 0.2em);
}
.table ul li.table_li span.w-21 {
  flex: none;
  width: calc(21% - 0.2em);
}
.table ul li.table_li span.w-22 {
  flex: none;
  width: calc(22% - 0.2em);
}
.table ul li.table_li span.w-23 {
  flex: none;
  width: calc(23% - 0.2em);
}
.table ul li.table_li span.w-24 {
  flex: none;
  width: calc(24% - 0.2em);
}
.table ul li.table_li span.w-25 {
  flex: none;
  width: calc(25% - 0.2em);
}
.table ul li.table_li span.w-26 {
  flex: none;
  width: calc(26% - 0.2em);
}
.table ul li.table_li span.w-27 {
  flex: none;
  width: calc(27% - 0.2em);
}
.table ul li.table_li span.w-28 {
  flex: none;
  width: calc(28% - 0.2em);
}
.table ul li.table_li span.w-29 {
  flex: none;
  width: calc(29% - 0.2em);
}
.table ul li.table_li span.w-30 {
  flex: none;
  width: calc(30% - 0.2em);
}
.table ul li.table_li span.w-31 {
  flex: none;
  width: calc(31% - 0.2em);
}
.table ul li.table_li span.w-32 {
  flex: none;
  width: calc(32% - 0.2em);
}
.table ul li.table_li span.w-33 {
  flex: none;
  width: calc(33% - 0.2em);
}
.table ul li.table_li span.w-34 {
  flex: none;
  width: calc(34% - 0.2em);
}
.table ul li.table_li span.w-35 {
  flex: none;
  width: calc(35% - 0.2em);
}
.table ul li.table_li span.w-36 {
  flex: none;
  width: calc(36% - 0.2em);
}
.table ul li.table_li span.w-37 {
  flex: none;
  width: calc(37% - 0.2em);
}
.table ul li.table_li span.w-38 {
  flex: none;
  width: calc(38% - 0.2em);
}
.table ul li.table_li span.w-39 {
  flex: none;
  width: calc(39% - 0.2em);
}
.table ul li.table_li span.w-40 {
  flex: none;
  width: calc(40% - 0.2em);
}
.table ul li.table_li span.w-41 {
  flex: none;
  width: calc(41% - 0.2em);
}
.table ul li.table_li span.w-42 {
  flex: none;
  width: calc(42% - 0.2em);
}
.table ul li.table_li span.w-43 {
  flex: none;
  width: calc(43% - 0.2em);
}
.table ul li.table_li span.w-44 {
  flex: none;
  width: calc(44% - 0.2em);
}
.table ul li.table_li span.w-45 {
  flex: none;
  width: calc(45% - 0.2em);
}
.table ul li.table_li span.w-46 {
  flex: none;
  width: calc(46% - 0.2em);
}
.table ul li.table_li span.w-47 {
  flex: none;
  width: calc(47% - 0.2em);
}
.table ul li.table_li span.w-48 {
  flex: none;
  width: calc(48% - 0.2em);
}
.table ul li.table_li span.w-49 {
  flex: none;
  width: calc(49% - 0.2em);
}
.table ul li.table_li span.w-50 {
  flex: none;
  width: calc(50% - 0.2em);
}
.table ul li.table_li span.w-51 {
  flex: none;
  width: calc(51% - 0.2em);
}
.table ul li.table_li span.w-52 {
  flex: none;
  width: calc(52% - 0.2em);
}
.table ul li.table_li span.w-53 {
  flex: none;
  width: calc(53% - 0.2em);
}
.table ul li.table_li span.w-54 {
  flex: none;
  width: calc(54% - 0.2em);
}
.table ul li.table_li span.w-55 {
  flex: none;
  width: calc(55% - 0.2em);
}
.table ul li.table_li span.w-56 {
  flex: none;
  width: calc(56% - 0.2em);
}
.table ul li.table_li span.w-57 {
  flex: none;
  width: calc(57% - 0.2em);
}
.table ul li.table_li span.w-58 {
  flex: none;
  width: calc(58% - 0.2em);
}
.table ul li.table_li span.w-59 {
  flex: none;
  width: calc(59% - 0.2em);
}
.table ul li.table_li span.w-60 {
  flex: none;
  width: calc(60% - 0.2em);
}
.table ul li.table_li span.w-61 {
  flex: none;
  width: calc(61% - 0.2em);
}
.table ul li.table_li span.w-62 {
  flex: none;
  width: calc(62% - 0.2em);
}
.table ul li.table_li span.w-63 {
  flex: none;
  width: calc(63% - 0.2em);
}
.table ul li.table_li span.w-64 {
  flex: none;
  width: calc(64% - 0.2em);
}
.table ul li.table_li span.w-65 {
  flex: none;
  width: calc(65% - 0.2em);
}
.table ul li.table_li span.w-66 {
  flex: none;
  width: calc(66% - 0.2em);
}
.table ul li.table_li span.w-67 {
  flex: none;
  width: calc(67% - 0.2em);
}
.table ul li.table_li span.w-68 {
  flex: none;
  width: calc(68% - 0.2em);
}
.table ul li.table_li span.w-69 {
  flex: none;
  width: calc(69% - 0.2em);
}
.table ul li.table_li span.w-70 {
  flex: none;
  width: calc(70% - 0.2em);
}
.table ul li.table_li span.w-71 {
  flex: none;
  width: calc(71% - 0.2em);
}
.table ul li.table_li span.w-72 {
  flex: none;
  width: calc(72% - 0.2em);
}
.table ul li.table_li span.w-73 {
  flex: none;
  width: calc(73% - 0.2em);
}
.table ul li.table_li span.w-74 {
  flex: none;
  width: calc(74% - 0.2em);
}
.table ul li.table_li span.w-75 {
  flex: none;
  width: calc(75% - 0.2em);
}
.table ul li.table_li span.w-76 {
  flex: none;
  width: calc(76% - 0.2em);
}
.table ul li.table_li span.w-77 {
  flex: none;
  width: calc(77% - 0.2em);
}
.table ul li.table_li span.w-78 {
  flex: none;
  width: calc(78% - 0.2em);
}
.table ul li.table_li span.w-79 {
  flex: none;
  width: calc(79% - 0.2em);
}
.table ul li.table_li span.w-80 {
  flex: none;
  width: calc(80% - 0.2em);
}
.table ul li.table_li span.w-81 {
  flex: none;
  width: calc(81% - 0.2em);
}
.table ul li.table_li span.w-82 {
  flex: none;
  width: calc(82% - 0.2em);
}
.table ul li.table_li span.w-83 {
  flex: none;
  width: calc(83% - 0.2em);
}
.table ul li.table_li span.w-84 {
  flex: none;
  width: calc(84% - 0.2em);
}
.table ul li.table_li span.w-85 {
  flex: none;
  width: calc(85% - 0.2em);
}
.table ul li.table_li span.w-86 {
  flex: none;
  width: calc(86% - 0.2em);
}
.table ul li.table_li span.w-87 {
  flex: none;
  width: calc(87% - 0.2em);
}
.table ul li.table_li span.w-88 {
  flex: none;
  width: calc(88% - 0.2em);
}
.table ul li.table_li span.w-89 {
  flex: none;
  width: calc(89% - 0.2em);
}
.table ul li.table_li span.w-90 {
  flex: none;
  width: calc(90% - 0.2em);
}
.table ul li.table_li span.w-91 {
  flex: none;
  width: calc(91% - 0.2em);
}
.table ul li.table_li span.w-92 {
  flex: none;
  width: calc(92% - 0.2em);
}
.table ul li.table_li span.w-93 {
  flex: none;
  width: calc(93% - 0.2em);
}
.table ul li.table_li span.w-94 {
  flex: none;
  width: calc(94% - 0.2em);
}
.table ul li.table_li span.w-95 {
  flex: none;
  width: calc(95% - 0.2em);
}
.table ul li.table_li span.w-96 {
  flex: none;
  width: calc(96% - 0.2em);
}
.table ul li.table_li span.w-97 {
  flex: none;
  width: calc(97% - 0.2em);
}
.table ul li.table_li span.w-98 {
  flex: none;
  width: calc(98% - 0.2em);
}
.table ul li.table_li span.w-99 {
  flex: none;
  width: calc(99% - 0.2em);
}
.table ul li.table_li span.w-100 {
  flex: none;
  width: calc(100% - 0.2em);
}
.table ul li.table_li span:last-child {
  width: auto;
}
.table ul li.table_li span:last-child.w-1 {
  width: 1%;
}
.table ul li.table_li span:last-child.w-2 {
  width: 2%;
}
.table ul li.table_li span:last-child.w-3 {
  width: 3%;
}
.table ul li.table_li span:last-child.w-4 {
  width: 4%;
}
.table ul li.table_li span:last-child.w-5 {
  width: 5%;
}
.table ul li.table_li span:last-child.w-6 {
  width: 6%;
}
.table ul li.table_li span:last-child.w-7 {
  width: 7%;
}
.table ul li.table_li span:last-child.w-8 {
  width: 8%;
}
.table ul li.table_li span:last-child.w-9 {
  width: 9%;
}
.table ul li.table_li span:last-child.w-10 {
  width: 10%;
}
.table ul li.table_li span:last-child.w-11 {
  width: 11%;
}
.table ul li.table_li span:last-child.w-12 {
  width: 12%;
}
.table ul li.table_li span:last-child.w-13 {
  width: 13%;
}
.table ul li.table_li span:last-child.w-14 {
  width: 14%;
}
.table ul li.table_li span:last-child.w-15 {
  width: 15%;
}
.table ul li.table_li span:last-child.w-16 {
  width: 16%;
}
.table ul li.table_li span:last-child.w-17 {
  width: 17%;
}
.table ul li.table_li span:last-child.w-18 {
  width: 18%;
}
.table ul li.table_li span:last-child.w-19 {
  width: 19%;
}
.table ul li.table_li span:last-child.w-20 {
  width: 20%;
}
.table ul li.table_li span:last-child.w-21 {
  width: 21%;
}
.table ul li.table_li span:last-child.w-22 {
  width: 22%;
}
.table ul li.table_li span:last-child.w-23 {
  width: 23%;
}
.table ul li.table_li span:last-child.w-24 {
  width: 24%;
}
.table ul li.table_li span:last-child.w-25 {
  width: 25%;
}
.table ul li.table_li span:last-child.w-26 {
  width: 26%;
}
.table ul li.table_li span:last-child.w-27 {
  width: 27%;
}
.table ul li.table_li span:last-child.w-28 {
  width: 28%;
}
.table ul li.table_li span:last-child.w-29 {
  width: 29%;
}
.table ul li.table_li span:last-child.w-30 {
  width: 30%;
}
.table ul li.table_li span:last-child.w-31 {
  width: 31%;
}
.table ul li.table_li span:last-child.w-32 {
  width: 32%;
}
.table ul li.table_li span:last-child.w-33 {
  width: 33%;
}
.table ul li.table_li span:last-child.w-34 {
  width: 34%;
}
.table ul li.table_li span:last-child.w-35 {
  width: 35%;
}
.table ul li.table_li span:last-child.w-36 {
  width: 36%;
}
.table ul li.table_li span:last-child.w-37 {
  width: 37%;
}
.table ul li.table_li span:last-child.w-38 {
  width: 38%;
}
.table ul li.table_li span:last-child.w-39 {
  width: 39%;
}
.table ul li.table_li span:last-child.w-40 {
  width: 40%;
}
.table ul li.table_li span:last-child.w-41 {
  width: 41%;
}
.table ul li.table_li span:last-child.w-42 {
  width: 42%;
}
.table ul li.table_li span:last-child.w-43 {
  width: 43%;
}
.table ul li.table_li span:last-child.w-44 {
  width: 44%;
}
.table ul li.table_li span:last-child.w-45 {
  width: 45%;
}
.table ul li.table_li span:last-child.w-46 {
  width: 46%;
}
.table ul li.table_li span:last-child.w-47 {
  width: 47%;
}
.table ul li.table_li span:last-child.w-48 {
  width: 48%;
}
.table ul li.table_li span:last-child.w-49 {
  width: 49%;
}
.table ul li.table_li span:last-child.w-50 {
  width: 50%;
}
.table ul li.table_li span:last-child.w-51 {
  width: 51%;
}
.table ul li.table_li span:last-child.w-52 {
  width: 52%;
}
.table ul li.table_li span:last-child.w-53 {
  width: 53%;
}
.table ul li.table_li span:last-child.w-54 {
  width: 54%;
}
.table ul li.table_li span:last-child.w-55 {
  width: 55%;
}
.table ul li.table_li span:last-child.w-56 {
  width: 56%;
}
.table ul li.table_li span:last-child.w-57 {
  width: 57%;
}
.table ul li.table_li span:last-child.w-58 {
  width: 58%;
}
.table ul li.table_li span:last-child.w-59 {
  width: 59%;
}
.table ul li.table_li span:last-child.w-60 {
  width: 60%;
}
.table ul li.table_li span:last-child.w-61 {
  width: 61%;
}
.table ul li.table_li span:last-child.w-62 {
  width: 62%;
}
.table ul li.table_li span:last-child.w-63 {
  width: 63%;
}
.table ul li.table_li span:last-child.w-64 {
  width: 64%;
}
.table ul li.table_li span:last-child.w-65 {
  width: 65%;
}
.table ul li.table_li span:last-child.w-66 {
  width: 66%;
}
.table ul li.table_li span:last-child.w-67 {
  width: 67%;
}
.table ul li.table_li span:last-child.w-68 {
  width: 68%;
}
.table ul li.table_li span:last-child.w-69 {
  width: 69%;
}
.table ul li.table_li span:last-child.w-70 {
  width: 70%;
}
.table ul li.table_li span:last-child.w-71 {
  width: 71%;
}
.table ul li.table_li span:last-child.w-72 {
  width: 72%;
}
.table ul li.table_li span:last-child.w-73 {
  width: 73%;
}
.table ul li.table_li span:last-child.w-74 {
  width: 74%;
}
.table ul li.table_li span:last-child.w-75 {
  width: 75%;
}
.table ul li.table_li span:last-child.w-76 {
  width: 76%;
}
.table ul li.table_li span:last-child.w-77 {
  width: 77%;
}
.table ul li.table_li span:last-child.w-78 {
  width: 78%;
}
.table ul li.table_li span:last-child.w-79 {
  width: 79%;
}
.table ul li.table_li span:last-child.w-80 {
  width: 80%;
}
.table ul li.table_li span:last-child.w-81 {
  width: 81%;
}
.table ul li.table_li span:last-child.w-82 {
  width: 82%;
}
.table ul li.table_li span:last-child.w-83 {
  width: 83%;
}
.table ul li.table_li span:last-child.w-84 {
  width: 84%;
}
.table ul li.table_li span:last-child.w-85 {
  width: 85%;
}
.table ul li.table_li span:last-child.w-86 {
  width: 86%;
}
.table ul li.table_li span:last-child.w-87 {
  width: 87%;
}
.table ul li.table_li span:last-child.w-88 {
  width: 88%;
}
.table ul li.table_li span:last-child.w-89 {
  width: 89%;
}
.table ul li.table_li span:last-child.w-90 {
  width: 90%;
}
.table ul li.table_li span:last-child.w-91 {
  width: 91%;
}
.table ul li.table_li span:last-child.w-92 {
  width: 92%;
}
.table ul li.table_li span:last-child.w-93 {
  width: 93%;
}
.table ul li.table_li span:last-child.w-94 {
  width: 94%;
}
.table ul li.table_li span:last-child.w-95 {
  width: 95%;
}
.table ul li.table_li span:last-child.w-96 {
  width: 96%;
}
.table ul li.table_li span:last-child.w-97 {
  width: 97%;
}
.table ul li.table_li span:last-child.w-98 {
  width: 98%;
}
.table ul li.table_li span:last-child.w-99 {
  width: 99%;
}
.table ul li.table_li span:last-child.w-100 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .table ul li.table_li span {
    flex: none;
    width: 100% !important;
  }
}
.table ul li.table_li .row_th,
.table ul li.table_li .col_th {
  font-weight: 700;
  color: #ffffff;
  background: #0e9b94;
}
.sec_bg3 .table ul li.table_li .row_th,
.sec_bg3 .table ul li.table_li .col_th {
  color: #0e9b94;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .table ul li.table_li .row_th {
    border-right: none;
    border-bottom: none;
  }
}
.table ul li.table_li .row_th .col_th_sp {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .table ul li.table_li .col_th {
    display: none;
  }
}
.table ul li .table_th,
.table ul li .table_td {
  width: auto;
  background: #ffffff;
  padding: 2em 1.5em;
  font-size: 1em;
  font-weight: 500;
  font-weight: 500;
  line-height: 1.5em;
  margin-right: 0.2em;
}
.sec_bg3 .table ul li .table_th,
.sec_bg3 .table ul li .table_td {
  background: #d3ebea;
}
.table ul li .table_th:last-of-type,
.table ul li .table_td:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .table ul li .table_th,
  .table ul li .table_td {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.2em;
  }
  .table ul li .table_th:last-of-type,
  .table ul li .table_td:last-of-type {
    margin-bottom: 0;
  }
}
.table ul li .table_th,
.table ul li .table_td {
  width: auto;
  position: relative;
  box-sizing: border-box;
}
.table ul li .table_td {
  width: auto;
}
.table ul li .table_td .col_th_sp {
  color: inherit;
}
.table ul li .table_td:last-child {
  border-right: none;
  border-bottom: none;
}
.table ul li .table_td strong {
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.table ul li .col_th_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .table ul li .col_th_sp {
    display: block;
    font-size: 0.8em;
  }
}
.table ul li:last-child {
  border-bottom: none;
}

/* 注釈 -------------------------------- */
.note_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 5em;
  color: #0e9b94;
}
.sec_bg3 .note_list, .sec_bg4 .note_list {
  color: #d3ebea;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.note_list.bgcolor {
  padding: 5em;
  background: #d3ebea;
  color: #197069;
  border-radius: 1em;
  overflow: hidden;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media screen and (max-width: 1350px) {
  .note_list.bgcolor {
    padding: 3em;
  }
}
@media screen and (max-width: 768px) {
  .note_list.bgcolor {
    padding: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .note_list.bgcolor {
    padding: 1.5em;
  }
}
.note_list {
  /* 見出し */
}
.note_list h3,
.note_list h4 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .note_list h3,
  .note_list h4 {
    font-size: 1.3em;
  }
}
.note_list {
  /* リスト */
}
.note_list ul {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
}
.note_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.7em;
  padding-left: 1.2em;
  padding-bottom: 1.5em;
}
.note_list ul li::before {
  position: absolute;
  left: 0;
  display: inline-block;
  content: "※";
}
.note_list ul li:last-child {
  padding-bottom: 0;
}
.note_list ul li h5 {
  font-family: "korolev-rounded", "fot-udkakugo-large-pr6n", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 1.2em;
  font-weight: 900;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .note_list ul li h5 {
    font-size: 1.1em;
  }
}
.note_list ul li p {
  display: inline-block;
}

/* 沿革・タイムライン -------------------------------- */
.tl_box {
  padding-bottom: 5em;
  /* 横並び共通 */
}
.tl_box.side_tl, .tl_box.side_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.tl_box.side_tl .tl, .tl_box.side_img .tl {
  width: 45% !important;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .tl_box.side_tl .tl, .tl_box.side_img .tl {
    width: 100% !important;
  }
}
.tl_box .tl {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .tl_box .tl {
    margin-bottom: 5em;
  }
}
.tl_box .tl {
  /* 見出し */
}
.tl_box .tl h3,
.tl_box .tl h4 {
  width: 100%;
  display: inline-block;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
  color: #32294d;
}
.sec_bg3 .tl_box .tl h3,
.sec_bg3 .tl_box .tl h4 {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .tl_box .tl h3,
  .tl_box .tl h4 {
    font-size: 1.3em;
  }
}
.tl_box .tl {
  /* リスト */
}
.tl_box .tl ul {
  list-style: none inside;
  text-align: left;
  display: table;
  width: auto;
}
.tl_box .tl ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: table-row;
}
.tl_box .tl ul li:first-child::before {
  top: 2em;
}
.tl_box .tl ul li:last-child::before {
  height: 2em;
  bottom: auto;
}
.tl_box .tl ul li .tl_time,
.tl_box .tl ul li .tl_txt {
  padding: 0 1.5em 1.5em 1.5em;
  font-size: 1em;
  line-height: 1.5em;
  width: auto;
  position: relative;
  box-sizing: border-box;
}
.tl_box .tl ul li .tl_time {
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
  display: table-cell;
  white-space: nowrap;
  padding-left: 0;
  font-size: 1.2em;
  font-weight: 900;
  text-align: right;
}
.tl_box .tl ul li .tl_txt {
  display: table-cell;
  width: 100%;
  padding-right: 0;
  font-weight: 500;
}
.tl_box .tl ul li .tl_txt::before, .tl_box .tl ul li .tl_txt::after {
  content: "";
  display: block;
}
.tl_box .tl ul li .tl_txt {
  /* 線 */
}
.tl_box .tl ul li .tl_txt::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  right: auto;
  bottom: auto;
  width: 1px;
  height: 100%;
  margin: auto;
  border-right: #0e9b94 solid 0.25em;
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.sec_bg3 .tl_box .tl ul li .tl_txt::before {
  border-color: #d3ebea;
}
.tl_box .tl ul li .tl_txt {
  /* 丸 */
}
.tl_box .tl ul li .tl_txt::after {
  position: absolute;
  top: 0.3em;
  left: -0.2em;
  right: auto;
  bottom: auto;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: #0e9b94;
  z-index: 2;
}
.sec_bg3 .tl_box .tl ul li .tl_txt::after {
  background: #d3ebea;
}
.tl_box .tl ul li .tl_txt .tl_ttl {
  display: block;
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 700;
  padding-bottom: 0.5em;
  color: #0e9b94;
}
.tl_box .tl ul li .tl_img {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  margin-top: 1em;
}
.tl_box .tl ul li .tl_img img {
  width: 45%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tl_box .tl ul {
  /* 最後の点線 */
}
.tl_box .tl ul.on li:last-child .tl_txt::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  right: auto;
  bottom: auto;
  width: 1px;
  height: 100%;
  margin: auto;
  border-right: #0e9b94 dotted 0.25em;
}
.sec_bg3 .tl_box .tl ul.on li:last-child .tl_txt::before {
  border-right: #d3ebea dotted 0.25em;
}
.tl_box .tl ul.on li:last-child .tl_txt::before {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
@media screen and (max-width: 768px) {
  .tl_box .tl ul.on li:last-child .tl_txt::before {
    left: 0;
  }
}
.tl_box .img_container {
  width: 45%;
  height: inherit;
  padding: 0;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .tl_box .img_container {
    display: none;
  }
}
.tl_box .img_container .imgbox {
  position: sticky;
  top: 30%;
}
.tl_box .img_container .imgbox img {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =============== 余白ゼロ ========================================================= */
.partspage-ctt .sec .innerbox p:last-child,
.partspage-ctt .sec .innerbox p.parts_copy:last-child,
.partspage-ctt .sec .innerbox p.note:last-child,
.partspage-ctt .sec .innerbox .parts_img:last-child,
.partspage-ctt .sec .innerbox .imgltxt:last-child,
.partspage-ctt .sec .innerbox .imgrtxt:last-child,
.partspage-ctt .sec .innerbox .imgcard_l1:last-child,
.partspage-ctt .sec .innerbox .imgcard_l2:last-child,
.partspage-ctt .sec .innerbox .imgcard_l3:last-child,
.partspage-ctt .sec .innerbox .imgcard_l4:last-child,
.partspage-ctt .sec .innerbox .imgcard_l5:last-child,
.partspage-ctt .sec .innerbox .imgcard_l6:last-child,
.partspage-ctt .sec .innerbox .tl_box:last-child,
.partspage-ctt .sec .innerbox .pdf_box:last-child,
.partspage-ctt .sec .innerbox .faq_box:last-child {
  padding-bottom: 0;
}
.partspage-ctt .sec .innerbox .btnbox:last-child,
.partspage-ctt .sec .innerbox .textbox:last-child,
.partspage-ctt .sec .innerbox .no_list:last-child,
.partspage-ctt .sec .innerbox .check_list:last-child,
.partspage-ctt .sec .innerbox .order_list:last-child,
.partspage-ctt .sec .innerbox .table:last-child,
.partspage-ctt .sec .innerbox .note_list:last-child,
.partspage-ctt .sec .innerbox .access_map:last-child,
.partspage-ctt .sec .innerbox .table:last-child,
.partspage-ctt .sec .innerbox .balloon_list:last-child {
  margin-bottom: 0;
}

.imgcard_l2 img:last-child,
.imgcard_l3 img:last-child,
.imgcard_l4 img:last-child {
  margin-bottom: 0;
}
.imgcard_l2 a img:last-child,
.imgcard_l3 a img:last-child,
.imgcard_l4 a img:last-child {
  margin-bottom: 1em;
}
.imgcard_l2 a:last-child img,
.imgcard_l3 a:last-child img,
.imgcard_l4 a:last-child img {
  margin-bottom: 0;
}
.imgcard_l2 a:last-child img:last-child,
.imgcard_l3 a:last-child img:last-child,
.imgcard_l4 a:last-child img:last-child {
  margin-bottom: 0;
}

li .youtube_box:last-child {
  margin-bottom: 0;
}

.imgtxt_img .youtube_box {
  margin-bottom: 0;
}

/* =============== テキスト ========================================================= */
/* ------------ 見出し -------------------------------- */
.parts_hd {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1em;
  padding-bottom: 5em;
  /* 大きな数字 */
}
.parts_hd .hd_en {
  display: block;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 6.8em;
  letter-spacing: 0;
  line-height: 1em;
  color: #32294d;
  text-transform: uppercase;
  margin-bottom: 0;
}
.parts_hd .hd_en::first-letter {
  color: #0e9b94;
}
.sec_bg3 .parts_hd .hd_en {
  color: #32294d;
}
.sec_bg3 .parts_hd .hd_en::first-letter {
  color: #d3ebea;
}
@media screen and (max-width: 768px) {
  .parts_hd .hd_en {
    font-size: 5em;
  }
}
@media screen and (max-width: 480px) {
  .parts_hd .hd_en {
    font-size: 4em;
  }
}
.parts_hd .hd_jp {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 3em;
  line-height: 1.5;
}
.sec_bg3 .parts_hd .hd_jp {
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .parts_hd .hd_jp {
    font-size: 2em;
  }
}
.parts_hd:has(.hd_en) .hd_jp {
  font-size: 1.8em;
  margin-top: 0.2em;
}
@media screen and (max-width: 768px) {
  .parts_hd:has(.hd_en) .hd_jp {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  .parts_hd:has(.hd_en) .hd_jp {
    font-size: 1.2em;
  }
}

.parts-h4 {
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.5em;
  padding-top: 3em;
  padding-bottom: 1em;
  color: #32294d;
}
@media screen and (max-width: 768px) {
  .parts-h4 {
    font-size: 1.15em;
  }
}

/* 左寄せ・幅指定中央配置テキスト */
.tw_s {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .tw_s {
    width: 100%;
  }
}

.tw_m {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .tw_m {
    width: 100%;
  }
}

.tw_l {
  width: 100%;
}

/* ------------ 段落 -------------------------------- */
.partspage-ctt a {
  text-decoration: underline;
  color: #000;
}
.partspage-ctt a:hover {
  color: #000;
  text-decoration: none;
}
.partspage-ctt .sec_bg3 a {
  color: #ffffff;
}
.partspage-ctt .sec_bg3 a:hover {
  color: #ffffff;
}
.partspage-ctt .sec p {
  padding-bottom: 5em;
  /* 余白小さめ */
}
.partspage-ctt .sec p.btmmin {
  padding-bottom: 2em;
}
.partspage-ctt .sec p {
  /* 強調 */
}
.partspage-ctt .sec p.parts_copy {
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  padding-bottom: 1em;
  color: #32294d;
}
@media screen and (max-width: 768px) {
  .partspage-ctt .sec p.parts_copy {
    font-size: 1.3em;
  }
}
.partspage-ctt .sec p {
  /* 大テキスト */
}
.partspage-ctt .sec p.ts_l {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  line-height: 1.5em;
  padding-bottom: 2.5em;
  color: #32294d;
}
@media screen and (max-width: 480px) {
  .partspage-ctt .sec p.ts_l {
    font-size: 1.6em;
    padding-bottom: 3.125em;
  }
}
.partspage-ctt .sec p {
  /* 中テキスト */
}
.partspage-ctt .sec p.ts_m {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 3.33em;
  color: #32294d;
}
@media screen and (max-width: 480px) {
  .partspage-ctt .sec p.ts_m {
    font-size: 1.2em;
    padding-bottom: 4.167em;
  }
}
.partspage-ctt .sec p {
  /* 注釈 */
}
.partspage-ctt .sec p.note {
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.7em;
  padding-bottom: 5em;
  padding-left: 1.2em;
  text-indent: -0.65em;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  color: #0e9b94;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.partspage-ctt .sec p.note::before {
  display: inline-block;
  content: "※";
  padding-right: 0.2em;
}
.partspage-ctt .sec .imgtxt_txtbox p:last-child {
  padding-bottom: 0;
}
.partspage-ctt .sec_bg3 p.parts_copy {
  color: #ffffff;
}
.partspage-ctt .sec_bg3 p {
  /* 大テキスト */
}
.partspage-ctt .sec_bg3 p.ts_l {
  color: #ffffff;
}
.partspage-ctt .sec_bg3 p {
  /* 中テキスト */
}
.partspage-ctt .sec_bg3 p.ts_m {
  color: #ffffff;
}

/* やや小さめ強調 */
.strong {
  font-size: 1.2em;
  font-weight: 700;
  font-weight: 700;
  line-height: 2em;
}

/* ------------ 背景色つきテキストボックス -------------------------------- */
.textbox {
  width: 100%;
  box-sizing: border-box;
  padding: 5em;
  margin-bottom: 5em;
  border-radius: 1em;
  overflow: hidden;
  background: #ffffff;
  color: #000;
}
@media screen and (max-width: 768px) {
  .textbox {
    padding: 2em;
  }
}
@media screen and (max-width: 480px) {
  .textbox {
    padding: 1.5em;
  }
}
.textbox h3,
.textbox h4 {
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
  color: #32294d;
}
@media screen and (max-width: 768px) {
  .textbox h3,
  .textbox h4 {
    font-size: 1.3em;
  }
}
.textbox p {
  padding-bottom: 2em;
}
.textbox p:last-child {
  padding-bottom: 0;
}

/* =============== Youtube動画 ========================================================= */
.yttxt .imgtxt_img {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .yttxt .imgtxt_img {
    width: 100%;
  }
}

.youtube_box {
  width: 100%;
}
.youtube_box span {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube_box span iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.imgcard_l2 .youtube_box,
.imgcard_l3 .youtube_box {
  padding-bottom: 1.5em;
}

/* =============== インタビュー一覧ページYoutube動画 ========================================================= */
.interview_youtube {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10em 0;
  background: #0e9b94;
}
@media screen and (max-width: 768px) {
  .interview_youtube {
    padding: 10em;
  }
}
@media screen and (max-width: 480px) {
  .interview_youtube {
    padding: 5em;
  }
}
.interview_youtube .youtube_box {
  width: 60%;
  border-radius: 1em;
  overflow: hidden;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .interview_youtube .youtube_box {
    width: 100%;
  }
}

/* =======================================================================================================================
　　　　　　　　　Q&A
======================================================================================================================= */
.faq_box {
  padding-bottom: 5em;
  /* -------------------------- Q&Aリスト ------------------------------------------- */
}
.faq_box ul.qa_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
}
.faq_box ul.qa_list li.qa_set {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  background: #ebf5f5;
  overflow: hidden;
}
.faq_box ul.qa_list li.qa_set:not(:last-child) {
  margin-bottom: 1em;
}
.faq_box ul.qa_list li.qa_set label {
  cursor: pointer;
}
.faq_box ul.qa_list li.qa_set {
  /* テキスト ------------------------------------------- */
}
.faq_box ul.qa_list li.qa_set .qa_txt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border-radius: 1em;
  overflow: hidden;
  /* Q */
}
.faq_box ul.qa_list li.qa_set .qa_txt .question {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1em;
  line-height: 2em;
  background: #d3ebea;
  color: #000;
  padding: 1.2em;
  text-indent: -1.9em;
  padding-left: 3.45em;
  padding-right: 3.45em;
  transition: 1s ease;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  .faq_box ul.qa_list li.qa_set .qa_txt .question {
    padding-bottom: 2em;
  }
}
.faq_box ul.qa_list li.qa_set .qa_txt .question::before {
  content: "Q";
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5em;
  padding-right: 0.5em;
  color: #0e9b94;
}
.faq_box ul.qa_list li.qa_set .qa_txt .question::after {
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1em;
  font-weight: 300;
  text-indent: 0;
  line-height: 1em;
  content: "＋ 開く";
  box-sizing: border-box;
  width: 5em;
  height: 1em;
  border-radius: 50%;
  color: #0e9b94;
  padding-top: 0.18em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: auto;
  left: auto;
  right: 0.6em;
  bottom: 0.85em;
  transition: 1s ease;
  backface-visibility: hidden;
}
@media screen and (max-width: 1350px) {
  .faq_box ul.qa_list li.qa_set .qa_txt .question::after {
    padding-top: 0.25em;
  }
}
.faq_box ul.qa_list li.qa_set .qa_txt {
  /* A */
}
.faq_box ul.qa_list li.qa_set .qa_txt p.answer {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: auto;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: 1s ease;
  backface-visibility: hidden;
  background: #d3ebea;
  color: #000;
}
.faq_box ul.qa_list li.qa_set .qa_txt p.answer span {
  display: block;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 1.5em;
  text-indent: -1.95em;
  padding-left: 3.8em;
  line-height: 1.5em;
}
.faq_box ul.qa_list li.qa_set .qa_txt p.answer span::before {
  content: "A";
  font-family: "korolev-rounded", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5em;
  padding-right: 0.5em;
  color: #0e9b94;
}
.faq_box ul.qa_list li.qa_set {
  /* 開閉動作 ------------------------------------------- */
}
.faq_box ul.qa_list li.qa_set .qa_open {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  z-index: 10;
  opacity: 0;
  filter: alpha(opacity=0);
}
.faq_box ul.qa_list li.qa_set .qa_open:checked + .qa_txt {
  /* Q */
}
.faq_box ul.qa_list li.qa_set .qa_open:checked + .qa_txt .question {
  font-weight: 700;
  background: #0e9b94;
  color: #ebf5f5;
}
.sec_bg4 .faq_box ul.qa_list li.qa_set .qa_open:checked + .qa_txt .question {
  background: #4f9bdc;
  color: #000;
}
.faq_box ul.qa_list li.qa_set .qa_open:checked + .qa_txt .question::before {
  color: #ebf5f5;
}
.faq_box ul.qa_list li.qa_set .qa_open:checked + .qa_txt .question::after {
  content: "ー 閉じる";
  padding-top: 0.35em;
  padding-bottom: 0.2em;
  color: #ebf5f5;
  border-color: #ebf5f5;
}
.faq_box ul.qa_list li.qa_set .qa_open:checked + .qa_txt {
  /* A */
}
.faq_box ul.qa_list li.qa_set .qa_open:checked + .qa_txt p.answer {
  max-height: 50em;
}
.faq_box {
  /* -------------------------- リンクボタン ------------------------------------------- */
}
.faq_box .btn {
  padding-top: 2em;
}

/* PDFファイル -------------------------------- */
.pdf_box {
  padding-bottom: 5em;
  /* 見出し */
}
.pdf_box h4 {
  display: inline-block;
  font-family: "uddigikyokasho-pro", "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: 2em;
  line-height: 1.5em;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .pdf_box h4 {
    font-size: 1.75em;
    padding-bottom: 0.5em;
  }
}
.pdf_box ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em;
  list-style: none inside;
}
@media screen and (max-width: 480px) {
  .pdf_box ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pdf_box ul li {
  width: 100%;
  background: #d3ebea;
  color: #000;
}
.pdf_box ul li a {
  display: block;
  color: #000 !important;
  padding: 1em 2em;
  text-decoration: none;
  position: relative;
}
.pdf_box ul li a:hover {
  color: #0e9b94 !important;
}
.pdf_box ul li a:hover i {
  color: #0e9b94 !important;
}
.pdf_box ul li a i {
  color: #0e9b94;
  padding-right: 0.25em;
  position: absolute;
  top: 1.5em;
}
.pdf_box ul li a span {
  display: inline-block;
  padding-left: 2em;
}

/* ================= フォーム ============================================================ */
/* ブラウザスタイル解除 */
@keyframes onAutoFillStart {}
input:-webkit-autofill {
  animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

input:-webkit-autofill-selected {
  animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

input:-internal-autofill-selected {
  background-color: rgba(232, 240, 254, 0) !important;
}

.formbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 10em 5em;
  background: #ffffff;
  border-radius: 1em;
  overflow: hidden;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 768px) {
  .formbox {
    padding: 1.5em;
  }
}
.formbox h3 {
  font-size: 2em;
  line-height: 1.7em;
  padding-bottom: 0.5em;
}
.formbox p {
  padding-bottom: 2em;
}
.formbox {
  /* -------------------------- Contact Form 7 ------------------------------------------- */
}
.formbox .wpcf7-form {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  /* 項目名（共通） */
}
.formbox .wpcf7-form .formname {
  width: 13em;
}
@media screen and (max-width: 768px) {
  .formbox .wpcf7-form .formname {
    width: 100%;
  }
}
.formbox .wpcf7-form {
  /* ラベルで挟まれた項目 */
}
.formbox .wpcf7-form label.formctt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .formbox .wpcf7-form label.formctt {
    display: block;
  }
}
.formbox .wpcf7-form label.formctt {
  /* 項目名 */
}
.formbox .wpcf7-form label.formctt .formname {
  line-height: 1.7em;
  padding-top: 0.75em;
}
.formbox .wpcf7-form label.formctt {
  /* フォーム内容 */
}
.formbox .wpcf7-form label.formctt .wpcf7-form-control-wrap {
  flex: 1;
}
@media screen and (max-width: 480px) {
  .formbox .wpcf7-form label.formctt .wpcf7-form-control-wrap {
    flex: none;
  }
}
.formbox .wpcf7-form {
  /* fieldsetで挟まれた項目 */
}
.formbox .wpcf7-form fieldset.formctt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border: none;
  padding-left: 13em;
}
@media screen and (max-width: 480px) {
  .formbox .wpcf7-form fieldset.formctt {
    padding-left: 0;
  }
}
.formbox .wpcf7-form fieldset.formctt {
  /* 項目名 */
}
.formbox .wpcf7-form fieldset.formctt .formname {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}
@media screen and (max-width: 480px) {
  .formbox .wpcf7-form fieldset.formctt .formname {
    position: relative;
  }
}
.formbox .wpcf7-form fieldset.formctt {
  /* フォーム内容 */
}
.formbox .wpcf7-form fieldset.formctt .wpcf7-form-control-wrap {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.formbox .wpcf7-form fieldset.formctt {
  /* 改行 */
}
.formbox .wpcf7-form fieldset.formctt br {
  display: none;
}
.formbox .wpcf7-form p {
  padding: 0 0 2em 0;
}
.formbox .wpcf7-form input[type=text],
.formbox .wpcf7-form input[type=email],
.formbox .wpcf7-form input[type=tel],
.formbox .wpcf7-form input[type=date],
.formbox .wpcf7-form select,
.formbox .wpcf7-form textarea {
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  border-radius: 1em;
  overflow: hidden;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.7em;
  box-sizing: border-box;
  padding: 0.75em 1.5em;
  border: #d3ebea solid 0.1em;
}
.formbox .wpcf7-form input[type=text],
.formbox .wpcf7-form input[type=email],
.formbox .wpcf7-form input[type=tel],
.formbox .wpcf7-form select,
.formbox .wpcf7-form textarea {
  width: 100% !important;
}
.formbox .wpcf7-form {
  /* チェックボックス・ラジオボタン */
}
.formbox .wpcf7-form .wpcf7-radio .wpcf7-list-item,
.formbox .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
  margin-right: 1em;
}
.formbox .wpcf7-form .wpcf7-radio .wpcf7-list-item label,
.formbox .wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
  cursor: pointer;
  font-weight: 400;
}
.formbox .wpcf7-form {
  /* 承認確認 */
}
.formbox .wpcf7-form .wpcf7-acceptance label {
  cursor: pointer;
}
.formbox .wpcf7-form {
  /*送信ボタン*/
}
.formbox .wpcf7-form input[type=submit] {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.formbox .wpcf7-form input[type=submit]:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
.formbox .wpcf7-form input[type=submit]:disabled {
  opacity: 0.15;
  filter: alpha(opacity=15);
}
.formbox .wpcf7-form {
  /* エラーメッセージ */
}
.formbox .wpcf7-form .wpcf7-not-valid-tip {
  color: #0e9b94;
}
.formbox .wpcf7-form .wpcf7-response-output {
  border: none !important;
  padding: 0;
  padding-left: 1em;
  text-indent: -1em;
  color: #0e9b94;
}
.formbox .wpcf7-form .wpcf7-response-output::before {
  content: "※";
}

/* ================= フォーム確認画面 ============================================================ */
.wpcf7cp-form-hide {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

div#wpcf7cpcnf {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 1em;
  background-color: #ebf5f5 !important;
  border-radius: 1em;
  /* 入力内容 */
}
div#wpcf7cpcnf table {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
div#wpcf7cpcnf table tr th,
div#wpcf7cpcnf table tr td {
  border-bottom: #000 dashed 1px;
}
@media screen and (max-width: 480px) {
  div#wpcf7cpcnf table tr th,
  div#wpcf7cpcnf table tr td {
    display: block;
  }
}
.contactpage-ctt .sec div#wpcf7cpcnf table tr th p,
.contactpage-ctt .sec div#wpcf7cpcnf table tr td p {
  padding-top: 1em;
  padding-bottom: 1em;
}
div#wpcf7cpcnf table tr th {
  width: 20em;
  font-weight: normal !important;
}
@media screen and (max-width: 480px) {
  div#wpcf7cpcnf table tr th {
    width: 100%;
    border-bottom: none;
  }
}
@media screen and (max-width: 480px) {
  .contactpage-ctt .sec div#wpcf7cpcnf table tr th p {
    padding-bottom: 0;
  }
}
div#wpcf7cpcnf table tr th p::after {
  content: "：";
}
div#wpcf7cpcnf {
  /* ボタン */
}
div#wpcf7cpcnf .wpcf7cp-btns {
  text-align: center;
}
div#wpcf7cpcnf .wpcf7cp-btns button {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
div#wpcf7cpcnf .wpcf7cp-btns button:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
div#wpcf7cpcnf .wpcf7cp-btns button {
  border-radius: 4em;
  width: 10em !important;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  div#wpcf7cpcnf .wpcf7cp-btns button {
    width: auto !important;
    padding-left: 2em;
    padding-right: 2em;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
  }
}
div#wpcf7cpcnf .wpcf7cp-btns button {
  /* 修正ボタン */
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background: #197069;
  border: #197069 solid 2px;
  color: #ebf5f5;
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn:hover {
  background: #000;
  border: #000 solid 2px;
}
div#wpcf7cpcnf .wpcf7cp-btns button {
  /* 送信ボタン */
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7-submit {
  width: auto !important;
  letter-spacing: 0;
  text-indent: 0;
  padding-right: 3em;
}

.page-template-page-form-step #side_column {
  display: none;
}

/* =============== ステップフォーム（親） ========================================================= */
.step-form-parent .contactpage-ctt .sec .innerbox .iframe_wrap {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 50em;
  border-radius: 1em;
  overflow: hidden;
}
@media screen and (max-width: 977px) {
  .step-form-parent .contactpage-ctt .sec .innerbox .iframe_wrap {
    height: 139em;
  }
}
@media screen and (max-width: 768px) {
  .step-form-parent .contactpage-ctt .sec .innerbox .iframe_wrap {
    height: 61em;
  }
}
@media screen and (max-width: 565px) {
  .step-form-parent .contactpage-ctt .sec .innerbox .iframe_wrap {
    height: 90em;
  }
}
@media screen and (max-width: 480px) {
  .step-form-parent .contactpage-ctt .sec .innerbox .iframe_wrap {
    height: 61em;
  }
}

/* =============== ステップフォーム（子） ========================================================= */
body.page-template-page-form-step-child {
  background: #ffffff;
}
body.page-template-page-form-step-child #side_column,
body.page-template-page-form-step-child .hm_menu_check,
body.page-template-page-form-step-child .hm_btn,
body.page-template-page-form-step-child .hm_menu_wrap,
body.page-template-page-form-step-child #footer {
  display: none;
}

.step-form-child .contactpage-ctt .sec {
  padding: 10em 0;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .sec {
    padding: 5em 0;
  }
}
.step-form-child .contactpage-ctt .formbox {
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form p {
  padding-bottom: 4em;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form p:has(.wpcf7-form-control-wrap) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form p:has(.wpcf7-submit) {
  padding-bottom: 0;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form p:has(.privacybox) {
  justify-content: flex-start;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form label.formctt {
  display: block;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt {
  padding-left: 0;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt .formname {
  position: relative;
  width: auto;
  padding-bottom: 2.5em;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt .formname .question {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 1em;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt .formname .question {
    align-items: flex-start;
  }
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt .formname .question .circle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  background-color: #d3ebea;
  border-radius: 50%;
  color: #0e9b94;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt .formname .question .circle .number {
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt .formname .question .txt {
  font-size: 1.5em;
  line-height: 1.25em;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt .formname .question .txt {
    width: 85%;
  }
}
@media screen and (max-width: 480px) {
  .step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt .formname .question .txt {
    width: 80%;
  }
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form fieldset.formctt .formname .question .txt .guide {
  display: block;
  font-size: 0.67em;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]),
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]),
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]),
  .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]),
  .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) {
    width: 100%;
  }
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]) input[type=text],
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]) input[type=tel],
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]) input[type=email],
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]) input[type=text],
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]) input[type=tel],
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]) input[type=email],
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) input[type=text],
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) input[type=tel],
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) input[type=email] {
  border-radius: 5em;
  background: #ffffff;
  border: #0e9b94 solid 0.2em;
  color: #0e9b94;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]) input[type=text]::-moz-placeholder, .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]) input[type=tel]::-moz-placeholder, .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]) input[type=email]::-moz-placeholder, .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]) input[type=text]::-moz-placeholder, .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]) input[type=tel]::-moz-placeholder, .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]) input[type=email]::-moz-placeholder, .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) input[type=text]::-moz-placeholder, .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) input[type=tel]::-moz-placeholder, .step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) input[type=email]::-moz-placeholder {
  opacity: 0.5;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]) input[type=text]::placeholder,
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]) input[type=tel]::placeholder,
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=text]) input[type=email]::placeholder,
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]) input[type=text]::placeholder,
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]) input[type=tel]::placeholder,
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=tel]) input[type=email]::placeholder,
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) input[type=text]::placeholder,
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) input[type=tel]::placeholder,
.step-form-child .contactpage-ctt .formbox .wpcf7-form .wpcf7-form-control-wrap:has(input[type=email]) input[type=email]::placeholder {
  opacity: 0.5;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  border-top: 0.2em solid #d3ebea;
  padding: 5em 0;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5em;
  }
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox br {
  display: none;
}
#step01 .step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox {
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  #step01 .step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox {
    justify-content: center;
  }
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox .prevbtn {
  width: auto;
  position: relative;
  box-sizing: border-box;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox .prevbtn {
    order: 2;
  }
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox .prevbtn .wpcf7-previous {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox .prevbtn .wpcf7-previous:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox .prevbtn .wpcf7-previous {
  background-color: #666;
  background-image: url("/images/ya_w_r.svg");
  background-position: left 1em top 50%;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox .prevbtn .wpcf7-previous:hover {
  background-position: left 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox .prevbtn .wpcf7-previous:disabled {
  opacity: 0.15;
  filter: alpha(opacity=15);
  color: #000;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form .btnbox .prevbtn .wpcf7-previous:disabled:hover {
  background: transparent;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-form-control-wrap {
  display: block;
  padding-top: 1em;
  box-sizing: border-box;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  width: 100%;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-radio .wpcf7-list-item {
  width: 48%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .formbox .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
}
.step-form-child .contactpage-ctt .formbox .wpcf7-radio .wpcf7-list-item-label {
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: "fot-udkakugo-large-pr6n", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
  backface-visibility: hidden;
  font-size: 1em;
  font-weight: 700;
  line-height: 4em;
  letter-spacing: 0;
  display: inline-block;
  min-width: 18em;
  padding: 0 3em;
  text-align: center;
  border: none;
  border-radius: 5em;
  background-color: #0e9b94;
  background-image: url("/images/ya_w.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: auto 1em;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-radio .wpcf7-list-item-label:hover {
  background-position: right 0.75em top 50%;
  background-size: auto 1em;
  color: #ffffff;
  translate: 0 0.25em;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-radio .wpcf7-list-item-label {
  line-height: 1em;
  padding: 1.5em 3em;
  background: #ffffff;
  border: #0e9b94 solid 0.2em;
  color: #0e9b94;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .step-form-child .contactpage-ctt .formbox .wpcf7-radio .wpcf7-list-item-label {
    font-size: 0.8em;
    min-width: 6em;
    padding: 1.5em 2em;
  }
}
.step-form-child .contactpage-ctt .formbox .wpcf7-radio .wpcf7-list-item-label:hover {
  color: #0e9b94;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-radio input[type=radio] {
  display: none;
}
.step-form-child .contactpage-ctt .formbox .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label {
  border-width: 0.4em;
  translate: 0;
  background: #d3ebea;
}
.step-form-child .contactpage-ctt .formbox .form-step-status {
  display: flex;
  justify-content: center;
  text-align: center;
}
.step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles {
  display: flex;
  gap: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles {
    gap: 0.5em;
  }
}
@media screen and (max-width: 480px) {
  .step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles {
    gap: 0.25em;
  }
}
.step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles li {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background: #d3ebea;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles li {
    width: 2em;
    height: 2em;
  }
}
@media screen and (max-width: 480px) {
  .step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles li {
    width: 1.8em;
    height: 1.8em;
  }
}
.step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles li span {
  font-size: 1.2em;
  font-weight: 700;
  opacity: 0.5;
  color: #0e9b94;
}
@media screen and (max-width: 768px) {
  .step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles li span {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  .step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles li span {
    font-size: 0.5em;
  }
}
.step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles li {
  /* 現在ステップまで */
}
.step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles li.is-active {
  background: #0e9b94;
}
.step-form-child .contactpage-ctt .formbox .form-step-status .wrap ul.step-circles li.is-active span {
  opacity: 1;
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */