@charset "UTF-8";
.pc {
  display: none !important;
}

.sp {
  display: block;
}

.l-header {
  position: relative;
}

.l-footer {
  background: linear-gradient(to bottom, #5e574f, #2e2c27);
}
.l-footer__inner {
  padding: 0 2rem;
}
.l-footer__inner .pic {
  margin: 0 auto;
  padding: 5rem 0;
  width: 11.8666666667rem;
}
.l-footer__inner .list {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: .1rem solid #fff;
}
.l-footer__inner .item {
  width: 50%;
  box-sizing: border-box;
}
.l-footer__inner .item a {
  text-decoration: underline;
  font-size: 1rem;
  color: #fff;
}
.l-footer__inner .item:nth-child(1), .l-footer__inner .item:nth-child(2) {
  margin-bottom: 1.6rem;
}
.l-footer__inner .item:nth-child(odd) {
  padding-right: 1.6rem;
  border-right: .1rem solid #fff;
  text-align: right;
}
.l-footer__inner .item:nth-child(even) {
  padding-left: 1.6rem;
  text-align: left;
}
.l-footer .f-copyright {
  padding: .8rem 0;
  border-top: .1rem solid #fff;
  text-align: center;
  font-size: .8rem;
  color: #fff;
}

.c-accordion__title {
  position: relative;
}
.c-accordion__title::before {
  content: '';
  display: block;
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 1.6rem;
  height: 0.7rem;
  background: url(../../img/sp/common_accordion_bg.png) left top no-repeat;
  background-size: 100%;
}
.c-accordion__contents {
  -moz-transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  height: 0;
  max-height: 0;
}
.c-accordion.is-open > .c-accordion__title::before {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  will-change: rotate;
}
.c-accordion.is-open .c-accordion__contents {
  will-change: transform;
}

.c-anchor {
  padding: 4rem 2rem 0;
}
.c-anchor .pic {
  margin-bottom: 1.3rem;
}

.c-arrow {
  margin: 0 auto 1.3rem;
  width: 1rem;
}

.p-cv {
  position: relative;
  background: rgba(231, 230, 230, 0.3);
}
.p-cv__pic {
  position: absolute;
  top: 0;
  left: 0;
}
.p-cv__inner {
  position: relative;
  padding-top: 14.1rem;
}
.p-cv__inner > .title {
  margin-bottom: 1rem;
}
.p-cv__inner > .text {
  margin-bottom: 2.7rem;
  text-align: justify;
  line-height: 1.4;
  font-feature-settings: 'palt';
  font-size: 1.4rem;
  color: rgba(56, 50, 49, 0.7);
}
.p-cv__inner > .text em {
  font-size: 1.9rem;
  font-weight: bold;
  color: #f17c6c;
  vertical-align: -2px;
}
.p-cv__inner > .price {
  margin: 0 -1rem 0 -2rem;
}
.p-cv__inner > .feature {
  position: relative;
  height: 5.5333333333rem;
  background: url(../../img/sp/cv_feature.png) left top no-repeat;
  background-size: 100%;
}
.p-cv__inner > .feature .date {
  position: absolute;
  top: 2.6rem;
  right: .3rem;
  font-family: 'Futura Round', Futura, sans-serif;
  font-size: 2.7rem;
  font-weight: 100;
  color: #f17c6c;
}
.p-cv__button {
  padding-bottom: 3.8rem;
}
.p-cv__button input {
  width: 100%;
}

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

File Name:		index.scss
Note:			トップSCSSファイル


New Creation:	2020/06/12.
Last Change:	2018/06/12.


------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

0.	共通使用変数定義
1.	ブラウザデフォルトスタイルリセット
2.	共通部分
3.	original

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
0.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
ul,
ol,
dl,
form,
fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

html {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 10px;
  color: #e2e2e3;
}

@media (max-width: 320px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 376px) and (max-width: 1125px) {
  html {
    font-size: calc(.625rem + ((1vw - (375px / 100)) * (100 * ((20 - 10) / (1125 - 375)))));
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font: 100%;
  font-size: inherit;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

button {
  margin: 0;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

caption,
th {
  text-align: left;
  font-weight: normal;
}

th,
td {
  padding: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

iframe {
  border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*----------------------------------------------------------------------
2.	共通部分
----------------------------------------------------------------------*/
.l-header__logo {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 15.5666666667rem;
  transform: translateX(-50%);
}
.l-header__inner {
  position: relative;
  padding: 2rem 2rem 0;
  margin-bottom: 1.3rem;
}
.l-header__inner .button {
  position: absolute;
  bottom: .6rem;
  right: 2.8rem;
  left: 2.8rem;
}
.l-header__inner .button input {
  width: 100%;
}
.l-header__navi {
  z-index: 100;
  background-color: #fff;
}
.l-header__navi .list {
  display: flex;
}
.l-header__navi .list__item {
  flex: 1;
  border-top: 1px solid #c7bcb4;
  border-bottom: 1px solid #c7bcb4;
}
.l-header__navi .list__item__inner {
  display: block;
  box-sizing: border-box;
  height: 4.4rem;
  padding: .5rem 0;
  text-align: center;
}
.l-header__navi .list__item__inner img {
  height: 100%;
  width: auto;
}
.l-header__navi .list__item__inner .addCart {
  height: 34px;
  width: auto;
}
.l-header__navi .list__item:not(:last-child) {
  border-right: 1px solid #c7bcb4;
}
.l-header__navi.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
.l-header__navi.is-fixed .list__item {
  border-top: none;
}

/*----------------------------------------------------------------------
3.	original
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
	About
----------------------------------------------------------------------*/
.p-about__wrapper {
  position: relative;
}
.p-about__wrapper > .title {
  position: absolute;
  top: 0;
  padding: 4rem calc((100% - 24.3333333333rem) / 2) 0;
}
.p-about__inner {
  padding: 11rem 2rem 2.5rem;
  background: url(../../img/sp/index_about_bg.png) left top no-repeat;
  background-size: 100%;
}
.p-about .c-anchor {
  position: relative;
}
.p-about .c-anchor .pic1,
.p-about .c-anchor .pic2 {
  position: absolute;
  z-index: 1;
}
.p-about .c-anchor .pic1 {
  top: 0;
  left: 0;
  width: 10.2rem;
}
.p-about .c-anchor .pic2 {
  right: 0;
  bottom: -5rem;
  width: 10.7rem;
}

/*----------------------------------------------------------------------
	Point
----------------------------------------------------------------------*/
.p-point {
  background: url(../../img/sp/index_point_bg.png) left top no-repeat, rgba(227, 225, 223, 0.3);
  background-size: 100%;
}
.p-point > .title {
  margin: 0 auto 4rem;
  width: 29.6666666667rem;
}
.p-point__inner {
  padding: 0 2rem 2rem;
}
.p-point__inner .box > .title {
  margin-bottom: 1.3rem;
}
.p-point__inner .box > .pic {
  margin-bottom: 1.5rem;
}
.p-point__inner .box + .box {
  margin-top: 4rem;
}

/*----------------------------------------------------------------------
	Commitment
----------------------------------------------------------------------*/
.p-commitment {
  background: url(../../img/sp/index_commitment_bg.png) left top no-repeat, rgba(227, 225, 223, 0.3);
  background-size: 100%;
}
.p-commitment > .title {
  margin: 0 auto 4rem;
  width: 26.2666666667rem;
}
.p-commitment__inner .box > .pic.pic1, .p-commitment__inner .box > .pic.pic3 {
  margin-right: 2rem;
}
.p-commitment__inner .box > .pic.pic2 {
  margin-left: 2rem;
}
.p-commitment__inner .box > .pic + .pic {
  margin-top: 1.5rem;
}
.p-commitment .doctor {
  margin: 4rem 2rem 0;
}
.p-commitment .doctor > .title {
  margin-bottom: .5rem;
  text-align: right;
}
.p-commitment .doctor > .title img {
  width: 20.5rem;
}
.p-commitment .doctor__inner {
  position: relative;
  padding: 2.7rem 2rem 1.8rem;
  border: .1rem solid #000;
  border-radius: .4rem;
  background: #fff;
}
.p-commitment .doctor__inner .pic {
  position: absolute;
  top: -3.25rem;
  left: 2rem;
  width: 10.4666666667rem;
}
.p-commitment .doctor__inner .name {
  margin-bottom: .9rem;
  text-align: right;
}
.p-commitment .doctor__inner .name img {
  width: 22.0666666667rem;
}
.p-commitment .doctor__inner .text {
  margin-bottom: 1.7rem;
}
.p-commitment .doctor .biography,
.p-commitment .doctor .qualification {
  margin-bottom: 1rem;
}
.p-commitment .doctor .biography .list,
.p-commitment .doctor .qualification .list {
  padding: 1rem 0;
}
.p-commitment .doctor .biography .item .inner {
  display: flex;
  line-height: 1.5;
  font-size: 1rem;
  color: rgba(56, 50, 49, 0.7);
}
.p-commitment .doctor .biography .item .inner__title {
  width: 15%;
}
.p-commitment .doctor .biography .item .inner__text {
  width: 85%;
}
.p-commitment .doctor .qualification .c-accordion__contents__inner {
  display: flex;
  justify-content: space-between;
}
.p-commitment .doctor .qualification .list {
  width: 48%;
}
.p-commitment .doctor .qualification .item {
  display: flex;
  line-height: 1.5;
  font-size: 1rem;
  color: rgba(56, 50, 49, 0.7);
}
.p-commitment .doctor .qualification .item::before {
  content: '●';
  margin-right: .3rem;
}
.p-commitment .doctor .message .title {
  margin-bottom: 1rem;
}
.p-commitment .c-anchor {
  padding-top: 1.3rem;
}

/*----------------------------------------------------------------------
	Voice
----------------------------------------------------------------------*/
.p-voice {
  display: block;
  padding: 4rem 0 3rem;
  background: #f6f4f2;
}
.p-voice > .title {
  margin: 0 auto 2.7rem;
  width: 25.1333333333rem;
}
.p-voice__inner {
  margin: 0 2rem;
}
.p-voice__inner .list {
  height: 53.5rem;
  max-height: 53.5rem;
}
.p-voice__inner .item {
  display: none;
  visibility: hidden;
  margin-bottom: .1rem;
  padding-bottom: 2.1rem;
  border-bottom: 0.1rem solid rgba(56, 50, 49, 0.5);
}
.p-voice__inner .item .inner {
  position: relative;
}
.p-voice__inner .item .inner__title {
  margin: 0 0 .5rem 5.7rem;
  padding-left: 3.9rem;
  background: url(../../img/sp/index_voice_item_title_bg.png) center no-repeat;
  background-size: 100%;
}
.p-voice__inner .item .inner__title .title {
  display: inline-block;
  vertical-align: middle;
  text-align: justify;
  line-height: 1.4;
  font-size: 1.5rem;
  color: #ac9088;
}
.p-voice__inner .item .inner__title::before {
  content: '';
  display: inline-block;
  height: 9.6666666667rem;
  vertical-align: middle;
}
.p-voice__inner .item .inner__text {
  position: relative;
  text-align: justify;
  line-height: 1.5;
  font-size: 1.2rem;
  color: rgba(56, 50, 49, 0.7);
}
.p-voice__inner .item .inner__text::before {
  content: attr(data-summary);
  display: inline;
  text-align: justify;
}
.p-voice__inner .item .inner__text::after {
  content: '続きを読む';
  display: inline;
  float: right;
  text-decoration: underline;
  font-size: 1.3rem;
  color: #383231;
}
.p-voice__inner .item .inner__text .text {
  display: inline;
}
.p-voice__inner .item .inner__text .text::after {
  content: '…';
}
.p-voice__inner .item .inner__text .js-readmore-text {
  display: none;
}
.p-voice__inner .item .inner__text.is-active::before, .p-voice__inner .item .inner__text.is-active::after,
.p-voice__inner .item .inner__text.is-active .text::after {
  content: initial;
}
.p-voice__inner .item .inner__text.is-active .js-readmore-text {
  display: inline;
}
.p-voice__inner .item .inner::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 0;
  width: 7.8666666667rem;
  height: 7.2333333333rem;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
.p-voice__inner .item:last-child {
  margin: 0;
}
.p-voice__inner .item.is-active {
  display: block;
  visibility: visible;
}
.p-voice__inner .item:nth-child(5n + 1) .inner::before {
  background-image: url(../../img/sp/index_voice_item_bg1.png);
}
.p-voice__inner .item:nth-child(5n + 2) .inner::before {
  background-image: url(../../img/sp/index_voice_item_bg2.png);
}
.p-voice__inner .item:nth-child(5n + 3) .inner::before {
  background-image: url(../../img/sp/index_voice_item_bg3.png);
}
.p-voice__inner .item:nth-child(5n + 4) .inner::before {
  background-image: url(../../img/sp/index_voice_item_bg4.png);
}
.p-voice__inner .item:nth-child(5n + 5) .inner::before {
  background-image: url(../../img/sp/index_voice_item_bg5.png);
}
.p-voice__inner .button {
  display: none;
  margin-top: 1.3rem;
}
.p-voice__inner .button.is-active {
  display: block;
}

/*----------------------------------------------------------------------
	Faq
----------------------------------------------------------------------*/
.p-faq {
  display: block;
  padding-bottom: 2rem;
}
.p-faq > .title {
  margin: 0 auto 2.7rem;
  width: 19.6666666667rem;
}
.p-faq__inner {
  position: relative;
  overflow: hidden;
  padding: 0 2rem 12rem;
  height: 44rem;
  background: #fff;
}
.p-faq__inner.is-open {
  padding-bottom: 3rem;
  height: auto;
}
.p-faq__inner .item {
  position: relative;
}
.p-faq__inner .item a {
  position: absolute;
  top: 4.5rem;
  left: 0;
  width: 100%;
  height: 4rem;
}
.p-faq__inner .item + .item {
  margin-top: 2.5rem;
}
.p-faq .button {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem 2rem 3rem;
  background: #fff;
}
.p-faq .button.is-open {
  display: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media, _:future, :root .p-cv__inner > .feature .date {
    top: 2.4rem;
    right: .2rem;
    font-size: 2.4rem;
  }
}

/*# sourceMappingURL=index.css.map */
