@charset "UTF-8";
/*==================
base.scss
====================*/
body {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
  color: #2a2a2a;
  letter-spacing: 0.05em;
  font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  position: relative;
}

.lp-women {
  background-color: oklch(96% 0.016 75deg);
}

.lp-men {
  background-color: oklch(18% 0.006 230deg);
  color: #fff;
}

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

.js-acc__head {
  cursor: pointer;
}
.js-acc__cont {
  display: none;
}

@-webkit-keyframes fadeInAnm {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnm {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-fade-up > * {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.js-fade-up > *.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*==================
mixin.scss
====================*/
body.lp-women {
  --main-color: oklch(0.57 0.12 42);
  --text-color: #423d3a;
}

body.lp-men {
  --main-color: rgb(58, 152, 188);
  --text-color: #eee;
}

.c-wTitle__main {
  font-size: 2rem;
  margin-bottom: 50px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
  line-height: 1.5;
  color: var(--text-color);
}
@media only screen and (max-width: 1200px) {
  .c-wTitle__main {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.c-wTitle__sub {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
@media only screen and (max-width: 1200px) {
  .c-wTitle__sub {
    font-size: 16px;
  }
}

/* =========================
   Header base
========================= */
.wlp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  -webkit-transition: background-color 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  transition: background-color 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  background-color: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
}

.wlp-header.is-scrolled {
  background-color: oklch(98% 0.005 75deg / 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid oklch(88% 0.02 70deg);
}
.wlp-header.is-scrolled .wlp-header__nav-link {
  color: oklch(22% 0.04 45deg);
}

.wlp-header__inner {
  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;
  padding: 16px;
}

/* =========================
   Logo
========================= */
.wlp-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  text-decoration: none;
  max-width: 38%;
}
.wlp-header__logo img {
  width: 200px;
}

.wlp-header__logo-main {
  font-size: 24px;
  letter-spacing: 0.1em;
  color: oklch(22% 0.04 45deg);
}

.wlp-header__logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--main-color);
}

/* =========================
   Navigation（モバイル：ドロワー）
========================= */
.wlp-header__nav {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background-color: oklch(98% 0.005 75deg);
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 16px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

/* 開いた状態 */
.wlp-header.is-open .wlp-header__nav {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.wlp-header__nav-link {
  text-decoration: none;
  color: oklch(22% 0.04 45deg);
  font-size: 16px;
}

/* CTA */
.wlp-header__cta a {
  margin-top: 8px;
  padding: 0.5rem 1.5rem;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  background-color: var(--main-color);
  color: #fff;
}

/* =========================
   Hamburger
========================= */
.wlp-header__menu {
  padding: 8px;
  background: none;
  border: none;
  z-index: 100;
}

.wlp-header__menu-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.wlp-header__menu-line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: oklch(22% 0.04 45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* ×アニメーション */
.wlp-header.is-open .wlp-header__menu-line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}

.wlp-header.is-open .wlp-header__menu-line:nth-child(2) {
  opacity: 0;
}

.wlp-header.is-open .wlp-header__menu-line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.wlp-header.is-open .wlp-header__nav {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   PC（768px以上）
========================= */
@media (min-width: 768px) {
  .wlp-header__nav {
    position: static;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: none;
    padding: 0;
    gap: 32px;
    pointer-events: unset;
  }
  .wlp-header__nav-link {
    font-size: 14px;
    color: #fff;
  }
  .wlp-header__nav-cta {
    margin-top: 0;
    padding: 8px 16px;
  }
  .wlp-header__menu {
    display: none;
  }
}
.l-secCont--pale {
  background-color: #FBF6EE;
}

.l-secCont--deep {
  background-color: #232325;
}

.l-secCont--brown {
  background-color: oklch(35% 0.08 42deg);
}

.l-secCont--img {
  background-image: url(../images/bg-img.jpg);
  background-size: cover;
  background-position: center center;
}

.p-hero {
  position: relative;
  overflow: hidden;
}
.p-hero__copy {
  font-size: 0.85rem;
  color: oklch(85% 0.04 75deg);
}
.p-hero__img {
  pointer-events: none;
}
@media only screen and (max-width: 1200px) {
  .p-hero__img {
    height: 600px;
  }
  .p-hero__img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 30% 50%;
       object-position: 30% 50%;
  }
}
.p-hero__main {
  color: #fff;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
  font-size: 48px;
  line-height: 1.5;
}
@media (max-width: 769px) {
  .p-hero__main {
    font-size: max(24px, 7vw);
  }
}
.p-hero__sub {
  color: oklch(85% 0.08 60deg);
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.p-hero__text {
  color: #fff;
  margin-top: 20px;
}
@media only screen and (max-width: 1200px) {
  .p-hero__text {
    font-size: 0.8rem;
  }
}
.p-hero__content {
  width: 1200px;
  padding: 0 3rem;
  margin: auto;
  position: absolute;
  bottom: 4vw;
}
@media only screen and (max-width: 1200px) {
  .p-hero__content {
    width: 100%;
    padding: 0 5%;
    padding-bottom: 10px;
    bottom: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(80%, transparent));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 80%);
  }
}
.p-hero__buttonArea {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1200px) {
  .p-hero__buttonArea {
    display: block;
  }
}
.p-hero__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-left: 1rem;
}
@media only screen and (max-width: 1200px) {
  .p-hero__point {
    margin-top: 1rem;
  }
}
.p-hero__point li {
  padding: 0.85rem 1rem;
}
@media only screen and (max-width: 1200px) {
  .p-hero__point li {
    padding: 0.5em 1em;
  }
}
.p-hero__point li + li {
  border-left: 1px solid oklch(63.1% 0.05602 60.791deg);
}
.p-hero__point__main {
  font-size: 1.25rem;
  color: oklch(85% 0.08 60deg);
  line-height: 1;
}
.p-hero__point__sub {
  color: #fff;
  font-size: 0.8rem;
}

.p-stepTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.p-stepTitle__num {
  font-family: "Montserrat", sans-serif;
  color: oklch(88% 0.02 70deg);
  font-size: 64px;
  line-height: 1;
  margin-right: 16px;
}
.p-stepTitle__step {
  color: var(--main-color);
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
}
.p-stepTitle__title {
  font-weight: bold;
  font-size: 2rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
  line-height: 1.25;
}

.p-tagList li {
  display: inline-block;
  line-height: 1.25;
  padding: 0.4em 1em;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.p-wMethod {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 90px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1200px) {
  .p-wMethod {
    margin-top: 50px;
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-wMethod__item {
  width: 33%;
  background-color: #fff;
  position: relative;
  padding: 30px;
}
@media only screen and (max-width: 1200px) {
  .p-wMethod__item {
    padding: 18px;
    width: 100%;
  }
}
.p-wMethod__num {
  color: var(--main-color);
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  line-height: 1;
  position: absolute;
  left: 30px;
  top: -24px;
}
.p-wMethod__title {
  font-weight: bold;
  font-size: 18px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
}
.p-wMethod__img {
  margin-top: 20px;
}

.p-free {
  color: oklch(85% 0.08 60deg);
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
  font-size: 2rem;
  display: inline-block;
  border-bottom: 4px double;
}
.p-free__main {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.p-lineBox {
  color: oklch(85% 0.08 60deg);
  border: 1px solid oklch(85% 0.08 60deg);
  padding: 0.4em 1em;
  display: inline-block;
}

.p-voiceBox__item {
  background-color: rgba(250, 243, 232, 0.95);
  border: 1px solid oklch(88% 0.02 70deg);
  padding: 1rem;
}
.p-voiceBox__title {
  color: var(--main-color);
  font-size: 1.25rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
}
.p-voiceBox__sub {
  color: oklch(52% 0.03 55deg);
  font-size: 0.85rem;
}
.p-voiceBox__text {
  margin-top: 1rem;
}
.p-voiceBox__list {
  margin-top: 1rem;
}
.p-voiceBox__list li {
  font-size: 0.85rem;
  background-color: oklch(93% 0.018 75deg);
  color: var(--main-color);
  padding: 0.25rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.p-wPlan .p-lpPlan__item {
  border: 1px solid oklch(88% 0.02 70deg);
}
.p-wPlan .p-lpPlan__title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
  background-color: var(--main-color);
}
.p-wPlan .p-lpPlan__price span {
  font-weight: 600;
}
.p-wPlan .c-list--check li::before {
  background: url(../../../images/check-icon-line.png) no-repeat center;
}

.p-panelList__item {
  border: 1px solid oklch(88% 0.02 70deg);
  padding: 1.25rem 0.85rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-panelList__num {
  font-size: 2rem;
  color: oklch(88% 0.02 70deg);
}
.p-panelList__text {
  font-size: 1.15rem;
  color: oklch(35% 0.04 45deg);
  padding-left: 0.5rem;
}

.p-wstep {
  background-color: #FBF6EE;
  padding: 1rem;
}
.p-wstep__steps {
  color: var(--main-color);
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
}
.p-wstep__title {
  font-size: 1.25rem;
}
.p-wstep__text {
  margin-top: 10px;
}

.accordion {
  width: 100%;
  max-width: 100%;
  /*  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}

/*------------------------------

ここからアコーディオンのCSS

------------------------------*/
/* チェックボックスは非表示 */
.accordion-hidden {
  display: none;
}

/* Question部分 */
.accordion-open {
  font-size: 16px;
  font-weight: normal;
  display: block;
  padding: 20px 30px 20px 80px;
  background: #FBF6EE;
  cursor: pointer;
  margin: 5px 0;
  position: relative;
  /* 変更部分 */
}

/* 開閉状態を示すアイコン+の作成 */
.accordion-open::before,
.accordion-open::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
.accordion-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* QとAのデザイン */
.accordion-open span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 100%;
  color: var(--main-color);
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
}

.accordion-close span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 100%;
  background: #f4f1ec;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.accordion-hidden:checked + .accordion-open:after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
.accordion-close {
  font-size: 16px;
  font-weight: normal;
  display: block;
  height: 0;
  /* 要素の高さは0 */
  overflow: hidden;
  /* 非表示 */
  padding: 0 0 0 60px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /* 表示速度の設定 */
  position: relative;
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.accordion-hidden:checked + .accordion-open + .accordion-close {
  height: auto;
  opacity: 1;
  padding: 20px 30px 20px 80px;
  font-weight: normal;
}

/*sp*/
@media print, screen and (max-width: 768px) {
  /* 開閉状態を示すアイコン+の作成 */
  .accordion-open::before,
  .accordion-open::after {
    content: "";
    width: 14px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    right: 2%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  /* 一本は縦にして+を作る */
  .accordion-open::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
.lp-form.wlp-form form#mailformpro {
  background-color: #FBF6EE;
}
.lp-form.wlp-form form#mailformpro dl:nth-child(2n) {
  background-color: transparent;
}

.wlp-footer {
  border-top: oklch(65% 0.02 55deg);
  padding: 30px 0;
}
.wlp-footer p {
  color: oklch(65% 0.02 55deg);
}

.p-wstepTitle__num {
  color: oklch(88% 0.02 70deg);
  font-size: 3rem;
}
.p-wstepTitle__title {
  font-size: 1.25rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
  color: var(--main-color);
}

.lp-men .p-hero__copy {
  color: rgb(129, 196, 244);
}
.lp-men .p-hero__sub {
  color: rgb(129, 196, 244);
}
.lp-men .p-hero__point__main {
  color: rgb(129, 196, 244);
}
.lp-men .p-hero__point li + li {
  border-color: rgb(129, 196, 244);
}
@media only screen and (max-width: 1200px) {
  .lp-men .p-hero__img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 60% 50%;
       object-position: 60% 50%;
  }
}
.lp-men .p-wstep {
  background-color: #232325;
}
.lp-men .p-panelList__text {
  color: #fff;
}
.lp-men .p-wMethod__item {
  background-color: #3f3f43;
  color: #eee;
}
.lp-men .p-voiceBox__item {
  background-color: #232325;
  border: 1px solid #666;
}
.lp-men .p-voiceBox__list li {
  background-color: transparent;
}
.lp-men .l-secCont--img {
  background-image: url(../images/bg-img-men.jpg);
}
.lp-men .accordion-open {
  background-color: #232325;
}
.lp-men .accordion-close span {
  background-color: #232325;
}
.lp-men .lp-form.wlp-form form#mailformpro {
  background-color: #232325;
}

@media only screen and (max-width: 1200px) {
  .u-pc {
    display: none !important;
  }
}

@media only screen and (min-width: 1200px) {
  .u-sp {
    display: none !important;
  }
}

.u-block {
  display: block;
}

.js-hidden {
  opacity: 0;
  visibility: hidden;
}

/*テキスト系*/
.u-textRight {
  text-align: right !important;
}
@media only screen and (min-width: 1200px) {
  .u-textRight--pc {
    text-align: right !important;
  }
}
@media only screen and (min-width: 1200px) {
  .u-textRight--sp {
    text-align: right !important;
  }
}

.u-textLeft {
  text-align: left !important;
}
@media only screen and (min-width: 1200px) {
  .u-textLeft--pc {
    text-align: left !important;
  }
}
@media only screen and (min-width: 1200px) {
  .u-textLeft--sp {
    text-align: left !important;
  }
}

.u-textCenter {
  text-align: center !important;
}
@media only screen and (min-width: 1200px) {
  .u-textCenter--pc {
    text-align: center !important;
  }
}
@media only screen and (max-width: 1200px) {
  .u-textCenter--sp {
    text-align: center !important;
  }
}

.u-textMid {
  font-size: 1.1em !important;
}
@media only screen and (max-width: 1200px) {
  .u-textMid {
    font-size: 1.2em !important;
  }
}

.u-textML {
  font-size: 1.4em !important;
}
@media only screen and (max-width: 1200px) {
  .u-textML {
    font-size: 1.2em !important;
  }
}

.u-textLarge {
  font-size: 1.8em !important;
}
@media only screen and (max-width: 1200px) {
  .u-textLarge {
    font-size: 1.4em !important;
  }
}

.u-textSmall {
  font-size: 0.9em;
}
@media only screen and (max-width: 1200px) {
  .u-textSmall--sp {
    font-size: 0.9em;
  }
}

.u-textBold {
  font-weight: bold;
}

.u-link {
  text-decoration: underline;
}
@media only screen and (min-width: 1200px) {
  .u-link:hover {
    opacity: 0.8;
  }
}

.u-marker {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(50%, rgba(255, 234, 63, 0.66)));
  background: linear-gradient(transparent 65%, rgba(255, 234, 63, 0.66) 50%);
}
.u-marker--red {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(50%, rgba(255, 219, 209, 0.66)));
  background: linear-gradient(transparent 65%, rgba(255, 219, 209, 0.66) 50%);
}

.u-va--middle {
  vertical-align: middle;
}

.u-white {
  color: #fff;
}

.u-black {
  color: #333;
}

/*position*/
.u-relative {
  position: relative !important;
}

.u-absolute {
  position: absolute !important;
}
.u-absolute__br {
  bottom: 0 !important;
  right: 0 !important;
}

.u-overflow--hidden {
  overflow: hidden;
}

/*装飾*/
.u-bg--img {
  background-color: rgb(247, 246, 243);
}
.u-bg--img.l-secCont {
  padding-bottom: 60px;
  margin-top: 60px;
}
.u-bg--img.l-secCont:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 1200px) {
  .u-bg--img.l-secCont {
    padding-bottom: 30px;
    margin-top: 30px;
  }
}

.u-border {
  border: 1px solid #ccc;
}

.u-borderTop {
  border-top: 1px solid #ccc;
}

.u-boxShadow {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.u-exlink {
  background-image: url(../images/common/exlink.png);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: right 0.6em center;
  padding-right: 2em;
}
@media only screen and (max-width: 1200px) {
  .u-exlink {
    background-size: 1.2em;
    background-position: right 1em center;
    padding-right: 2.4em;
  }
}

/*flex*/
.u-align--center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.u-align--end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.u-justify--center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.u-justify--end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

/*レイアウト*/
.u-mw {
  max-width: 800px;
  margin: 0 auto;
}

.u-width100 {
  width: 100%;
}

.u-inline--center {
  text-align: center;
}
.u-inline--center > * {
  display: inline-block;
  text-align: left;
}/*# sourceMappingURL=app.css.map */