@charset "UTF-8";
/*
 *
 * common.scss
 *
 */
@import url("reset.css");
/*
 *
 * _media_query.scss
 *
 */
/* ------------------------------------------------------------
 ブレイクポイント
------------------------------------------------------------ */
/* ------------------------------------------------------------
 スマートフォン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ホバーエフェクト
------------------------------------------------------------ */
/*
 *
 * _variables.scss
 *
 */
/* ------------------------------------------------------------
 変数設定
------------------------------------------------------------ */
/* ------------------------------------------------------------
 テーマカラー
------------------------------------------------------------ */
/* ------------------------------------------------------------
 背景色
------------------------------------------------------------ */
/* ------------------------------------------------------------
 テキスト
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ボタン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ボーダー
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ヘッダー
------------------------------------------------------------ */
/* ------------------------------------------------------------
 フッター
------------------------------------------------------------ */
/* ------------------------------------------------------------
 セクション
------------------------------------------------------------ */
/* ------------------------------------------------------------
 カード
------------------------------------------------------------ */
/* ------------------------------------------------------------
 テーブル
------------------------------------------------------------ */
/* ------------------------------------------------------------
 メインビジュアル
------------------------------------------------------------ */
/* ------------------------------------------------------------
 CTAバナー
------------------------------------------------------------ */
/* ------------------------------------------------------------
 Webフォント
------------------------------------------------------------ */
@font-face {
  font-family: 'Noto Sans JP';
  src: url("../font/NotoSansJP-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}

/*
 *
 * _buttons.scss
 *
 */
/* ------------------------------------------------------------
 link-button
------------------------------------------------------------ */
.link-button {
  border-radius: 30px;
  height: 40px;
  padding: 0 24px;
  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;
  color: #ffffff;
  background-color: #4D4E4F;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.link-button:after {
  content: "";
  background-image: url(../img/icon/arrow-right_white.png);
  height: 20px;
  width: 20px;
  margin-left: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media (min-width: 751px) {
  .link-button:hover {
    opacity: 0.3;
    -webkit-transition-duration: .2s;
            transition-duration: .2s;
  }
}

/* ------------------------------------------------------------
 【共通】cta-button, contact-button
------------------------------------------------------------ */
.cta-button,
.contact-button {
  border-radius: 30px;
  height: 40px;
  padding: 0 24px;
  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;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.cta-button:before,
.contact-button:before {
  content: "";
  height: 24px;
  width: 24px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media (min-width: 751px) {
  .cta-button:hover,
  .contact-button:hover {
    opacity: 0.3;
    -webkit-transition-duration: .2s;
            transition-duration: .2s;
  }
}

/* ------------------------------------------------------------
 cta-button
------------------------------------------------------------ */
.cta-button {
  background-color: #DF3481;
}

.cta-button:before {
  background-image: url(../img/icon/music-note_white.png);
}

/* ------------------------------------------------------------
 contact-button
------------------------------------------------------------ */
.contact-button {
  background-color: #29ADF8;
}

.contact-button:before {
  background-image: url(../img/icon/mail_white.png);
}

/* ------------------------------------------------------------
 tel-button
------------------------------------------------------------ */
.tel-button img {
  -webkit-backface-visibility: hidden;
}

/*
 *
 * _cards.scss
 *
 */
/* ------------------------------------------------------------
 cards
------------------------------------------------------------ */
.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 1000px;
  width: 100%;
}

@media (max-width: 750px) {
  .cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.card {
  display: block;
  width: 100%;
  max-width: calc((100% - 72px) / 4);
  text-decoration: none;
}

@media (max-width: 750px) {
  .card {
    max-width: calc((100% - 16px) / 2);
    margin-top: 24px;
  }
}

.card:nth-of-type(1),
.card:nth-of-type(2) {
  margin-top: 0;
}

.card + .card {
  margin-left: 24px;
}

@media (max-width: 750px) {
  .card + .card {
    margin-left: 0;
  }
}

@media (max-width: 750px) {
  .card:nth-of-type(odd) {
    margin-right: 16px;
  }
}

.card-image {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  -webkit-backface-visibility: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.card-text {
  color: #242424;
  text-align: justify;
  margin-top: 8px;
}

.card-text__time {
  color: #8E8989;
  font-size: 12px;
}

.card-text__title {
  margin-top: 8px;
  font-size: 14px;
  color: #242424;
  line-height: 1.8;
}

.card-text__more {
  margin-top: 8px;
  font-size: 14px;
  text-decoration: underline;
  text-align: center;
  color: #242424;
}

@media (max-width: 750px) {
  .card-text__more {
    text-align: left;
  }
}

@media (min-width: 751px) {
  .card:hover {
    opacity: 0.3;
    -webkit-transition-duration: .2s;
            transition-duration: .2s;
  }
  .card:hover .card-text__more {
    text-decoration: none;
  }
}

/*
 *
 * _title.scss
 *
 */
/* ------------------------------------------------------------
 section-title
------------------------------------------------------------ */
.section-title {
  font-size: 38px;
  font-weight: 500;
  text-align: center;
  color: #444243;
}

@media (max-width: 750px) {
  .section-title {
    font-size: 32px;
  }
}

.section-subtitle {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
  display: block;
  color: #444243;
}

@media (max-width: 750px) {
  .section-subtitle {
    font-size: 14px;
  }
}

/*
 *
 * _header.scss
 *
 */
/* ------------------------------------------------------------
 header
------------------------------------------------------------ */
.header {
  width: 100%;
  height: 120px;
  background: #fff;
}

@media (max-width: 750px) {
  .header {
    height: 80px;
    padding: 0 24px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
}

body.is-fixed .header {
  z-index: 1;
}

.header-inner {
  width: 100%;
  max-width: 1120px;
  height: 100%;
  margin: auto;
  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;
}

@media (max-width: 750px) {
  .header-inner {
    padding: 10px 0;
  }
}

.header-logo {
  width: 184px;
}

@media (max-width: 750px) {
  .header-logo {
    width: 148px;
    height: 60px;
  }
}

.header-logo a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
}

.header-logo a img {
  width: 100%;
  height: 100%;
}

@media (min-width: 751px) {
  .header-logo a:hover {
    opacity: 0.3;
    -webkit-transition-duration: .2s;
            transition-duration: .2s;
  }
}

.header-nav {
  width: 100%;
  max-width: 908px;
  height: 100%;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 750px) {
  .header-nav {
    display: none;
  }
}

.header-text {
  font-weight: normal;
  font-size: 12px;
  color: #242424;
}

.header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-buttons .tel-button {
  height: 40px;
  -webkit-backface-visibility: hidden;
}

.header-buttons .tel-button,
.header-buttons .cta-button {
  margin-right: 16px;
}

.header-gnav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.header-gnav .header-gnav__item {
  margin-right: 48px;
}

.header-gnav .header-gnav__item a {
  color: #242424;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  position: relative;
}

.header-gnav .header-gnav__item.is-current-page a::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #DF3481;
}

.header-gnav .header-gnav__item:hover a::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #DF3481;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.header-burger-toggle {
  display: none;
}

@media (max-width: 750px) {
  .header-burger-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    -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;
    cursor: pointer;
  }
}

.header-burger-toggle .header-burger-toggle__line {
  width: 32px;
  height: 3px;
  background-color: #242424;
}

.header-burger-toggle .header-burger-toggle__line + .header-burger-toggle__line {
  margin-top: 6px;
}

.header-burger-toggle .header-burger-toggle__text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #242424;
  margin-top: 6px;
  line-height: 1;
}

.burger-menu {
  display: none;
}

@media (max-width: 750px) {
  .burger-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    -webkit-transition-duration: .2s;
            transition-duration: .2s;
  }
  .burger-menu.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}

.burger-menu__inner {
  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;
}

.burger-menu__header {
  width: 100%;
  height: 80px;
  padding: 0 24px;
  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;
}

.burger-menu__logo {
  width: 148px;
  height: 60px;
}

.burger-menu__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.burger-menu__logo a img {
  width: 100%;
  height: 100%;
}

.burger-menu__toggle {
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer;
  position: relative;
}

.burger-menu__toggle .burger-menu__toggle__line {
  display: block;
  width: 32px;
  height: 3px;
  background-color: #242424;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.burger-menu__toggle .burger-menu__toggle__line:nth-of-type(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.burger-menu__toggle .burger-menu__toggle__line:nth-of-type(2) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.burger-menu__toggle .burger-menu__toggle__text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #242424;
  margin-top: 6px;
  line-height: 1;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.burger-menu__gnav {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.burger-menu__gnav .burger-menu__gnav__item a {
  color: #242424;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  padding: 24px 24px;
  position: relative;
  border-top: 1px solid #f2f2f2;
}

.burger-menu__gnav .burger-menu__gnav__item:last-of-type a {
  border-bottom: 1px solid #f2f2f2;
}

.burger-menu__footer {
  padding: 56px 24px;
  width: 100%;
}

.burger-menu__buttons {
  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;
}

.burger-menu__buttons .cta-button {
  width: 100%;
}

.burger-menu__buttons .contact-button {
  width: 100%;
  margin-top: 24px;
}

.burger-menu__tel {
  margin-top: 24px;
  text-align: center;
  color: #242424;
}

.burger-menu__tel-text {
  font-size: 14px;
  font-weight: 500;
}

.burger-menu__tel-number {
  margin-top: 24px;
  padding: 8px 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  background-color: #DF3481;
  color: #fff;
  width: 100%;
  border-radius: 30px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.burger-menu__tel-time {
  font-size: 14px;
  margin-top: 8px;
}

/*
 *
 * _footer.scss
 *
 */
/* ------------------------------------------------------------
 footer
------------------------------------------------------------ */
.footer {
  width: 100%;
  padding: 24px 0;
  background-color: #eaeaea;
}

@media (max-width: 750px) {
  .footer {
    position: relative;
    padding: 104px 24px 32px;
  }
}

.footer-inner {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: auto;
}

.footer-gnav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}

@media (max-width: 750px) {
  .footer-gnav {
    display: none;
  }
}

.footer-gnav .footer-gnav__item {
  margin-right: 48px;
}

.footer-gnav .footer-gnav__item a {
  color: #242424;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  position: relative;
}

.footer-gnav .footer-gnav__item:hover a {
  opacity: 0.3;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.footer-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}

@media (max-width: 750px) {
  .footer-buttons {
    -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;
    margin-top: 0;
  }
}

@media (max-width: 750px) {
  .footer-buttons .cta-button {
    width: 100%;
  }
}

.footer-buttons .contact-button {
  margin-right: 24px;
}

@media (max-width: 750px) {
  .footer-buttons .contact-button {
    margin-right: 0;
    margin-top: 16px;
    width: 100%;
  }
}

.footer-bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 750px) {
  .footer-bottom {
    margin-top: 16px;
  }
}

.footer-text-link {
  font-size: 14px;
  text-decoration: none;
  color: #242424;
}

@media (min-width: 751px) {
  .footer-text-link:hover {
    text-decoration: underline;
    -webkit-transition-duration: .2s;
            transition-duration: .2s;
  }
}

@media (max-width: 750px) {
  .footer-text-link {
    display: none;
  }
}

.footer-copyright {
  font-size: 14px;
  color: #242424;
}

@media (max-width: 750px) {
  .footer-copyright {
    font-size: 12px;
    text-align: center;
    width: 100%;
  }
}

.footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
}

@media (max-width: 750px) {
  .footer-sns {
    position: absolute;
    top: 32px;
    right: 40px;
    padding: 0;
  }
}

.footer-sns .footer-sns__item {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 750px) {
  .footer-sns .footer-sns__item {
    width: 44px;
    height: 44px;
  }
}

.footer-sns .footer-sns__item img {
  width: 100%;
  height: 100%;
}

@media (min-width: 751px) {
  .footer-sns .footer-sns__item:hover {
    opacity: 0.3;
    -webkit-transition-duration: .2s;
            transition-duration: .2s;
  }
}

.footer-sns .footer-sns__item + .footer-sns__item {
  margin-left: 16px;
}

/*
*
* _main-visual.scss
*
*/
/* ------------------------------------------------------------
【TOPページ】main-visual
------------------------------------------------------------ */
body.home .main-visual {
  position: relative;
  width: 100%;
}

body.home .main-visual__text {
  position: absolute;
  max-width: 1000px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 56px;
  bottom: 0;
}

@media (max-width: 750px) {
  body.home .main-visual__text {
    top: 80px;
    padding: 40px 32px 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;
  }
}

body.home .main-visual__title,
body.home .main-visual__subtitle,
body.home .main-visual__place {
  max-width: 60%;
}

@media (max-width: 750px) {
  body.home .main-visual__title,
  body.home .main-visual__subtitle,
  body.home .main-visual__place {
    max-width: 100%;
  }
}

body.home .main-visual__place {
  color: #fff;
  background: #444243;
  font-size: 14px;
  border-radius: 24px;
  padding: 4px 24px;
  line-height: 1.8;
  display: inline-block;
}

@media (max-width: 750px) {
  body.home .main-visual__place {
    font-size: 12px;
    padding: 4px 16px;
  }
}

body.home .main-visual__title {
  margin-top: 16px;
  color: #444243;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.6;
}

@media (max-width: 750px) {
  body.home .main-visual__title {
    font-size: 28px;
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
  }
}

body.home .main-visual__title span {
  color: #E14188;
}

@media (max-width: 750px) {
  body.home .main-visual__title span {
    display: block;
  }
}

body.home .main-visual__subtitle {
  margin-top: 8px;
  color: #444243;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

@media (max-width: 750px) {
  body.home .main-visual__subtitle {
    font-size: 11px;
    text-align: center;
  }
}

body.home .main-visual__button {
  position: absolute;
  right: 0;
  bottom: 32px;
  width: 180px;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 750px) {
  body.home .main-visual__button {
    width: 132px;
    right: 24px;
  }
}

body.home .main-visual__button::after {
  content: none;
  background-image: url("../img/button/cta-button_hover.png");
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border-radius: 50%;
}

@media (min-width: 751px) {
  body.home .main-visual__button:hover::after {
    content: "";
    -webkit-transition: .2s;
    transition: .2s;
  }
}

body.home .main-visual__button img {
  display: block;
}

/* ------------------------------------------------------------
【TOPページ以外】main-visual
------------------------------------------------------------ */
body:not(.home) .main-visual {
  width: 100%;
  height: 300px;
}

@media (max-width: 750px) {
  body:not(.home) .main-visual {
    height: 200px;
  }
}

body:not(.home) .main-visual__image {
  position: relative;
  width: 100%;
  height: 100%;
}

body:not(.home) .main-visual__image picture, body:not(.home) .main-visual__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

body:not(.home) .main-visual__title {
  position: absolute;
  max-width: 1000px;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 500;
  color: #fff;
  font-size: 38px;
}

@media (max-width: 750px) {
  body:not(.home) .main-visual__title {
    font-size: 24px;
    text-align: center;
  }
}

/*
 *
 * _table.scss
 *
 */
/* ------------------------------------------------------------
 table
------------------------------------------------------------ */
.table {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-top: 40px;
  padding: 16px;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #E9E3DB;
}

@media (max-width: 750px) {
  .table {
    padding: 32px 24px;
  }
}

.table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #E9E3DB;
}

.table__item:last-of-type {
  border-bottom: none;
}

@media (max-width: 750px) {
  .table__item {
    -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: flex-start;
    padding: 16px 0;
  }
}

.table__item__head {
  font-size: 20px;
  font-weight: 500;
  color: #242424;
  text-align: left;
  width: 240px;
  min-width: 240px;
}

.table__item__head span {
  font-size: 16px;
}

@media (max-width: 750px) {
  .table__item__head {
    font-size: 18px;
    width: 100%;
  }
  .table__item__head span {
    font-size: 14px;
  }
}

.table__item__value {
  font-size: 20px;
  color: #242424;
  text-align: left;
  padding: 0 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  line-height: 1.8;
}

.table__item__value::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 100%;
  background-color: #E9E3DB;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 750px) {
  .table__item__value {
    margin-top: 8px;
    font-size: 18px;
    width: 100%;
    padding: 0;
  }
  .table__item__value span {
    display: block;
  }
  .table__item__value::before {
    display: none;
  }
}

.table__item__value ul {
  margin: 0;
  padding-left: 1.5rem;
}

/* ------------------------------------------------------------
  container
------------------------------------------------------------ */
#container {
  min-width: 1280px;
  overflow: hidden;
}

@media (max-width: 750px) {
  #container {
    min-width: 100%;
  }
}

/* ------------------------------------------------------------
  body
------------------------------------------------------------ */
body.is-fixed {
  overflow: hidden;
}

@media (max-width: 750px) {
  body:not(.home) {
    padding-top: 80px;
  }
}
/*# sourceMappingURL=common.css.map */