@charset "UTF-8";
:root {
  /* fonts */
  --font-main: "Zen Kaku Gothic New", sans-serif;
  --font-sub: "Shippori Mincho B1", serif;
  --font-en: "Poppins", sans-serif;
  /* colors */
  --color-main-100: #47a3b4;
  --color-main-200: #18523e;
  --color-main-300: #000;
  --color-main-400: #000;
  --color-main-500: #000;
  --color-grad-100: #44a1b6;
  --color-grad-100-rgb: 68 161 182;
  --color-grad-200: #75c78f;
  --color-grad-200-rgb: 117 199 143;
  --color-accent-100: #801500;
  --color-accent-200: #000;
  --color-txt-100: #3b3328;
  --color-txt-100-rgb: 59 51 40;
  --color-txt-200: #000;
  --color-txt-300: #000;
  --color-txt-400: #000;
  --color-border-100: #cbcbcb;
  --color-border-100-rgb: 203 203 203;
  --color-border-200: #70c493;
  --color-line-100: #06c755;
  --color-base-100: #000;
  --color-base-200: #000;
  --color-base-300: #000;
  --color-base-400: #000;
  --color-base-500: #000;
  --color-white: #ffffff;
  --color-white-rgb: 255 255 255;
  --color-black: #000000;
  --color-black-rgb: 0 0 0;
  /* font-weights */
  --font-thin: 100;
  --font-exlight: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-exbold: 800;
  --font-black: 900;
}
@media screen and (min-width: 768px) {
  :root {
    --cmn-pd-md: 100px;
    --ttl-mb-md: 50px;
    --ttl-mb-lg: 70px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --cmn-pd-md: 40px;
    --cmn-pd-lg: 80px;
    --ttl-mb-md: 40px;
    --ttl-mb-lg: 50px;
  }
}

/* display ------------------------------------------------- */
.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* flex-direction ------------------------------------------------- */
.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fd-row-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fd-col-rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* align-items ------------------------------------------------- */
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* justify-content ------------------------------------------------- */
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* text-align ------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

html {
  font-family: var(--font-main);
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.7;
}

iframe {
  border: none;
}

.logo a,
.logo img {
  display: block;
}

@media screen and (min-width: 768px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
  }
  .inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .inbox {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
  }
  .inbox,
  .inner {
    max-width: 768px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .sp-none {
    display: none !important;
  }
  .logo .logo-item {
    display: block;
    line-height: 1;
  }
}
/*==========================================
PC
===========================================*/
/*==========================================
SP
===========================================*/
.btn {
  display: block;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

.btn-white-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15em;
  width: 240px;
  padding: 15px 20px;
  background: var(--color-white);
  border-radius: 38px;
  border: 1px solid var(--color-border-200);
}
.btn-white-100::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 32/9;
  width: 20px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-main.png) no-repeat;
  background-size: contain;
}
.btn-white-100 .btn-cont {
  display: inline-block;
  background: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background: linear-gradient(270deg, #44a1b6 0%, #75c78f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-white-200 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.05em;
  width: 300px;
  padding: 15px 20px;
  background: var(--color-white);
  border-radius: 50px;
  border: 1px solid var(--color-border-200);
}
.btn-white-200::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 40/40;
  width: 30px;
  left: 42px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/line-icon.png) no-repeat;
  background-size: contain;
}
.btn-white-200 .btn-cont {
  display: inline-block;
  translate: 22px;
  background: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background: linear-gradient(270deg, #44a1b6 0%, #75c78f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-white-300 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  width: 220px;
  padding: 15px 20px;
  background: var(--color-white);
  border-radius: 38px;
  border: 1px solid var(--color-border-200);
}
.btn-white-300::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 13/10;
  width: 13px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/exlink-icon.png) no-repeat;
  background-size: contain;
}
.btn-white-300 .btn-cont {
  display: inline-block;
  background: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background: linear-gradient(270deg, #44a1b6 0%, #75c78f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-news-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1em;
  width: 125px;
  padding-bottom: 13px;
  padding-right: 42px;
  color: var(--color-txt-100);
  border-bottom: 1px solid rgb(var(--color-txt-100-rgb)/0.5);
}
.btn-news-100::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/18;
  width: 30px;
  right: 0;
  top: 0;
  background: url(/img/common/arw-bg-txt.png) no-repeat;
  background-size: contain;
}

.ttl, .top-troubles-ttl, .top-about-ttl, .top-service-ttl, .form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  font-family: var(--font-sub);
  color: var(--color-white);
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: var(--font-bold);
}

.ttl-sm, .reasons-ttl, .info-ttl, .shoulder-troubles-ttl, .shoulder-reasons-ttl, .shoulder-recommend-ttl span, .shoulder-recommend-subttl span, .back-troubles-ttl, .back-reasons-ttl, .back-recommend-ttl span, .back-recommend-subttl span, .leg-troubles-ttl, .leg-reasons-ttl, .leg-recommend-ttl span, .leg-recommend-subttl span, .cmn-price-ttl {
  font-family: var(--font-sub);
  color: var(--color-white);
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: var(--font-bold);
}

.ttl-xs, .top-news-ttl {
  font-family: var(--font-sub);
  color: var(--color-txt-100);
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: var(--font-bold);
}

.ttl-3xs, .cmn-contact-ttl .ttl-deco {
  font-family: var(--font-sub);
  color: var(--color-txt-100);
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: var(--font-bold);
}

.ttl-english, .top-troubles-ttl .ttl-sub, .top-service-ttl .ttl-sub, .ttl-english-xs, .form-ttl .ttl-sub,
.complete-ttl .ttl-sub,
.notfound-ttl .ttl-sub,
.privacy-ttl .ttl-sub,
.site-map-ttl .ttl-sub,
.news-ttl .ttl-sub, .ttl-english-sm, .cmn-contact-ttl .ttl-sub, .reasons-ttl .ttl-sub, .info-ttl .ttl-sub, .shoulder-troubles-ttl .ttl-sub, .shoulder-reasons-ttl .ttl-sub, .back-troubles-ttl .ttl-sub, .back-reasons-ttl .ttl-sub, .leg-troubles-ttl .ttl-sub, .leg-reasons-ttl .ttl-sub, .cmn-price-ttl .ttl-sub {
  font-family: var(--font-en);
  color: rgba(255, 255, 255, 0.1);
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-stretch: normal;
  font-style: italic;
}

.ttl-english-sm, .cmn-contact-ttl .ttl-sub, .reasons-ttl .ttl-sub, .info-ttl .ttl-sub, .shoulder-troubles-ttl .ttl-sub, .shoulder-reasons-ttl .ttl-sub, .back-troubles-ttl .ttl-sub, .back-reasons-ttl .ttl-sub, .leg-troubles-ttl .ttl-sub, .leg-reasons-ttl .ttl-sub, .cmn-price-ttl .ttl-sub {
  font-size: 60px;
}

.ttl-english-xs, .form-ttl .ttl-sub,
.complete-ttl .ttl-sub,
.notfound-ttl .ttl-sub,
.privacy-ttl .ttl-sub,
.site-map-ttl .ttl-sub,
.news-ttl .ttl-sub {
  font-size: 52px;
}

.ttl-english-lg, .top-about-ttl .ttl-sub {
  font-family: var(--font-en);
  color: rgba(255, 255, 255, 0.1);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-stretch: normal;
  font-style: italic;
}

.ttl-sv, .sv-ttl {
  font-family: var(--font-sub);
  font-size: 26px;
  line-height: 1;
  line-height: 1.88;
  letter-spacing: 0.05em;
  font-weight: var(--font-bold);
  color: var(--color-main-200);
}

.ttl-temp .ttl-en {
  text-transform: uppercase;
}

.sub-ttl, .top-service-subttl {
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  color: var(--color-white);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.sub-ttl-xs, .reasons-subttl, .shoulder-troubles-subttl, .shoulder-reasons-subttl, .back-troubles-subttl, .back-reasons-subttl, .leg-troubles-subttl, .leg-reasons-subttl {
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.txt, .top-about-txt, .txt-lh-200, .top-about .license-box .license {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 2.1111111111;
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-white);
}

.txt-lh-200, .top-about .license-box .license {
  line-height: 2.3333333333;
}

.txt-20, .top-service-txt, .shoulder-troubles-check, .shoulder-recommend-txt, .back-troubles-check, .back-recommend-txt, .leg-troubles-check, .leg-recommend-txt {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.7647058824;
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-white);
}

.txt-10, .reasons-txt, .info-header, .shoulder-troubles-txt, .shoulder-reasons-txt, .back-troubles-txt, .back-reasons-txt, .leg-reasons-txt, .cmn-price-check .check {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.875;
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-5, .info-data {
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 1.4666666667;
  letter-spacing: 0.1em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-200, .top-about .license-box p, .cmn-contact-txt {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-white);
}

.txt-lg, .top-about-txt.lh-lg h4 {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.7272727273;
  letter-spacing: 0.1em;
  font-weight: var(--font-medium);
  color: var(--color-white);
}

.txt-news-date, .top-news-item .date, .detail .date {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--color-txt-100);
}

.txt-news-tag, .top-news-item .tag, .detail .tag {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: var(--font-medium);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.txt-news-ttl, .top-news-item-ttl, .news .top-news-item-ttl {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.3333333333;
  font-weight: var(--font-medium);
  letter-spacing: 0.12em;
  color: var(--color-txt-100);
}

.txt-hd-nav {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
  font-weight: var(--font-medium);
}

.txt-ft-nav, .footer .nav-main, .txt-ft-nav-sm {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--color-txt-100);
  font-weight: var(--font-medium);
}

.txt-ft-nav-sm {
  font-size: 14px;
  line-height: 1;
}

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel, .tel-lg, .tel-white {
  font-family: var(--font-accent);
  font-size: 25px;
  font-weight: var(--font-normal);
  position: relative;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-100);
}
.tel-num {
  --icon-width: 20;
  --icon-height: 20;
  display: inline-block;
  display: block;
  line-height: 1;
  padding-left: 5px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-num::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  left: 0;
  top: calc(50% + 2px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

.tel-svg img {
  display: block;
}

.tel-white {
  font-size: 30px;
  color: var(--color-white);
}
.tel-white .tel-num {
  --icon-width: 20;
  --icon-height: 20;
  display: block;
  line-height: 1;
  padding-left: 10px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-white .tel-num::before {
  background: url(/img/common/tel-icon-accent.png) no-repeat;
  background-size: contain;
}

.tel-lg {
  font-size: 30px;
}
.tel-lg .tel-num {
  --icon-width: 20;
  --icon-height: 20;
  display: block;
  line-height: 1;
  padding-left: 10px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-lg .tel-num::before {
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

/*site-map ---------------------------------------------*/
.site-map {
  --color-site-map: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.site-map-list {
  font-size: 16px;
  color: var(--color-site-map);
}
.site-map-item {
  border-bottom: 1px solid var(--color-site-map);
  font-weight: var(--font-medium, 500);
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.site-map-item a {
  display: block;
  padding: 15px 0 15px 30px;
  position: relative;
  z-index: 1;
}
.site-map-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*404 ---------------------------------------------*/
.notfound {
  --color-notfound-txt: var(--color-txt-100);
  --color-notfound-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.privacy .ttl02 {
  font-size: 20px;
  font-family: var(--font-main);
  padding-bottom: 7px;
  margin-bottom: 12px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 50px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-400);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-400);
  --color-contact-th-txt: #fff;
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
  padding: var(--cmn-pd-md, 120px) 0;
}
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}
#contact table tr td {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  background: var(--color-contact-td-bg);
}
#contact table tr th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  width: 30%;
  color: var(--color-contact-th-txt);
  background: var(--color-contact-th-bg);
}
#contact table .required-mark {
  color: var(--color-contact-required-mark-txt);
  font-size: 13px;
  border-radius: 0;
  background: var(--color-contact-required-mark-bg);
}
#contact label[for=agree] a {
  color: var(--color-contact-main);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-contact-main);
}
#contact .contact-btn.contact-submits-wrap button[type=button],
#contact input[type=button],
#contact input[type=submit],
#contact button[type=button] {
  color: #fff;
  background: var(--color-contact-main);
  font-size: 16px;
  border: unset;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
#contact .contact-btn.contact-submits-wrap button[type=button]:hover,
#contact input[type=button]:hover,
#contact input[type=submit]:hover,
#contact button[type=button]:hover {
  opacity: 0.7;
}
#contact .contact-btn.contact-submits-wrap button[type=button][disabled],
#contact input[type=button][disabled],
#contact input[type=submit][disabled],
#contact button[type=button][disabled] {
  color: var(--color-contact-disabled-txt);
  background: var(--color-contact-disabled-bg);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    background: var(--color-contact-td-bg);
  }
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    width: 100%;
    color: var(--color-contact-th-txt);
    background: var(--color-contact-th-bg);
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--color-contact-required-mark-txt);
    font-size: 3.5vw;
    border-radius: 0;
    background: var(--color-contact-required-mark-bg);
  }
  #contact input[type=button],
  #contact input[type=submit],
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}

/*complete ---------------------------------------------*/
.complete {
  --color-complete-txt: var(--color-txt-100);
  --color-complete-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.complete-box {
  max-width: 80%;
  margin: 0 auto;
  text-align: left;
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-complete-txt);
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-complete-link);
  text-decoration: underline;
}

.pagenation {
  --color-pagenation-def-txt: var(--color-txt-100);
  --color-pagenation-border: var(--color-txt-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
  gap: 20px;
  font-size: 13px;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-pagenation-def-txt);
  line-height: 1;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  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;
}
.pagenation a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8.5px 0;
}
.pagenation .current::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-pagenation-border);
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-accent-100);
  --tag-change-border-radius: 3px;
  --tag-change-margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: var(--tag-change-margin-bottom);
}
.tag-change li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 14px;
  line-height: 1;
  letter-spacing: auto;
  border-radius: var(--tag-change-border-radius);
  color: var(--color-tag-change-def-txt);
  background: var(--color-tag-change-def-bg);
}
.tag-change li a {
  display: block;
  padding: 9px 16px;
}
.tag-change .current {
  color: var(--color-tag-change-current-txt);
  background: var(--color-tag-change-current-bg);
}
.tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  --color-page-btn-mt: 60px;
  --color-page-btn-pt: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--color-page-btn-mt);
  padding-top: var(--color-page-btn-pt);
  text-align: center;
  border-top: 1px solid var(--color-page-btn-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-btn .left,
.page-btn .mid,
.page-btn .right {
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--color-page-btn-txt);
  font-weight: var(--font-medium);
}
.page-btn .left {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-right: auto;
}
.page-btn .left a {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 22px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: scale(-1, 1) skew(30deg) translateY(-50%);
          transform: scale(-1, 1) skew(30deg) translateY(-50%);
}
.page-btn .right {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-left: auto;
}
.page-btn .right a {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 22px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: skew(30deg) translateY(-50%);
          transform: skew(30deg) translateY(-50%);
}
.page-btn .mid {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}

.news {
  --news-img-width: 25%;
  --news-margin-right: 15px;
}
.news .news-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
  width: var(--news-img-width);
  margin-right: var(--news-margin-right);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news .news-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news .top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail {
  --color-news-detail: var(--color-txt-100);
  --fontsize-news-detail: 20px;
  --font-weight-news-detail: var(--font-medium);
  --news-detail-margin-bottom: 12px;
}
.detail-ttl {
  font-size: var(--fontsize-news-detail);
  font-weight: var(--font-weight-news-detail);
  color: var(--color-news-detail);
  margin-bottom: var(--news-detail-margin-bottom);
  line-height: 1.5;
}

/*common ---------------------------------------------*/
.cmn-txt-mb {
  margin-bottom: 40px;
}

/*header ---------------------------------------------*/
.header {
  width: 100%;
  height: 75px;
  z-index: 10;
  overflow: clip;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  width: 140px;
  margin-left: 13px;
}

/*mv ---------------------------------------------*/
.mv {
  --mv-height: 640px;
  height: var(--mv-height);
  position: relative;
  z-index: 1;
  background: url(/img/top/mv-bg02.png) no-repeat left 40% center/cover;
  overflow-x: clip;
}
.mv::before {
  content: "";
  position: absolute;
  aspect-ratio: 1309/959;
  width: 460px;
  bottom: 10px;
  right: -10px;
  background: url(/img/top/mv-decos.png) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .mv::before {
    bottom: 100px;
    width: 520px;
  }
}
.mv-catch {
  position: absolute;
  z-index: 2;
  width: 88%;
  max-width: 330px;
  left: 0;
  top: 91px;
}
@media screen and (min-width: 600px) {
  .mv-catch {
    top: 201px;
    max-width: 400px;
  }
}

/*side-btn ---------------------------------------------*/
.side-btn-wrapper {
  z-index: 100;
  position: fixed;
  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: end;
      -ms-flex-align: end;
          align-items: end;
  right: 0;
  bottom: 30px;
  gap: 15px;
}
.side-btn-wrapper .to-sns {
  width: 40px;
}
.side-btn-wrapper .to-top {
  width: 45px;
}

/*top-troubles ---------------------------------------------*/
.top-troubles {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  background: url(/img/top/top-troubles-bg.png) no-repeat center center/cover;
}
.top-troubles-ttl {
  margin-bottom: var(--ttl-mb-md);
  position: relative;
  z-index: 1;
  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;
}
.top-troubles-ttl .ttl-sub {
  text-transform: uppercase;
  translate: 0 40px;
}
.top-troubles-ttl .ttl-deco {
  display: inline-block;
  white-space: pre-wrap;
  word-break: keep-all;
}
.top-troubles-ttl .ttl-deco .lg {
  font-size: 1.25em;
}
.top-troubles-body {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.top-troubles-list {
  width: 100%;
}
.top-troubles-item {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-troubles-item {
    --diameter-easing: 0.8;
  }
}
@media screen and (max-width: 567px) {
  .top-troubles-item {
    --diameter-easing: 0.6;
  }
}
@media screen and (max-width: 467px) {
  .top-troubles-item {
    --diameter-easing: 0.5;
  }
}
.top-troubles-item:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.7;
}
.top-troubles-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-troubles-item:nth-of-type(1) {
  width: 307px;
  width: calc(307px * var(--diameter-easing));
  top: 0;
  top: 2%;
  right: 0;
}
.top-troubles-item:nth-of-type(1) .top-troubles-box {
  right: 0;
  top: 0;
}
.top-troubles-item:nth-of-type(2) {
  width: 264px;
  width: calc(264px * var(--diameter-easing));
  left: 0;
  top: 146px;
  top: 13.9%;
}
.top-troubles-item:nth-of-type(2) .top-troubles-box {
  left: 0;
  top: 0;
}
.top-troubles-item:nth-of-type(3) {
  width: 319px;
  width: calc(319px * var(--diameter-easing));
  top: 28.4%;
  right: 0;
}
.top-troubles-item:nth-of-type(3) .top-troubles-box {
  right: 0;
  bottom: 0;
}
.top-troubles-item:nth-of-type(4) {
  width: 304px;
  width: calc(304px * var(--diameter-easing));
  left: 0;
  top: 439px;
  top: 46%;
}
.top-troubles-item:nth-of-type(4) .top-troubles-box {
  left: 0;
  bottom: 0;
}
.top-troubles-item:nth-of-type(5) {
  width: 323px;
  width: calc(323px * var(--diameter-easing));
  top: 571px;
  top: 61%;
  right: 0;
}
.top-troubles-item:nth-of-type(5) .top-troubles-box {
  right: 0;
  bottom: 0;
}
.top-troubles-box {
  display: block;
  position: absolute;
  z-index: -1;
  aspect-ratio: 100/100;
  width: calc(200px * var(--diameter-easing));
  border-radius: 50%;
  z-index: 2;
}
.top-troubles-img {
  width: 50%;
  margin: 0 auto;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/top/top-about-bg-deco.png) no-repeat left bottom 128px/contain, url(/img/top/top-about-bg01.png) no-repeat center center/cover;
}
.top-about-ttl {
  color: var(--color-txt-100);
  margin-bottom: var(--ttl-mb-md);
  position: relative;
  z-index: 1;
  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;
  text-align: center;
}
.top-about-ttl .ttl-sub {
  background: -webkit-gradient(linear, right top, left top, from(rgb(var(--color-grad-100-rgb)/0.2)), to(rgb(var(--color-grad-200-rgb)/0.2)));
  background: linear-gradient(270deg, rgb(var(--color-grad-100-rgb)/0.2) 0%, rgb(var(--color-grad-200-rgb)/0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  translate: 0px 30px;
}
.top-about-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.top-about-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 90px;
}
.top-about-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.top-about-item:nth-of-type(1) .top-about-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 259/576;
  width: 35%;
  max-width: 160px;
  right: 0;
  bottom: 0;
  translate: 10% 10%;
  background: url(/img/top/top-about-deco01.png) no-repeat;
  background-size: contain;
}
.top-about-item:nth-of-type(2) .top-about-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 333/485;
  width: 40%;
  max-width: 210px;
  left: 0;
  bottom: 0;
  translate: -20% 10%;
  background: url(/img/top/top-about-deco02.png) no-repeat;
  background-size: contain;
}
.top-about-txtarea {
  width: 100%;
  padding: 30px 30px;
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.top-about-txtarea02 {
  width: 100%;
  padding: 30px 30px;
  padding-top: 40px;
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
  margin-bottom: 20px;
}
.top-about-subttl {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 470px;
  width: 300px;
}
.top-about-txt.lh-lg {
  line-height: 2.3333333333;
  margin-bottom: 34px;
}
.top-about-txt.lh-lg h4 {
  font-family: var(--font-sub);
  line-height: 1;
  font-weight: var(--font-bold);
  text-align: right;
}
.top-about .btn-white-100 {
  margin-top: 30px;
}
.top-about-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}
.top-about-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about .license-box {
  width: 100%;
  background: var(--color-white);
}
.top-about .license-box p {
  line-height: 1;
  background: var(--color-txt-100);
  padding: 7px 27px 9px;
}
.top-about .license-box .license {
  line-height: 1;
  color: var(--color-txt-100);
  width: 100%;
}
.top-about .license-box .name {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 10px 27px 12px;
}
.top-about .license-box .name::before {
  content: "・";
  color: inherit;
  font-size: inherit;
}
.top-about .license-box .name:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% - 30px);
  height: 1px;
  left: 50%;
  bottom: 0;
  translate: -50%;
  background: var(--color-border-100);
}

/*top-service ---------------------------------------------*/
.top-service {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  background: url(/img/top/top-service-bg.png) no-repeat center center/cover;
  overflow-x: clip;
}
.top-service-ttl {
  color: var(--color-txt-100);
  margin-bottom: var(--ttl-mb-md);
  position: relative;
  z-index: 1;
  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;
}
.top-service-ttl .ttl-sub {
  background: -webkit-gradient(linear, right top, left top, from(rgb(var(--color-grad-100-rgb)/0.2)), to(rgb(var(--color-grad-200-rgb)/0.2)));
  background: linear-gradient(270deg, rgb(var(--color-grad-100-rgb)/0.2) 0%, rgb(var(--color-grad-200-rgb)/0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  translate: 0 24px;
}
.top-service-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.top-service-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 50px;
}
.top-service-item {
  width: 100%;
  padding: 40px 30px;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
  outline: 3px solid var(--color-white);
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-service-item:nth-of-type(1)::before {
  content: "";
  position: absolute;
  aspect-ratio: 479/664;
  width: 50%;
  max-width: 240px;
  right: 0;
  bottom: 0;
  translate: 10% -10%;
  background: url(/img/top/top-service-deco01.png) no-repeat;
  background-size: contain;
}
.top-service-item:nth-of-type(2)::before {
  content: "";
  position: absolute;
  aspect-ratio: 367/400;
  width: 40%;
  max-width: 240px;
  left: 0;
  bottom: 0;
  translate: -20% -10%;
  background: url(/img/top/top-service-deco02.png) no-repeat;
  background-size: contain;
}
.top-service-txtarea {
  width: 100%;
}
.top-service-subttl {
  width: 100%;
  padding-bottom: 24px;
  position: relative;
  z-index: 1;
}
.top-service-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 30px;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--color-white);
}
.top-service-txt {
  padding-top: 16px;
  margin-bottom: 20px;
}
.top-service-txt.txt-lh-lg {
  line-height: 2.0588235294;
}
.top-service-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-service-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-links ---------------------------------------------*/
.top-links {
  padding: var(--cmn-pd-md) 0;
  padding: 60px 0;
  background: url(/img/top/top-links-bg.png) no-repeat center center/cover;
  overflow: hidden;
}
.top-links-wrap {
  background: url(/img/top/top-links-base.png) no-repeat center center/cover;
  padding: 30px 20px;
}
.top-links-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-links-ttl {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  padding-bottom: 12px;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
}
.top-links-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: var(--font-medium);
  color: var(--color-white);
  padding-left: 32px;
  padding-bottom: 12px;
}
.top-links-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 45/45;
  width: 20px;
  left: 0;
  top: -1px;
  background: url(/img/common/instagram-icon.png) no-repeat;
  background-size: contain;
}
.top-links-ttl .ttl-deco .lg {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: italic;
}
.top-links-ttl .sm {
  display: inline-block;
  padding-top: 8px;
  padding-left: 0px;
  border-top: 1px solid rgb(var(--color-white-rgb)/0.4);
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: var(--font-medium);
  color: var(--color-white);
}
.top-links-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
  width: 100%;
  height: 200px;
}
.top-links-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

/*top-news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-lg) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
}
.top-news-wrap {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--color-white);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-news-heading {
  width: 100%;
  margin-bottom: var(--ttl-mb-md);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-news-ttl {
  color: var(--color-txt-100);
}
.top-news-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px 20px;
  margin-bottom: 52px;
}
.top-news-item {
  width: 100%;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 36px;
  border-bottom: 1px solid rgb(var(--color-txt-100-rgb)/0.5);
}
.top-news-item-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/18;
  width: 28px;
  right: 0;
  bottom: 8px;
  background: url(/img/common/arw-bg-txt.png) no-repeat;
  background-size: contain;
}
.top-news-item-img {
  margin-bottom: 16px;
  aspect-ratio: 320/212;
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.top-news-item .date {
  margin-bottom: 8px;
}
.top-news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 8px;
  gap: 7px;
}
.top-news-item .tag {
  padding: 4px 6px;
  text-align: center;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
}

/*cmn-contact ---------------------------------------------*/
.cmn-contact {
  padding: 125px 0px;
  padding: var(--cmn-pd-lg) 0;
  background: url(/img/top/cmn-contact-bg.png) no-repeat center center/cover;
  overflow: hidden;
}
.cmn-contact .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 10px 100px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, rgb(var(--color-white-rgb)/0.95) 0px, rgb(var(--color-white-rgb)/0.95) 80%, transparent 80%, transparent 100%);
}
.cmn-contact .inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 20%;
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: rgb(var(--color-white-rgb)/0.95);
}
.cmn-contact .inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 392/444;
  width: 40%;
  max-width: 240px;
  right: 0;
  bottom: 0;
  translate: 10% 20%;
  background: url(/img/top/cmn-contact-deco.png) no-repeat;
  background-size: contain;
}
.cmn-contact-ttl {
  color: var(--color-txt-100);
  margin-bottom: var(--ttl-mb-md);
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
  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;
}
.cmn-contact-ttl .ttl-sub {
  background: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background: linear-gradient(270deg, #44a1b6 0%, #75c78f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  translate: 0 10px;
}
.cmn-contact-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
  text-shadow: 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255), 0px 0px 12px rgb(255, 255, 255);
}
.cmn-contact-txt {
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: var(--color-txt-100);
  text-align: center;
  margin-bottom: 30px;
  word-break: keep-all;
}

/*footer ---------------------------------------------*/
.footer {
  padding: 56px 0;
  padding-bottom: 0px;
  background: url(/img/top/footer-bg.png) no-repeat left 70% center/cover;
  overflow-x: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
}
.footer-logo {
  width: 200px;
  margin-bottom: 36px;
}
.footer-side {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 28px;
}
.footer-address {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.375;
  letter-spacing: 0.12em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}
.footer-info {
  gap: 4px;
  margin-bottom: 24px;
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.375;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}
.footer-exlinks {
  gap: 24px;
}
.footer-exlinks .btn-md {
  width: 36px;
}
.footer-another {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.footer .copy-wrapper {
  width: 100%;
  text-align: center;
  background: rgb(var(--color-white-rgb)/0.5);
  padding: 7px 0;
}
.footer .copy {
  display: block;
  font-family: var(--font-main);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}
.footer .nav-main {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 20px 48px;
  margin-bottom: 48px;
}
.footer .nav-item a {
  display: block;
}

/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 200px;
  height: var(--sv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--color-white);
}
.sv-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background: url(/img/common/sv-bg-deco.png) no-repeat left 30% center/cover;
}
.sv-wrap::before {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 1043/473;
  width: 54%;
  right: 0px;
  bottom: 0px;
  translate: 4px;
  background: url(/img/common/sv-deco.png) no-repeat;
  background-size: contain;
}
.sv-img {
  position: absolute;
  z-index: -1;
  left: -20%;
  top: 0;
  width: 100%;
  height: 100%;
}
.sv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.sv-ttl {
  position: absolute;
  z-index: 1;
  top: calc(50% + 10px);
  left: 30px;
  translate: 0 -50%;
}
.sv .ttl-deco {
  display: inline-block;
  text-shadow: 0px 0px 24px rgb(255, 255, 255), 0px 0px 24px rgb(255, 255, 255), 0px 0px 24px rgb(255, 255, 255), 0px 0px 24px rgb(255, 255, 255);
}

/*==========================================
about
===========================================*/
/*reasons ---------------------------------------------*/
.reasons {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  overflow: clip;
  background: url(/img/about/reasons-bg.png) no-repeat center center/cover;
}
.reasons-ttl {
  margin-bottom: var(--ttl-mb-md);
  margin-bottom: 68px;
  position: relative;
  z-index: 1;
  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;
}
.reasons-ttl .ttl-sub {
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  translate: 0 20px;
}
.reasons-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.reasons-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.reasons-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 8px;
}
.reasons-item:nth-of-type(1) .reasons-txtarea::after {
  background: url(/img/common/num-01.png) no-repeat;
  background-size: contain;
}
.reasons-item:nth-of-type(2) .reasons-txtarea::after {
  background: url(/img/common/num-02.png) no-repeat;
  background-size: contain;
}
.reasons-item:nth-of-type(3) .reasons-txtarea::after {
  background: url(/img/common/num-03.png) no-repeat;
  background-size: contain;
}
.reasons-item:nth-of-type(4) .reasons-txtarea::after {
  background: url(/img/common/num-04.png) no-repeat;
  background-size: contain;
}
.reasons-txtarea {
  position: relative;
  z-index: 1;
  background: rgb(var(--color-white-rgb)/0.8);
  padding: 30px 30px;
}
.reasons-txtarea::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/60;
  width: 70px;
  top: 0;
  right: 8px;
  translate: 0 -50%;
}
.reasons-subttl {
  width: 100%;
  line-height: 1.5;
  margin-bottom: 16px;
  white-space: pre-wrap;
  word-break: keep-all;
}
.reasons-img {
  width: 100%;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.reasons-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*info ---------------------------------------------*/
.info {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  overflow: clip;
  position: relative;
  z-index: 1;
}
.info::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 969/815;
  width: 60%;
  max-width: 600px;
  left: 0;
  top: 0;
  background: url(/img/about/info-deco-l.png) no-repeat;
  background-size: contain;
}
.info-ttl {
  color: var(--color-txt-100);
  margin-bottom: var(--ttl-mb-md);
  position: relative;
  z-index: 1;
  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;
  text-align: center;
}
.info-ttl .ttl-sub {
  background: -webkit-gradient(linear, right top, left top, from(rgb(var(--color-grad-100-rgb)/0.2)), to(rgb(var(--color-grad-200-rgb)/0.2)));
  background: linear-gradient(270deg, rgb(var(--color-grad-100-rgb)/0.2) 0%, rgb(var(--color-grad-200-rgb)/0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  translate: 0px 20px;
}
.info-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.info .table-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.info-table {
  width: 100%;
}
.info-row {
  display: block;
  width: 100%;
  border: 1px solid rgb(var(--color-border-100-rgb)/0.5);
}
.info-row:not(:last-child) {
  margin-bottom: 8px;
}
.info-header {
  display: block;
  width: 100%;
  font-weight: var(--font-bold);
  color: var(--color-white);
  padding: 8.875px 20px;
  text-align: center;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
}
.info-data {
  display: block;
  width: 100%;
  padding: 13.2px 20px;
  background: var(--color-white);
  text-align: center;
}
.info iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: none;
}

/*==========================================
shoulder
===========================================*/
/*shoulder-troubles ---------------------------------------------*/
.shoulder-troubles {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  overflow: hidden;
  background: url(/img/shoulder/shoulder-troubles-bg.png) no-repeat center center/cover;
}
.shoulder-troubles-ttl {
  margin-bottom: var(--ttl-mb-md);
  position: relative;
  z-index: 1;
  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;
}
.shoulder-troubles-ttl .ttl-sub {
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  translate: 0 24px;
}
.shoulder-troubles-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.shoulder-troubles-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 44px;
}
.shoulder-troubles-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 8px;
}
.shoulder-troubles-txtarea {
  width: 100%;
  position: relative;
  z-index: 1;
  background: rgb(var(--color-white-rgb)/0.8);
  padding: 30px;
}
.shoulder-troubles-subttl {
  width: 100%;
  margin-bottom: 16px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shoulder-troubles-subttl::before {
  content: "";
  aspect-ratio: 12/12;
  width: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
  border-radius: 50%;
}
.shoulder-troubles-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60%;
  max-width: 300px;
  margin: 0 auto;
}
.shoulder-troubles-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shoulder-troubles-check {
  width: 100%;
  color: var(--color-txt-100);
}
.shoulder-troubles-check .check {
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--color-border-100);
  padding: 5.6470588235px 0;
  padding-left: 24px;
}
.shoulder-troubles-check .check:first-child {
  padding-top: none;
}
.shoulder-troubles-check .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 22/22;
  width: 16px;
  left: 0;
  top: 10px;
  background: url(/img/common/check.png) no-repeat;
  background-size: contain;
}
.shoulder-troubles-kinds {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 30px 30px 20px;
  background: rgb(var(--color-white-rgb)/0.8);
  margin-top: 64px;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5384615385;
  letter-spacing: 0.06em;
  letter-spacing: 0.12em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
  text-align: center;
}
.shoulder-troubles-kinds .fukidasi {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0px;
  width: 595px;
  width: 100%;
  max-width: 500px;
  translate: -50% -50%;
}

/*shoulder-reasons ---------------------------------------------*/
.shoulder-reasons {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.shoulder-reasons::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 969/815;
  width: 60%;
  max-width: 600px;
  left: 0;
  top: 0;
  background: url(/img/about/info-deco-l.png) no-repeat;
  background-size: contain;
}
.shoulder-reasons-ttl {
  color: var(--color-txt-100);
  margin-bottom: var(--ttl-mb-lg);
  position: relative;
  z-index: 1;
  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;
  text-align: center;
}
.shoulder-reasons-ttl .ttl-sub {
  background: -webkit-gradient(linear, right top, left top, from(rgb(var(--color-grad-100-rgb)/0.2)), to(rgb(var(--color-grad-200-rgb)/0.2)));
  background: linear-gradient(270deg, rgb(var(--color-grad-100-rgb)/0.2) 0%, rgb(var(--color-grad-200-rgb)/0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  translate: 0px 30px;
}
.shoulder-reasons-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.shoulder-reasons-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.shoulder-reasons-item {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 8px;
}
.shoulder-reasons-item:nth-of-type(odd) .shoulder-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 260/486;
  width: 36%;
  max-width: 220px;
  right: 0;
  bottom: 0;
  translate: 20% 10%;
  background: url(/img/shoulder/shoulder-reasons-deco01.png) no-repeat;
  background-size: contain;
}
.shoulder-reasons-item:nth-of-type(even) .shoulder-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 228/350;
  width: 36%;
  max-width: 200px;
  left: 0;
  bottom: 0;
  translate: -20% 10%;
  background: url(/img/shoulder/shoulder-reasons-deco02.png) no-repeat;
  background-size: contain;
}
.shoulder-reasons-txtarea {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 30px;
  background: var(--color-grad-100);
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
}
.shoulder-reasons-subttl {
  width: 100%;
  color: var(--color-white);
  margin-bottom: 16px;
}
.shoulder-reasons-txt {
  color: var(--color-white);
}
.shoulder-reasons-img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.shoulder-reasons-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*shoulder-recommend ---------------------------------------------*/
.shoulder-recommend {
  padding: var(--cmn-pd-lg) 0;
  background: url(/img/shoulder/recommend-bg.png) no-repeat center center/100% 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.shoulder-recommend::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 60%;
  height: 36px;
  left: 0;
  top: 0;
  left: 50%;
  translate: -50%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: var(--color-white);
}
.shoulder-recommend-ttl {
  background: var(--color-white);
  margin-bottom: 32px;
}
.shoulder-recommend-ttl span {
  display: block;
  font-size: 22px;
  padding: 13px 20px 15px;
  background: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background: linear-gradient(270deg, #44a1b6 0%, #75c78f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}
.shoulder-recommend-subttl {
  margin-bottom: 30px;
  white-space: pre-wrap;
  word-break: keep-all;
}
.shoulder-recommend-subttl span {
  display: block;
  color: var(--color-white);
  font-size: 18px;
  padding: 0 32px 0px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.shoulder-recommend-subttl span::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 34/35;
  width: 24px;
  left: 0;
  bottom: 0;
  background: url(/img/common/recommend-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.shoulder-recommend-subttl span::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 34/35;
  width: 24px;
  right: 0;
  bottom: 0;
  background: url(/img/common/recommend-ttl-deco-r.png) no-repeat;
  background-size: contain;
}
.shoulder-recommend-txt {
  line-height: 2.1176470588;
  color: var(--color-txt-100);
  width: 100%;
  background: rgb(var(--color-white-rgb)/0.8);
  padding: 30px;
  text-align: left;
}

/*==========================================
back
===========================================*/
/*back-troubles ---------------------------------------------*/
.back-troubles {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  overflow: hidden;
  background: url(/img/shoulder/shoulder-troubles-bg.png) no-repeat center center/cover;
  background: url(/img/back/back-troubles-bg.png) no-repeat left 60% center/cover;
}
.back-troubles-ttl {
  margin-bottom: var(--ttl-mb-md);
  position: relative;
  z-index: 1;
  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;
}
.back-troubles-ttl .ttl-sub {
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  translate: 0 24px;
}
.back-troubles-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.back-troubles-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 44px;
}
.back-troubles-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 8px;
}
.back-troubles-txtarea {
  width: 100%;
  position: relative;
  z-index: 1;
  background: rgb(var(--color-white-rgb)/0.8);
  padding: 30px;
}
.back-troubles-subttl {
  width: 100%;
  margin-bottom: 16px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.back-troubles-subttl::before {
  content: "";
  aspect-ratio: 12/12;
  width: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
  border-radius: 50%;
}
.back-troubles-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60%;
  max-width: 300px;
  margin: 0 auto;
}
.back-troubles-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.back-troubles-check {
  width: 100%;
  color: var(--color-txt-100);
}
.back-troubles-check .check {
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--color-border-100);
  padding: 5.6470588235px 0;
  padding-left: 24px;
}
.back-troubles-check .check:first-child {
  padding-top: none;
}
.back-troubles-check .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 22/22;
  width: 16px;
  left: 0;
  top: 10px;
  background: url(/img/common/check.png) no-repeat;
  background-size: contain;
}
.back-troubles-kinds {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 30px 30px 20px;
  background: rgb(var(--color-white-rgb)/0.8);
  margin-top: 64px;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5384615385;
  letter-spacing: 0.06em;
  letter-spacing: 0.12em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
  text-align: center;
}
.back-troubles-kinds .fukidasi {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0px;
  width: 595px;
  width: 100%;
  max-width: 500px;
  translate: -50% -50%;
}
.back-troubles-item:nth-of-type(1) .back-troubles-img {
  width: 40%;
}

/*back-reasons ---------------------------------------------*/
.back-reasons {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.back-reasons::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 969/815;
  width: 60%;
  max-width: 600px;
  left: 0;
  top: 0;
  background: url(/img/about/info-deco-l.png) no-repeat;
  background-size: contain;
}
.back-reasons-ttl {
  color: var(--color-txt-100);
  margin-bottom: var(--ttl-mb-lg);
  position: relative;
  z-index: 1;
  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;
  text-align: center;
}
.back-reasons-ttl .ttl-sub {
  background: -webkit-gradient(linear, right top, left top, from(rgb(var(--color-grad-100-rgb)/0.2)), to(rgb(var(--color-grad-200-rgb)/0.2)));
  background: linear-gradient(270deg, rgb(var(--color-grad-100-rgb)/0.2) 0%, rgb(var(--color-grad-200-rgb)/0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  translate: 0px 30px;
}
.back-reasons-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.back-reasons-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.back-reasons-item {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 8px;
}
.back-reasons-item:nth-of-type(odd) .shoulder-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 260/486;
  width: 36%;
  max-width: 220px;
  right: 0;
  bottom: 0;
  translate: 20% 10%;
  background: url(/img/shoulder/shoulder-reasons-deco01.png) no-repeat;
  background-size: contain;
}
.back-reasons-item:nth-of-type(even) .shoulder-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 228/350;
  width: 36%;
  max-width: 200px;
  left: 0;
  bottom: 0;
  translate: -20% 10%;
  background: url(/img/shoulder/shoulder-reasons-deco02.png) no-repeat;
  background-size: contain;
}
.back-reasons-txtarea {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 30px;
  background: var(--color-grad-100);
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
}
.back-reasons-subttl {
  width: 100%;
  color: var(--color-white);
  margin-bottom: 16px;
}
.back-reasons-txt {
  color: var(--color-white);
}
.back-reasons-img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.back-reasons-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.back-reasons-item:nth-of-type(odd) .back-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 285/403;
  width: 40%;
  max-width: 240px;
  right: 0;
  bottom: 0;
  translate: 20% 10%;
  background: url(/img/back/back-reasons-deco01.png) no-repeat;
  background-size: contain;
}
.back-reasons-item:nth-of-type(even) .back-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 219/464;
  width: 36%;
  max-width: 180px;
  left: 0;
  bottom: 0;
  translate: -20% 10%;
  background: url(/img/back/back-reasons-deco02.png) no-repeat;
  background-size: contain;
}

/*back-recommend ---------------------------------------------*/
.back-recommend {
  padding: var(--cmn-pd-lg) 0;
  background: url(/img/shoulder/recommend-bg.png) no-repeat center center/100% 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0;
}
.back-recommend::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 60%;
  height: 36px;
  left: 0;
  top: 0;
  left: 50%;
  translate: -50%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: var(--color-white);
}
.back-recommend-ttl {
  background: var(--color-white);
  margin-bottom: 32px;
}
.back-recommend-ttl span {
  display: block;
  font-size: 22px;
  padding: 13px 20px 15px;
  background: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background: linear-gradient(270deg, #44a1b6 0%, #75c78f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}
.back-recommend-subttl {
  margin-bottom: 30px;
  white-space: pre-wrap;
  word-break: keep-all;
}
.back-recommend-subttl span {
  display: block;
  color: var(--color-white);
  font-size: 18px;
  padding: 0 32px 0px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.back-recommend-subttl span::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 34/35;
  width: 24px;
  left: 0;
  bottom: 0;
  background: url(/img/common/recommend-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.back-recommend-subttl span::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 34/35;
  width: 24px;
  right: 0;
  bottom: 0;
  background: url(/img/common/recommend-ttl-deco-r.png) no-repeat;
  background-size: contain;
}
.back-recommend-txt {
  line-height: 2.1176470588;
  color: var(--color-txt-100);
  width: 100%;
  background: rgb(var(--color-white-rgb)/0.8);
  padding: 30px;
  text-align: left;
}

/*==========================================
leg
===========================================*/
/*leg-troubles ---------------------------------------------*/
.leg-troubles {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  overflow: hidden;
  background: url(/img/leg/leg-troubles-bg.png) no-repeat left 70% center/cover;
}
.leg-troubles-ttl {
  margin-bottom: var(--ttl-mb-md);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  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;
}
.leg-troubles-ttl .ttl-sub {
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  translate: 0 24px;
}
.leg-troubles-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.leg-troubles-body {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background: rgb(var(--color-white-rgb)/0.8);
  position: relative;
  z-index: 1;
}
.leg-troubles-box {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.leg-troubles-img {
  position: absolute;
  z-index: -1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44%;
  max-width: 240px;
  right: 0;
  bottom: -20%;
}
.leg-troubles-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.leg-troubles-list {
  width: 100%;
  gap: 10px;
}
.leg-troubles-subttl {
  width: 100%;
  margin-left: auto;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.leg-troubles-subttl::before {
  content: "";
  aspect-ratio: 12/12;
  width: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
  border-radius: 50%;
}
.leg-troubles-check {
  width: 100%;
  color: var(--color-txt-100);
}
.leg-troubles-check .check {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.leg-troubles-check .check .cont {
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--color-border-100);
  padding: 5.6470588235px 0;
  padding-left: 24px;
}
.leg-troubles-check .check .cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 22/22;
  width: 16px;
  left: 0;
  top: 10px;
  background: url(/img/common/check.png) no-repeat;
  background-size: contain;
}
.leg-troubles-check .check:first-child {
  padding-top: none;
}
.leg-troubles-kinds {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  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;
  position: relative;
  gap: 5px;
  z-index: 1;
  margin-top: 43px;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5384615385;
  letter-spacing: 0.06em;
  letter-spacing: 0.12em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

/*leg-reasons ---------------------------------------------*/
.leg-reasons {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.leg-reasons::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 969/815;
  width: 60%;
  max-width: 600px;
  left: 0;
  top: 0;
  background: url(/img/about/info-deco-l.png) no-repeat;
  background-size: contain;
}
.leg-reasons-ttl {
  color: var(--color-txt-100);
  margin-bottom: var(--ttl-mb-lg);
  position: relative;
  z-index: 1;
  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;
  text-align: center;
}
.leg-reasons-ttl .ttl-sub {
  background: -webkit-gradient(linear, right top, left top, from(rgb(var(--color-grad-100-rgb)/0.2)), to(rgb(var(--color-grad-200-rgb)/0.2)));
  background: linear-gradient(270deg, rgb(var(--color-grad-100-rgb)/0.2) 0%, rgb(var(--color-grad-200-rgb)/0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  translate: 0px 30px;
}
.leg-reasons-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.leg-reasons-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.leg-reasons-item {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 8px;
}
.leg-reasons-item:nth-of-type(odd) .shoulder-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 260/486;
  width: 36%;
  max-width: 220px;
  right: 0;
  bottom: 0;
  translate: 20% 10%;
  background: url(/img/shoulder/shoulder-reasons-deco01.png) no-repeat;
  background-size: contain;
}
.leg-reasons-item:nth-of-type(even) .shoulder-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 228/350;
  width: 36%;
  max-width: 200px;
  left: 0;
  bottom: 0;
  translate: -20% 10%;
  background: url(/img/shoulder/shoulder-reasons-deco02.png) no-repeat;
  background-size: contain;
}
.leg-reasons-txtarea {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 30px;
  background: var(--color-grad-100);
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
}
.leg-reasons-subttl {
  width: 100%;
  color: var(--color-white);
  margin-bottom: 16px;
}
.leg-reasons-txt {
  color: var(--color-white);
}
.leg-reasons-img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.leg-reasons-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.leg-reasons-item:nth-of-type(odd) .leg-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 290/421;
  width: 46%;
  max-width: 240px;
  right: 0;
  bottom: 0;
  translate: 20% 10%;
  background: url(/img/leg/leg-reasons-deco01.png) no-repeat;
  background-size: contain;
}
.leg-reasons-item:nth-of-type(even) .leg-reasons-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 267/417;
  width: 36%;
  max-width: 220px;
  left: -93px;
  bottom: -92px;
  left: 0;
  bottom: 0;
  translate: -20% 10%;
  background: url(/img/leg/leg-reasons-deco02.png) no-repeat;
  background-size: contain;
}
.leg-reasons-subttl {
  line-height: 1.3333333333;
  white-space: pre-wrap;
  word-break: keep-all;
}

/*leg-recommend ---------------------------------------------*/
.leg-recommend {
  padding: var(--cmn-pd-lg) 0;
  background: url(/img/shoulder/recommend-bg.png) no-repeat center center/100% 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 60px;
}
.leg-recommend::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 60%;
  height: 36px;
  left: 0;
  top: 0;
  left: 50%;
  translate: -50%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: var(--color-white);
}
.leg-recommend-ttl {
  background: var(--color-white);
  margin-bottom: 32px;
}
.leg-recommend-ttl span {
  display: block;
  font-size: 22px;
  padding: 13px 20px 15px;
  background: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background: linear-gradient(270deg, #44a1b6 0%, #75c78f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}
.leg-recommend-subttl {
  margin-bottom: 30px;
  white-space: pre-wrap;
  word-break: keep-all;
}
.leg-recommend-subttl span {
  display: block;
  color: var(--color-white);
  font-size: 18px;
  padding: 0 32px 0px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.leg-recommend-subttl span::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 34/35;
  width: 24px;
  left: 0;
  bottom: 0;
  background: url(/img/common/recommend-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.leg-recommend-subttl span::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 34/35;
  width: 24px;
  right: 0;
  bottom: 0;
  background: url(/img/common/recommend-ttl-deco-r.png) no-repeat;
  background-size: contain;
}
.leg-recommend-txt {
  line-height: 2.1176470588;
  color: var(--color-txt-100);
  width: 100%;
  background: rgb(var(--color-white-rgb)/0.8);
  padding: 30px;
  text-align: left;
}

/*cmn-price ---------------------------------------------*/
.cmn-price {
  padding-bottom: var(--cmn-pd-lg);
}
.cmn-price-ttl {
  color: var(--color-txt-100);
  margin-bottom: var(--ttl-mb-md);
  position: relative;
  z-index: 1;
  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;
  text-align: center;
}
.cmn-price-ttl .ttl-sub {
  background: -webkit-gradient(linear, right top, left top, from(rgb(var(--color-grad-100-rgb)/0.2)), to(rgb(var(--color-grad-200-rgb)/0.2)));
  background: linear-gradient(270deg, rgb(var(--color-grad-100-rgb)/0.2) 0%, rgb(var(--color-grad-200-rgb)/0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  translate: 0px 30px;
}
.cmn-price-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}
.cmn-price-list {
  width: 100%;
  position: relative;
  z-index: 1;
}
.cmn-price-item {
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-grad-100);
  padding: 12px 20px;
}
.cmn-price-check {
  width: 100%;
}
.cmn-price-check .check {
  width: 100%;
  line-height: 1.5625;
  padding: 21.84375px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.cmn-price-check .check:not(:last-child) {
  border-bottom: 1px solid rgb(var(--color-border-100-rgb)/0.5);
}
.cmn-price-check .check .check-name {
  width: 100%;
}
.cmn-price-check .check .check-cont {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}

/*==========================================
news
===========================================*/
/*detail ---------------------------------------------*/
.detail .meta {
  margin-bottom: 50px;
}
.detail .date {
  line-height: 24px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
}
.detail .tag {
  padding: 4.5px 9px;
  text-align: center;
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
}

/*==========================================
drawer
===========================================*/
.drawer #nav {
  margin-bottom: 44px;
}
.drawer-detail {
  font-size: 14px;
  line-height: 1.375;
  letter-spacing: 0.12em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
  gap: 16px;
  margin-bottom: 40px;
}
.drawer-time {
  gap: 4px;
}
.drawer-links {
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.drawer .sns-links {
  gap: 30px;
}
.drawer .sns-links .btn-md {
  width: 40px;
}

.form,
.complete,
.notfound,
.privacy,
.site-map,
.news,
.detail {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
}

.form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  color: var(--color-txt-100);
  margin-bottom: var(--ttl-mb-lg);
  position: relative;
  z-index: 1;
  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;
  text-align: center;
}
.form-ttl .ttl-sub,
.complete-ttl .ttl-sub,
.notfound-ttl .ttl-sub,
.privacy-ttl .ttl-sub,
.site-map-ttl .ttl-sub,
.news-ttl .ttl-sub {
  background: -webkit-gradient(linear, right top, left top, from(rgb(var(--color-grad-100-rgb)/0.2)), to(rgb(var(--color-grad-200-rgb)/0.2)));
  background: linear-gradient(270deg, rgb(var(--color-grad-100-rgb)/0.2) 0%, rgb(var(--color-grad-200-rgb)/0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  translate: 0px 24px;
}
.form-ttl .ttl-deco,
.complete-ttl .ttl-deco,
.notfound-ttl .ttl-deco,
.privacy-ttl .ttl-deco,
.site-map-ttl .ttl-deco,
.news-ttl .ttl-deco {
  display: inline-block;
  z-index: 2;
}

#contact {
  --color-contact-main: var(--color-main-100);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-accent-100);
  --color-contact-th-bg: var(--color-grad-100);
  --color-contact-th-txt: var(--color-white);
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-accent-100);
  --tag-change-border-radius: 0px;
  --tag-change-margin-bottom: 40px;
}
.tag-change .current {
  color: var(--color-tag-change-current-txt);
  background-image: -webkit-gradient(linear, right top, left top, from(#44a1b6), to(#75c78f));
  background-image: linear-gradient(270deg, #44a1b6, #75c78f);
}

.bread-clumb {
  --bread-clumb-height: 60px;
  --color-bread-clumb: var(--color-white);
  --color-bread-clumb-current: var(--color-white);
}