@charset "UTF-8";
/*==========================================
変数 inc.scss
===========================================*/
/*==========================================
変数 fonts.scss
===========================================*/
/*===================================
userSS 追加
=====================================*/
/*==========================================
 共通設定
===========================================*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

*:focus {
  outline: none; }

::selection {
  background: #bfbfbf;
  color: #fff; }

/* for Firefox */
::-moz-selection {
  background: #bfbfbf;
  color: #ffffff; }

.scenery {
  opacity: 0;
  visibility: hidden; }
  .scenery.show {
    opacity: 1;
    visibility: visible; }

/*=== html ===*/
html {
  font-size: 62.5%; }

body {
  color: #000000;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  overflow-x: clip;
  position: relative;
  transition: 0.3s ease-in-out;
  counter-reset: number 0;
  /* number のカウンタを 0 にセット */ }
  @media screen and (max-width: 960px) {
    body {
      font-weight: 500; } }

/*IE*/
/*@media all and (-ms-high-contrast:none) {
body {
  font-family: "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
}*/
/*=== フォント ===*/
/* 明朝体 */
.font_min {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; }

/*ゴシック */
.font_go {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; }

/*アクセント */
/*=== フォント ===*/
.font_main {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500; }
  @media screen and (max-width: 960px) {
    .font_main {
      font-weight: 300; } }

.font_accent {
  font-family: "Jost", sans-serif;
  font-weight: 500; }
  @media screen and (max-width: 960px) {
    .font_accent {
      font-weight: 500; } }

.font_accent2 {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 500; }
  @media screen and (max-width: 960px) {
    .font_accent2 {
      font-weight: 300; } }

/*=== リンク ===*/
a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease-in-out; }

a.img-link,
.img-link-wrap a {
  display: block;
  font-size: 0; }

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none !important;
    cursor: default !important; } }
/*=== 画像 ===*/
img {
  max-width: 100%;
  height: auto; }

img.emoji {
  height: 1em;
  width: 1em;
  margin: 0 0.05em 0 0.1em;
  vertical-align: -0.1em; }

/*=== clear fix ===*/
.clearfix::after {
  content: " ";
  display: block;
  clear: both; }

/*==========================================
 汎用css
===========================================*/
/*=== hover Action ===*/
/*memo 【_d】aタグに直*/
/*=== opacity ===*/
@media screen and (min-width: 961px) {
  .hover-oc_d:hover,
  .hover-oc a:hover {
    opacity: 0.7; } }
/*=== under line ===*/
.hover-ul_d,
.hover-ul a,
.hover-ulL_d,
.hover-ulL a,
.hover-ulF_d,
.hover-ulF a {
  position: relative;
  display: inline-block; }

/*=== under line【CENTER】 ===*/
.hover-ul_d::after,
.hover-ul a::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

/*=== under line【LEFT】 ===*/
.hover-ulL_d::after,
.hover-ulL a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.3s; }

/*=== under line【FADE】 ===*/
.hover-ulF_d::after,
.hover-ulF a::after {
  position: absolute;
  bottom: 0.3em;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 0;
  transition: 0.3s; }

/*=== HOVER動作 ===*/
@media (hover: hover) {
  .hover-ul_d:hover:hover::after,
  .hover-ul a:hover:hover::after,
  .hover-ulL_d:hover:hover::after,
  .hover-ulL a:hover:hover::after {
    width: 100%; } }

@media (hover: hover) {
  .hover-ulF_d:hover:hover::after,
  .hover-ulF a:hover:hover::after {
    bottom: 0;
    opacity: 1; } }

/* ホバー　震える */
@media (hover: hover) {
  .hover-rum:hover:hover {
    animation: rumble 0.12s linear infinite; } }

@keyframes rumble {
  0% {
    transform: rotate(0deg) translate(0, 0); }
  12.5% {
    transform: rotate(0.4deg) translate(1px, -1px); }
  25% {
    transform: rotate(0.8deg) translate(0px, 1px); }
  37.5% {
    transform: rotate(0.4deg) translate(-1px, 0); }
  50% {
    transform: rotate(0deg) translate(0, 0); }
  62.5% {
    transform: rotate(-0.4deg) translate(1px, 0); }
  75% {
    transform: rotate(-0.8deg) translate(0, 1px); }
  87.5% {
    transform: rotate(-0.4deg) translate(-1px, -1px); }
  100% {
    transform: rotate(0deg) translate(0, 0); } }
.hover_TS a {
  transition: 0.25s all cubic-bezier(0.34, 1.56, 0.64, 1); }
  @media (hover: hover) {
    .hover_TS a:hover:hover {
      transform: scale(1.05); } }

.hover_db a {
  background: linear-gradient(currentColor 0 0) 0 100%/var(--d, 0) 2px no-repeat, linear-gradient(currentColor 0 0) 100% calc(100% - 4px)/var(--d, 0) 2px no-repeat;
  transition: 0s 0.5s, background-size 0.5s; }
  @media (hover: hover) {
    .hover_db a:hover:hover {
      --d: 100%;
      background-position: 0% calc(100% - 2px), 100% calc(100% - 2px);
      transition: 0.3s, background-position 0.3s 0.3s; } }

/*==== MARKER ===*/
.gray-line {
  background: linear-gradient(transparent 60%, #f5f5f5 60%); }

.green-line {
  background: linear-gradient(transparent 60%, #e8f1ec 60%); }

.markerG {
  background: linear-gradient(transparent 0%, #DCE7F6 0%);
  padding: 0.1em 0.1em; }

/*=== 幅 ===*/
.wrapW {
  max-width: 1740px;
  width: 92%;
  margin: 0 auto; }
  @media screen and (min-width: 577px) {
    .wrapW {
      width: 95%; } }
  @media screen and (min-width: 1501px) {
    .wrapW {
      width: 85%; } }

.wrapW-P {
  width: 90%;
  margin: 0 auto; }
  @media screen and (min-width: 577px) {
    .wrapW-P {
      width: 96%; } }
  @media screen and (min-width: 1501px) {
    .wrapW-P {
      width: calc(100% - 100px); } }

.wrap {
  width: 100%;
  margin: 0 auto; }

.wrap-inner {
  padding: 0 2.5%; }
  @media screen and (min-width: 1201px) {
    .wrap-inner {
      padding: 0 25px; } }
  @media screen and (min-width: 1921px) {
    .wrap-inner {
      padding: 0 30px; } }
  @media screen and (max-width: 576px) {
    .wrap-inner {
      padding: 0 4%; } }

.side-wrap {
  max-width: 1920px;
  padding: 0 10%;
  width: 100%;
  margin: 0 auto; }
  @media screen and (max-width: 960px) {
    .side-wrap {
      max-width: 90%;
      padding: 0; } }

/*=== PC none / SP none ===*/
@media screen and (min-width: 577px) {
  .pc-none_s {
    display: none; } }
@media screen and (min-width: 961px) {
  .pc-none {
    display: none; } }
@media screen and (min-width: 1201px) {
  .pc-none_lg {
    display: none; } }
@media (min-width: 480px) {
  .pc-none_480 {
    display: none; } }
@media screen and (max-width: 1200px) {
  .sp-none_lg {
    display: none; } }
@media screen and (max-width: 960px) {
  .sp-none {
    display: none; } }
@media screen and (max-width: 576px) {
  .sp-none_sm {
    display: none; } }
@media screen and (max-width: 375px) {
  .sp-none_xs {
    display: none; } }
/*=== テキスト ===*/
.taC {
  text-align: center; }

.fwB {
  font-weight: bold; }

/*=== 余白 ===*/
/*txtUR*/
.txtUR {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  font-size: clamp(1rem, 0.7291666667vw, 1.4rem);
  font-weight: 700;
  line-height: 1; }

.txtUL {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  letter-spacing: 0.2em;
  font-size: clamp(1rem, 0.7291666667vw, 1.4rem);
  font-weight: 700;
  line-height: 1; }

/*==========================================
 アンカーリンク
===========================================*/
.anchor_link {
  position: relative;
  top: -150px;
  display: block; }

@media screen and (max-width: 960px) {
  .anchor_link {
    top: -100px; } }
.grecaptcha-badge {
  display: none; }

/*==========================================
 inner common用
===========================================*/
.innerPT {
  padding-top: 100px; }
  @media screen and (max-width: 960px) {
    .innerPT {
      padding-top: 60px; } }

.innerPB {
  padding-bottom: 100px; }
  @media screen and (max-width: 960px) {
    .innerPB {
      padding-bottom: 60px; } }

.innerMT {
  margin-top: 100px; }
  @media screen and (max-width: 960px) {
    .innerMT {
      margin-top: 60px; } }

.innerMB {
  margin-bottom: 100px; }
  @media screen and (max-width: 960px) {
    .innerMB {
      margin-bottom: 60px; } }

/*==========================================
 ヘッダー
===========================================*/
.row {
  display: flex; }

#header {
  line-height: 1.5rem;
  letter-spacing: normal;
  background: transparent;
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  background: #04DFA7; }
  #header.scroll {
    box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1); }
  #header .header_logo_block {
    padding: 10px 0px 8px 4%;
    align-items: center;
    display: flex;
    transition: 0.3s all; }
    @media screen and (max-width: 960px) {
      #header .header_logo_block {
        width: 100%;
        min-width: inherit;
        max-width: inherit;
        margin-left: 0%;
        padding: 4% 0;
        height: 56px;
        height: auto; } }
  #header .header_logo {
    max-width: clamp(18rem, 29.1666666667vw, 56rem);
    width: 60%;
    transition: 0.3s all; }
    @media screen and (max-width: 960px) {
      #header .header_logo {
        width: 100%;
        margin-left: 2%; } }
    #header .header_logo a {
      display: block; }
  #header .header_inner {
    max-width: 2400px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between; }
  #header .g_nav_block {
    width: 40%; }
    @media screen and (max-width: 960px) {
      #header .g_nav_block {
        width: 100%; } }
  @media screen and (max-width: 960px) {
    #header .g_nav {
      width: 100%; } }
  #header .header_contact_block {
    width: 100%;
    padding: 0px 0px 0 10px;
    display: flex;
    justify-content: flex-end; }
  #header .header_contact_list {
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    font-weight: bold;
    line-height: 1.5; }
    @media screen and (max-width: 960px) {
      #header .header_contact_list {
        display: none; } }
    #header .header_contact_list li {
      margin-right: 20px; }
      #header .header_contact_list li:last-child {
        margin-right: 0; }
    #header .header_contact_list a:hover {
      color: #04DFA7; }
  #header .header_facebook i {
    font-size: 1.8rem; }
  #header .header_tel {
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    font-weight: bold;
    letter-spacing: 0.05em; }
  #header .header-menu {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    /* width: 42px; */
    display: flex;
    justify-content: center;
    align-items: center; }

/*==========================================
 Gナビ　ボタン
===========================================*/
.menu-block {
  transition: 0.3s all;
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 10%;
  min-width: 72px;
  max-width: 72px;
  background: #04DFA7;
  aspect-ratio: 1 / 1; }
  @media screen and (max-width: 960px) {
    .menu-block {
      min-width: 54px;
      max-width: 54px; } }
  .menu-block.fix {
    width: 30%; }
    @media screen and (max-width: 960px) {
      .menu-block.fix {
        width: 100%; } }
    .menu-block.fix a {
      display: block;
      padding: 5px 0; }
      @media screen and (max-width: 960px) {
        .menu-block.fix a {
          display: block;
          padding: 0 0; } }

.trigger_block.active p {
  color: #fff; }

.trigger_block {
  display: block;
  text-align: center;
  padding: 5px 0 10px;
  width: 100%; }
  @media screen and (max-width: 960px) {
    .trigger_block {
      padding: 5px 0; } }
  .trigger_block p {
    font-size: 1.2rem; }

.menu-trigger {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: relative;
  width: 65%;
  max-width: 25px;
  height: 20px;
  margin-top: 0px; }
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 10px; }
    .menu-trigger span:nth-of-type(1) {
      top: 0; }
    .menu-trigger span:nth-of-type(2) {
      top: 9px; }
    .menu-trigger span:nth-of-type(3) {
      bottom: 0; }
  @media screen and (max-width: 960px) {
    .menu-trigger {
      margin-top: 0px; } }

.trigger_block.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg); }
  @media screen and (max-width: 960px) {
    .trigger_block.active .menu-trigger span:nth-of-type(1) {
      -webkit-transform: translateY(9px) rotate(-45deg);
      transform: translateY(9px) rotate(-45deg);
      background-color: #fff; } }
  @media screen and (max-width: 960px) {
    .trigger_block.active .menu-trigger span:nth-of-type(1) {
      -webkit-transform: translateY(9px) rotate(-45deg);
      transform: translateY(9px) rotate(-45deg);
      background-color: #fff; } }
.trigger_block.active .menu-trigger span:nth-of-type(2) {
  left: 200%;
  opacity: 0;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards; }
.trigger_block.active .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg); }
  @media screen and (max-width: 960px) {
    .trigger_block.active .menu-trigger span:nth-of-type(3) {
      -webkit-transform: translateY(-9px) rotate(45deg);
      transform: translateY(-9px) rotate(45deg);
      background-color: #fff; } }
  @media screen and (max-width: 960px) {
    .trigger_block.active .menu-trigger span:nth-of-type(3) {
      -webkit-transform: translateY(-9px) rotate(45deg);
      transform: translateY(-9px) rotate(45deg);
      background-color: #fff; } }

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0; } }
@keyframes active-menu-bar02 {
  100% {
    height: 0; } }
/*==========================================
 Gナビ　メニュー
===========================================*/
.megamenu {
  position: fixed;
  top: 0;
  right: -100vh;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: clip 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.4s ease-in-out;
  z-index: -1;
  visibility: hidden;
  opacity: 0; }
  .megamenu.open {
    opacity: 1;
    visibility: visible;
    z-index: 100; }
  .megamenu .megamenuIn {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: hidden; }
  .megamenu .megamenu_sitenav {
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #000000;
    padding: 90px 2.5%;
    -ms-overflow-style: none;
    position: relative;
    overflow-x: hidden;
    z-index: 100; }
    .megamenu .megamenu_sitenav::-webkit-scrollbar {
      display: none; }
    .megamenu .megamenu_sitenav::scrollbar[orient="vertical"] {
      visibility: collapse !important; }
  .megamenu .megamenu_bg {
    margin: 0 auto;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    transition: 0.3s ease-out; }
  .megamenu a {
    color: #000000; }
  .megamenu .site_main_nav_harf_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .megamenu .site_main_nav_harf_block .site_main_nav_item {
      width: 48%; }
      @media screen and (max-width: 375px) {
        .megamenu .site_main_nav_harf_block .site_main_nav_item {
          width: 100%; } }
      .megamenu .site_main_nav_harf_block .site_main_nav_item:nth-of-type(2n + 1):last-of-type {
        width: 100%; }
  .megamenu .site_main_nav.border_none .site_main_nav_item > a {
    border-bottom: 0px solid #000000; }
  .megamenu .site_main_nav a {
    font-size: 1.8rem;
    cursor: pointer; }
  .megamenu .site_main_nav .site_main_nav_item > a {
    display: block;
    padding: 25px 0 25px;
    border-bottom: 1px solid #000000; }
    @media screen and (max-width: 960px) {
      .megamenu .site_main_nav .site_main_nav_item > a {
        padding: 15px 0 15px; } }
  .megamenu .site_main_nav .site_main_nav_item .toggle {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .megamenu .site_main_nav .site_main_nav_item .accordion_ttl {
    width: 100%; }
  .megamenu .site_main_nav .site_main_nav_item .accordion_icon {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    transition: all 0.4s;
    box-sizing: border-box; }
    .megamenu .site_main_nav .site_main_nav_item .accordion_icon span {
      transition: all 0.4s;
      box-sizing: border-box;
      position: absolute;
      left: 6px;
      width: 95%;
      height: 2px;
      background-color: #000000;
      border-radius: 4px; }
      .megamenu .site_main_nav .site_main_nav_item .accordion_icon span:nth-of-type(1) {
        top: 10px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg); }
      .megamenu .site_main_nav .site_main_nav_item .accordion_icon span:nth-of-type(2) {
        top: 10px;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg); }
    .megamenu .site_main_nav .site_main_nav_item .accordion_icon.active span:nth-of-type(1) {
      display: none; }
    .megamenu .site_main_nav .site_main_nav_item .accordion_icon.active span:nth-of-type(2) {
      top: 10px;
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
  .megamenu .site_main_nav .site_main_nav_item .childe_item {
    display: none;
    margin: -15px auto 0; }
    @media screen and (max-width: 960px) {
      .megamenu .site_main_nav .site_main_nav_item .childe_item {
        margin: -10px auto 0; } }
    .megamenu .site_main_nav .site_main_nav_item .childe_item li a {
      color: #000000;
      font-size: 1.6rem;
      padding: 10px 0;
      display: block;
      position: relative;
      padding-left: 1.5em; }
      .megamenu .site_main_nav .site_main_nav_item .childe_item li a::before {
        content: "";
        background: #000000;
        height: 1px;
        width: 1em;
        display: inline-block;
        vertical-align: middle;
        position: absolute;
        left: 0;
        top: 50%; }
  .megamenu .megamenu_sitenav .no_link {
    pointer-events: none;
    opacity: 0.5; }
  .megamenu .megamenu_sitenav .contact_btn {
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .megamenu .megamenu_sitenav .contact_btn li {
      text-align: center; }
      @media screen and (max-width: 576px) {
        .megamenu .megamenu_sitenav .contact_btn li {
          width: calc(100% / 1); }
          .megamenu .megamenu_sitenav .contact_btn li:nth-of-type(n + 2) {
            margin-top: 30px; } }
      @media screen and (min-width: 577px) {
        .megamenu .megamenu_sitenav .contact_btn li {
          width: calc(94% / 3); }
          .megamenu .megamenu_sitenav .contact_btn li:nth-of-type(n + 3) {
            margin-top: 0%; }
          .megamenu .megamenu_sitenav .contact_btn li:not(:nth-of-type(2n)) {
            margin-right: 0%; }
          .megamenu .megamenu_sitenav .contact_btn li:not(:nth-of-type(3n)) {
            margin-right: 2%; } }
      .megamenu .megamenu_sitenav .contact_btn li .contact_btn_link {
        width: 100%;
        color: #000000;
        background: #04DFA7;
        font-weight: bold;
        padding: 15px 0;
        display: block;
        border: 1px solid #04DFA7;
        font-size: clamp(1rem, 1vw, 2rem); }
        @media screen and (max-width: 960px) {
          .megamenu .megamenu_sitenav .contact_btn li .contact_btn_link {
            max-width: 200px;
            margin-inline: auto;
            font-size: clamp(1.6rem, 1vw, 2rem); } }
      .megamenu .megamenu_sitenav .contact_btn li .contact_btn_sns_link {
        width: 100%;
        color: #000000;
        background: #fff;
        font-weight: bold;
        padding: 15px 0;
        display: block;
        border: 1px solid #fff;
        font-size: 2.6rem; }
  .megamenu .megamenu_sitenav .other_nav {
    margin: 30px auto 0;
    line-height: 1.5;
    flex-wrap: wrap; }
    .megamenu .megamenu_sitenav .other_nav li:not(:last-child) {
      margin: 0 1.5em 10px 0; }
    .megamenu .megamenu_sitenav .other_nav li i {
      margin: 0 0.3em 0 0.6em; }
  .megamenu .megamenu_sitenav .sns_nav {
    justify-content: center;
    align-items: center;
    margin: 0px auto 0; }
    .megamenu .megamenu_sitenav .sns_nav li:not(:last-child) {
      margin: 0 1em 0 0; }
    .megamenu .megamenu_sitenav .sns_nav .sns_nav_fb {
      font-size: 2.6rem; }
      .megamenu .megamenu_sitenav .sns_nav .sns_nav_fb a:hover {
        color: #04DFA7; }

/**/
@media all and (-ms-high-contrast: none) {
  .megamenu .site_main_nav .site_main_nav_item > a {
    padding: 17px 0 13px; } }
/*== 階層【アコーディオンメニュー】 ==*/
@media all and (-ms-high-contrast: none) {
  .megamenu .site_main_nav .site_main_nav_item .accordion_icon {
    margin-top: -2px; } }
/*＋、－切り替え*/
@media all and (-ms-high-contrast: none) {
  .megamenu .site_main_nav .site_main_nav_item .childe_item li a {
    padding-top: 13px;
    padding-bottom: 8px; } }
@media all and (-ms-high-contrast: none) {
  .megamenu .megamenu_sitenav .contact_btn li a {
    padding: 17px 0 13px; } }
@media screen and (min-width: 961px) {
  .megamenu .megamenu_sitenav {
    width: 40%; } }
@media screen and (min-width: 768px) {
  .megamenu .site_main_nav .site_main_nav_item > a {
    position: relative;
    transition: 0.3s; }
    .megamenu .site_main_nav .site_main_nav_item > a::after {
      position: absolute;
      bottom: -1px;
      left: 0;
      content: "";
      width: 0;
      height: 2px;
      background-color: #04DFA7;
      transition: 0.3s; }
    .megamenu .site_main_nav .site_main_nav_item > a:hover {
      color: rgba(4, 223, 167, 0.9); }
  .megamenu .site_main_nav .site_main_nav_item .childe_item li a:hover {
    background: rgba(4, 223, 167, 0.5); }
  .megamenu .megamenu_sitenav .contact_btn li .contact_btn_link:hover {
    color: #000;
    background: #fff; }

  .megamenu .other_nav .site_main_nav_item > a {
    position: relative;
    transition: 0.3s; }
    .megamenu .other_nav .site_main_nav_item > a::after {
      position: absolute;
      bottom: -1px;
      left: 0;
      content: "";
      width: 0;
      height: 2px;
      background-color: #04DFA7;
      transition: 0.3s; }
    .megamenu .other_nav .site_main_nav_item > a:hover {
      color: rgba(4, 223, 167, 0.9); }
  .megamenu .other_nav .site_main_nav_item .childe_item li a:hover {
    background: rgba(4, 223, 167, 0.5); }
  .megamenu .other_nav .contact_btn li .contact_btn_link:hover {
    color: #000;
    background: #fff; } }
@media screen and (max-width: 960px) {
  .megamenu .megamenu_bg {
    display: none; }
  .megamenu .megamenu_sitenav {
    padding: 90px 4% 50px; }
  .megamenu .megamenu_sitenav .contact_btn li .contact_btn_link:hover {
    color: #000;
    background: #fff; } }
.megamenu_closeBtn {
  display: block;
  width: 25px;
  height: 25px;
  padding-top: 25px;
  color: #000000;
  position: absolute;
  top: 22px;
  right: 20px;
  cursor: pointer; }
  @media screen and (max-width: 960px) {
    .megamenu_closeBtn {
      top: 17px;
      right: 13px; } }
  .megamenu_closeBtn::before, .megamenu_closeBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 30px;
    background: #000000; }
  .megamenu_closeBtn::before {
    transform: translate(-50%, -50%) rotate(45deg); }
  .megamenu_closeBtn::after {
    transform: translate(-50%, -50%) rotate(-45deg); }

/*==========================================
 FOOTER
===========================================*/
/*.gFooter {
  //margin: max(100px,5.208333333333334vw) 0 0;
  background: $main_color;

  .gFooter_inner {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 0 40px;
    padding: 40px 4%;
    @include max-width(md) {
      flex-direction: column;
    }
  }
  .gFooter_top {
    width: auto;
    margin: 0 auto 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 0 40px;
    flex-direction: column;
    @include max-width(md) {
      width: 100%;
    }
  }

  .gFooter_bottom {
    width: 70%;
    max-width: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-end;
    text-align: center;
    gap: 0 40px;
    flex-direction: column;
    @include max-width(md) {
      align-items: center;
      width: 100%;
    }
  }
  .gFooter_bottom_inner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    @include max-width(md) {
      flex-direction: column;
      justify-content: center;
    }
  }
  .gFooter_logo {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
    width: 100%;
    @include max-width(md) {
      margin-bottom: 30px;
    }

    img {
      aspect-ratio: 234/184;
      -o-object-fit: scale-down;
      object-fit: scale-down;
      width: 100%;
    }
  }

  .gFooter_sabm {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
    width: 110px;

    img {
      aspect-ratio: 110/48;
      -o-object-fit: scale-down;
      object-fit: scale-down;
      width: 100%;
    }
  }

  .contact_btn {
    margin: 0px auto 0;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    @include max-width(md) {
      margin-bottom: 30px;
    }
    @include max-width(sm) {
      flex-direction: column;
      align-items: center;
      margin-bottom: 30px;
    }
    li {
      width: calc(96% / 3);
      text-align: center;
      @include max-width(sm) {
        width: calc(100% / 1);
        margin-bottom: 4%;
      }
      @include max-width(xs) {
        width: 100%;
        margin-bottom: 4%;
      }
      a {
        width: 100%;
        color: $font_color;
        background: $accent_color;
        font-weight: bold;
        padding: 15px 0;
        display: block;
        border: 1px solid $font_color;
        font-size: clamp(1rem, 1vw, 2rem);
        @include max-width(mdL) {
          max-width: 200px;
          margin-inline: auto;
          font-size: clamp(1.6rem, 1vw, 2rem);
        }
        @include hover {
          &:hover {
            border: 1px solid $accent_color;
            color: $font_color;
            background: #fff;
          }
        }
      }
    }
  }
  .gFooter_snsList_aqhaus {
    width: auto;
    li {
      width: 100%;
    }
  }
  .gFooter_links {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 max(25px, 2.302083vw);
    font-size: max(14px, 0.9375vw);
    @include max-width(xs) {
      flex-direction: column;
    }
  }

  .gFooter_link {
    &:not(:first-of-type) {
      @include max-width(xs) {
        margin-top: 0.5em;
      }
    }
  }
  .gFooter_link > a {
    text-decoration: underline;
    color: inherit;
    transition: 0.3s ease;
    @include hover {
      &:hover {
        opacity: 0.6;
      }
    }
  }

  .gFooter_logo_link {
    transition: 0.3s ease;
    @include hover {
      &:hover {
        opacity: 0.6;
      }
    }
  }

  .gFooter_snsList_aqhaus {
    margin: 0 2% 0 8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 0 10px;
    @include max-width(md) {
      margin: auto;
    }
  }

  .gFooter_snsItem_aqhaus > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: clamp(2rem, 2vw, 3rem);
    background: transparent;
    color: $font_color;
    text-decoration: none;
    @include hover {
      &:hover {
        opacity: 0.6;
      }
    }
  }

  .gFooter_snsList {
    margin: 0 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 0 10px;
  }

  .gFooter_snsItem > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    text-decoration: none;
  }
}*/
/*==========================================
 copyright
===========================================*/
.copyright {
  margin: 0px 0 0;
  background: #333; }

.copyright_inner {
  width: 100%;
  margin: 0 auto;
  padding: max(13px, 0.6770833333vw) 0; }

.copyright_inner > :first-child {
  margin-top: 0; }

.copyright_txt {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: max(max(14px, 0.8333333333vw));
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em; }

.toTop + .copyright {
  margin-top: 90px; }

/*==========================================
 共通パーツ
===========================================*/
.secTtl-en {
  margin-bottom: clamp(50px, 12.5vw, 100px);
  font-family: "Jost", sans-serif;
  font-size: clamp(2.4rem, 5.6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center; }

.secTtl {
  margin-bottom: clamp(50px, 10vw, 100px);
  font-size: clamp(2rem, 2.7vw, 4.6rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center; }

.js-accordion_item {
  display: none; }

/*==========================================
 スライダー
===========================================*/
.slick-slider.slick-dotted {
  margin-bottom: clamp(100px, 15vw, 150px); }
.slick-slider .slick-list {
  height: 100%; }
.slick-slider .slick-track {
  height: 100%; }
.slick-slider .slick-dots {
  bottom: -40px; }
  .slick-slider .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 10px; }
    .slick-slider .slick-dots li button {
      width: 100%;
      height: 100%;
      padding: 0; }
      .slick-slider .slick-dots li button::before {
        width: 100%;
        height: 100%;
        line-height: 1;
        font-size: 8px; }
    .slick-slider .slick-dots li.slick-active button::before {
      color: #04DFA7;
      opacity: 1; }

/*==========================================
 無料設計相談
===========================================*/
.cvBtn-block {
  margin-top: clamp(2rem, 6.25vw, 12rem); }
  @media screen and (max-width: 960px) {
    .cvBtn-block {
      margin-top: clamp(2rem, 12.5vw, 12rem); } }
  .cvBtn-block-wrap {
    display: flex; }
    .cvBtn-block-wrap.center {
      justify-content: center; }
  .cvBtn-block .cvBtn-txt {
    border: 1px solid #04DFA7;
    background: #04DFA7;
    padding: 0.6em 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    letter-spacing: 0.1em;
    font-size: clamp(1.4rem, 1.4583333333vw, 2.8rem);
    line-height: clamp(3rem, 2.6041666667vw, 5rem);
    letter-spacing: 0.1em;
    font-weight: 700; }
    @media screen and (max-width: 960px) {
      .cvBtn-block .cvBtn-txt {
        font-size: clamp(1.4rem, 1.875vw, 1.8rem);
        line-height: clamp(2.4rem, 3.5416666667vw, 3.4rem); } }
  @media (hover: hover) {
    .cvBtn-block .cvBtn-link-hover:hover:hover .cvBtn-txt {
      background: #fff;
      padding: 0.6em 7em; } }

/*==========================================
 TEST調整用
===========================================*/
html.wf-active {
  margin-top: 0px !important; }

#wpadminbar {
  top: auto !important;
  bottom: 0 !important;
  position: fixed !important;
  opacity: 0.5 !important; }

/*==========================================
 SECTION 共通
===========================================*/
.sec-cts {
  padding: clamp(10rem, 10.4166666667vw, 20rem) 0px clamp(10rem, 10.4166666667vw, 20rem);
  /*block*/
  /*item*/
  /*slider*/
  /*list*/ }
  @media screen and (max-width: 960px) {
    .sec-cts {
      padding: clamp(5rem, 10.4166666667vw, 10rem) 0 clamp(5rem, 10.4166666667vw, 10rem); } }
  .sec-cts > *:first-child {
    margin-top: 0; }
  .sec-cts > .block-item:first-child {
    margin-top: 0; }
  .sec-cts .flex-block {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 960px) {
      .sec-cts .flex-block {
        justify-content: flex-start;
        flex-direction: column; } }
    .sec-cts .flex-block.reverse {
      flex-direction: row-reverse; }
      @media screen and (max-width: 960px) {
        .sec-cts .flex-block.reverse {
          flex-direction: column; } }
  .sec-cts .left-block {
    width: 48%; }
    @media screen and (max-width: 960px) {
      .sec-cts .left-block {
        width: 100%; } }
  .sec-cts .right-block {
    width: 48%; }
    @media screen and (max-width: 960px) {
      .sec-cts .right-block {
        width: 100%; } }
  .sec-cts .block-section .block-item:not(:first-of-type) {
    margin: 0 0 4em 0; }
    @media screen and (max-width: 960px) {
      .sec-cts .block-section .block-item:not(:first-of-type) {
        margin: 0 0 2em 0; } }
  .sec-cts .block-section .block-item:first-of-type {
    margin: 0 0 4em 0; }
    @media screen and (max-width: 960px) {
      .sec-cts .block-section .block-item:first-of-type {
        margin: 0 0 2em 0; } }
  .sec-cts .block-ctsttl {
    margin-bottom: clamp(3rem, 8.3333333333vw, 10rem); }
    @media screen and (max-width: 960px) {
      .sec-cts .block-ctsttl {
        margin-bottom: clamp(3rem, 10.4166666667vw, 10rem); } }
  .sec-cts .sec-ttl {
    font-size: clamp(2.4rem, 2.9166666667vw, 5.6rem);
    line-height: 1;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: clamp(3rem, 1.5625vw, 3rem); }
    @media screen and (max-width: 960px) {
      .sec-cts .sec-ttl {
        font-size: clamp(2.4rem, 5.8333333333vw, 5.6rem);
        line-height: 1;
        margin-bottom: clamp(3rem, 1.5625vw, 3rem); } }
    .sec-cts .sec-ttl.large {
      font-size: clamp(2.4rem, 4.6875vw, 9rem); }
      @media screen and (max-width: 960px) {
        .sec-cts .sec-ttl.large {
          font-size: clamp(2.4rem, 9.375vw, 9rem); } }
  .sec-cts .sec-subttl {
    font-size: clamp(1.8rem, 1.5625vw, 3rem);
    line-height: 1;
    text-align: center;
    letter-spacing: 0.1em; }
    @media screen and (max-width: 960px) {
      .sec-cts .sec-subttl {
        font-size: clamp(1.8rem, 3.125vw, 3rem);
        line-height: 1; } }
  .sec-cts .cts-ttl {
    font-size: clamp(2rem, 1.5625vw, 3rem);
    line-height: clamp(3rem, 2.6041666667vw, 5rem);
    font-weight: 500;
    letter-spacing: 0.1em; }
    @media screen and (max-width: 960px) {
      .sec-cts .cts-ttl {
        font-size: clamp(2rem, 3.125vw, 3rem);
        line-height: clamp(3rem, 5.2083333333vw, 5rem); } }
    .sec-cts .cts-ttl.ttl_border {
      position: relative;
      padding-bottom: 1em;
      margin-bottom: 1.5em; }
      .sec-cts .cts-ttl.ttl_border::after {
        content: "";
        display: block;
        height: 1px;
        position: absolute;
        width: 30%;
        max-width: clamp(3rem, 4.8958333333vw, 9.4rem);
        background: #000;
        left: 0;
        bottom: 0; }
        @media screen and (max-width: 960px) {
          .sec-cts .cts-ttl.ttl_border::after {
            max-width: clamp(3rem, 9.7916666667vw, 9.4rem);
            left: 0%;
            -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); } }
  .sec-cts .item-ttl {
    font-size: clamp(1.8rem, 1.875vw, 3.6rem);
    line-height: clamp(3rem, 2.9166666667vw, 5.6rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    font-weight: 600; }
    @media screen and (max-width: 960px) {
      .sec-cts .item-ttl {
        font-size: clamp(1.8rem, 3.75vw, 3.6rem);
        line-height: clamp(3rem, 5.8333333333vw, 5.6rem); } }
  .sec-cts .item-txt {
    font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
    line-height: clamp(3rem, 2.6041666667vw, 5rem);
    letter-spacing: 0.1em;
    font-weight: 500; }
    @media screen and (max-width: 960px) {
      .sec-cts .item-txt {
        font-size: clamp(1.4rem, 1.875vw, 1.8rem);
        line-height: clamp(2.4rem, 3.5416666667vw, 3.4rem); } }
  .sec-cts .item-link {
    display: inline-block; }
    .sec-cts .item-link.border_delay {
      position: relative; }
      .sec-cts .item-link.border_delay::after {
        content: "";
        position: relative;
        display: block;
        bottom: 0;
        width: 0;
        height: 1px;
        left: 0;
        background: #000;
        transition: width 2.5s, opacity 0.3s ease-in-out;
        transition-delay: 0.2s;
        transform-origin: right top; }
    .sec-cts .item-link.show.border_delay::after {
      width: 100%;
      transform-origin: left top; }
    @media (hover: hover) {
      .sec-cts .item-link:hover:hover {
        opacity: 0.6; }
        .sec-cts .item-link:hover:hover.border_delay {
          position: relative; }
          .sec-cts .item-link:hover:hover.border_delay::after {
            width: 20%; } }
  .sec-cts .block-slider {
    padding: 0% 2% 0; }
    @media screen and (max-width: 960px) {
      .sec-cts .block-slider {
        background: #fff;
        padding: 4% 8%; } }
  @media screen and (min-width: 961px) {
    .sec-cts .slider-list .slick-slide {
      background: #fff;
      padding: 2% 2%; } }
  .sec-cts .slider-list .item-plan {
    text-align: center;
    font-size: clamp(1.8rem, 1.0416666667vw, 2rem);
    line-height: clamp(3rem, 2.0833333333vw, 4rem);
    font-weight: 500;
    letter-spacing: 0.1em; }
    @media screen and (max-width: 960px) {
      .sec-cts .slider-list .item-plan {
        font-size: clamp(1.8rem, 3.75vw, 3.6rem);
        line-height: clamp(3.6rem, 5.8333333333vw, 5.6rem); } }
  .sec-cts .slider-list .item-img {
    margin-top: 4em; }
    @media screen and (max-width: 960px) {
      .sec-cts .slider-list .item-img {
        margin-top: 2em; } }
  .sec-cts .slider-list .detail-list {
    margin-top: 2em; }
    @media screen and (max-width: 960px) {
      .sec-cts .slider-list .detail-list {
        margin-top: 1em; } }
  .sec-cts .slider-list .detail-list {
    margin-top: 2em; }
    @media screen and (max-width: 960px) {
      .sec-cts .slider-list .detail-list {
        margin-top: 2em; } }
    .sec-cts .slider-list .detail-list .list-item {
      margin-top: 1em; }
      @media screen and (max-width: 960px) {
        .sec-cts .slider-list .detail-list .list-item {
          margin-top: 1em; } }
  .sec-cts .block-list .list-item:not(:first-of-type) {
    margin-top: 4em; }
    @media screen and (max-width: 960px) {
      .sec-cts .block-list .list-item:not(:first-of-type) {
        margin-top: 2em; } }
  .sec-cts .block-list .list-ttl {
    display: inline-block;
    font-size: clamp(1.8rem, 1.25vw, 2.4rem);
    line-height: clamp(3rem, 1.875vw, 3.6rem);
    font-weight: 500;
    letter-spacing: 0.1em; }
    @media screen and (max-width: 960px) {
      .sec-cts .block-list .list-ttl {
        font-size: clamp(1.8rem, 2.5vw, 2.4rem);
        line-height: clamp(2.4rem, 3.75vw, 3.6rem); } }
  .sec-cts .block-list .list-txt {
    margin-top: 1em;
    font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
    line-height: clamp(3rem, 2.6041666667vw, 5rem);
    letter-spacing: 0.1em; }
    @media screen and (max-width: 960px) {
      .sec-cts .block-list .list-txt {
        font-size: clamp(1.4rem, 1.875vw, 1.8rem);
        line-height: clamp(2.4rem, 3.5416666667vw, 3.4rem); } }
  .sec-cts .block-list .list-img {
    margin-top: 1em; }

/*==========================================
 【BUTTON】
===========================================*/
.btn-more-block {
  margin-top: 1em; }
  @media screen and (max-width: 960px) {
    .btn-more-block {
      margin-top: 1em; } }

.btn-more-wrap {
  display: flex;
  align-items: center; }
  .btn-more-wrap.Left {
    justify-content: flex-start; }
  .btn-more-wrap.Right {
    justify-content: flex-end; }
  .btn-more-wrap.Center {
    justify-content: center; }
  @media screen and (max-width: 960px) {
    .btn-more-wrap.sp_Center {
      justify-content: center; } }
  .btn-more-wrap .btn-txt {
    position: relative;
    z-index: 1;
    font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
    font-weight: 600; }
    @media screen and (min-width: 376px) {
      .btn-more-wrap .btn-txt {
        margin-right: 1em; } }
    @media screen and (max-width: 960px) {
      .btn-more-wrap .btn-txt {
        white-space: nowrap; } }
    @media screen and (max-width: 375px) {
      .btn-more-wrap .btn-txt {
        margin-bottom: 1em; } }
  .btn-more-wrap .btn-more {
    display: inline-block;
    border: 1px solid #000;
    color: #fff;
    border-radius: 50px;
    letter-spacing: 0.2em;
    padding: 0.2em 2em 0.3em;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: 0.3s ease-in-out;
    background: #000; }
    .btn-more-wrap .btn-more.bgLeft:before {
      content: "";
      /*絶対配置で位置を指定*/
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      /*色や形状*/
      background: #fff;
      /*背景色*/
      width: 120%;
      height: 200%;
      /*アニメーション*/
      transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
      transform: scale(0, 1);
      transform-origin: right top; }
  .btn-more-wrap .item-more-flex {
    display: flex;
    align-items: center; }
    @media screen and (max-width: 375px) {
      .btn-more-wrap .item-more-flex {
        flex-direction: column; } }

@media (hover: hover) {
  .item-more-hover:hover:hover .btn-more.bgLeft {
    color: #000; }
    .item-more-hover:hover:hover .btn-more.bgLeft::before {
      transform-origin: left top;
      transform: scale(1, 1); } }
.item-more-hover.active {
  pointer-events: none; }
  .item-more-hover.active .btn-more.bgLeft {
    color: #000; }
    .item-more-hover.active .btn-more.bgLeft::before {
      transform-origin: left top;
      transform: scale(1, 1); }

/* フォームへのリンクボタン */
.btnF {
  width: 25em;
  height: 4.615em;
  margin: clamp(80px, 15vw, 150px) auto;
  font-size: clamp(1.4rem, 2.6vw, 2.6rem);
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.1em;
  background: #04DFA7;
  border: 1px solid #04DFA7;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 576px) {
    .btnF {
      width: 17.5em; } }
  .btnF:hover {
    color: #04DFA7;
    background: #fff; }

/* 一覧へ戻る */
.btnBack {
  width: 17.5em;
  height: 3.5em;
  margin: clamp(50px, 10vw, 100px) auto;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid #000;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .btnBack:hover {
    color: #fff;
    background: #000; }

/*==========================================
 パンくずリスト
===========================================*/
.breadcrumb {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: left;
  padding-top: 0px;
  background-color: transparent;
  padding: 30px 4%;
  margin: 0px 0;
  font-weight: bold;
  max-width: 100%;
  word-break: break-word;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: #000;
  border-top: 1px solid #b8b8b6; }
  @media screen and (max-width: 767px) {
    .breadcrumb {
      font-size: clamp(1.2rem, 3vw, 1.4rem); } }
  .breadcrumb.p0 {
    padding: 0%; }
  .breadcrumb i {
    color: #000000;
    position: relative;
    top: 1px; }
  .breadcrumb a {
    color: #000000; }
    .breadcrumb a:hover {
      opacity: 0.5;
      text-decoration: none !important; }
  .breadcrumb span {
    color: #000000; }
  .breadcrumb .home span {
    font-family: "Jost", sans-serif;
    font-weight: 500; }

/*==========================================
 【SP FOOTER CNV】
===========================================*/
.sp-footer-cnv-wrap {
  height: 65px;
  margin: 20px auto;
  position: relative; }

.sp-footer-cnv {
  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  transition: 0s; }
  @media screen and (min-width: 961px) {
    .sp-footer-cnv {
      left: 0;
      right: 0;
      top: auto;
      bottom: 0;
      width: 100%;
      height: 65px;
      background: transparent;
      transition: 0s; } }
  .sp-footer-cnv li {
    width: calc(96% * 1 / 4); }
    .sp-footer-cnv li:not(:last-child) {
      border-right: 1px solid #fff; }
    .sp-footer-cnv li a {
      color: #fff;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      font-size: 1.2rem;
      padding: 0.8em 0;
      height: 100%;
      background: #04DFA7; }
      @media screen and (max-width: 960px) {
        .sp-footer-cnv li a {
          padding: 0.25em 0; } }
      .sp-footer-cnv li a:focus {
        background: #04DFA7; }
      @media screen and (min-width: 577px) {
        .sp-footer-cnv li a {
          font-size: 1.4rem;
          padding: 1em 0; } }
      @media screen and (min-width: 961px) {
        .sp-footer-cnv li a {
          background: #04DFA7;
          height: 100%;
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; } }
  @media screen and (min-width: 961px) and (hover: hover) {
    .sp-footer-cnv li a:hover:hover {
      background: #fff;
      color: #04DFA7; }
      .sp-footer-cnv li a:hover:hover .item-ttl {
        color: #04DFA7; } }

  @media screen and (min-width: 961px) and (hover: hover) and (min-width: 961px) {
    .sp-footer-cnv li a:hover:hover .item-ttl-ja {
      border-left: 1px solid #04DFA7; } }

      @media screen and (max-width: 960px) {
        .sp-footer-cnv li a br {
          display: none; } }
      .sp-footer-cnv li a .btnTtl-en {
        font-size: 1.2rem;
        letter-spacing: 0.1em; }
        @media screen and (max-width: 960px) {
          .sp-footer-cnv li a .btnTtl-en {
            display: block; } }
  .sp-footer-cnv .formlink-list {
    display: flex;
    justify-content: space-between; }
  .sp-footer-cnv .contact-tel a {
    display: flex;
    align-items: center;
    flex-direction: row; }
    @media screen and (max-width: 960px) {
      .sp-footer-cnv .contact-tel a {
        flex-direction: column; } }
  .sp-footer-cnv .contact-tel .tel {
    letter-spacing: 0.1em;
    font-size: clamp(1.2rem, 1.3541666667vw, 2.6rem);
    line-height: 1; }
    @media screen and (min-width: 961px) {
      .sp-footer-cnv .contact-tel .tel {
        margin-left: 1rem; } }
    @media screen and (max-width: 960px) {
      .sp-footer-cnv .contact-tel .tel {
        letter-spacing: 0.1em;
        font-size: clamp(0.5rem, 2.254167vw, 2.6rem);
        line-height: 1; } }
  .sp-footer-cnv .item-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0.1em;
    font-size: clamp(1.4rem, 1.4375vw, 1.8rem);
    line-height: 1;
    transition: 0s ease-in-out; }
    @media screen and (max-width: 960px) {
      .sp-footer-cnv .item-ttl {
        font-size: clamp(1.2rem, 2.0375vw, 1.8rem);
        flex-direction: column; } }
  .sp-footer-cnv .item-ttl-en {
    position: relative; }
  .sp-footer-cnv .item-ttl-ja {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: border-left 0.3s ease-out; }
    @media screen and (min-width: 961px) {
      .sp-footer-cnv .item-ttl-ja {
        border-left: 1px solid #fff;
        padding-left: 0.5em;
        margin-left: 0.5em; } }
    @media screen and (max-width: 960px) {
      .sp-footer-cnv .item-ttl-ja {
        margin-top: 0.5em;
        line-height: 1; } }

@media screen and (max-width: 960px) {
  .sp-fixed-cnv-wrap {
    height: 50px; } }

.sp-fixed-cnv {
  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
  margin: auto;
  transition: all 0s, opacity 0.3s; }
  @media screen and (min-width: 961px) {
    .sp-fixed-cnv {
      height: auto;
      margin: 0;
      width: 40px;
      position: fixed;
      right: 0;
      left: auto;
      right: 0;
      top: auto;
      bottom: auto;
      width: auto;
      height: auto;
      display: block;
      background: #fff;
      transition: all 0s, opacity 0.3s;
      transform: translate(0px, 50%); } }
  @media screen and (max-width: 960px) {
    .sp-fixed-cnv {
      bottom: 0 !important; } }
  .sp-fixed-cnv li {
    width: calc(100% / 2); }
    @media screen and (min-width: 961px) {
      .sp-fixed-cnv li {
        width: 60px; } }
    @media screen and (min-width: 961px) {
      .sp-fixed-cnv li:first-child a {
        border-top: 1px solid #04DFA7; } }
    @media screen and (min-width: 961px) {
      .sp-fixed-cnv li:last-child a {
        border-bottom: 1px solid #04DFA7; } }
    @media screen and (max-width: 960px) {
      .sp-fixed-cnv li:last-child a {
        border-right: 1px solid #fff; } }
    .sp-fixed-cnv li a {
      color: #000;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      @media screen and (min-width: 961px) {
        .sp-fixed-cnv li a {
          background: #04DFA7;
          border-inline: 1px solid #04DFA7;
          border-bottom: 1px solid #fff; } }
      @media screen and (max-width: 960px) {
        .sp-fixed-cnv li a {
          background: #04DFA7;
          border-block: 1px solid #04DFA7;
          border-left: 1px solid #fff; } }
      .sp-fixed-cnv li a:focus {
        background: #fff; }
      @media screen and (min-width: 577px) {
        .sp-fixed-cnv li a {
          font-size: 1.4rem;
          padding: 1em 0; } }
      @media screen and (min-width: 961px) {
        .sp-fixed-cnv li a {
          background: #04DFA7;
          height: 100%;
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; } }
  @media screen and (min-width: 961px) and (hover: hover) {
    .sp-fixed-cnv li a:hover:hover {
      background: #fff;
      color: #000; }
      .sp-fixed-cnv li a:hover:hover .item-ttl {
        color: #000; } }

      @media screen and (max-width: 960px) {
        .sp-fixed-cnv li a br {
          display: none; } }
      .sp-fixed-cnv li a .btnTtl-en {
        font-size: 1.2rem;
        letter-spacing: 0.1em; }
        @media screen and (max-width: 960px) {
          .sp-fixed-cnv li a .btnTtl-en {
            display: block; } }
  .sp-fixed-cnv .formlink-list {
    display: flex;
    justify-content: space-between; }
  .sp-fixed-cnv .contact-tel a {
    display: flex;
    align-items: center;
    flex-direction: row; }
    @media screen and (max-width: 960px) {
      .sp-fixed-cnv .contact-tel a {
        flex-direction: column; } }
  .sp-fixed-cnv .contact-tel .tel {
    letter-spacing: 0.1em;
    font-size: clamp(1.2rem, 1.3541666667vw, 2.6rem);
    line-height: 1; }
    @media screen and (min-width: 961px) {
      .sp-fixed-cnv .contact-tel .tel {
        margin-left: 1rem; } }
    @media screen and (max-width: 960px) {
      .sp-fixed-cnv .contact-tel .tel {
        letter-spacing: 0.1em;
        font-size: clamp(0.5rem, 2.254167vw, 2.6rem);
        line-height: 1; } }
  @media screen and (max-width: 960px) {
    .sp-fixed-cnv .sns-item {
      width: auto;
      aspect-ratio: 1 / 1;
      min-width: 50px;
      height: 100%; } }
  .sp-fixed-cnv .sns_nav {
    aspect-ratio: 1 / 1; }
    .sp-fixed-cnv .sns_nav a {
      font-size: 2rem; }
  .sp-fixed-cnv .item-link {
    height: auto;
    width: 100%; }
    @media screen and (max-width: 960px) {
      .sp-fixed-cnv .item-link {
        height: 50px;
        width: 100%;
        padding: 0; } }
  .sp-fixed-cnv .item-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0.1em;
    font-size: clamp(1.4rem, 1.4375vw, 1.8rem);
    line-height: 1;
    transition: 0s ease-in-out; }
    @media screen and (max-width: 960px) {
      .sp-fixed-cnv .item-ttl {
        font-size: clamp(1.2rem, 2.0375vw, 1.8rem);
        flex-direction: column; } }
  .sp-fixed-cnv .item-ttl-en {
    position: relative; }
  .sp-fixed-cnv .item-ttl-ja {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: border-left 0.3s ease-out;
    font-weight: bold;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif; }
    @media screen and (min-width: 961px) {
      .sp-fixed-cnv .item-ttl-ja {
        writing-mode: vertical-lr; } }
    @media screen and (max-width: 960px) {
      .sp-fixed-cnv .item-ttl-ja {
        line-height: 1;
        font-size: clamp(1.4rem, 1.6666666667vw, 1.6rem); } }

/*==========================================
 pager
===========================================*/
.pager-wrap {
  margin-top: 150px; }
  @media screen and (max-width: 1500px) {
    .pager-wrap {
      margin-top: 120px; } }
  @media screen and (max-width: 1200px) {
    .pager-wrap {
      margin-top: 100px; } }
  @media screen and (max-width: 767px) {
    .pager-wrap {
      margin-top: 80px; } }
  @media screen and (max-width: 576px) {
    .pager-wrap {
      margin-top: 60px; } }
  .pager-wrap .wp-pagenavi {
    text-align: center; }
    .pager-wrap .wp-pagenavi a,
    .pager-wrap .wp-pagenavi span {
      border: 1px solid #000;
      display: inline-block;
      height: 30px;
      line-height: 28px;
      padding: 0;
      font-weight: bold; }
    @media screen and (min-width: 768px) {
      .pager-wrap .wp-pagenavi a:hover {
        background: #000;
        color: #fff; } }
    .pager-wrap .wp-pagenavi .page,
    .pager-wrap .wp-pagenavi .current {
      aspect-ratio: 1/1;
      font-size: 1.6rem; }
    .pager-wrap .wp-pagenavi .current {
      background: #000;
      color: #fff; }
    .pager-wrap .wp-pagenavi .extend {
      border: none; }
    .pager-wrap .wp-pagenavi .previouspostslink,
    .pager-wrap .wp-pagenavi .nextpostslink,
    .pager-wrap .wp-pagenavi .first,
    .pager-wrap .wp-pagenavi .last {
      padding: 0 0.5em;
      font-size: 1.4rem;
      background: #ccc; }

/*==========================================
 pager common用
===========================================*/
.wp-pagenavi {
  margin: 60px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center; }
  .wp-pagenavi a,
  .wp-pagenavi span {
    border: none; }
  .wp-pagenavi .extend {
    border: none; }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    border: solid 0px #000000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 26px;
    padding: 0;
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    letter-spacing: 0.2em;
    font-weight: 200 !important;
    color: #000000;
    margin: 2px 6px;
    transition: all 0.3s; }
    @media screen and (min-width: 768px) {
      .wp-pagenavi .page,
      .wp-pagenavi .current {
        position: relative; }
        .wp-pagenavi .page::after,
        .wp-pagenavi .current::after {
          content: "";
          position: absolute;
          bottom: -2px;
          width: 0px;
          height: 3px;
          border-radius: 25px;
          background-color: #000000;
          left: 50%;
          -webkit-transform: translate(0%, -50%);
          transform: translate(-50%, -50%);
          transition: all 0.3s; }
        .wp-pagenavi .page:hover,
        .wp-pagenavi .current:hover {
          position: relative; }
          .wp-pagenavi .page:hover::after,
          .wp-pagenavi .current:hover::after {
            content: "";
            position: absolute;
            bottom: -2px;
            width: 16px;
            height: 3px;
            border-radius: 25px;
            background-color: #000000;
            left: 50%;
            -webkit-transform: translate(0%, -50%);
            transform: translate(-50%, -50%); } }
  .wp-pagenavi .current {
    transition: all 0.3s;
    position: relative; }
    .wp-pagenavi .current::after {
      content: "";
      position: absolute;
      bottom: -2px;
      width: 16px;
      height: 3px;
      border-radius: 25px;
      background-color: #000000;
      left: 50%;
      -webkit-transform: translate(0%, -50%);
      transform: translate(-50%, -50%); }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    font-size: 0;
    border: none;
    width: 11px;
    height: 22px;
    padding: 0;
    display: inline-block;
    position: relative;
    vertical-align: text-bottom; }
    .wp-pagenavi .previouspostslink::before,
    .wp-pagenavi .nextpostslink::before {
      content: "";
      display: inline-block;
      width: 54px;
      height: 26px;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      position: absolute;
      top: 0; }
  .wp-pagenavi .first,
  .wp-pagenavi .last {
    border: none; }
  .wp-pagenavi .previouspostslink {
    margin-right: 15px;
    position: relative; }
    .wp-pagenavi .previouspostslink::before {
      border-width: 0;
      border-color: transparent #000000 transparent transparent;
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      position: absolute;
      left: 10%;
      top: calc(50% - 10px);
      border-top: solid 1px;
      border-left: solid 1px;
      transform: rotate(-45deg) translateY(-50%);
      color: #000000; }
  .wp-pagenavi .nextpostslink {
    margin-left: 15px;
    position: relative; }
    .wp-pagenavi .nextpostslink::before {
      border-width: 0;
      border-color: transparent transparent transparent #000000;
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      position: absolute;
      right: 10%;
      top: calc(50% - 5px);
      border-top: solid 1px;
      border-right: solid 1px;
      transform: rotate(45deg) translateY(-50%);
      color: #000000; }

/*==========================================
 【PAGETOP】
===========================================*/
.pagetop {
  position: fixed;
  z-index: 8;
  right: 10px;
  bottom: 10px; }
  @media screen and (max-width: 960px) {
    .pagetop {
      display: none !important; } }
  .pagetop a {
    display: block;
    background: #04DFA7;
    font-size: 0;
    transition: 0.3s ease-in-out;
    width: 50px;
    height: 50px;
    padding: 15px 0 0;
    text-align: center;
    border: 1px solid #fff; }
    .pagetop a::after {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 7.5px 20px 7.5px;
      border-color: transparent transparent #fff transparent; }
    @media screen and (min-width: 961px) {
      .pagetop a:hover {
        background: #000; } }
    @media screen and (max-width: 960px) {
      .pagetop a {
        width: 35px;
        height: 35px;
        padding: 12px 0 0; }
        .pagetop a::after {
          border-width: 0 5.5px 12px 5.5px; } }

/*# sourceMappingURL=common_dg.css.map */
