@charset "UTF-8";
:root {
  --font-jp: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  --font-en: 'Be Vietnam Pro', sans-serif;
  --font-deco: braisetto, script;
  --color-basis: #000;
  --color-light: #fffcee;
  --color-dark: #E2E0AF;
  --color-prod: #f9f9f9;
  --color-wave: #fcfae8;
  --color-natural: #fcf5e6;
  --color-straight: #f9efe4;
  --color-fv: #F4D695;
}

.js-fade-trigger {
  -webkit-transition-duration: 1.2s;
          transition-duration: 1.2s;
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}

.js-fade-trigger.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

html {
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: calc(10* (100vw / 1200)) !important;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10* (100vw / 750));
  }
}

body {
  width: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.main-area .main-inner {
  max-width: initial;
  width: initial;
}

.l-article img,
.l-article video,
.l-article svg {
  width: 100%;
  height: auto;
}

.l-article * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: inherit;
}

.l-article a,
.l-article picture {
  display: block;
}

@media screen and (min-width: 768px) {
  .l-article .hidden-desktop {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-article .hidden-phone {
    display: none;
  }
}

/*//////////////////////////////////////////////////

Title : _main.css
For   : "骨格診断" styles of the site

Created       : 2022-04-24
Last Modified : 2022-04-24

==========================================

Content

    common

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            common
============================================================================================== */
.l-article {
  color: var(--color-base);
  font-family: var(--font-jp);
  font-weight: 500;
  text-align: center;
}

.l-article span,
.l-article label {
  font-weight: inherit;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                      for mobile phone
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .l-article {
    -webkit-margin-after: 20rem;
            margin-block-end: 20rem;
  }
  .l-section--sec01 {
    -webkit-margin-before: 20rem;
            margin-block-start: 20rem;
  }
  .l-section--sec02, .l-section--sec03 {
    -webkit-margin-before: 16rem;
            margin-block-start: 16rem;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                        for desktop
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 768px) {
  .l-article {
    margin-bottom: 200px;
  }
  .l-section--sec01 {
    -webkit-margin-before: 147px;
            margin-block-start: 147px;
  }
  .l-section--sec02 {
    -webkit-margin-before: 150px;
            margin-block-start: 150px;
  }
  .l-section--sec03 {
    -webkit-margin-before: 82px;
            margin-block-start: 82px;
  }
}

@media all and (-ms-high-contrast: none) {
  body {
    overflow-x: hidden;
  }
}

/*//////////////////////////////////////////////////

Title : _firstview.scss
For   : "骨格診断" styles of the site

Created       : 2022-04-24
Last Modified : 2022-04-24

//////////////////////////////////////////////////*/
.c-firstview {
  width: 100%;
  background: var(--color-light);
  margin: auto;
}

.c-firstview__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-firstview__imgs li {
  width: var(--fv-card-width, 22.6rem);
  padding: var(--fv-card-gap, 0.8rem);
  border: 1px solid #000;
  position: relative;
}

.c-firstview__imgs li .type {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  font-size: var(--fv-card-fz, 2.2rem);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .03em;
}

.c-firstview__imgs li .type span {
  display: inline-block;
  line-height: 1;
  text-shadow: 1px 1px 0 var(--color-light), -1px -1px 0 var(--color-light), -1px 1px 0 var(--color-light), 1px -1px 0 var(--color-light), 0px 1px 0 var(--color-light), -1px 0 var(--color-light), -1px 0 0 var(--color-light), 1px 0 0 var(--color-light);
}

.c-firstview__ttl {
  line-height: 1;
}

.c-firstview__ttl--minor, .c-firstview__ttl--major {
  display: inline-block;
}

.c-firstview__ttl--minor {
  padding: 0 var(--fv-ttl-pi, 4rem);
  position: relative;
  letter-spacing: .06em;
  font-size: var(--fv-ttl-mi-fz, 2.3rem);
}

.c-firstview__ttl--minor::before, .c-firstview__ttl--minor::after {
  display: block;
  width: var(--brackets-size);
  height: var(--brackets-size);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
}

.c-firstview__ttl--minor::before {
  left: 0;
  background-image: url(/Page/feature/2022/0428_feature/src/assets/img/svg/brackets-l.svg);
}

.c-firstview__ttl--minor::after {
  right: 0;
  background-image: url(/Page/feature/2022/0428_feature/src/assets/img/svg/brackets-r.svg);
}

.c-firstview__ttl--major {
  letter-spacing: .06em;
  font-size: var(--fv-ttl-mj-fz, 3.6rem);
}

.c-firstview__ttl--major .strong {
  display: inline-block;
  font-size: var(--fv-ttl-str-fz, 5.3rem);
}

.c-firstview__vol {
  letter-spacing: 0.1em;
}

.c-firstview__vol span {
  display: inline-block;
  position: relative;
  z-index: 0;
  font-size: var(--fv-vol-fz, 2.7rem);
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
}

.c-firstview__vol span::after {
  width: 100%;
  height: var(--border-h, 1.4rem);
  background-color: var(--color-fv);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: -1;
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for mobile
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
  .c-firstview {
    padding: 6.5rem 1.8rem 7rem;
  }
  .c-firstview__imgs li .type {
    top: -1.7rem;
  }
  .c-firstview__ttl {
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
  }
  .c-firstview__ttl--minor {
    line-height: 3rem;
  }
  .c-firstview__ttl--minor::before, .c-firstview__ttl--minor::after {
    --brackets-size: 3rem;
  }
  .c-firstview__ttl--major {
    -webkit-margin-before: 2.6rem;
            margin-block-start: 2.6rem;
  }
  .c-firstview__ttl--major .strong {
    -webkit-padding-before: 3.5rem;
            padding-block-start: 3.5rem;
  }
  .c-firstview__vol {
    -webkit-margin-before: 4.8rem;
            margin-block-start: 4.8rem;
  }
  .c-firstview__vol span {
    padding-inline: 1rem;
    -webkit-padding-after: .6rem;
            padding-block-end: .6rem;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for desktop
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .c-firstview {
    max-width: 1100px;
    padding: 52px 9.2rem 36px;
  }
  .c-firstview__imgs li {
    --fv-card-width: calc(280 / (1100 - 92 * 2) * 100%);
    --fv-card-gap: 8px;
  }
  .c-firstview__imgs li .type {
    --fv-card-fz: 15.3px;
    top: -11px;
  }
  .c-firstview__ttl {
    margin-top: 36px;
  }
  .c-firstview__ttl--minor {
    --fv-ttl-pi: 34px;
    --fv-ttl-mi-fz: 18.6px;
    line-height: 24px;
  }
  .c-firstview__ttl--minor::before, .c-firstview__ttl--minor::after {
    --brackets-size: 24px;
  }
  .c-firstview__ttl--major {
    --fv-ttl-mj-fz: 24px;
    margin-top: 20px;
  }
  .c-firstview__ttl--major .strong {
    --fv-ttl-str-fz: 33.9px;
    padding-left: 10px;
  }
  .c-firstview__vol {
    margin-top: 28px;
  }
  .c-firstview__vol span {
    --fv-vol-fz: 17.5px;
    display: inline-block;
    padding: 0 7.5px 3px;
  }
  .c-firstview__vol span::after {
    --border-h: 8px;
  }
}

/*//////////////////////////////////////////////////

Title : _lead.scss
For   : "骨格診断" styles of the site

Created       : 2022-04-24
Last Modified : 2022-04-24

//////////////////////////////////////////////////*/
.c-lead {
  text-align: center;
}

.c-lead__detail {
  font-size: var(--detail-fz, 2.4rem);
  line-height: var(--detail-lh, calc(46 / 24));
  letter-spacing: .05em;
}

.c-lead__btn {
  width: var(--lead-btn-w, 65.2rem);
  height: var(--lead-btn-h, 15.8rem);
  margin: auto;
  border: 1px solid #000;
  position: relative;
  font-size: var(--lead-btn-fz, 3rem);
  font-weight: bold;
  letter-spacing: .08em;
}

.c-lead__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.c-lead__btn a .triangle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--lead-icon-size, 2.8rem);
}

.c-lead__btn a > span {
  position: relative;
}

.c-lead__btn a > span::after {
  width: 100%;
  height: var(--lead-btn-deco-h, 1.7rem);
  background-color: var(--color-dark);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: -1;
}

.c-lead__btn::before {
  width: var(--lead-btn-bdr-w, 63.2rem);
  height: var(--lead-btn-bdr-h, 13.8rem);
  border: 1px solid #000;
  position: absolute;
  content: "";
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for mobile
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
  .c-lead {
    -webkit-margin-before: 13rem;
            margin-block-start: 13rem;
  }
  .c-lead__btn {
    -webkit-margin-before: 13.7rem;
            margin-block-start: 13.7rem;
  }
  .c-lead__btn a .triangle {
    -webkit-margin-start: 3.5rem;
            margin-inline-start: 3.5rem;
  }
  .c-lead__btn a > span {
    padding: 0 1rem .5rem;
  }
  .c-lead__btn::before {
    top: .8rem;
    left: .8rem;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for desktop
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .c-lead {
    margin-top: 94px;
  }
  .c-lead__detail {
    --detail-fz: 15px;
    --detail-lh: 2;
  }
  .c-lead__btn {
    --lead-btn-w: 332px;
    --lead-btn-h: 82px;
    --lead-btn-fz: 18px;
    margin-top: 92px;
  }
  .c-lead__btn a .triangle {
    --lead-icon-size: 18px;
    margin-left: 16px;
  }
  .c-lead__btn a > span {
    padding: 0 10px 5px;
  }
  .c-lead__btn a > span::after {
    --lead-btn-deco-h: 10px;
  }
  .c-lead__btn::before {
    top: 5px;
    left: 5px;
    --lead-btn-bdr-w: 318px;
    --lead-btn-bdr-h: 68px;
  }
}

@media all and (-ms-high-contrast: none) {
  .c-lead__btn::before {
    display: none;
  }
  .c-lead__btn {
    border: 5px double #000;
  }
  .c-lead__detail {
    line-height: 1.9166666667;
  }
}

/*//////////////////////////////////////////////////

Title : _contents.scss
For   : "骨格診断" styles of the site

Created       : 2022-04-24
Last Modified : 2022-04-24

//////////////////////////////////////////////////*/
.c-contents--wave .c-contents__desc::before {
  background: var(--color-wave);
}

.c-contents--natural .c-contents__desc::before {
  background: var(--color-natural);
}

.c-contents--straight .c-contents__desc::before {
  background: var(--color-straight);
}

.c-contents__card {
  position: relative;
}

.c-contents__card--with-border .c-contents__img {
  padding: var(--card-gap, 2rem);
  border: 1px solid #000;
}

.c-contents__idx {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: var(--cont-idx-fz, 5.4rem);
  z-index: 10;
}

.c-contents__idx .type {
  font-size: .5em;
}

.c-contents__idx span {
  display: inline-block;
  line-height: 1;
  background: #fff;
}

.c-contents__caption {
  position: relative;
  z-index: 1;
}

.c-contents__caption li {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: var(--capt-fz, 2.2rem);
  line-height: var(--capt-lh, calc(40 / 22));
  letter-spacing: .03em;
}

.c-contents__img {
  position: relative;
  z-index: 1;
}

.c-contents__desc {
  text-align: justify;
  -webkit-font-feature-settings: "halt";
          font-feature-settings: "halt";
  z-index: 0;
}

.c-contents__desc::before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100vh;
  content: "";
  z-index: -1;
}

.c-contents__desc .ttl {
  position: absolute;
  font-family: var(--font-deco);
  font-weight: 400;
  font-size: var(--desc-ttl-fz, 10.4rem);
  line-height: 1;
}

.c-contents__desc .detail {
  font-family: var(--font-jp);
  font-size: var(--detail-fz, 2.2rem);
  line-height: var(--detail-lh, calc(40 / 22));
  letter-spacing: .08em;
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for mobile
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
  .c-contents--wave {
    -webkit-margin-before: 12rem;
            margin-block-start: 12rem;
  }
  .c-contents--straight {
    -webkit-margin-before: 9.9rem;
            margin-block-start: 9.9rem;
  }
  .c-contents--natural {
    -webkit-margin-before: 9.4rem;
            margin-block-start: 9.4rem;
  }
  .l-section--sec02 .c-contents--natural {
    -webkit-margin-before: 10.2rem;
            margin-block-start: 10.2rem;
  }
  .l-section--sec03 .c-contents--natural {
    -webkit-margin-before: 10.2rem;
            margin-block-start: 10.2rem;
  }

  .c-contents__card--wave-01 {
    -webkit-padding-before: 7.8rem;
            padding-block-start: 7.8rem;
    padding-inline: 9.5rem;
  }
  .c-contents__card--wave-02 {
    -webkit-margin-before: 9.2rem;
            margin-block-start: 9.2rem;
    -webkit-padding-start: 4rem;
            padding-inline-start: 4rem;
    -webkit-padding-end: 26rem;
            padding-inline-end: 26rem;
    -webkit-padding-after: 55.2rem;
            padding-block-end: 55.2rem;
  }
  .c-contents__card--wave-02 .c-contents__desc {
    width: 65rem;
    height: 65rem;
    -webkit-padding-before: 21.8rem;
            padding-block-start: 21.8rem;
    -webkit-padding-after: 15.8rem;
            padding-block-end: 15.8rem;
    -webkit-padding-start: 8.3rem;
            padding-inline-start: 8.3rem;
    -webkit-padding-end: 9rem;
            padding-inline-end: 9rem;
    position: absolute;
    bottom: 0;
    right: -3rem;
  }
  .c-contents__card--wave-02 .c-contents__img .ttl {
    bottom: -10.4rem;
    left: 9.6rem;
  }
  .c-contents__card--natural-01 {
    -webkit-padding-before: 7.3rem;
            padding-block-start: 7.3rem;
  }
  .c-contents__card--natural-02 {
    -webkit-margin-before: 9.1rem;
            margin-block-start: 9.1rem;
    padding-inline: 12.5rem;
    -webkit-padding-after: 56rem;
            padding-block-end: 56rem;
  }
  .c-contents__card--natural-02 .c-contents__desc {
    width: 78rem;
    height: 78rem;
    -webkit-padding-before: 34.4rem;
    padding-block-start: 34.4rem;
    -webkit-padding-after: 18.1rem;
    padding-block-end: 18.1rem;
    padding-inline: 9.9rem;
    position: absolute;
    bottom: 0;
    left: -1.7rem;
  }
  .c-contents__card--natural-02 .c-contents__desc .ttl {
    top: 22.8rem;
    left: 4rem;
  }
  .c-contents__card--natural-02 .c-contents__img .ttl {
    bottom: -9.9rem;
    left: -10.2rem;
  }
  .c-contents__card--natural-01 .c-contents__img {
    margin: 0 7.4rem 0;
  }
  .c-contents__card--straight-01 {
    -webkit-padding-before: 7.8rem;
            padding-block-start: 7.8rem;
    padding-inline: 5.4rem;
  }
  .c-contents__card--straight-02 {
    -webkit-margin-before: 9rem;
            margin-block-start: 9rem;
    -webkit-padding-start: 25rem;
            padding-inline-start: 25rem;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
    -webkit-padding-before: 51.5rem;
            padding-block-start: 51.5rem;
  }
  .c-contents__card--straight-02 .c-contents__desc {
    width: 68rem;
    height: 68rem;
    -webkit-padding-before: 19.4rem;
            padding-block-start: 19.4rem;
    -webkit-padding-after: 20.6rem;
            padding-block-end: 20.6rem;
    -webkit-padding-start: 10.5rem;
            padding-inline-start: 10.5rem;
    -webkit-padding-end: 9rem;
            padding-inline-end: 9rem;
    position: absolute;
    top: 0;
    left: -4.5rem;
  }
  .c-contents__card--straight-02 .c-contents__desc .ttl {
    top: 6.7rem;
    left: 6rem;
  }
  .c-contents__card--wave-03 {
    -webkit-padding-before: 7.8rem;
            padding-block-start: 7.8rem;
    -webkit-padding-after: 58.6rem;
            padding-block-end: 58.6rem;
    padding-inline: 7.5rem;
  }

  .c-contents--wave03 .c-contents__desc {
    width: 67rem;
    height: 67rem;
    margin: auto;
    -webkit-padding-before: 22.7rem;
            padding-block-start: 22.7rem;
    -webkit-padding-after: 15.7rem;
            padding-block-end: 15.7rem;
    padding-inline: 7rem;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .c-contents--wave03 .c-contents__desc .ttl {
    top: 10.8rem;
    left: -0.4rem;
  }

  .c-contents__card--natural-03 {
    -webkit-padding-before: 7.5rem;
            padding-block-start: 7.5rem;
    -webkit-padding-after: 61.6rem;
            padding-block-end: 61.6rem;
    padding-inline: 9.5rem;
  }
  .c-contents__card--natural-03 .c-contents__desc {
    width: 67rem;
    height: 67rem;
    margin: auto;
    -webkit-padding-before: 22.4rem;
            padding-block-start: 22.4rem;
    -webkit-padding-after: 15.6rem;
            padding-block-end: 15.6rem;
    -webkit-padding-start: 6.9rem;
            padding-inline-start: 6.9rem;
    -webkit-padding-end: 6.9rem;
            padding-inline-end: 6.9rem;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

  .c-contents__card--natural-03 .c-contents__desc .ttl {
    top: 10.6rem;
    left: -0.4rem;
  }
  .c-contents__card--straight-03 {
    -webkit-padding-before: 7.5rem;
            padding-block-start: 7.5rem;
    -webkit-padding-after: 56.8rem;
            padding-block-end: 56.8rem;
    padding-inline: 9.5rem;
  }
  .c-contents__card--straight-03 .c-contents__desc {
    width: 67rem;
    height: 67rem;
    margin: auto;
    -webkit-padding-before: 25rem;
            padding-block-start: 25rem;
    -webkit-padding-after: 15rem;
            padding-block-end: 15rem;
    -webkit-padding-start: 6.9rem;
            padding-inline-start: 6.9rem;
    -webkit-padding-end: 6.9rem;
            padding-inline-end: 6.9rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .c-contents__card--straight-03 .c-contents__desc .ttl {
    top: 13.2rem;
    left: -0.5rem;
  }
  .c-contents__card--wave-04 {
    -webkit-padding-before: 7.4rem;
            padding-block-start: 7.4rem;
    padding-inline: 7.5rem;
  }
  .c-contents__card--wave-05 {
    -webkit-margin-before: 9rem;
            margin-block-start: 9rem;
    -webkit-padding-start: 4rem;
            padding-inline-start: 4rem;
    -webkit-padding-end: 29rem;
            padding-inline-end: 29rem;
    -webkit-padding-after: 55.2rem;
            padding-block-end: 55.2rem;
  }
  .c-contents__card--wave-05 .c-contents__desc {
    width: 65rem;
    height: 65rem;
    -webkit-padding-before: 21.6rem;
            padding-block-start: 21.6rem;
    -webkit-padding-after: 15.5rem;
            padding-block-end: 15.5rem;
    -webkit-padding-start: 8rem;
            padding-inline-start: 8rem;
    -webkit-padding-end: 9rem;
            padding-inline-end: 9rem;
    position: absolute;
    bottom: 0;
    right: -3rem;
  }
  .c-contents__card--wave-05 .c-contents__desc .ttl {
    top: 10rem;
    left: -2rem;
  }
  .c-contents__card--wave-05 .c-contents__img .ttl {
    bottom: -10.6rem;
    left: 7rem;
  }
  .c-contents__card--natural-04 {
    -webkit-padding-before: 7.6rem;
            padding-block-start: 7.6rem;
    padding-inline: 5.5rem;
  }
  .c-contents__card--natural-05 {
    -webkit-margin-before: 9.1rem;
            margin-block-start: 9.1rem;
    -webkit-padding-start: 15rem;
            padding-inline-start: 15rem;
    -webkit-padding-end: 15rem;
            padding-inline-end: 15rem;
    -webkit-padding-after: 53.6rem;
            padding-block-end: 53.6rem;
  }
  .c-contents__card--natural-05 .c-contents__desc {
    width: 78rem;
    height: 78rem;
    margin: auto;
    -webkit-padding-before: 36.6rem;
            padding-block-start: 36.6rem;
    -webkit-padding-after: 17.5rem;
    padding-block-end: 17.5rem;
    padding-inline: 10.3rem;
    position: absolute;
    bottom: 0;
    left: -1.7rem;
    right: 0;
  }
  .c-contents__card--natural-05 .c-contents__img .ttl {
    bottom: -10.4rem;
    left: -12.6rem;
  }
  .c-contents__card--natural-05 .c-contents__desc .ttl {
    top: 23.8rem;
    left: 4.5rem;
  }
  .c-contents__card--straight-04 {
    -webkit-padding-before: 7.8rem;
            padding-block-start: 7.8rem;
    padding-inline: 5.5rem;
  }
  .c-contents__card--straight-05 {
    -webkit-margin-before: 9.1rem;
            margin-block-start: 9.1rem;
    -webkit-padding-start: 29rem;
            padding-inline-start: 29rem;
    -webkit-padding-end: 4rem;
            padding-inline-end: 4rem;
    -webkit-padding-after: 50.5rem;
            padding-block-end: 50.5rem;
  }
  .c-contents__card--straight-05 .c-contents__desc {
    width: 65rem;
    height: 65rem;
    -webkit-padding-before: 34.1rem;
            padding-block-start: 22rem;
    -webkit-padding-after: 20.1rem;
            padding-block-end: 15.1rem;
    -webkit-padding-start: 9rem;
            padding-inline-start: 9rem;
    -webkit-padding-end: 7.6rem;
            padding-inline-end: 7.6rem;
    position: absolute;
    bottom: 0;
    left: -2.7rem;
  }
  .c-contents__card--straight-05 .c-contents__desc .ttl {
    top: 21rem;
    left: 5rem;
  }
  .c-contents__card--straight-05 .c-contents__img .ttl {
    bottom: -5rem;
    left: -27.4rem;
  }
  .c-contents__idx .type {
    -webkit-margin-after: 0.8rem;
            margin-block-end: 0.8rem;
  }
  .c-contents__img .ttl {
    position: absolute;
    font-family: var(--font-deco);
    font-weight: 400;
    font-size: 10.4rem;
    line-height: 1;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .c-contents__desc .ttl {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .c-contents__caption {
    -webkit-margin-before: 4.4rem;
            margin-block-start: 4.4rem;
  }
  .c-contents__caption li {
    margin: 0 .5rem;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for desktop
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .l-section--sec01 .c-contents {
    margin-top: 145px;
  }
  .l-section--sec01 .c-contents--wave {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-section--sec01 .c-contents--straight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-section--sec02 .c-contents--wave {
    margin-top: 144px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-section--sec02 .c-contents__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 140px;
    margin-left: 2.1rem;
  }
  .l-section--sec02 .c-contents--natural {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 1;
            order: 1;
  }
  .l-section--sec02 .c-contents--straight {
    margin-top: 201px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 5.1rem;
  }
  .l-section--sec03 .c-contents {
    margin-top: 80px;
    margin-left: 0.4rem;
  }
  .l-section--sec03 .c-contents--natural {
    margin-top: 144px;
  }
  .l-section--sec03 .c-contents--wave {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-section--sec03 .c-contents--straight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 143px;
  }
  .c-contents__card--with-border .c-contents__img {
    --card-gap: 8px;
    top: -3px;
  }
  .c-contents__card--wave-01 {
    width: 44rem;
    margin-left: 10rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: right;
  }
  .c-contents__card--wave-01 .c-contents__caption li {
    margin-left: .6rem;
  }
  .c-contents__card--wave-02 {
    width: 53rem;
    margin-top: -0.2rem;
    padding-top: 29.2rem;
    padding-left: 20rem;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .c-contents__card--wave-02 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 12.4rem 5rem 10.3rem;
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-contents__card--wave-02 .c-contents__desc .ttl {
    top: 7rem;
    left: 1.4rem;
  }
  .c-contents__card--natural-01 {
    width: 50rem;
    margin: auto;
  }
  .c-contents__card--natural-01 .c-contents__caption li {
    margin: 0 .2rem;
  }
  .c-contents__card--natural-02 {
    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;
    margin-top: 9.8rem;
  }
  .c-contents__card--natural-02 .c-contents__img {
    width: 40rem;
    margin-left: 10rem;
    -ms-flex-order: 2;
        order: 2;
  }
  .c-contents__card--natural-02 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 11.7rem 5.8rem 10.8rem;
    position: relative;
    -ms-flex-order: 1;
        order: 1;
  }
  .c-contents__card--natural-02 .c-contents__desc .ttl {
    top: 4.9rem;
    left: 1.2rem;
  }
  .c-contents__card--straight-01 {
    width: 47rem;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 1;
              order: 1;
    text-align: left;
  }
  .c-contents__card--straight-01 .c-contents__caption li {
    margin-right: .8rem;
  }
  .c-contents__card--straight-02 {
    margin-top: 10.5rem;
    padding-top: 30.7rem;
    padding-right: 17rem;
    order: 2;
    margin-left: 8rem;
  }
  .c-contents__card--straight-02 .c-contents__img {
    width: 33rem;
  }
  .c-contents__card--straight-02 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 11.8rem 5rem 10.8rem;
    position: absolute;
    top: 0;
    right: 0;
  }
  .c-contents__card--straight-02 .c-contents__desc .ttl {
    top: 5.2rem;
    left: 1.4rem;
  }
  .c-contents__card--wave-03 {
    width: 44rem;
    text-align: right;
    order: 2;
    margin-left: 10.5rem;
  }


  .c-contents--wave03 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 13rem 5.7rem 9.8rem;
    position: relative;
    order: 1;
    margin-top: 13.1rem;
  }
  .c-contents__card--natural-02 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 11.7rem 5.8rem 10.8rem;
    position: relative;
    -ms-flex-order: 1;
    order: 1;
}
  .c-contents--wave03 .c-contents__desc .ttl {
    top: 6.5rem;
    left: 1.4rem;
  }
  .c-contents--wave03 .c-contents__caption {
    display: inline-block;
    margin-right: 1rem;
  }
  .c-contents--wave03 .c-contents__caption li {
    margin-left: 0.8rem;
}
  .c-contents__card--natural-03 {
    margin-left: -2rem;
    padding-left: 14.8rem;
    padding-bottom: 14.8rem;
    text-align: left;
  }
  .c-contents__card--natural-03 .c-contents__idx {
    padding-left: 9.9rem;
  }
  .c-contents__card--natural-03 .c-contents__img {
    width: 40rem;
  }
  .c-contents__card--natural-03 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 14rem 5.8rem 8.4rem 5.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .c-contents__card--natural-03 .c-contents__desc .ttl {
    top: 7.2rem;
    left: 1rem;
  }
  .c-contents__card--natural-03 .c-contents__caption {
    display: inline-block;
    text-align: left;
    margin-left: 28rem;
  }
  .c-contents__card--straight-03 {
    padding-left: 15rem;
    padding-bottom: 21rem;
    text-align: left;
  }
  .c-contents__card--straight-03 .c-contents__idx {
    padding-left: 15.2rem
  }
  .c-contents__card--straight-03 .c-contents__img {
    width: 40rem;
  }
  .c-contents__card--straight-03 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 13.7rem 5.5rem 8.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .c-contents__card--straight-03 .c-contents__desc .ttl {
    top: 7.2rem;
    left: 1.5rem;
  }
  .c-contents__card--straight-03 .c-contents__caption {
    display: inline-block;
    text-align: left;
    margin-left: 27rem;
  }
  .c-contents__card--wave-04 {
    width: 47rem;
    margin-left: 10.5rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: right;
  }
  .c-contents__card--wave-04 .c-contents__caption {
    display: inline-block;
    margin-right: 1rem;
  }
  .c-contents__card--wave-04 .c-contents__caption li {
    margin-left: .6rem;
  }
  .c-contents__card--wave-05 {
    width: 52.7rem;
    margin-top: 2.6rem;
    padding-top: 31rem;
    padding-left: 19.7rem;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .c-contents__card--wave-05 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 12.2rem 5.7rem 11.2rem;
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-contents__card--wave-05 .c-contents__desc .ttl {
    top: 6.8rem;
    left: 0.4rem;
  }
  .c-contents__card--natural-04 {
    width: 52rem;
    margin: auto;
  }
  .c-contents__card--natural-04 .c-contents__caption li {
    margin: 0 .3rem;
  }
  .c-contents__card--natural-05 {
    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;
    margin-top: 9.8rem;
  }
  .c-contents__card--natural-05 .c-contents__img {
    width: 38rem;
    order: 2;
    margin-left: 12rem;
  }
  .c-contents__card--natural-05 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 12.7rem 5.3rem 9rem;
    position: relative;
    order: 1;
  }
  .c-contents__card--natural-05 .c-contents__desc .ttl {
    top: 6.2rem;
    left: 0.4rem;
  }
  .c-contents__card--straight-04 {
    width: 44rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
  .c-contents__card--straight-04 .c-contents__caption {
    display: inline-block;
    margin-top: 42px;
    margin-left: 1rem;
  }
  .c-contents__card--straight-04 .c-contents__caption li {
    margin-right: 0.6rem;
  }
  .c-contents__card--straight-05 {
    margin-top: 4.6rem;
    padding-top: 30.7rem;
    padding-right: 19.7rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 8rem;
  }
  .c-contents__card--straight-05 .c-contents__img {
    width: 35rem;
  }
  .c-contents__card--straight-05 .c-contents__desc {
    width: 38rem;
    height: 38rem;
    padding: 11.6rem 5.5rem 12.2rem;
    position: absolute;
    top: 0;
    right: 0;
  }
  .c-contents__card--straight-05 .c-contents__desc .ttl {
    top: 5.3rem;
    left: 0.6rem;
  }
  .c-contents__idx {
    --cont-idx-fz: 3rem;
    -webkit-transform: translateY(calc(-100% + 10px));
            transform: translateY(calc(-100% + 10px));
    text-align: center;
  }
  .c-contents__idx .type {
    margin-bottom: .5rem;
  }
  .c-contents__caption {
    margin-top: 32px;
  }
  .c-contents__caption li {
    --capt-fz: 1.2rem;
    --capt-lh: calc(21 / 12);
  }
  .c-contents__desc .ttl {
    --desc-ttl-fz: 5.4rem;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .c-contents__desc .detail {
    --detail-fz: 1.2rem;
    --detail-lh: calc(22 / 12);
  }
}

@media screen and (min-width: 768px) {
  .c-contents__idx {
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
  .c-contents__desc .detail {
    line-height: 1.8333333333;
    font-feature-settings: normal;
  }
  .c-contents__caption li {
    line-height: 1.75;
  }
}

/*//////////////////////////////////////////////////

Title : _products.scss
For   : "骨格診断" styles of the site

Created       : 2022-04-24
Last Modified : 2022-04-24

//////////////////////////////////////////////////*/
.c-products {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 0;
}

.c-products__idx {
  position: relative;
  font-size: var(--prod-idx-fz, 2.7rem);
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
}

.c-products__idx::after {
  width: var(--prod-idx-bdr-w, 1.8rem);
  height: 1px;
  margin: auto;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
}

.c-products__name {
  font-size: var(--prod-name-fz, 3.5rem);
  font-family: var(--font-jp);
  letter-spacing: .08em;
  line-height: 1;
}

.c-products__price {
  font-size: var(--prod-price-fz, 2.4rem);
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
}

.c-products__img--1stprod {
  width: var(--prod-img-1-w, 38rem);
}

.c-products__img--2ndprod {
  width: var(--prod-img-2-w, 36rem);
}

.c-products__img--3rdprod {
  width: var(--prod-img-3-w, 42rem);
}

.c-products__colorchips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-products__colorchips li {
  width: var(--chip-sz, 2.2rem);
  height: var(--chip-sz, 2.2rem);
}

.c-products__colorchips li:not(:nth-child(1)) {
  margin-left: var(--chip-gap, 1.4rem);
}

.c-products__colorchips--1stprod li:nth-child(1) {
  border: 1px solid #A8A8A8;
  background: #fff;
}

.c-products__colorchips--1stprod li:nth-child(2) {
  background: #DBE2D7;
}

.c-products__colorchips--1stprod li:nth-child(3) {
  background: #000;
}

.c-products__colorchips--2ndprod li:nth-child(1) {
  background: #80B794;
}

.c-products__colorchips--2ndprod li:nth-child(2) {
  background: #CE7728;
}

.c-products__colorchips--2ndprod li:nth-child(3) {
  background: #84A0C1;
}

.c-products__colorchips--3rdprod li:nth-child(1) {
  border: 1px solid #A8A8A8;
  background: #F9F7ED;
}

.c-products__colorchips--3rdprod li:nth-child(2) {
  background: #000;
}

.c-products__colorchips--3rdprod li:nth-child(3) {
  background: #ED7F35;
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for mobile
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
  .c-products {
    -webkit-padding-before: 5rem;
            padding-block-start: 5rem;
  }
  .c-products::before {
    width: 100%;
    background: var(--color-prod);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
  }
  .c-products--sec01::before {
    height: 66rem;
  }
  .c-products--sec02::before {
    height: 66rem;
  }
  .c-products--sec03::before {
    height: 47rem;
  }
  .c-products__idx {
    -webkit-padding-after: 2.4rem;
            padding-block-end: 2.4rem;
  }
  .c-products__name {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
  .c-products__price {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
  .c-products__img {
    -webkit-margin-before: 3.4rem;
            margin-block-start: 3.4rem;
    margin-inline: auto;
  }
  .c-products__colorchips {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
  .c-products__colorchips li {
    width: var(--chip-sz, 2.2rem);
    height: var(--chip-sz, 2.2rem);
  }
  .c-products__colorchips li:not(:nth-child(1)) {
    margin-left: var(--chip-gap, 1.4rem);
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for desktop
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .c-products {
    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;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(#fff), color-stop(var(--color-prod)), color-stop(var(--color-prod)), color-stop(#fff), to(#fff));
    background: linear-gradient(180deg, #fff 0%, #fff var(--bg-split-pos), var(--color-prod) var(--bg-split-pos), var(--color-prod) calc(100% - var(--bg-split-pos)), #fff calc(100% - var(--bg-split-pos)), #fff 100%);
  }
  .c-products--sec01 {
    --bg-split-pos: 45px;
  }
  .c-products--sec02 {
    --bg-split-pos: 30px;
  }
  .c-products--sec03 {
    --bg-split-pos: 66px;
  }
  .c-products__desc {
    margin-left: 6rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .l-section--sec02 .c-products__desc {
    margin-left: 13rem;
  }
  .c-products__idx {
    --prod-idx-fz: 15px;
    padding-bottom: 18px;
  }
  .c-products__idx::after {
    --prod-idx-bdr-w: 10px;
  }
  .c-products__name {
    --prod-name-fz: 23px;
    margin-top: 15px;
  }
  .c-products__price {
    --prod-price-fz: 15px;
    margin-top: 12px;
  }
  .c-products__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .c-products__img--1stprod {
    --prod-img-1-w: 270px;
  }
  .c-products__img--2ndprod {
    --prod-img-2-w: 250px
				;
  }
  .c-products__img--3rdprod {
    --prod-img-3-w: 300px
				;
  }
  .c-products__colorchips {
    margin-top: 22px;
  }
  .c-products__colorchips li {
    --chip-sz: 14px;
  }
  .c-products__colorchips li:not(:nth-child(1)) {
    --chip-gap: 12px;
  }
}

/*//////////////////////////////////////////////////

Title : _btn.scss
For   : "骨格診断" styles of the site

Created       : 2022-04-24
Last Modified : 2022-04-24

//////////////////////////////////////////////////*/
.c-btn__list li {
  margin: auto;
}

.c-btn__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.c-btn__obj--all {
  width: var(--btn-all-w, 53rem);
  height: var(--btn-all-h, 11rem);
  border: 1px solid #000;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: var(--btn-all-fz, 2.7rem);
  letter-spacing: .03em;
}

.c-btn__obj--type {
  width: var(--btn-type-w, 65rem);
  height: var(--btn-type-h, 15.6rem);
  background: var(--btn-type-bg);
  position: relative;
  font-family: var(--font-jp);
  font-size: var(--btn-type-fz, 2.6rem);
  letter-spacing: .08em;
}

.c-btn__obj--type .triangle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--btn-icon-sz, 2.8rem);
}

.c-btn__obj--type::after {
  width: var(--btn-bdr-w, 63.4rem);
  height: var(--btn-bdr-h, 14rem);
  border: 1px solid #000;
  position: absolute;
  content: "";
  pointer-events: none;
}

.c-btn__obj--type:nth-of-type(2) {
  --btn-type-bg: var(--color-wave);
}

.c-btn__obj--type:nth-of-type(3) {
  --btn-type-bg: var(--color-natural);
}

.c-btn__obj--type:nth-of-type(4) {
  --btn-type-bg: var(--color-straight);
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for mobile
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
  .c-btn {
    -webkit-margin-before: 12rem;
            margin-block-start: 12rem;
  }
  .c-btn__obj--type .triangle {
    -webkit-margin-start: 2.4rem;
            margin-inline-start: 2.4rem;
  }
  .c-btn__obj--type::after {
    top: .8rem;
    left: .8rem;
  }
  .c-btn__obj--type:nth-of-type(2) {
    -webkit-margin-before: 12rem;
            margin-block-start: 12rem;
  }
  .c-btn__obj--type:nth-of-type(3) {
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
  }
  .c-btn__obj--type:nth-of-type(4) {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for desktop
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .c-btn {
    margin-top: 100px;
  }
  .c-btn__obj--all {
    --btn-all-w: 280px;
    --btn-all-h: 70px;
    --btn-all-fz: 16px;
  }
  .c-btn__obj--type {
    --btn-type-w: 480px;
    --btn-type-h: 90px;
    --btn-type-fz: 18px;
  }
  .c-btn__obj--type .triangle {
    --btn-icon-sz: 17px;
    margin-left: 24px;
  }
  .c-btn__obj--type::after {
    --btn-bdr-w: 470px;
    --btn-bdr-h: 80px;
    top: 5px;
    left: 5px;
  }
  .c-btn__obj--type:nth-of-type(2) {
    margin-top: 100px;
  }
  .c-btn__obj--type:nth-of-type(3) {
    margin-top: 10px;
  }
  .c-btn__obj--type:nth-of-type(4) {
    margin-top: 10px;
  }
}

@media all and (-ms-high-contrast: none) {
  .c-btn__obj--type::after {
    width: 458px !important;
    height: 68px !important;
  }
}

/*//////////////////////////////////////////////////

Title : _intro.scss
For   : "骨格診断" styles of the site

Created       : 2022-04-24
Last Modified : 2022-04-24

//////////////////////////////////////////////////*/

.c-intro {
  margin: auto;
  background: #f9f9f9;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}

.c-intro__img {
  width: var(--intro-img-width, 26rem);
}

.c-intro__name {
  font-size: var(--name-fz, 3rem);
  font-weight: bold;
  line-height: 1;
  letter-spacing: .08em;
}

.c-intro__detail {
  font-size: var(--detail-fz, 2.4rem);
  line-height: var(--detail-lh, calc(46 / 24));
  text-align: justify;
  letter-spacing: .08em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for mobile
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
  .c-vol1 {
    width: 100%;
    margin: 12rem auto 0;
  }

  .c-intro {
    width: 100%;
    -webkit-margin-before: 12rem;
            margin-block-start: 12rem;
    padding: 6rem 8.6rem 8rem;
  }
  .c-intro__img {
    margin: auto;
  }
  .c-intro__desc {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
  .c-intro__detail {
    -webkit-margin-before: 4.4rem;
            margin-block-start: 4.4rem;
    text-align: left;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
																				for desktop
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .c-vol1 {
    width: 78rem;
    margin: 10rem auto 0;
  }

  .c-intro {
    max-width: 780px;
    margin-top: 100px;
    padding: 50px 54px 50px 51px;
    text-align: left;
  }
  .c-intro__fig {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-intro__img {
    --intro-img-width: 170px;
  }
  .c-intro__desc {
    width: calc(100% - 170px - 70px);
    margin-left: 7rem;
  }
  .c-intro__name {
    --name-fz: 18px;
  }
  .c-intro__detail {
    --detail-fz: 14px;
    --detail-lh: calc(26 / 14);
    margin-top: 18px;
  }
}

@media all and (-ms-high-contrast: none) {
  .c-intro__detail {
    line-height: 1.8571428571;
  }
}
