@charset "UTF-8";

.contents {
  letter-spacing: 0;
}
.contents picture {
  width: 100%;
}
.contents img {
  width: 100%;
  height: auto;
}

.pc-view {
	display: block;
}
.sp-view {
	display: none;
}

@media screen and (max-width: 640px) {
  .pc-view {
    display: none;
  }
  .sp-view {
    display: block;
  }
}

/* ボタン */
.c-button {
  display: inline-block;
  padding: 6px 0 5px;
  font-size: 11px;
  color: #000;
  background-color: transparent;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .c-button {
    padding: .6em 0 .6em;
    font-size: calc(10 / 380 * 100vw);
    line-height: 1;
  }
}
.c-button .txt-btn {
  position: relative;
  display: inline-block;
}
.c-button .txt-btn img {
  display: block;
}

.c-button--arrow {
  position: relative;
  padding-right: 20px;
}
.c-button--arrow .arrow {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 12px;
  transform: translateY(-50%);
}
.c-button--arrow .arrow:before,
.c-button--arrow .arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: translateY(-50%) rotate(45deg);
}
.c-button--arrow .arrow:before {
  left: -3px;
}
.c-button--arrow .arrow:after {
  right: 2px;
}
@media screen and (max-width: 640px) {
  .c-button--arrow {
    padding-right: 2em;
  }
  .c-button--arrow .arrow {
    right: .2em;
    width: 1.8em;
    height: 1.2em;
  }
  .c-button--arrow .arrow:before,
  .c-button--arrow .arrow:after {
    width: .9em;
    height: .9em;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
  }
  .c-button--arrow .arrow:before {
    left: -.3em;
  }
  .c-button--arrow .arrow:after {
    right: .2em;
  }
}

.c-button--square {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding-top: 8px;
  padding-right: 12px;
  padding-left: 12px;
  border: solid 1px #000;
  transition: background-color .2s ease-in-out;
}
@media screen and (min-width: 641px) {
  .c-button--square:hover {
    background-color: #fff;
  }
}
.c-button--square.c-button--arrow {
  padding-right: 32px;
}
.c-button--square.c-button--arrow .arrow {
  right: 16px;
}
@media screen and (max-width: 640px) {
  .c-button--square {
    height: 2.1em;
    padding-top: .7em;
    border: solid 2px #000;
  }
  .c-button--square.c-button--arrow {
    padding-right: 2.1em;
  }
  .c-button--square.c-button--arrow .arrow {
    right: .8em;
    width: 1.1em;
    height: .8em;
  }
  .c-button--square.c-button--arrow .arrow:before,
  .c-button--square.c-button--arrow .arrow:after {
    width: .55em;
    height: .55em;
  }
}

.c-button--underline {
  border-bottom: solid 1px #000;
}
@media screen and (max-width: 640px) {
  .c-button--underline {
    border-bottom: solid 2px #000;
  }
}

/* モーダル */
.c-modal picture {
  width: 100%;
}
.c-modal img {
  width: 100%;
  height: auto;
}
.c-modal__inner {
  max-width: 950px;
  margin: 50px auto;
}
.c-modal__content {
  position: relative;
  padding-right: 45px;
  padding-left: 5px;
}
.c-modal__close {
  position: fixed;
  top: 50px;
  right: calc(50% - 468px);
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.c-modal__close:before,
.c-modal__close:after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 40px;
  border-top: solid 2px #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mfp-container {
  padding: 0 15px;
}
@media screen and (max-width: 995px) {
  .c-modal__close {
    right: 30px;
  }
}
@media screen and (max-width: 640px) {
  .c-modal__content {
    padding-right: 5px;
  }
  .c-modal__close {
    position: absolute;
    top: -40px;
    right: 5px;
  }
}

/* フェードイン */
.js-scroll-fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: transform .5s ease-out, opacity 1.5s;
}
.js-scroll-fadein.is-fadein {
  opacity: 1;
  transform: translateY(0);
}


/*---------------------------------
メインビジュアル セクション
-----------------------------------*/
.section-mv {
  padding-bottom: 60px;
  background: #eee;
}
.section-mv__inner {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px);
  min-height: 732px;
  padding: 20px;
  background: #fff;
}
.section-mv__bg-img {
  width: 100%;
  height: 100%;
  background-image: url('../img/mv/bg-mv.jpg');
  background-position: center;
  background-size: cover;
}
.section-mv__txt-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: min(calc(844 / 1320 * 100%), 844px);
  height: min(calc(78 / 732 * 100%), 78px);
  overflow: hidden;
}
.section-mv__txt-01:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translateX(-101%);
  transition: transform .3s ease-in-out;
}
.is-loaded .section-mv__txt-01:before {
  transform: translateX(0);
}
.section-mv__txt-01 img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(calc(797 / 844 * 100%), 797px) !important;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s .3s ease-in-out;
}
.is-loaded .section-mv__txt-01 img {
  opacity: 1;
}
.section-mv__txt-01-2 {
  display: none;
}
.section-mv__txt-02 {
  position: absolute;
  top: min(calc(100 / 732 * 100%), 100px);
  left: min(calc(39 / 1320 * 100%), 39px);
  width: min(calc(353 / 1320 * 100%), 353px);
  opacity: 0;
  transition: opacity 1s .6s ease-in-out;
}
.is-loaded .section-mv__txt-02 {
  opacity: 1;
}
.section-mv__txt-03 {
  position: absolute;
  top: 0;
  right: 0;
  width: min(calc(55 / 1320 * 100%), 55px);
  opacity: 0;
  transition: opacity 1s .8s ease-in-out;
}
.is-loaded .section-mv__txt-03 {
  opacity: 1;
}
.section-mv__txt-04 {
  position: absolute;
  bottom: min(calc(47 / 732 * 100%), 47px);
  left: 0;
  width: min(calc(46 / 1320 * 100%), 46px);
  opacity: 0;
  transition: opacity 1s .8s ease-in-out;
}
.is-loaded .section-mv__txt-04 {
  opacity: 1;
}
.section-mv__package {
  position: absolute;
  bottom: min(calc(24 / 732 * 100%), 24px);
  left: min(calc(59 / 1320 * 100%), 59px);
  width: min(calc(158 / 1320 * 100%), 158px);
  z-index:1;
  opacity: 0;
  transition: opacity .4s 1.2s ease-in-out;
}
.is-loaded .section-mv__package {
  opacity: 1;
}
.section-mv__logo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(calc(304 / 1320 * 100%), 304px);
  opacity: 0;
  transition: opacity .4s .6s ease-in-out;
}
.is-loaded .section-mv__logo {
  opacity: 1;
}
.section-mv__decoration span {
  position: absolute;
  display: block;
  overflow: hidden;
}
.section-mv__decoration span:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translateX(-101%);
}
.is-loaded .section-mv__decoration span:before {
  transform: translateX(0);
}
.section-mv__decoration .deco-01 {
  top: min(calc(77 / 732 * 100%), 77px);
  left: min(calc(551 / 1320 * 100%), 551px);
  width: min(calc(350 / 1320 * 100%), 350px);
  height: min(calc(9 / 732 * 100%), 9px);
}
.section-mv__decoration .deco-01:before {
  transition: transform .3s .5s ease-in-out;
}
.section-mv__decoration .deco-02 {
  bottom: 0;
  left: 0;
  width: min(calc(176 / 1320 * 100%), 176px);
  height: min(calc(47 / 732 * 100%), 47px);
}
.section-mv__decoration .deco-02:before {
  transition: transform .2s 1s ease-in-out;
}
.section-mv__decoration .deco-03 {
  bottom: 0;
  left: min(calc(175 / 1320 * 100%), 175px);
  width: min(calc(403 / 1320 * 100%), 403px);
  height: min(calc(32 / 732 * 100%), 32px);
}
.section-mv__decoration .deco-03:before {
  transition: transform .3s 1s ease-in-out;
}
.section-mv__decoration .deco-04 {
  top: min(calc(10 / 732 * 100%), 10px);
  right: min(calc(55 / 1320 * 100%), 55px);
  width: min(calc(15 / 1320 * 100%), 15px);
  height: min(calc(173 / 732 * 100%), 173px);
}
.section-mv__decoration .deco-04:before {
  transform: translateY(-101%);
  transition: transform .2s 1.3s ease-in-out;
}
.is-loaded .section-mv__decoration .deco-04:before {
  transform: translateY(0);
}
.section-mv__decoration .deco-05 {
  top: min(calc(60 / 732 * 100%), 60px);
  right: min(calc(69 / 1320 * 100%), 69px);
  width: min(calc(28 / 1320 * 100%), 28px);
  height: min(calc(229 / 732 * 100%), 229px);
}
.section-mv__decoration .deco-05:before {
  transform: translateY(-101%);
  transition: transform .3s 1.3s ease-in-out;
}
.is-loaded .section-mv__decoration .deco-05:before {
  transform: translateY(0);
}
@media screen and (max-width: 640px) {
  .section-mv {
    padding-bottom: 0;
    background: #fff;
  }
  .section-mv__inner {
    height: calc(680 / 360 * 100vw);
    min-height: auto;
    padding: 0 calc(10 / 380 * 100%) calc(65 / 380 * 100%);
  }
  .section-mv__bg-img {
    background-image: url('../img/mv/bg-mv-sp.jpg');
  }
  .section-mv__txt-01 {
    width: calc(185 / 380 * 100%);
    height: calc(44 / 680 * 100%);
  }
  .section-mv__txt-01:before {
    transition: transform .2s ease-in-out;
  }
  .section-mv__txt-01 img {
    width: calc(168 / 185 * 100%) !important;
    transition: opacity 1s .2s ease-in-out;
  }
  .section-mv__txt-01-2 {
    position: absolute;
    display: block;
    top: calc(43 / 680 * 100%);
    left: calc(19 / 380 * 100%);
    width: calc(282 / 380 * 100%);
    height: calc(44 / 680 * 100%);
    overflow: hidden;
  }
  .section-mv__txt-01-2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transform: translateX(-101%);
    transition: transform .2s .2s ease-in-out;
  }
  .is-loaded .section-mv__txt-01-2:before {
    transform: translateX(0);
  }
  .section-mv__txt-01-2 img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(267 / 282 * 100%) !important;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s .4s ease-in-out;
  }
  .is-loaded .section-mv__txt-01-2 img {
    opacity: 1;
  }
  .section-mv__txt-02 {
    top: auto;
    bottom: calc(102 / 680 * 100%);
    right: calc(20 / 380 * 100%);
    left: auto;
    width: calc(213 / 380 * 100%);
    transition: opacity 1s .8s ease-in-out;
  }
  .section-mv__txt-03 {
    top: calc(8 / 680 * 100%);
    width: calc(25 / 380 * 100%);
  }
  .section-mv__txt-04 {
    bottom: calc(76 / 680 * 100%);
    width: calc(20 / 380 * 100%);
  }
  .section-mv__package {
    bottom: calc(88 / 680 * 100%);
    left: calc(29 / 380 * 100%);
    width: calc(107 / 380 * 100%);
    transition: opacity .4s .8s ease-in-out;
  }
  .section-mv__logo {
    width: 100%;
    opacity: 1;
  }
  .section-mv__decoration .deco-01 {
    top: calc(86 / 680 * 100%);
    left: calc(236 / 380 * 100%);
    width: calc(78 / 380 * 100%);
    height: calc(6 / 680 * 100%);
  }
  .section-mv__decoration .deco-02 {
    display: none;
  }
  .section-mv__decoration .deco-03 {
    display: none;
  }
  .section-mv__decoration .deco-04 {
    top: calc(12 / 680 * 100%);
    right: calc(25 / 380 * 100%);
    width: calc(7 / 380 * 100%);
    height: calc(80 / 680 * 100%);
  }
  .section-mv__decoration .deco-04:before {
    transition: transform .2s 1s ease-in-out;
  }
  .section-mv__decoration .deco-05 {
    top: calc(35 / 680 * 100%);
    right: calc(31 / 380 * 100%);
    width: calc(13 / 380 * 100%);
    height: calc(106 / 680 * 100%);
  }
  .section-mv__decoration .deco-05:before {
    transition: transform .3s 1s ease-in-out;
  }
}


/*---------------------------------
NEW SMART, NEW STANDARD. セクション
-----------------------------------*/
.section-overview {
  padding-top: 103px;
  background: #fff;
}
.section-overview__lead-01 {
  max-width: 715px;
  margin: 0 auto 60px;
}
.section-overview__lead-02 {
  max-width: 854px;
  margin: 0 auto;
}
.section-overview__item {
  padding: 110px 20px 85px;
  background-image: linear-gradient(to bottom, #fff 36.3%, #eee 36.3%);
}
.section-overview__item-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}
.section-overview__item .content,
.section-overview__item .notice {
  position: absolute;
  bottom: calc(74 / 732 * 100%);
  left: 0;
  width: 50%;
}
.section-overview__item .notice {
  bottom: calc(27 / 732 * 100%);
}
.section-overview__item .txt-01 {
  margin-bottom: 7.2%;
}
.section-overview__item .content > *,
.section-overview__item .notice > * {
  padding-left: calc(61 / 600 * 100%);
  box-sizing: content-box;
}
.section-overview__item .notice > * {
  padding-left: calc(27 / 600 * 100%);
}
.section-overview__item .notice picture {
  font-size: 0;
}
.section-overview__item .content.position-right,
.section-overview__item .notice.position-right {
  left: 50%;
}
.section-overview__item .content.position-right > * {
  padding-left: calc(52 / 600 * 100%);
}
.section-overview__item .notice.position-right > * {
  padding-left: calc(10 / 600 * 100%);
}
.section-overview__decoration span {
  position: absolute;
  display: block;
  overflow: hidden;
}
.section-overview__decoration span:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translateX(-101%);
  transition: transform .5s ease-in-out;
}
.section-overview__decoration .reverse:before {
  transform: translateX(101%);
}
.is-top-loaded .section-overview__decoration span.top:before {
  transform: translateX(0);
}
.is-bottom-loaded .section-overview__decoration span.bottom:before {
  transform: translateX(0);
}
.section-overview__decoration span.vertical:before {
  transform: translateY(-101%);
}
.section-overview__decoration span.vertical.reverse:before {
  transform: translateY(101%);
}
.is-top-loaded .section-overview__decoration span.top.vertical:before {
  transform: translateY(0);
}
.is-bottom-loaded .section-overview__decoration span.bottom.vertical:before {
  transform: translateY(0);
}
.section-overview__item .c-button {
  position: absolute;
  bottom: calc(-20 / 732 * 100%);
  right: 0;
  width: 252px;
  transform: translateY(100%);
  transition: all .2s ease-in-out;
}
.section-overview__item .c-button .txt-btn .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
@media screen and (min-width: 641px) {
  .section-overview__item .c-button:hover {
    background-color: #000;
  }
  .section-overview__item .c-button:hover .txt-btn .nomal {
    opacity: 0;
  }
  .section-overview__item .c-button:hover .txt-btn .hover {
    opacity: 1;
  }
  .section-overview__item .c-button--arrow:hover .arrow:before,
  .section-overview__item .c-button--arrow:hover .arrow:after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
}

@media screen and (max-width: 640px) {
  .section-overview {
    padding-top: 4.3em;
    font-size: calc(10 / 380 * 100vw);
  }
  .section-overview__lead-01 {
    width: calc(248 / 380 * 100%);
    max-width: none;
    margin-bottom: 3.2em;
  }
  .section-overview__lead-02 {
    width: calc(276 / 380 * 100%);
    max-width: none;
    margin-bottom: 1.3em;
  }
  .section-overview__item {
    padding: 3em 2.1em 2.5em;
    background-image: linear-gradient(to bottom, #fff 20.7%, #eee 20.7%);
  }
  .section-overview__item-inner {
    padding: 1em;
  }
  .section-overview__item .content,
  .section-overview__item .notice {
    width: 100%;
  }
  .section-overview__item .content {
    bottom: calc(50% + 3.1em);
  }
  .section-overview__item .txt-01 {
    margin-bottom: 2.3em;
  }
  .section-overview__item .notice {
    bottom: calc(50% + .4em);
  }
  .section-overview__item .content > *,
  .section-overview__item .content.position-right > * {
    padding-left: 2.3em;
  }
  .section-overview__item .notice > *,
  .section-overview__item .notice.position-right > * {
    padding-left: 1.5em;
  }
  .section-overview__item .content.position-right,
  .section-overview__item .notice.position-right {
    left: 0;
  }
  .section-overview__item .c-button {
    bottom: -1em;
    width: calc(164 / 338 * 100%);
  }
}

/* item-01 */
.section-overview__item.item-01 .txt-01 {
  width: calc(477 / 600 * 100%);
}
.section-overview__item.item-01 .txt-02 {
  width: calc(460 / 600 * 100%);
}
.section-overview__item.item-01 .txt-03 {
  width: calc(340 / 600 * 100%);
}
.section-overview__item.item-01 .deco-01 {
  top: 0;
  right: 0;
  width: calc(209 / 1200 * 100%);
  height: calc(21 / 732 * 100%);
}
.section-overview__item.item-01 .deco-02 {
  top: calc(20 / 732 * 100%);
  right: 0;
  width: calc(110 / 1200 * 100%);
  height: calc(15 / 732 * 100%);
}
.section-overview__item.item-01 .deco-03 {
  bottom: 0;
  left: calc(454 / 1200 * 100%);
  width: calc(181 / 1200 * 100%);
  height: calc(21 / 732 * 100%);
}
.section-overview__item.item-01 .deco-04 {
  bottom: calc(20 / 732 * 100%);
  left: calc(557 / 1200 * 100%);
  width: calc(106 / 1200 * 100%);
  height: calc(25 / 732 * 100%);
}
@media screen and (max-width: 640px) {
  .section-overview__item.item-01 .txt-01 {
    width: calc(252 / 338 * 100%);
  }
  .section-overview__item.item-01 .txt-02 {
    width: calc(290 / 338 * 100%);
  }
  .section-overview__item.item-01 .txt-03 {
    width: calc(213 / 338 * 100%);
  }
  .section-overview__item.item-01 .deco-01 {
    width: 19.4em;
    height: 1.1em;
  }
  .section-overview__item.item-01 .deco-02 {
    top: 1em;
    width: 10.2em;
    height: 1.4em;
  }
  .section-overview__item.item-01 .deco-03 {
    left: 0;
    width: 16.8em;
    height: 1.1em;
  }
  .section-overview__item.item-01 .deco-04 {
    bottom: 1em;
    left: 9.6em;
    width: 9.8em;
    height: 1.6em;
  }
}

/* item-02 */
.section-overview__item.item-02 .txt-01 {
  width: calc(406 / 600 * 100%);
}
.section-overview__item.item-02 .txt-02 {
  width: calc(480 / 600 * 100%);
}
.section-overview__item.item-02 .txt-btn {
  width: 163px;
}
.section-overview__item.item-02 .deco-01 {
  top: 0;
  right: calc(44 / 1200 * 100%);
  width: calc(429 / 1200 * 100%);
  height: calc(21 / 732 * 100%);
}
.section-overview__item.item-02 .deco-02 {
  bottom: 0;
  left: 0;
  width: calc(21 / 1200 * 100%);
  height: calc(176 / 732 * 100%);
}
.section-overview__item.item-02 .deco-03 {
  bottom: calc(20 / 732 * 100%);
  left: calc(20 / 1200 * 100%);
  width: calc(14 / 1200 * 100%);
  height: calc(242 / 732 * 100%);
}
@media screen and (max-width: 640px) {
  .section-overview__item.item-02 {
    padding-bottom: 4.1em;
  }
  .section-overview__item.item-02 .txt-01 {
    width: calc(215 / 338 * 100%);
  }
  .section-overview__item.item-02 .txt-02 {
    width: calc(233 / 338 * 100%);
  }
  .section-overview__item.item-02 .txt-btn {
    width: 90%;
  }
  .section-overview__item.item-02 .deco-01 {
    right: 2.2em;
    width: 24em;
    height: 1.1em;
  }
  .section-overview__item.item-02 .deco-02 {
    width: 1.1em;
    height: 16.3em;
  }
  .section-overview__item.item-02 .deco-03 {
    bottom: 1.9em;
    left: 1em;
    width: .8em;
    height: 22.5em;
  }
}

/* item-03 */
.section-overview__item.item-03 .txt-01 {
  width: calc(505 / 600 * 100%);
}
.section-overview__item.item-03 .txt-02 {
  width: calc(312 / 600 * 100%);
}
.section-overview__item.item-03 .txt-03 {
  width: calc(106 / 600 * 100%);
}
.section-overview__item.item-03 .txt-btn {
  width: 136px;
}
.section-overview__item.item-03 .deco-01 {
  top: 0;
  right: 0;
  width: calc(21 / 1200 * 100%);
  height: calc(279 / 732 * 100%);
}
.section-overview__item.item-03 .deco-02 {
  top: 0;
  right: calc(20 / 1200 * 100%);
  width: calc(21 / 1200 * 100%);
  height: calc(89 / 732 * 100%);
}
.section-overview__item.item-03 .deco-03 {
  bottom: 0;
  right: 0;
  width: calc(166 / 1200 * 100%);
  height: calc(21 / 732 * 100%);
}
.section-overview__item.item-03 .deco-04 {
  bottom: calc(20 / 732 * 100%);
  right: calc(76 / 1200 * 100%);
  width: calc(149 / 1200 * 100%);
  height: calc(16 / 732 * 100%);
}
@media screen and (max-width: 640px) {
  .section-overview__item.item-03 {
    padding-bottom: 4.1em;
  }
  .section-overview__item.item-03 .txt-01 {
    width: calc(265 / 338 * 100%);
  }
  .section-overview__item.item-03 .txt-02 {
    width: calc(189 / 338 * 100%);
  }
  .section-overview__item.item-03 .txt-03 {
    width: calc(65 / 338 * 100%);
  }
  .section-overview__item.item-03 .txt-btn {
    width: 75%;
  }
  .section-overview__item.item-03 .deco-01 {
    width: 1.1em;
    height: 22.4em;
  }
  .section-overview__item.item-03 .deco-02 {
    right: 1em;
    width: .9em;
    height: 8.2em;
  }
  .section-overview__item.item-03 .deco-03 {
    width: 15.4em;
    height: 1.1em;
  }
  .section-overview__item.item-03 .deco-04 {
    bottom: 1em;
    right: 7.1em;
    width: 13.8em;
    height: 1.1em;
  }
}

/* item-04 */
.section-overview__item.item-04 .txt-01 {
  width: calc(410 / 600 * 100%);
}
.section-overview__item.item-04 .txt-02 {
  width: calc(345 / 600 * 100%);
}
.section-overview__item.item-04 .txt-03 {
  width: calc(220 / 600 * 100%);
}
.section-overview__item.item-04 .deco-01 {
  top: 0;
  right: calc(163 / 1200 * 100%);
  width: calc(218 / 1200 * 100%);
  height: calc(21 / 732 * 100%);
}
.section-overview__item.item-04 .deco-02 {
  top: calc(20 / 732 * 100%);
  right: calc(110 / 1200 * 100%);
  width: calc(165 / 1200 * 100%);
  height: calc(18 / 732 * 100%);
}
.section-overview__item.item-04 .deco-03 {
  bottom: 0;
  left: 0;
  width: calc(21 / 1200 * 100%);
  height: calc(176 / 732 * 100%);
}
.section-overview__item.item-04 .deco-04 {
  bottom: calc(-40 / 732 * 100%);
  right: 0;
  width: calc(27 / 1200 * 100%);
  height: calc(136 / 732 * 100%);
}
@media screen and (max-width: 640px) {
  .section-overview__item.item-04 .txt-01 {
    width: calc(201 / 338 * 100%);
  }
  .section-overview__item.item-04 .txt-02 {
    width: calc(214 / 338 * 100%);
  }
  .section-overview__item.item-04 .txt-03 {
    width: calc(137 / 338 * 100%);
  }
  .section-overview__item.item-04 .deco-01 {
    right: 6em;
    width: 14.2em;
    height: 1.1em;
  }
  .section-overview__item.item-04 .deco-02 {
    top: 1em;
    right: 3.7em;
    width: 10.3em;
    height: .7em;
  }
  .section-overview__item.item-04 .deco-03 {
    width: 1.1em;
    height: 16.3em;
  }
  .section-overview__item.item-04 .deco-04 {
    bottom: -1em;
    width: 1.8em;
    height: 8.9em;
  }
}


/*---------------------------------
OTHER FEATURES セクション
-----------------------------------*/
.section-other-features {
  padding-top: 76px;
  padding-bottom: 110px;
  background-image: linear-gradient(to bottom, #fff 34%, #eee 34%);
}
.section-other-features__inner {
  overflow: hidden;
}
.section-other-features__heading {
  max-width: 402px;
  margin: 0 auto 72px;
}
.section-other-features__contents {
  max-width: 800px;
  margin: 0 auto;
}
.section-other-features__system {
  position: relative;
  min-height: 460px;
  background-color: #fafafa;
}
.section-other-features__system .image {
  position: absolute;
  top: calc(-107 / 460 * 100%);
  left: 0;
  width: calc(987 / 800 * 100%);
  opacity: 0;
  transform: translate(-10%, 14%);
  transition: opacity 1s .4s ease-in-out, transform 1s .4s ease-in-out;
}
.is-fadein .section-other-features__system .image {
  opacity: 1;
  transform: translate(0, 0);
}
.section-other-features__system .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: calc(36 / 800 * 100%);
}
.section-other-features__system .content > * {
  padding-left: calc(30 / 800 * 100%);
  box-sizing: content-box;
}
.section-other-features__system .txt-01 {
  width: calc(353 / 800 * 100%);
  margin-bottom: 2.4%;
}
.section-other-features__system .txt-02 {
  width: calc(277 / 800 * 100%);
  margin-bottom: 5.1%;
}
.section-other-features__system .txt-03 {
  width: calc(296 / 800 * 100%);
}
.section-other-features__airless-pump {
  display: flex;
}
.section-other-features__airless-pump .content {
  width: 50%;
  padding-top: calc(29 / 800 * 100%);
  background-color: #898989;
}
.section-other-features__airless-pump .txt-01 {
  width: calc(256 / 400 * 100%);
  margin-bottom: 4%;
  padding-left: calc(21 / 400 * 100%);
  box-sizing: content-box;
}
.section-other-features__airless-pump .txt-02 {
  width: calc(292 / 400 * 100%);
  padding-left: calc(22 / 400 * 100%);
  box-sizing: content-box;
}
.section-other-features__airless-pump .movie {
  position: relative;
  width: 50%;
  background-color: #000;
}
.section-other-features__airless-pump .movie video {
  display: block;
  width: 100%;
}
.section-other-features__airless-pump .movie .icon-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  cursor: pointer;
}
.section-other-features__airless-pump .movie .icon-btn.play {
  display: none;
}
@media screen and (max-width: 640px) {
  .section-other-features {
    padding-top: calc(32 / 380 * 100%);
    padding-bottom: calc(20 / 380 * 100%);
    background-image: linear-gradient(to bottom, #fff 25.7%, #eee 25.7%);
  }
  .section-other-features__heading {
    width: calc(260 / 380 * 100%);
    max-width: none;
    margin-bottom: calc(84 / 380 * 100%);
  }
  .section-other-features__contents {
    max-width: calc(338 / 380 * 100%);
  }
  .section-other-features__system {
    padding-top: calc(300 / 338 * 100%);
    min-height: auto;
  }
  .section-other-features__system .image {
    top: calc(-64 / 338 * 100%);
    left: calc(-21 / 338 * 100%);
    width: calc(380 / 338 * 100%);
  }
  .section-other-features__system .content {
    top: calc(-41 / 300 * 100%);
    padding-top: 0;
  }
  .section-other-features__system .txt-01 {
    width: calc(159 / 338 * 100%);
    margin-bottom: 27%;
    padding-left: calc(20 / 338 * 100%);
  }
  .section-other-features__system .txt-02 {
    width: calc(128 / 338 * 100%);
    margin-bottom: 7%;
    padding-left: calc(195 / 338 * 100%);
  }
  .section-other-features__system .txt-03 {
    width: calc(312 / 338 * 100%);
    padding-left: calc(13 / 338 * 100%);
  }
  .section-other-features__airless-pump {
    flex-wrap: wrap;
  }
  .section-other-features__airless-pump .content {
    order: 2;
    width: 100%;
    padding-top: calc(21 / 338 * 100%);
    padding-bottom: calc(23 / 338 * 100%);
  }
  .section-other-features__airless-pump .txt-01 {
    width: calc(208 / 338 * 100%);
    margin-bottom: 4%;
    padding-left: calc(18 / 338 * 100%);
  }
  .section-other-features__airless-pump .txt-02 {
    width: calc(245 / 338 * 100%);
    padding-left: calc(16 / 338 * 100%);
  }
  .section-other-features__airless-pump .movie {
    order: 1;
    width: 100%;
  }
  .section-other-features__airless-pump .movie .icon-btn {
    bottom: calc(14 / 338 * 100%);
    right: calc(8 / 338 * 100%);
    width: calc(33 / 338 * 100%);
  }
}


/*---------------------------------
SCALP D ORIGINAL SERIES セクション
-----------------------------------*/
.section-original-series {
  background: #eee;
}
.section-original-series__inner {
  position: relative;
  max-width: 2880px;
  margin: 0 auto;
}
.section-original-series__txt {
  position: absolute;
  top: calc(68 / 806 * 100%);
  left: 50%;
  width: calc(1592 / 2880 * 100%);
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .section-original-series__txt {
    top: calc(29 / 326 * 100%);
    width: calc(280 / 380 * 100%);
  }
}


/*---------------------------------
PRODUCT LINE UP セクション
-----------------------------------*/
.section-product-lineup {
  padding-top: 72px;
  padding-bottom: 70px;
  background: #eee;
}
.section-product-lineup__heading {
  max-width: 402px;
  margin: 0 auto 70px;
}
.section-product-lineup__inner {
  max-width: 900px;
  margin: 0 auto;
}
.section-product-lineup__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 90px 62px;
}
.section-product-lineup__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  align-content: flex-end;
  width: 178px;
  height: 100%;
}
.section-product-lineup__item .image {
  position: relative;
  width: 178px;
  padding-top: calc(238 / 178 * 100%);
  margin-bottom: 30px;
  font-size: 0;
  overflow: hidden;
}
.section-product-lineup__item .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-product-lineup__item .txt-name {
  margin-bottom: 14px;
}
.section-product-lineup__item .txt-detail {
  margin-bottom: 12px;
}
.section-product-lineup__item .c-button {
  display: block;
  width: 172px;
  padding: 3px 0;
}
.section-product-lineup__item .txt-btn {
  width: 71px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup {
    padding-top: calc(42 / 380 * 100%);
    padding-bottom: calc(30 / 380 * 100%);
  }
  .section-product-lineup__heading {
    width: calc(260 / 380 * 100%);
    max-width: none;
    margin-bottom: calc(34 / 380 * 100%);
  }
  .section-product-lineup__inner {
    width: calc(338 / 380 * 100%);
    max-width: none;
  }
  .section-product-lineup__list {
    gap: calc(50px * (640 / 380)) calc(26 / 338 * 100%);
  }
  .section-product-lineup__item {
    width: calc(156 / 338 * 100%);
  }
  .section-product-lineup__item .content {
    width: 100%;
  }
  .section-product-lineup__item .image {
    width: 100%;
    padding-top: calc(244 / 156 * 100%);
    margin-bottom: calc(17 / 156 * 100%);
  }
  .section-product-lineup__item .txt-name {
    min-height: auto;
    margin-bottom: calc(15 / 156 * 100%);
  }
  .section-product-lineup__item .txt-detail {
    min-height: auto;
    margin-bottom: calc(12 / 156 * 100%);
  }
  .section-product-lineup__item .c-button {
    width: calc(154 / 156 * 100%);
    padding: calc(6 / 156 * 100%) 0;
  }
  .section-product-lineup__item .txt-btn {
    width: calc(91 / 154 * 100%);
  }
}

/* item-main（item-01 〜 item-04） */
.section-product-lineup__item.item-main .image img {
  width: 130px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-main {
    width: 100%;
    margin-bottom: calc(12 / 338 * 100%);
  }
  .section-product-lineup__item.item-main .image {
    width: 100%;
    padding-top: calc(293 / 338 * 100%);
    margin-bottom: calc(22 / 338 * 100%);
  }
  .section-product-lineup__item.item-main .image img {
    width: calc(160 / 338 * 100%);
  }
  .section-product-lineup__item.item-main .txt-name {
    margin-bottom: calc(15 / 338 * 100%);
  }
  .section-product-lineup__item.item-main .txt-detail {
    margin-bottom: calc(14 / 338 * 100%);
  }
  .section-product-lineup__item.item-main .c-button {
    width: calc(336 / 338 * 100%);
    padding: calc(10 / 338 * 100%) 0;
  }
  .section-product-lineup__item.item-main .c-button--arrow .arrow {
    width: 2.4em;
    height: 1.5em;
  }
  .section-product-lineup__item.item-main .c-button--arrow .arrow:before,
  .section-product-lineup__item.item-main .c-button--arrow .arrow:after {
    width: 1.2em;
    height: 1.2em;
  }
  .section-product-lineup__item.item-main .txt-btn {
    width: calc(124 / 336 * 100%);
  }
}

/* item-01 */
.section-product-lineup__item.item-01 .txt-name {
  width: 175px;
}
.section-product-lineup__item.item-01 .txt-detail {
  width: 164px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-01 .txt-name {
    width: calc(268 / 338 * 100%);
  }
  .section-product-lineup__item.item-01 .txt-detail {
    width: calc(288 / 338 * 100%);
  }
}

/* item-02 */
.section-product-lineup__item.item-02 {
  transition-delay: .2s;
}
.section-product-lineup__item.item-02 .txt-name {
  width: 175px;
}
.section-product-lineup__item.item-02 .txt-detail {
  width: 163px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-02 {
    transition-delay: 0s;
  }
  .section-product-lineup__item.item-02 .txt-name {
    width: calc(268 / 338 * 100%);
  }
  .section-product-lineup__item.item-02 .txt-detail {
    width: calc(226 / 338 * 100%);
  }
}

/* item-03 */
.section-product-lineup__item.item-03 {
  transition-delay: .4s;
}
.section-product-lineup__item.item-03 .txt-name {
  width: 175px;
}
.section-product-lineup__item.item-03 .txt-detail {
  width: 171px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-03 {
    transition-delay: 0s;
  }
  .section-product-lineup__item.item-03 .txt-name {
    width: calc(268 / 338 * 100%);
  }
  .section-product-lineup__item.item-03 .txt-detail {
    width: calc(313 / 338 * 100%);
  }
}

/* item-04 */
.section-product-lineup__item.item-04 {
  transition-delay: .6s;
}
.section-product-lineup__item.item-04 .txt-name {
  width: 153px;
}
.section-product-lineup__item.item-04 .txt-detail {
  width: 170px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-04 {
    transition-delay: 0s;
  }
  .section-product-lineup__item.item-04 .txt-name {
    width: calc(308 / 338 * 100%);
  }
  .section-product-lineup__item.item-04 .txt-detail {
    width: calc(264 / 338 * 100%);
  }
}

/* item-05 */
.section-product-lineup__item.item-05 {
  width: 286px;
}
.section-product-lineup__item.item-05 .image {
  width: 114px;
  padding-top: calc(294 / 286 * 100%);
  margin-bottom: 0;
}
.section-product-lineup__item.item-05 .image img {
  width: 90px;
}
.section-product-lineup__item.item-05 .txt-name {
  width: 118px;
}
.section-product-lineup__item.item-05 .txt-detail {
  width: 146px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-05 {
    width: calc(156 / 338 * 100%);
  }
  .section-product-lineup__item.item-05 .image {
    width: 100%;
    padding-top: calc(200 / 156 * 100%);
    margin-bottom: calc(17 / 156 * 100%);
  }
  .section-product-lineup__item.item-05 .image img {
    width: calc(59 / 156 * 100%);
  }
  .section-product-lineup__item.item-05 .txt-name {
    width: calc(118 / 156 * 100%);
  }
  .section-product-lineup__item.item-05 .txt-detail {
    width: calc(132 / 156 * 100%);
  }
}

/* item-06 */
.section-product-lineup__item.item-06 {
  width: 446px;
  transition-delay: .2s;
}
.section-product-lineup__item.item-06 .image {
  width: 231px;
  padding-top: calc(294 / 439 * 100%);
  margin-bottom: 0;
}
.section-product-lineup__item.item-06 .image img {
  width: 231px;
}
.section-product-lineup__item.item-06 .txt-name {
  width: 215px;
}
.section-product-lineup__item.item-06 .txt-detail {
  width: 170px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-06 {
    width: calc(156 / 338 * 100%);
  }
  .section-product-lineup__item.item-06 .image {
    width: 100%;
    padding-top: calc(200 / 156 * 100%);
    margin-bottom: calc(17 / 156 * 100%);
  }
  .section-product-lineup__item.item-06 .image img {
    width: calc(162 / 156 * 100%);
  }
  .section-product-lineup__item.item-06 .txt-name {
    width: calc(154 / 156 * 100%);
  }
  .section-product-lineup__item.item-06 .txt-detail {
    width: calc(154 / 156 * 100%);
  }
}

/* item-07 */
.section-product-lineup__item.item-07 .image img {
  top: 42%;
  width: 117px;
}
.section-product-lineup__item.item-07 .txt-name {
  width: 183px;
}
.section-product-lineup__item.item-07 .txt-detail {
  width: 170px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-07 .image img {
    width: calc(116 / 156 * 100%);
  }
  .section-product-lineup__item.item-07 .txt-name {
    width: calc(132 / 156 * 100%);
  }
  .section-product-lineup__item.item-07 .txt-detail {
    width: calc(148 / 156 * 100%);
  }
}

/* item-08 */
.section-product-lineup__item.item-08 {
  transition-delay: .2s;
}
.section-product-lineup__item.item-08 .image img {
  top: 42%;
  width: 117px;
}
.section-product-lineup__item.item-08 .txt-name {
  width: 175px;
}
.section-product-lineup__item.item-08 .txt-detail {
  width: 170px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-08 .image img {
    width: calc(116 / 156 * 100%);
  }
  .section-product-lineup__item.item-08 .txt-name {
    width: calc(118 / 156 * 100%);
  }
  .section-product-lineup__item.item-08 .txt-detail {
    width: calc(148 / 156 * 100%);
  }
}

/* item-09 */
.section-product-lineup__item.item-09 {
  transition-delay: .4s;
}
.section-product-lineup__item.item-09 .image img {
  top: 47%;
  width: 271px;
}
.section-product-lineup__item.item-09 .txt-name {
  width: 175px;
}
.section-product-lineup__item.item-09 .txt-detail {
  width: 141px;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-09 {
    transition-delay: 0s;
  }
  .section-product-lineup__item.item-09 .image img {
    width: calc(270 / 156 * 100%);
  }
  .section-product-lineup__item.item-09 .txt-name {
    width: calc(118 / 156 * 100%);
  }
  .section-product-lineup__item.item-09 .txt-detail {
    width: calc(140 / 156 * 100%);
    margin-bottom: calc(14 / 338 * 100%);
  }
}

/* item-10 */
.section-product-lineup__item.item-10 {
  transition-delay: .6s;
}
.section-product-lineup__item.item-10 .image img {
  top: 47%;
  width: 271px;
}
.section-product-lineup__item.item-10 .txt-name {
  width: 145px;
}
.section-product-lineup__item.item-10 .txt-detail {
  width: 125px;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .section-product-lineup__item.item-10 {
    transition-delay: .2s;
  }
  .section-product-lineup__item.item-10 .image img {
    width: calc(270 / 156 * 100%);
  }
  .section-product-lineup__item.item-10 .txt-name {
    width: calc(144 / 156 * 100%);
  }
  .section-product-lineup__item.item-10 .txt-detail {
    width: calc(124 / 156 * 100%);
    margin-bottom: calc(14 / 338 * 100%);
  }
}


/*---------------------------------
SERIES セクション
-----------------------------------*/
.section-series {
  padding-top: 72px;
  padding-bottom: 98px;
  background: #eee;
}
.section-series__heading {
  max-width: 157px;
  margin: 0 auto 60px;
}
.section-series__list {
  max-width: 900px;
  margin: 0 auto;
}
.section-series__item {
  text-align: right;
}
.section-series__item:not(:last-child) {
  margin-bottom: 78px;
}
.section-series__item .image {
  position: relative;
  box-shadow: 0 0 40px 10px rgba(114, 113, 113, .3);
}
.section-series__item .image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .3);
  opacity: 0;
  transition: opacity .1s ease-in-out;
}
.section-series__item a:hover .image:after {
  opacity: 1;
}
.section-series__item .c-button {
  width: 190px;
  margin-top: 8px;
  text-align: left;
}
.section-series__item.item-01 .txt-btn {
  width: 151px;
}
.section-series__item.item-02 .txt-btn {
  width: 106px;
}
.section-series__item.item-03 .txt-btn {
  width: 105px;
}
@media screen and (max-width: 640px) {
  .section-series {
    padding-top: calc(42 / 380 * 100%);
    padding-bottom: calc(42 / 380 * 100%);
  }
  .section-series__heading {
    width: calc(105 / 380 * 100%);
    max-width: none;
    margin-bottom: calc(32 / 380 * 100%);
  }
  .section-series__list {
    width: calc(338 / 380 * 100%);
    max-width: none;
  }
  .section-series__item:not(:last-child) {
    margin-bottom: calc(45 / 338 * 100%);
  }
  .section-series__item .image {
    box-shadow: 0 0 32px 6px rgba(114, 113, 113, .3);
  }
  .section-series__item .c-button {
    width: calc(194 / 338 * 100%);
    margin-top: calc(8 / 338 * 100%);
  }
  .section-series__item.item-01 .txt-btn {
    width: calc(161 / 174 * 100%);
  }
  .section-series__item.item-02 .txt-btn {
    width: calc(115 / 174 * 100%);
  }
  .section-series__item.item-03 .txt-btn {
    width: calc(114 / 174 * 100%);
  }
}


/*---------------------------------
ヘアグロースメソッド セクション
-----------------------------------*/
.contents .section-method {
  position: relative;
  margin-bottom: -1px;
  background-color: #000;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .contents .section-method {
    padding-bottom: 1vw;
  }
}
.contents .section-method .method-main {
  background-image: linear-gradient(to left, transparent, #000), linear-gradient(to right, transparent, #000), url('../img/method/bg-main.jpg');
  background-size: 30px 100%, 30px 100%, 1440px auto;
  background-position: center left calc(50% - 720px + 10px), center right calc(50% - 720px + 10px), top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .contents .section-method .method-main {
    background-image: url('../img/method/bg-main-sp.jpg');
    background-size: 100% auto;
    background-position: top center;
  }
}
.contents .section-method .method-main .inner {
  width: 94%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 42px;
  padding-bottom: 55px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .method-main .inner {
    width: 86.842105vw;
    padding-top: 9.078947vw;
    padding-bottom: 10.526316vw;
    }
}
.contents .section-method .method-main .txt-main-1 {
  width: 688px;
  margin-bottom: 26px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .method-main .txt-main-1 {
    width: 68.026316vw;
    margin-bottom: 5.263158vw;
  }
}
.contents .section-method .method-main .txt-main-2 {
  width: 484px;
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .method-main .txt-main-2 {
    width: 44.342105vw;
    margin-bottom: 0;
  }
}
.contents .section-method .method-main .btns {
  display: flex;
  gap: 26px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .method-main .btns {
    display: none;
  }
}
.contents .section-method .btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 75px;
  background-color: #000;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn {
    width: 90%;
    height: 15.789474vw;
    margin: 0 auto 5vw;
    border-width: 2px;
  }
}
.contents .section-method .btn:hover {
  opacity: 1;
}
.contents .section-method .btn:after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  right: 25px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn:after {
    right: 4.736842vw;
    width: 4.210526vw;
    height: 4.210526vw;
  }
}
.contents .section-method .btn.is-open:after {
  height: 4px;
  background-color: #fff;
  background-image: none !important;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn.is-open:after {
    height: 0.8421052vw;
  }
}
.contents .section-method .btn:not(.is-open):hover:after {
  height: 4px;
  background-color: #fff;
  background-image: none !important;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn:not(.is-open):hover:after {
    height: 0.8421052vw;
  }
}
.contents .section-method .btn:before {
  content: '';
  position: absolute;
  display: block;
}
.contents .section-method .btn:not(.is-open):hover:before {
  top: 50%;
  right: 33px;
  width: 4px;
  height: 20px;
  background-color: #fff;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn:not(.is-open):hover:before {
    right: 6.4210524vw;
    width: 0.8421052vw;
    height: 4.210526vw;
  }
}
@media (min-width: 768px) {
  .contents .section-method .btn.btn-sp {
    display: none;
  }
}
.contents .section-method .btn.btn-method {
  border-image: linear-gradient(to right, #2654f5, #59c1fa, #71f5fd) 1;
}
.contents .section-method .btn.btn-method.is-open {
  border-image: linear-gradient(to right, #2c62f6, #6ae7fc) 1;
  background-image: linear-gradient(to right, #2c62f6, #6ae7fc);
}
.contents .section-method .btn.btn-method:not(.is-open):hover {
  border-image: linear-gradient(to right, #2c62f6, #6ae7fc) 1;
  background-image: linear-gradient(to right, #2c62f6, #6ae7fc);
}
.contents .section-method .btn.btn-method:after {
  background-image: url('../img/method/icon-method-plus.png');
}
.contents .section-method .btn.btn-method img {
  width: 279px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn.btn-method img {
    width: 55.131579vw;
  }
}
.contents .section-method .btn.btn-practice {
  border-image: linear-gradient(to right, #ff0000, #dd01aa, #2654f5) 1;
}
.contents .section-method .btn.btn-practice.is-open {
  border-image: linear-gradient(to right, #e0009d, #3f48eb) 1;
  background-image: linear-gradient(to right, #e0009d, #3f48eb);
}
.contents .section-method .btn.btn-practice:not(.is-open):hover {
  border-image: linear-gradient(to right, #e0009d, #3f48eb) 1;
  background-image: linear-gradient(to right, #e0009d, #3f48eb);
}
.contents .section-method .btn.btn-practice:after {
  background-image: url('../img/method/icon-practice-plus.png');
}
.contents .section-method .btn.btn-practice img {
  width: 222px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn.btn-practice img {
    width: 43.786814vw;
  }
}
.contents .section-method .btn-close {
  width: 230px;
  height: 57px;
  margin: 0 auto;
  padding: 1px;
  border-radius: 9999px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn-close {
    width: 44.736842vw;
    height: 11.315789vw;
    padding: 2px;
  }
}
.contents .section-method .btn-close .btn-close-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 1em;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .05em;
  background-color: #000;
  border-radius: 9999px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn-close .btn-close-inner {
    font-size: 4.736842vw;
  }
}
.contents .section-method .btn-close:hover .btn-close-inner {
  background-color: transparent;
}
.contents .section-method .btn-close .icon-close {
  position: absolute;
  display: block;
  top: 53%;
  right: calc(50% + 1.5em);
  width: 14.5px;
  height: 14.5px;
  transform: translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn-close .icon-close {
    width: 3.684211vw;
    height: 3.815789vw;
  }
}
.contents .section-method .btn-close:hover .icon-close {
  background-image: none !important;
}
.contents .section-method .btn-close .icon-close:before,
.contents .section-method .btn-close .icon-close:after {
  content: '';
  position: absolute;
  display: block;
  top: 40%;
  left: -3%;
  width: 106%;
  height: 18%;
  transform: rotate(45deg);
}
.contents .section-method .btn-close .icon-close:after {
  transform: rotate(-43deg);
}
.contents .section-method .btn-close:hover .icon-close:before,
.contents .section-method .btn-close:hover .icon-close:after {
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn-close:hover:after {
    height: 0.8421052vw;
  }
}
.contents .section-method .btn-close:before {
  content: '';
  position: absolute;
  display: block;
}
.contents .section-method .btn-close:hover:before {
  top: 50%;
  right: 33px;
  width: 4px;
  height: 20px;
  background-color: #fff;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .contents .section-method .btn-close:hover:before {
    right: 6.4210524vw;
    width: 0.8421052vw;
    height: 4.210526vw;
  }
}
.contents .section-method .tab-method .btn-close {
  background-image: linear-gradient(to right, #2654f5, #59c1fa, #71f5fd);
}
.contents .section-method .tab-method .btn-close:hover {
  background-image: linear-gradient(to right, #2c62f6, #6ae7fc);
}
.contents .section-method .tab-method .btn-close .icon-close {
  background-image: url('../img/method/icon-method-close.png');
}
.contents .section-method .tab-practice .btn-close {
  background-image: linear-gradient(to right, #ff0000, #dd01aa, #2654f5);
}
.contents .section-method .tab-practice .btn-close:hover {
  background-image: linear-gradient(to right, #e0009d, #3f48eb);
}
.contents .section-method .tab-practice .btn-close .icon-close {
  background-image: url('../img/method/icon-practice-close.png');
}
.contents .section-method .tab {
  display: none;
  position: relative;
  padding-bottom: 108px;
  color: #fff;
  font-size: 18px;
  font-feature-settings: "palt";
  text-align: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab {
    margin-top: 10.526316vw;
    margin-bottom: 13.157895vw;
    padding-bottom: 17.105263vw;
    font-size: 3.684211vw;
  }
}
.contents .section-method .tab.is-open {
  display: block;
  animation: method-tab-open .6s ease-in-out 0s forwards;
}
@keyframes method-tab-open {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.contents .section-method .tab-method {
  line-height: 2.3;
  background-image: url('../img/method/tab-method/bg-parts-txt.png'), linear-gradient(to left, transparent, #000), linear-gradient(to right, transparent, #000), url('../img/method/tab-method/bg-method.jpg');
  background-size: 602px auto, 30px 100%, 30px 100%, 1440px auto;
  background-position: bottom 26px right calc(50% - 720px + 602px / 2), center left calc(50% - 720px + 10px), center right calc(50% - 720px + 10px), top center;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method {
    line-height: 1.95;
    background-image: url('../img/method/tab-method/bg-parts-txt.png'), url('../img/method/tab-method/bg-method-sp.jpg');
    background-size: 79.078947vw auto, 100% auto;
    background-position: bottom 26px center, top center;
  }
}
.contents .section-method .tab-practice {
  line-height: 1.3;
  background-image: url('../img/method/tab-practice/bg-parts-txt.png'), linear-gradient(to left, transparent, #000), linear-gradient(to right, transparent, #000), url('../img/method/tab-practice/bg-practice.jpg');
  background-size: 574px auto, 30px 100%, 30px 100%, 1440px auto;
  background-position: bottom 26px right calc(50% - 720px + 574px / 2), center left calc(50% - 720px + 10px), center right calc(50% - 720px + 10px), top center;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice {
    background-image: url('../img/method/tab-practice/bg-parts-txt.png'), url('../img/method/tab-practice/bg-practice-sp.jpg');
    background-size: 75.529269vw auto, 100% auto;
    background-position: bottom 26px center, top center;
  }
}
.contents .section-method .tab .top-border,
.contents .section-method .tab .bottom-border {
  position: absolute;
  left: 0;
  width: 100%;
  height: 26px;
}
.contents .section-method .tab .top-border {
  top: 0;
}
.contents .section-method .tab .bottom-border {
  bottom: 0;
}
.contents .section-method .tab-method .top-border,
.contents .section-method .tab-method .bottom-border {
  background-image: linear-gradient(to right, #71f5fd 0%, #66defc calc(50% - 249px), #66defc calc(50% - 248px), #65dbfc calc(50% - 215px), #65dbfc calc(50% - 214px), #59c1fa 50%, #2654f5 100%);
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .top-border,
  .contents .section-method .tab-method .bottom-border {
    background-image: linear-gradient(to right, #71f5fd 0%, #5eccfb calc(50% - 3.03vw), #5eccfb calc(50% - 3.02vw), #59c2fa calc(50% + 3.02vw), #59c2fa calc(50% + 3.03vw), #2654f5 100%);
  }
}
.contents .section-method .tab-practice .top-border,
.contents .section-method .tab-practice .bottom-border {
  background-image: linear-gradient(to left, #2654f5 0%, #9521c8 calc(50% - 249px), #9521c8 calc(50% - 248px), #a21bc2 calc(50% - 215px), #a21bc2 calc(50% - 214px), #dd01aa 50%, #ff0000 100%);
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .top-border,
  .contents .section-method .tab-practice .bottom-border {
    background-image: linear-gradient(to left, #2654f5 0%, #ce07b0 calc(50% - 3.03vw), #ce07b0 calc(50% - 3.02vw), #df00a4 calc(50% + 3.02vw), #df00a4 calc(50% + 3.03vw), #ff0000 100%);
  }
}
.contents .section-method .tab .top-border:before {
  content: '';
  position: absolute;
  top: -45px;
  width: 34px;
  height: 46px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab .top-border:before {
    top: -6.052632vw;
    width: 6.052632vw;
    height: 6.184211vw;
  }
}
.contents .section-method .tab.tab-method .top-border:before {
  left: calc(50% - 248.5px);
  background-image: linear-gradient(to right, #66defc, #65dbfc);
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab.tab-method .top-border:before {
    left: calc(50% - 3.026316vw);
    background-image: linear-gradient(to right, #5eccfb, #59c2fa);
  }
}
.contents .section-method .tab.tab-practice .top-border:before {
  right: calc(50% - 248.5px);
  background-image: linear-gradient(to left, #9521c8, #a21bc2);
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab.tab-practice .top-border:before {
    right: calc(50% - 3.026316vw);
    background-image: linear-gradient(to left, #ce07b0, #df00a4);
  }
}
.contents .section-method .tab .inner {
  width: 94%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 118px;
  padding-bottom: 57px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab .inner {
    width: 90%;
    padding-top: 17.763158vw;
    padding-bottom: 10.789474vw;
  }
}
.contents .section-method .tab-practice .inner {
  padding-top: 100px;
  padding-bottom: 67px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .inner {
    padding-top: 14.210526vw;
    padding-bottom: 4.473684vw;
  }
}
.contents .section-method .tab .heading {
  position: relative;
  margin: 0 auto 47px;
  padding-bottom: 48px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab .heading {
    margin-bottom: 9.605263vw;
    padding-bottom: 7.105263vw;
  }
}
.contents .section-method .tab-method .heading {
  width: 790px;
  padding-bottom: 58px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .heading {
    width: 80.131579vw;
    padding-bottom: 7.105263vw;
    }
}
.contents .section-method .tab-practice .heading {
  width: 569px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .heading {
    width: 81.842105vw;
  }
}
.contents .section-method .tab .heading:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 71px;
  border-bottom: solid 1px #fff;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab .heading:after {
    width: 18.684211vw;
    border-bottom-width: 2px;
  }
}
.contents .section-method .tab-method .txt-1 {
  margin-bottom: 28px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .txt-1 {
    margin-bottom: 6.973684vw;
  }
}
.contents .section-method .tab-method .txt-2 {
  margin-bottom: 25px;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .txt-2 {
    margin-bottom: 5vw;
    margin-bottom: 7.236842vw;
    font-size: 6.842105vw;
  }
}
.contents .section-method .tab-method .txt-3 {
  margin-bottom: 70px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .txt-3 {
    margin-bottom: 11.578947vw;
  }
}
.contents .section-method .tab-method .box {
  padding: 25px 17px 34px;
  line-height: 2.1;
  background-color: rgba(0, 0, 0, .4);
  border-width: 4px;
  border-style: solid;
  border-image: linear-gradient(to right, #2654f5, #59c1fa, #71f5fd) 1;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box {
    padding: 5.394737vw 3.815789vw 8.157895vw;
    line-height: 1.7;
  }
}
.contents .section-method .tab-method .box-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-image: linear-gradient(to right, #2654f5, #59c1fa, #71f5fd) 1;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box-header {
    margin-bottom: 5.657895vw;
    padding-bottom: 5.131579vw;
  }
}
.contents .section-method .tab-method .box.box-ideal {
  position: relative;
  margin-bottom: 145px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-ideal {
    margin-bottom: 19.473684vw;
  }
}
.contents .section-method .tab-method .box.box-ideal .arrow {
  position: absolute;
  left: 50%;
  bottom: -117px;
  width: 16px;
  height: 88px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-ideal .arrow {
    bottom: calc(-15vw - 4px);
    width: 2.7vw;
    height: 15vw;
  }
}
.contents .section-method .tab-method .box.box-ideal .arrow:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 100%;
  border-left-width: 4px;
  border-left-style: solid;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-image: linear-gradient(to bottom, #2654f5, #59c1fa, #71f5fd) 1;
  transform: skewY(-45deg);
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-ideal .arrow:after {
    bottom: 9px;
  }
}
.contents .section-method .tab-method .box.box-ideal .box-header img {
  width: 761px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-ideal .box-header img {
    width: 69.078947vw;
  }
}
.contents .section-method .tab-method .box.box-ideal .image {
  width: 488px;
  margin: 0 auto 28px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-ideal .image {
    width: 80.921053vw;
    margin-bottom: 5.526316vw;
  }
}
.contents .section-method .tab-method .box.box-three {
  padding-bottom: 45px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-three {
    padding-bottom: 10.657895vw;
  }
}
.contents .section-method .tab-method .box.box-three .box-header {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-three .box-header {
    margin-bottom: 7.631579vw;
  }
}
.contents .section-method .tab-method .box.box-three .box-header img {
  width: 299px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-three .box-header img {
    width: 50.394737vw;
  }
}
.contents .section-method .tab-method .box.box-three .image-1 {
  width: 792px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-three .image-1 {
    width: 52.763158vw;
    margin-bottom: 5.789474vw;
  }
}
.contents .section-method .tab-method .box.box-three .txt {
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-three .txt {
    margin-bottom: 5vw;
  }
}
.contents .section-method .tab-method .box.box-three .arrow {
  display: inline-block;
  width: 68px;
  height: 50px;
  margin-bottom: 30px;
  background-image: linear-gradient(to bottom, #2654f5, #59c1fa, #71f5fd);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-three .arrow {
    width: 13.815789vw;
    height: 10vw;
    margin-bottom: 7.631579vw;
  }
}
.contents .section-method .tab-method .box.box-three .image-2 {
  width: 419px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-method .box.box-three .image-2 {
    width: 67.894737vw;
  }
}
.contents .section-method .tab-practice .method .icon {
  margin: 0 auto;
}
.contents .section-method .tab-practice .method.method-01 .icon {
  width: 118px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-01 .icon {
    width: 21.842105vw;
  }
}
.contents .section-method .tab-practice .method.method-02 .icon {
  width: 115px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-02 .icon {
    width: 21.578947vw;
  }
}
.contents .section-method .tab-practice .method.method-03 .icon {
  width: 116px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-03 .icon {
    width: 21.973684vw;
  }
}
.contents .section-method .tab-practice .method.method-04 .icon {
  width: 162px;
  margin-bottom: 32px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-04 .icon {
    width: 28.947368vw;
    margin-bottom: 6.184211vw;
  }
}
.contents .section-method .tab-practice .method .txt-method {
  margin: 6px 0 12px 8px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .txt-method {
    margin: 4.342105vw 0 1.315789vw 1.578947vw;
  }
}
.contents .section-method .tab-practice .method.method-01 .txt-method {
  width: 141px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-01 .txt-method {
    width: 25.921053vw;
  }
}
.contents .section-method .tab-practice .method.method-02 .txt-method {
  width: 144px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-02 .txt-method {
    width: 26.447368vw;
  }
}
.contents .section-method .tab-practice .method.method-03 .txt-method {
  width: 145px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-03 .txt-method {
    width: 26.710526vw;
  }
}
.contents .section-method .tab-practice .method .box {
  position: relative;
  padding: 14px 18px 40px;
  text-align: left;
  line-height: 2;
  background-color: rgba(0, 0, 0, .4);
  border-width: 4px;
  border-style: solid;
  border-image: linear-gradient(to bottom, #ff0000, #dd01aa, #2654f5) 1;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .box {
    padding: 0 4.605263vw 7.368421vw;
    line-height: 1.7;
  }
}
.contents .section-method .tab-practice .method.method-02 .box {
  padding-bottom: 28px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-02 .box {
    padding-bottom: 8.947368vw;
  }
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-03 .box {
    padding-bottom: 10vw;
  }
}
.contents .section-method .tab-practice .method.method-04 .box {
  color: #000;
  background-color: transparent;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .95) 35%, rgba(220, 250, 251, .95));
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-04 .box {
    padding-bottom: 10vw;
  }
}
.contents .section-method .tab-practice .method .box .img-product {
  position: absolute;
  top: -57px;
  right: -46px;
  width: 162px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .box .img-product {
    top: 4.342105vw;
    right: 5.526316vw;
    width: 36.842105vw;
  }
}
.contents .section-method .tab-practice .method .box-header {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-image: linear-gradient(to bottom, #ff0000 calc(100% - 1px), #dd01aa, #2654f5) 1;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .box-header {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 6.578947vw;
    padding-bottom: 7.236842vw;
  }
}
.contents .section-method .tab-practice .method.method-02 .box-header {
  margin-bottom: 22px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-02 .box-header {
    margin-bottom: 6.578947vw;
  }
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-03 .box-header {
    padding-bottom: 5.657895vw;
  }
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-04 .box-header {
    padding-bottom: 5.657895vw;
  }
}
.contents .section-method .tab-practice .method .box-header .txt-head {
  width: 240px;
  border-right-width: 4px;
  border-right-style: solid;
  border-image: linear-gradient(to bottom, #ff0000, #dd01aa, #2654f5) 1;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .box-header .txt-head {
    width: 100%;
    margin-bottom: 7.236842vw;
    border-right: none;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-image: linear-gradient(to bottom, #ff0000 calc(100% - 1px), #dd01aa, #2654f5) 1;
  }
}
.contents .section-method .tab-practice .method.method-01 .box-header .txt-head {
  padding: 9px 12px 6px 0;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-01 .box-header .txt-head {
    padding: 5.921053vw 1.578947vw 6.578947vw 0;
  }
}
.contents .section-method .tab-practice .method.method-02 .box-header .txt-head {
  padding: 7px 6px 10px 0;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-02 .box-header .txt-head {
    padding: 5.921053vw 0.657895vw 6.842105vw 0;
  }
}
.contents .section-method .tab-practice .method.method-03 .box-header .txt-head {
  padding: 10px 6px 8px 0;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-03 .box-header .txt-head {
    margin-bottom: 4.605263vw;
    padding: 7.105263vw 0.657895vw 6.315789vw 0;
  }
}
.contents .section-method .tab-practice .method.method-04 .box-header .txt-head {
  padding: 6px 8px 9px 0;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-04 .box-header .txt-head {
    margin-bottom: 5.263158vw;
    padding: 5.921053vw 0.657895vw 7.894737vw 0;
  }
}
.contents .section-method .tab-practice .method .box-header .txt-head img {
  display: block;
  width: 180px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .box-header .txt-head img {
    width: 39.473684vw;
    margin: 0;
  }
}
.contents .section-method .tab-practice .method.method-01 .box-header .txt-head img {
  width: 174px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-01 .box-header .txt-head img {
    width: 38.157895vw;
  }
}
.contents .section-method .tab-practice .method.method-04 .box-header .txt-head img {
  width: 177px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-04 .box-header .txt-head img {
    width: 38.026316vw;
  }
}
.contents .section-method .tab-practice .method .box-header .box-heading {
  padding-left: 28px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .box-header .box-heading {
    padding-left: 0;
    font-size: 5.263158vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-03 .box-header .box-heading {
    line-height: 1.6;
  }
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-04 .box-header .box-heading {
    line-height: 1.6;
  }
}
.contents .section-method .tab-practice .method .box-header .box-heading sup {
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .box-header .box-heading sup {
    font-size: 2.807018vw;
  }
}
.contents .section-method .tab-practice .method .txt {
  margin-bottom: 24px;
  padding: 0 45px;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .txt {
    margin-bottom: 4.210526vw;
    padding: 0;
  }
}
.contents .section-method .tab-practice .method.method-02 .txt {
  margin-bottom: 14px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-02 .txt {
    margin-bottom: 5.263158vw;
  }
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-03 .txt {
    margin-bottom: 5.263158vw;
  }
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-04 .txt {
    margin-bottom: 5vw;
  }
}
.contents .section-method .tab-practice .method .notice {
  padding: 0 45px;
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .notice {
    padding: 0;
    font-size: 2.631579vw;
    line-height: 1.3;
  }
}
.contents .section-method .tab-practice .method .link {
  margin-top: 15px;
  text-align: right;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .link {
    margin-top: 3.947368vw;
  }
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-02 .link {
    margin-bottom: 8.947368vw;
  }
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method.method-04 .link {
    margin-top: 3.421053vw;
    margin-bottom: 8.947368vw;
    line-height: 2.45;
  }
}
.contents .section-method .tab-practice .method .link a {
  display: inline-block;
  margin-left: 30px;
  padding-left: 30px;
  color: #fff;
  font-weight: bold;
  background-image: url('../img/method/tab-practice/icon-arrow-double.png');
  background-size: 25px auto;
  background-position: top calc(50% + 1px) left;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .method .link a {
    margin-left: 0;
    padding-left: 8.684211vw;
    font-size: 4.210526vw;
    background-size: 6.578947vw auto;
  }
}
.contents .section-method .tab-practice .method .link a:hover {
  text-decoration: underline;
}
.contents .section-method .tab-practice .icon-plus {
  width: 77px;
  margin: 8px auto 50px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .icon-plus {
    width: 9.736842vw;
    margin: 7.105263vw auto 8.289474vw;
  }
}
.contents .section-method .tab-practice .icon-arrow {
  width: 94px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .icon-arrow {
    width: 13.815789vw !important;
    height: auto !important;
    margin: 10.657895vw auto 6.315789vw;
  }
}
.contents .section-method .tab-practice .product-all {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .product-all {
    padding-bottom: 36.157895vw;
  }
}
.contents .section-method .tab-practice .product-all .txt {
  margin-top: -120px;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 50px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .contents .section-method .tab-practice .product-all .txt {
    margin-top: 0;
    position: absolute;
    top: auto;
    bottom: 8vw;
    font-size: 7.894737vw;
    line-height: 1.4;
  }
}


/*---------------------------------
追従メニュー
-----------------------------------*/
.floating-menu {
  position: fixed;
  bottom: 20%;
  right: 0;
  z-index: 1000;
}
.floating-menu__toggle {
  position: relative;
  display: block;
  width: 100px;
  height: 82px;
  padding: 8px 0 8px 8px;
  background-color: #761611;
  box-shadow: -3px 3px 8px 1px rgba(0, 0, 0, .4);
}
.floating-menu__toggle:after {
  content: '';
  position: absolute;
  display: block;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .2);
  opacity: 0;
  transition: opacity .2s ease-in-out;
}
.floating-menu__toggle:hover:after {
  opacity: 1;
}
.floating-menu__toggle-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #a1001a;
}
.floating-menu__toggle .text {
  width: 60px;
}
.floating-menu__list {
  background-color: #fff;
}
.floating-menu__item {
  padding: 12px 0;
}
.floating-menu__item.item-01,
.floating-menu__item.item-03 {
  background-color: #dcdddd;
}
.floating-menu__item a {
  position: relative;
  display: flex;
  align-items: center;
  transition: opacity .2s ease-in-out;
}
@media screen and (min-width: 641px) {
  .floating-menu__item a:hover {
    opacity: .7;
  }
}
.floating-menu__item a:before {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  right: 12px;
  width: 18px;
  height: 18px;
  background-color: #a0a0a0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.floating-menu__item .text {
  width: 405px;
  padding-left: 28px;
}
.floating-menu__item .image {
  position: relative;
  width: 124px;
  padding-top: calc(136 / 560 * 100%);
  font-size: 0;
  overflow: hidden;
}
.floating-menu__item .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 640px) {
  .floating-menu {
    bottom: 12%;
    font-size: calc(10 / 380 * 100vw);
  }
  .floating-menu__toggle {
    width: 7.3em;
    height: 6.6em;
    padding: .6em 0 .6em .6em;
    box-shadow: -4px 4px 10px 1px rgba(0, 0, 0, .4);
  }
  .floating-menu__toggle .text {
    width: 4.8em;
  }
  .floating-menu__item {
    padding: calc(10 / 380 * 100%) 0;
  }
  .floating-menu__item a:before {
    right: calc(10 / 380 * 100%);
    width: calc(17 / 380 * 100%);
    height: auto;
    padding-top: calc(17 / 380 * 100%);
  }
  .floating-menu__item .text {
    width: calc(274 / 380 * 100%);
    padding-left: calc(16 / 380 * 100%);
  }
  .floating-menu__item .image {
    width: calc(100 / 380 * 100%);
    padding-top: calc(140 / 380 * 100%);
  }
  .floating-menu__item .image img {
    left: 37%;
  }
}

/* item-01 */
.floating-menu__item.item-01 .text img {
  width: 335px;
}
.floating-menu__item.item-01 .image img {
  width: 65px;
}
@media screen and (max-width: 640px) {
  .floating-menu__item.item-01 .text img {
    width: calc(234 / 261 * 100%);
  }
  .floating-menu__item.item-01 .image img {
    width: calc(72 / 100 * 100%);
  }
}

/* item-02 */
.floating-menu__item.item-02 .text img {
  width: 330px;
}
.floating-menu__item.item-02 .image img {
  width: 41px;
}
@media screen and (max-width: 640px) {
  .floating-menu__item.item-02 .text img {
    width: calc(170 / 261 * 100%);
  }
  .floating-menu__item.item-02 .image img {
    width: calc(38 / 100 * 100%);
  }
}

/* item-03 */
.floating-menu__item.item-03 .text img {
  width: 377px;
}
.floating-menu__item.item-03 .image img {
  top: 44%;
  width: 63px;
}
@media screen and (max-width: 640px) {
  .floating-menu__item.item-03 .text img {
    width: calc(256 / 261 * 100%);
  }
  .floating-menu__item.item-03 .image img {
    width: calc(63 / 100 * 100%);
  }
}

/* item-04 */
.floating-menu__item.item-04 .text img {
  width: 291px;
}
.floating-menu__item.item-04 .image img {
  top: 47%;
  width: 151px;
}
@media screen and (max-width: 640px) {
  .floating-menu__item.item-04 .text img {
    width: calc(238 / 261 * 100%);
  }
  .floating-menu__item.item-04 .image img {
    width: calc(145 / 100 * 100%);
  }
}

/* モーダル */
.c-modal__inner.floating-menu__modal-inner {
  max-width: 610px;
}
.c-modal__close.floating-menu__modal-close {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 640px) {
  .c-modal__inner.floating-menu__modal-inner {
    max-width: calc(338 / 380 * 100%);
    font-size: calc(10 / 380 * 100vw);
  }
  .c-modal__close.floating-menu__modal-close {
    top: -40px;
    right: 5px;
  }
}
