@charset "UTF-8";
/* Scss Document */
/*-----------------------------------------------------
  基本設定
-----------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 100%;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #363640;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  background-color: #f8f8f8;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: #2B4A9F;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:active, a:hover {
  color: #17a4ce;
  text-decoration: none;
}
a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover img {
  -webkit-filter: brightness(105%);
          filter: brightness(105%);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

em {
  font-style: normal;
  color: #07a092;
}

/*-----------------------------------------------------
  ページタイトル
-----------------------------------------------------*/
.pageheading {
  position: relative;
  text-align: center;
}
.pageheading-ttl {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  .pageheading-ttl {
    font-size: 3rem;
  }
}
.pageheading-label {
  color: #07a092;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 0 0.5rem 0.25rem;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 1024px) {
  .pageheading-label {
    font-size: 1.25rem;
  }
}

/*-----------------------------------------------------
  パンくずナビ
-----------------------------------------------------*/
.topicpath {
  font-size: 0.625rem;
  position: relative;
  padding: 0;
  border-top: 1px solid #E5EBEF;
  color: rgba(54, 54, 64, 0.8);
}
.topicpath ul {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.topicpath li {
  display: inline-block;
}
.topicpath li + li:before {
  margin: 0 5px;
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
}
.topicpath a {
  color: rgba(54, 54, 64, 0.8);
}

/*-----------------------------------------------------
  ページ送り
-----------------------------------------------------*/
.pagination {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.pagination i {
  margin: 0;
}
.pagination a {
  color: #17a4ce;
  margin: 0 0.2em;
  text-decoration: none;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination a:hover {
  text-decoration: none;
  color: #363640 !important;
  border: none;
}
.pagination .current {
  margin: 0 0.2em;
  position: relative;
  width: 40px;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .next,
.pagination .prev {
  margin: 0;
  color: #363640 !important;
}
.pagination .prev {
  margin-right: 0.2em;
}
.pagination .next {
  margin-left: 0.2em;
}

/*-----------------------------------------------------
  ページ送り（シングルページ）
-----------------------------------------------------*/
.pagination-single {
  border-top: 1px solid #E5EBEF;
  border-bottom: 1px solid #E5EBEF;
  font-size: 1rem;
}
.pagination-single-label {
  color: rgba(54, 54, 64, 0.5);
  font-size: 0.75rem;
  margin-bottom: 0.2em;
}
.pagination-single-article {
  font-weight: 600;
  line-height: 1.3;
}
.pagination-single a {
  color: #363640;
}
.pagination-single i {
  margin: 0;
}

/*-----------------------------------------------------
  下部コンテンツ
-----------------------------------------------------*/
.footcontents {
  border-radius: 15px;
  background: #fff;
  width: 100%;
  padding: 20px;
  color: #363640;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media screen and (min-width: 1024px) {
  .footcontents {
    display: block;
    padding: 30px;
  }
}
.footcontents:hover {
  color: #fff;
  background: #07a092;
}
.footcontents:hover .footcontents-icon {
  background: #fff;
  color: #07a092;
}
.footcontents-icon {
  font-size: 1.25rem;
  margin: 0 1rem 0 0;
  line-height: 1;
  background: #07a092;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  color: #fff;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media screen and (min-width: 1024px) {
  .footcontents-icon {
    margin: 0 0 0.8em;
  }
}
.footcontents-ttl {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}
.footcontents-txt {
  font-size: 0.75rem;
  margin: 0.2em 0 0 0;
}
@media screen and (min-width: 1024px) {
  .footcontents-txt {
    font-size: 0.875rem;
  }
}
.footcontents-wrapper {
  border-radius: 40px 40px 0 0;
  background: hsl(115, 23%, 90%);
}

/*-----------------------------------------------------
  下部CTAエリア
-----------------------------------------------------*/
.footcta {
  background: #07a092;
  color: #fff;
  border-radius: 40px;
}
.footcta h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  -webkit-text-stroke: 0.5px currentColor;
}
.footcta p {
  font-weight: 500;
  line-height: 1.8;
}
.footcta .decoration {
  position: absolute;
  bottom: -280px;
  height: 250px;
  left: 55%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .footcta .decoration {
    left: auto;
    -webkit-transform: none;
            transform: none;
    right: -11vw;
    bottom: -170px;
    height: 500px;
  }
}

.floatcta {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.floatcta.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*-----------------------------------------------------
  フッター
-----------------------------------------------------*/
.gfooter a {
  color: #363640;
}
.gfooter-nav h5 {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .gfooter-nav h5 {
    margin-bottom: 1em;
  }
}
.gfooter-nav ul {
  padding: 0;
  font-size: 0.75rem;
}
.gfooter-nav li {
  margin: 0 0 1.1em;
}
@media screen and (min-width: 768px) {
  .gfooter-nav li {
    margin-right: 1.5em;
  }
}
.gfooter-bottom {
  border-top: 1px solid #E5EBEF;
  font-family: "Roboto", sans-serif;
  font-size: 0.625rem;
}

/*-----------------------------------------------------
  下部CTAエリア
-----------------------------------------------------*/
.floatcta a {
  background: #d35e50;
  border-radius: 999px;
  padding: 10px 40px 10px 20px;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: inset 0 0 0 0 #eac248;
          box-shadow: inset 0 0 0 0 #eac248;
  -webkit-transition: color 0.35s ease, -webkit-box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.35s ease, -webkit-box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.35s ease, box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.35s ease, box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1), -webkit-box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 1024px) {
  .floatcta a {
    min-width: 180px;
  }
}
.floatcta a:hover {
  -webkit-box-shadow: inset 500px 0 0 0 #eac248;
          box-shadow: inset 500px 0 0 0 #eac248;
  color: #fff;
}
.floatcta-desc {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.floatcta small {
  letter-spacing: 0;
  font-size: 12px;
}
.floatcta-img {
  border-radius: 100%;
  width: 60px;
  overflow: hidden;
}

/*-----------------------------------------------------
  グローバルヘッダー
-----------------------------------------------------*/
.gheader {
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .gheader {
    height: 100px;
  }
}
.gheader .gheader-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .gheader .gheader-logo {
    width: unset;
  }
}
.gheader .gheader-logo img {
  height: 50px;
}
@media screen and (min-width: 1024px) {
  .gheader .gheader-logo img {
    height: 70px;
  }
}
.gheader .gnav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gheader .gheader-gnav {
  font-size: 1rem;
  font-weight: 600;
}
.gheader .gheader-gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 2em;
}
.gheader .gheader-gnav a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.gheader .gheader-gnav a:hover {
  color: #07a092;
}
@media screen and (min-width: 1024px) {
  .gheader .gheader-gnav {
    background: #fff;
    border-radius: 999px;
    padding: 1.25rem 2.5rem;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  }
  .gheader .gheader-gnav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1.25rem;
  }
  .gheader .gheader-gnav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gheader .gheader-gnav li::after {
    content: "";
    display: block;
    width: 1px;
    height: 1em;
    background: #E5EBEF;
    margin-left: 1.25rem;
  }
  .gheader .gheader-gnav li:last-child::after {
    display: none;
  }
  .gheader .gheader-gnav a {
    color: #363640;
    position: relative;
    display: inline-block;
  }
  .gheader .gheader-gnav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #07a092;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  .gheader .gheader-gnav a:hover::after {
    width: 100%;
  }
}
.gheader .gheader-cta {
  margin-top: 2em;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .gheader .gheader-cta {
    margin-top: 0;
  }
}
.gheader .gheader-cta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
@media screen and (min-width: 1024px) {
  .gheader .gheader-cta ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.625rem;
  }
}
.gheader .gheader-cta a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  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;
  min-width: 200px;
  padding: 1.25rem 0;
  color: #fff;
  background: #07a092;
  border-radius: 999px;
  -webkit-box-shadow: inset 0 0 0 0 rgb(4.8622754491, 111.1377245509, 101.4131736527);
          box-shadow: inset 0 0 0 0 rgb(4.8622754491, 111.1377245509, 101.4131736527);
  -webkit-transition: color 0.35s ease, -webkit-box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.35s ease, -webkit-box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.35s ease, box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.35s ease, box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1), -webkit-box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 1024px) {
  .gheader .gheader-cta a {
    min-width: 180px;
  }
}
.gheader .gheader-cta a:hover {
  -webkit-box-shadow: inset 500px 0 0 0 rgb(5.9311377246, 135.5688622754, 123.7065868263);
          box-shadow: inset 500px 0 0 0 rgb(5.9311377246, 135.5688622754, 123.7065868263);
  color: #fff;
}

/*-----------------------------------------------------
  ハンバーガー＆SPメニュー
-----------------------------------------------------*/
.gnav-wrapper {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.gnav-wrapper.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .gnav-wrapper {
    position: static;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.hamburger {
  all: unset;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 40;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  height: 40px;
  border-radius: 999px;
  background: #07a092;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.hamburger i {
  font-size: 1.25rem;
  pointer-events: none;
}
.hamburger:hover {
  opacity: 0.9;
}
.hamburger.active {
  background: #fff;
  color: #07a092;
}
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/*-----------------------------------------------------
  共通：アウトライン
-----------------------------------------------------*/
.overview-img {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.overview-img img {
  width: 100%;
}
.overview-ttl {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(1rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}
.overview-ttl em {
  color: #07a092;
  font-style: normal;
}
.overview-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #07a092;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 1.5rem 0.15rem;
}
.overview-label i {
  font-size: 0.6rem;
  margin-right: 0.5em;
}
.overview-txt {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
}

/*-----------------------------------------------------
  共通：機能一覧
-----------------------------------------------------*/
/* features */
.features {
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  padding: 50px 20px;
  background-image: url(/images/features_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}
@media screen and (min-width: 1024px) {
  .features {
    padding: 50px 40px;
  }
}
.features-img {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 240px;
}
.features-img img {
  margin: 0 auto;
}
.features-desc {
  margin-bottom: 150px;
}
.features-label {
  color: #07a092;
  font-size: 0.75rem;
  font-weight: 600;
  background: #07a092;
  display: inline-block;
  border-radius: 999px;
  color: #fff;
  padding: 4px 20px;
  margin: 0 0 2em;
}
.features-ttl {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 600;
  -webkit-text-stroke: 0.5px currentColor;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
.features-ttl em {
  color: #07a092;
  font-style: normal;
}
.features-txt {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/*-----------------------------------------------------
  共通：機能一覧
-----------------------------------------------------*/
.functions-card {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  height: 100%;
}
.functions-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
  display: block;
}
.functions-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.functions-card-desc {
  padding: 30px 25px;
}
@media screen and (min-width: 1024px) {
  .functions-card-desc {
    padding: 35px 35px;
  }
}
.functions-card-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  overflow: hidden;
}
.functions-card-txt {
  font-size: 1rem;
  line-height: 1.5;
}

/*-----------------------------------------------------
  共通：機能一覧
-----------------------------------------------------*/
.functions-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 1024px) {
  .functions-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.functions-list-icon {
  font-size: 1.5rem;
  line-height: 1;
  background: #fff;
  border: 1px solid #E5EBEF;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #07a092;
}
@media screen and (min-width: 1024px) {
  .functions-list-icon {
    font-size: 2.25rem;
    width: 120px;
    height: 120px;
  }
}
.functions-list-desc {
  width: 100%;
}
.functions-list-ttl {
  font-size: 1.25rem;
  color: #07a092;
  margin: 0;
  font-weight: 700;
}
.functions-list-txt {
  font-size: 1rem;
  margin: 0.5em 0 0 0;
  font-weight: normal;
}
.functions-list-wrapper {
  padding: 30px 20px;
  border-radius: 15px;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .functions-list-wrapper {
    padding: 40px;
  }
}

/*-----------------------------------------------------
  共通：機能
-----------------------------------------------------*/
.functions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.functions-img {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
}
.functions-img img {
  width: 100%;
}
.functions-desc {
  padding: 0;
  width: 100%;
  margin: 0;
}
.functions-ttl {
  font-size: 2.4rem;
  margin: 0 0 1rem;
}
.functions-label {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.8em;
  color: #07a092;
}
.functions-txt {
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .functions-txt {
    font-size: 0.875rem;
  }
}
.functions nav {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .functions nav {
    text-align: initial;
  }
}

/*-----------------------------------------------------
  共通：コンテンツ
-----------------------------------------------------*/
.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px 0;
}
@media screen and (min-width: 1024px) {
  .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.content-img-square {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 15px;
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 320px;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .content-img-square {
    aspect-ratio: 1/1;
    width: 300px;
    max-width: none;
  }
}
.content-img-square img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 12px;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  background: #f5f5f5;
}
@media screen and (min-width: 1024px) {
  .content-img {
    width: 260px;
    max-width: none;
  }
}
.content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-desc {
  padding: 0;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .content-desc {
    text-align: left;
  }
}
.content-ttl {
  color: #07a092;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.content-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #07a092;
  margin: 1.5rem 0 1rem 0;
}
.content-label i {
  font-size: 0.5rem;
  margin-right: 0.5em;
}
.content-txt {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1rem;
}
.content-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .content-brand {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.content-brand li img {
  height: 30px;
}
.content-wrapper {
  padding: 40px 20px;
  border-radius: 15px;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .content-wrapper {
    padding: 60px;
  }
}

/*-----------------------------------------------------
  共通:テーブル
-----------------------------------------------------*/
.tbl {
  border-top: 1px solid #E5EBEF;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1rem;
  width: 100%;
}
.tbl td,
.tbl th {
  border-bottom: 1px solid #E5EBEF;
  padding: 30px 0;
}
@media screen and (min-width: 1024px) {
  .tbl td,
  .tbl th {
    padding: 40px 0;
  }
}
.tbl th {
  width: 100%;
  font-weight: 600;
  -moz-text-align-last: left;
       text-align-last: left;
  display: block;
  border-bottom: none;
  padding-bottom: 0.5em;
}
@media screen and (min-width: 1024px) {
  .tbl th {
    width: 20%;
    display: table-cell;
    border-bottom: 1px solid #E5EBEF;
    padding-bottom: 40px;
  }
}
.tbl td {
  width: 100%;
  display: block;
  padding-top: 0;
}
@media screen and (min-width: 1024px) {
  .tbl td {
    width: auto;
    display: table-cell;
    padding-top: 40px;
  }
}
.tbl td h4 {
  margin-bottom: 0.5em;
  font-weight: 600;
}
.tbl td p {
  margin: 0;
}
.tbl td p + p {
  margin-top: 1em;
}
.tbl td p + h4 {
  margin-top: 1em;
}
.tbl td .bnr {
  max-width: 200px;
  margin-bottom: 1em;
}
.tbl td p + .bnr {
  margin-top: 2em;
}
.tbl td ul {
  margin: 0;
  padding: 0 0 0 1.5em;
  list-style-type: disc;
  list-style-position: outside;
}

/*-----------------------------------------------------
  共通：タイトル
-----------------------------------------------------*/
/* ttl */
.ttl-xl {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  -webkit-text-stroke: 0.5px currentColor;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.ttl-lg {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  -webkit-text-stroke: 0.5px currentColor;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.ttl-md {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  -webkit-text-stroke: 0.5px currentColor;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.ttl-sm {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.ttl-txt {
  margin-top: 1em;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.01em;
}

.ttl-label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  display: inline-block;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: #07a092;
  border: 1px solid #07a092;
  letter-spacing: 0.01em;
}

.title {
  word-break: break-all;
}
.title h2 {
  font-weight: 800;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  color: #07a092;
}
@media screen and (min-width: 768px) {
  .title h2 {
    font-size: 3.4rem;
  }
}
.title p {
  margin: 2em 0;
  line-height: 2 !important;
  font-weight: 600;
  line-height: normal;
}
.title small {
  margin: 1em 0;
  font-weight: 600;
  line-height: normal;
  font-size: 0.875rem;
  display: block;
}
.title-nav {
  text-align: right;
}
.title h3 {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.2;
  color: #07a092;
}
.title h3:before {
  position: absolute;
  width: 20px;
  height: 5px;
  border-radius: 3px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #07a092;
  content: "";
}

/* ================================================
   共通：ボタン
================================================ */
.btn, .btn-outline, .btn-alt {
  --btn-bg: rgb(3.1520958084, 72.0479041916, 65.7437125749);
  --btn-fill: #07a092;
  --btn-text: #fff;
  --btn-text-hover: #fff;
  --pill-bg: #fff;
  --arrow-color: #07a092;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  border-radius: 999px;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  max-width: 260px;
  padding: 1.125rem 2.4rem;
  padding-right: 4rem;
  color: var(--btn-text);
  background-color: var(--btn-bg);
  -webkit-box-shadow: inset 0 0 0 0 var(--btn-fill);
          box-shadow: inset 0 0 0 0 var(--btn-fill);
  -webkit-transition: color 0.35s ease, border-color 0.35s ease, -webkit-box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.35s ease, border-color 0.35s ease, -webkit-box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
  transition: box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1), color 0.35s ease, border-color 0.35s ease;
  transition: box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1), color 0.35s ease, border-color 0.35s ease, -webkit-box-shadow 0.35s cubic-bezier(0.45, 0, 0.55, 1);
}
.btn .icon, .btn-outline .icon, .btn-alt .icon {
  margin-right: 0.55rem;
  font-size: 1.25rem;
}
.btn::before, .btn-outline::before, .btn-alt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 46px;
  height: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--pill-bg);
  border-radius: 999px;
  z-index: 2;
}
.btn::after, .btn-outline::after, .btn-alt::after {
  content: "\f061";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 46px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.625rem;
  color: var(--arrow-color);
  z-index: 3;
  pointer-events: none;
  -webkit-transition: right 0.3s ease, color 0.3s ease;
  transition: right 0.3s ease, color 0.3s ease;
}
.btn:hover, .btn-outline:hover, .btn-alt:hover {
  -webkit-box-shadow: inset 500px 0 0 0 var(--btn-fill);
          box-shadow: inset 500px 0 0 0 var(--btn-fill);
  color: var(--btn-text-hover);
}
.btn:hover::after, .btn-outline:hover::after, .btn-alt:hover::after {
  right: 0.8rem;
}
.btn.btn-md, .btn-md.btn-outline, .btn-md.btn-alt {
  max-width: 320px;
  padding: 1.5rem 2.8rem;
  padding-right: 4.4rem;
}
.btn.btn-lg, .btn-lg.btn-outline, .btn-lg.btn-alt {
  font-size: 1.125rem;
  max-width: 380px;
  padding: 1.8rem 5rem 1.8rem 2rem;
}
.btn.btn-lg::before, .btn-lg.btn-outline::before, .btn-lg.btn-alt::before, .btn.btn-lg::after, .btn-lg.btn-outline::after, .btn-lg.btn-alt::after {
  right: 1.8rem;
}
.btn.btn-lg:hover::after, .btn-lg.btn-outline:hover::after, .btn-lg.btn-alt:hover::after {
  right: 1.4rem;
}

/* 白地ボタン */
.btn-alt {
  --btn-bg: #fff;
  --btn-fill: rgb(5.9311377246, 135.5688622754, 123.7065868263);
  --btn-text: #07a092;
  --btn-text-hover: #fff;
  --pill-bg: #07a092;
  --arrow-color: #fff;
  border: 1px solid #07a092;
}

/* 白枠ボタン */
.btn-outline {
  --btn-bg: transparent;
  --btn-fill: #fff;
  --btn-text: #fff;
  --btn-text-hover: #07a092;
  --pill-bg: #fff;
  --arrow-color: #07a092;
  border: 2px solid #fff;
  padding: calc(1rem - 2px) calc(2.4rem - 2px);
  padding-right: calc(4rem - 2px);
}
.btn-outline.btn-md {
  padding: calc(1.5rem - 2px) calc(2.8rem - 2px);
  padding-right: calc(4.4rem - 2px);
}
.btn-outline.btn-lg {
  padding: calc(1.8rem - 2px) calc(3.2rem - 2px);
  padding-right: calc(5rem - 2px);
}
.btn-outline:hover {
  border-color: #fff;
}
.btn-outline:hover::before {
  background: #07a092;
}
.btn-outline:hover::after {
  color: #fff;
}

/* テキストリンク（右ピル矢印） */
.link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #2B4A9F;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.link-arrow::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  height: 22px;
  background: #07a092;
  border-radius: 999px;
  font-size: 0.625rem;
  color: #fff;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
}
.link-arrow:hover {
  color: #07a092;
}
.link-arrow:hover::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
  background: rgb(5.2898203593, 120.9101796407, 110.3305389222);
}

/*-----------------------------------------------------
  共通：下線
-----------------------------------------------------*/
.linkline {
  display: inline-block;
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-size 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  padding-bottom: 1px;
}

a:hover .linkline {
  background-size: 0% 1px;
  background-position: bottom right;
}

/*-----------------------------------------------------
  共通：注意文
-----------------------------------------------------*/
.note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
}

/*-----------------------------------------------------
  共通：矢印
-----------------------------------------------------*/
.arw {
  position: relative;
  padding-left: 17px;
}
.arw::after, .arw::before {
  display: block;
  content: "";
  position: absolute;
}
.arw::after {
  top: 0.2em;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #74c59a;
  border-radius: 100%;
}
.arw::before {
  z-index: 2;
  top: 0.525em;
  left: 0.25em;
  width: 3px;
  height: 3px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*-----------------------------------------------------
  共通：画像付きカード
-----------------------------------------------------*/
.photocard {
  position: relative;
  color: #363640;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.photocard-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #f5f5f7;
  aspect-ratio: 3/2;
}
.photocard-img picture,
.photocard-img img {
  display: block;
  width: 100%;
  height: 100%;
}
.photocard-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.photocard-alt {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  aspect-ratio: 3/2;
  width: 40%;
  border-radius: 10px;
  overflow: hidden;
}
.photocard-alt img {
  -o-object-fit: cover;
     object-fit: cover;
}
.photocard-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 1.7rem 0 0;
}
.photocard-ttl {
  font-size: 1.25rem;
  margin: 0 0 0.45rem;
  font-weight: 600;
  line-height: 1.3;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.photocard-txt {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.photocard-meta {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: #8a8f98;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.photocard-meta time {
  line-height: 1;
  white-space: nowrap;
}
.photocard-meta .photocard-arrow {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 22px;
  border-radius: 999px;
  background: #07a092;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, background 0.25s ease;
  transition: transform 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease;
}
.photocard-meta .photocard-arrow::after {
  content: "\f061";
  font-family: "Font Awesome 7 Pro", "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 0.55rem;
  color: #fff;
  pointer-events: none;
}
.photocard a {
  color: inherit;
  text-decoration: none;
  outline: none;
}
.photocard a:focus-visible {
  outline: 2px solid rgba(7, 160, 146, 0.6);
  outline-offset: 2px;
  border-radius: 4px;
}
.photocard .photocard-link:hover .photocard-photo img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.photocard .photocard-link:hover .photocard-ttl {
  color: #07a092;
}
.photocard .photocard-link:hover .photocard-arrow {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
  background: rgb(5.2898203593, 120.9101796407, 110.3305389222);
}

/*-----------------------------------------------------
  共通：動画埋め込み
-----------------------------------------------------*/
.youtube {
  aspect-ratio: 16/9;
  position: relative;
}
.youtube iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

/*-----------------------------------------------------
  共通：インフォ・ブログ
-----------------------------------------------------*/
.entry-title h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.entry-date {
  font-size: 0.75rem;
  color: rgba(54, 54, 64, 0.6);
}

.entrybody {
  font-size: 1.125rem;
  clear: both;
  line-height: 1.8 !important;
  color: #363640;
  letter-spacing: 0;
}
.entrybody a {
  color: #007bff;
}
.entrybody em {
  font-style: italic;
}
.entrybody ul,
.entrybody ol {
  margin: 1em 0;
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
}
.entrybody ul li {
  list-style: disc inside;
}
.entrybody ol li {
  list-style: decimal inside;
}
.entrybody h1,
.entrybody h2,
.entrybody h3,
.entrybody h4,
.entrybody h5 {
  margin: 2em 0 0.8em;
  line-height: 1.3;
  font-weight: 600;
}
.entrybody h1 {
  font-size: 2.25rem;
}
.entrybody h2 {
  font-size: 1.875rem;
}
.entrybody h3 {
  font-size: 1.5rem;
}
.entrybody h4 {
  font-size: 1.25rem;
}
.entrybody h5 {
  font-size: 1.125rem;
}
.entrybody p {
  margin: 1em 0;
  line-height: 2 !important;
}
.entrybody figure {
  margin: 2em 0;
}
.entrybody figure figcaption {
  margin: 1em 0.5em 0;
  font-size: 0.875rem;
  color: rgba(54, 54, 64, 0.8);
  line-height: 1.6;
}
.entrybody img {
  height: auto;
}
.entrybody img.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entrybody img.alignright {
  margin: 0 0 30px 30px;
  display: inline;
}
.entrybody img.alignleft {
  margin: 0 30px 30px 0;
  display: inline;
}
.entrybody .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entrybody .alignright {
  float: right;
}
.entrybody .alignleft {
  float: left;
}
.entrybody hr {
  border: 0;
  height: 1px;
  background: #E5EBEF;
}
.entrybody blockquote {
  margin: 2em 0;
  border-left: 2px solid #E5EBEF;
  padding: 1em 0 1em 2em;
}
.entrybody blockquote p {
  margin: 0;
}
.entrybody blockquote p + p {
  margin-top: 0;
}
.entrybody blockquote cite {
  font-size: 0.875rem;
  color: rgba(54, 54, 64, 0.5);
}
.entrybody table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.875rem;
  border: 1px solid #ccc;
  margin: 2rem 0;
}
.entrybody table thead th {
  text-align: center;
  color: #fff;
}
.entrybody table th {
  padding: 20px;
  text-align: left;
  border: 1px solid #E5EBEF;
  font-weight: normal;
  position: relative;
  color: #07a092;
}
.entrybody table td {
  padding: 20px;
  border: 1px solid #E5EBEF;
  border-left: none;
}
.entrybody .box {
  border: 2px solid #E5EBEF;
  margin: 3em 0 2em;
  padding: 40px;
  position: relative;
  font-size: 1rem;
}
.entrybody .box span {
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
  background: #F5F7F8;
  padding: 0 15px;
  position: absolute;
  top: -20px;
  left: 25px;
}
.entrybody .box p {
  font-size: 1rem;
  margin: 0 !important;
}
.entrybody .box p + p {
  margin-top: 1em !important;
}
.entrybody .wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin: 8vw 0;
}
.entrybody .wp-block-gallery figure {
  width: 100%;
  margin: 0;
}
.entrybody .wp-block-gallery figure img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023px) {
  .entrybody .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: 100% !important;
  }
}
@media screen and (min-width: 1024px) {
  .entrybody .wp-block-gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    margin: 2em 0;
  }
  .entrybody .wp-block-gallery figure {
    width: calc(50% - 20px);
  }
}
.entrybody .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2vw;
  margin: 8vw 0;
}
@media screen and (min-width: 1024px) {
  .entrybody .gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
    margin: 2em 0;
  }
}
.entrybody .gallery figure {
  margin: 0;
}

/* サイドメニュー */
.submenu {
  font-size: 0.875rem;
}
.submenu [class*=col-] {
  position: relative;
  margin-bottom: 40px;
}
.submenu a {
  color: #363640;
}
.submenu a:hover {
  color: #07a092;
}
.submenu h3 {
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 600;
}
.submenu h3 i {
  margin-right: 0.5em;
  color: #07a092;
}
.submenu .catlist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.submenu .catlist ul li {
  margin: 0 0 0.8em;
  padding: 0;
}
.submenu .catlist ul li ul {
  margin: 10px 0 10px 15px;
}
.submenu .catlist ul li ul li {
  padding: 0;
  margin-bottom: 0.5em;
}

.entrylist-photo {
  width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.entrylist-photo img {
  height: auto;
  width: 100%;
}
.entrylist-desc {
  width: 100%;
}
.entrylist ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}
.entrylist ul li {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

/*---------------------------
  リンク
---------------------------*/
.link {
  color: #17a4ce !important;
}
.link:hover {
  text-decoration: underline;
}

/*---------------------------
  水平線
---------------------------*/
.hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*-----------------------------------------------------
  共通：料金
-----------------------------------------------------*/
/* price */
.price {
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  padding: 50px 10px 30px 10px;
  color: #07a092;
}
.price-img {
  max-width: 160px;
  margin: 0 auto;
}
.price-ttl {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.price-cost {
  font-size: 5.5rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 0.8;
  margin: 0 0 1rem;
  white-space: nowrap;
  letter-spacing: -0.1px;
}
@media screen and (min-width: 1024px) {
  .price-cost {
    font-size: 6rem;
  }
}
.price-cost small {
  font-size: 1.25rem;
}
.price-txt {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.price .note {
  color: #363640;
}

/* returns */
.returns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  background: #07a092;
  border-radius: 30px;
  padding: 50px 20px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .returns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 50px;
  }
}
.returns-img {
  max-width: 260px;
}
.returns-img img {
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: -50px;
}
.returns .note {
  color: #fff;
}

/* flow */
/* ===========================
   Flow Section
   =========================== */
.flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  position: relative;
  /* ラッパー */
}
@media screen and (min-width: 1024px) {
  .flow {
    gap: 25px;
  }
}
.flow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 19px;
  width: 2px;
  height: calc(100% + 80px);
  background: #E5EBEF;
}
@media screen and (min-width: 1024px) {
  .flow:before {
    left: 29px;
  }
}
.flow-label {
  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: 40px;
  height: 40px;
  background-color: #07a092;
  border-radius: 50%;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .flow-label {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
}
.flow-ttl {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0;
}
.flow-txt {
  font-size: 1rem;
  line-height: 1.6;
}
.flow.last::before {
  display: none !important;
}
.flow + .flow {
  margin-top: 50px;
}
.flow-wrapper {
  background: #fff;
  padding: 50px 20px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .flow-wrapper {
    padding: 80px;
  }
}

/* position */
.position {
  border-radius: 15px;
  background: #f8f8f8;
  padding: 80px 10vw;
}
@media screen and (min-width: 640px) {
  .position {
    border-radius: 0;
    padding: 50px 5vw;
  }
}

/* option */
.option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.8vw;
}
.option-item {
  border-radius: 15px;
  overflow: hidden;
  width: calc(33% - 3vw);
}
@media screen and (min-width: 1024px) {
  .option-item {
    width: calc(50% - 2.5vw);
  }
}

/*-----------------------------------------------------
  プラン
-----------------------------------------------------*/
.planlist {
  border-top: 1px solid #E5EBEF;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
}
.planlist-plus {
  text-align: center;
  font-size: 3rem;
  margin: 20px 0;
}
.planlist-note {
  font-size: 1.3rem;
  margin: 25px 0 0 0;
}
.planlist td,
.planlist th {
  border-bottom: 1px solid #E5EBEF;
  padding: 30px 20px;
}
@media screen and (min-width: 1024px) {
  .planlist td,
  .planlist th {
    padding: 20px 10px;
  }
}
.planlist th {
  width: 25%;
  font-weight: 600;
  -moz-text-align-last: left;
       text-align-last: left;
  background: #f8f8f8;
}
@media screen and (min-width: 1024px) {
  .planlist th {
    width: 100%;
    display: block;
    border-bottom: none;
  }
}
@media screen and (min-width: 1024px) {
  .planlist td {
    width: 100%;
    display: block;
  }
}

/*-----------------------------------------------------
  よくあるご質問
-----------------------------------------------------*/
.faqlist dl {
  position: relative;
  margin: 0;
  padding: 30px;
  cursor: pointer;
  border: 1px solid #E5EBEF;
  border-radius: 20px;
  -webkit-transition: border-color 0.25s ease;
  transition: border-color 0.25s ease;
  background: #fff;
}
.faqlist dl:hover {
  border-color: #07a092;
}
.faqlist dl::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #07a092;
  border-right: 2px solid #07a092;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.faqlist dl.open::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.faqlist dl dt {
  position: relative;
  margin: 0;
  padding: 0 20px 0 30px;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #07a092;
}
.faqlist dl dt::before {
  content: "Q";
  position: absolute;
  top: -1px;
  left: 0;
  line-height: 1;
  font-size: 1.6rem;
  color: #07a092;
  font-family: "Roboto", sans-serif;
}
.faqlist dl dd {
  display: none;
  position: relative;
  margin: 0px 0 0;
  padding: 10px 0 0 30px;
  height: auto;
  border-radius: 5px;
  font-size: 1rem;
}

/*-----------------------------------------------------
  プライバシーポリシー
-----------------------------------------------------*/
.terms h2 {
  font-size: 2rem;
  margin-bottom: 4rem;
  font-weight: 600;
}
.terms h3 {
  font-size: 1.6rem;
  margin: 3rem 0 2rem 0;
}
.terms h4 {
  font-size: 1.6rem;
  margin: 3rem 0 2rem 0;
}
.terms p {
  margin: 1em 0;
}
.terms ul,
.terms ol {
  margin: 1rem 0 3rem 1em;
  padding: 0 0 0 1.5em;
  list-style: decimal;
}
.terms ul li,
.terms ol li {
  margin: 0 0 1em;
}

/*-----------------------------------------------------
  トップ
-----------------------------------------------------*/
.homevisual {
  position: relative;
  width: 100%;
  height: 680px;
  background-color: #e0ebdf;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .homevisual {
    height: 680px;
  }
}

.homevisual-copy {
  position: absolute;
  top: 180px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .homevisual-copy {
    top: 160px;
    text-align: left;
  }
}

.homevisual-lead,
.homevisual-btn {
  color: #07a092;
  font-weight: 600;
  font-size: 20px;
}

.homevisual-camera {
  position: absolute;
  top: -100px;
  left: calc(50% + 80px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .homevisual-camera {
    top: -100px;
    left: calc(50% + 160px);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

/* 自販機スライダー */
.vending-slider {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .vending-slider {
    width: 50vw;
    bottom: -60px;
  }
}
.vending-slider-list {
  -webkit-animation: mv-scroll-left 60s linear infinite;
          animation: mv-scroll-left 60s linear infinite;
}

@-webkit-keyframes mv-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes mv-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.homevisual::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(/images/homevisual_wave.png) no-repeat bottom center;
  background-size: 100% 100%;
  z-index: 0;
}

/* homeintroduce */
.homeintroduce-label {
  color: #07a092;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.homeintroduce-ttl {
  color: #07a092;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.homeintroduce-txt {
  font-size: 1.125rem;
  font-weight: 500;
}

/*-----------------------------------------------------
  お問い合わせフォーム
-----------------------------------------------------*/
.contactform {
  /* フォーム上部説明 */
  /* 入力欄 */
  /* セレクト */
  /* ラベル */
  /* プレースホルダー */
  /* 送信ボタンエリア */
}
.contactform-header {
  margin: 0 0 3rem 0;
}
.contactform .formitem {
  margin-bottom: 1rem;
}
.contactform legend {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.contactform legend .require {
  color: #fff;
  font-size: 9px;
  display: block;
  background: #ea0000;
  padding: 0.4em 1em;
  line-height: 1;
  border-radius: 999px;
}
.contactform input[type=text],
.contactform input[type=email],
.contactform input[type=tel],
.contactform textarea,
.contactform select {
  border: 1px solid #E5EBEF;
  margin: 0.5rem 0;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
}
.contactform select {
  padding: 0 15px;
  width: auto;
  min-height: 3.5rem;
  font-size: 1rem;
}
.contactform label {
  font-size: 1rem;
}
.contactform input::-webkit-input-placeholder, .contactform textarea::-webkit-input-placeholder {
  color: #bbb;
}
.contactform input::-moz-placeholder, .contactform textarea::-moz-placeholder {
  color: #bbb;
}
.contactform input:-ms-input-placeholder, .contactform textarea:-ms-input-placeholder {
  color: #bbb;
}
.contactform input::-ms-input-placeholder, .contactform textarea::-ms-input-placeholder {
  color: #bbb;
}
.contactform input::placeholder,
.contactform textarea::placeholder {
  color: #bbb;
}
.contactform-footer {
  clear: both;
  text-align: center;
  margin: 2rem 0 0 0;
}

/* ================================================
   フォーム送信ボタン専用：.btn-submit
   （.btnとは完全独立、hover時に色だけ変化）
================================================ */
.btn-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  display: inline-block;
  width: 100%;
  max-width: 380px;
  padding: 1.8rem 3.2rem;
  color: #fff;
  background-color: #07a092;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-submit:hover {
  background-color: rgb(5.5035928144, 125.7964071856, 114.7892215569);
}
.btn-submit:active {
  background-color: rgb(4.8622754491, 111.1377245509, 101.4131736527);
}
.btn-submit:disabled {
  background-color: #ccc;
  color: #fff;
  cursor: not-allowed;
}

/* 送信完了メッセージ */
form.sent .contactform-response-output {
  border: 1px solid #ccc;
  background: #f9f9f9;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}

/* 未入力時 hide */
form.sent .contactform-header,
form.sent .formitem,
form.sent .wpcf7-submit {
  display: none !important;
}

/* 未入力警告 */
input.wpcf7-not-valid,
textarea.wpcf7-not-valid {
  background: #fff0f0 !important;
  padding: 1em !important;
}

/* 未入力警告メッセージ */
.wpcf7-not-valid-tip {
  color: #ff565d !important;
  font-size: 12px !important;
}

/* エラーメッセージ */
.wpcf7-response-output {
  color: #ff565d !important;
  border: 1px solid #ff565d !important;
  background-color: #fff0f0;
  border-radius: 5px !important;
  font-size: 14px !important;
  padding: 1rem !important;
}
.wpcf7 .wpcf7-response-output.sent {
  color: #01ae2f !important;
  border: 1px solid #01ae2f !important;
  background-color: #e9feee;
}

/* ラジオボタン調節 */
.wpcf7-radio {
  margin: 0.5rem 0;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-list-item label {
  display: inline-block;
  background: #fff;
  border: 1px solid #E5EBEF;
  border-radius: 8px;
  padding: 0.8em 1em;
}

/* スピナー非表示 */
.wpcf7-spinner {
  display: none !important;
}/*# sourceMappingURL=style.css.map */