@charset "UTF-8";
/******************************
  base
******************************/
html {
  font-size: 62.5%; /* 1rem = 10px として計算しやすく */
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  background-color: #fff;
}

strong {
  font-weight: bold;
}

a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

ul, ol {
  list-style: none;
}

img,
video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

p {
  font-size: 1.6rem;
  line-height: 1.875;
}

main {
  font-family: "Noto Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

section {
  padding: 0 15px;
}

/******************************
  layout
******************************/
.l-inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-inner {
    max-width: 100%;
  }
}
/******************************
  utility
******************************/
.u-color-base {
  color: #D2B052;
}

.u-color-blue {
  color: #0098D9;
}

.u-color-red {
  color: #E80606;
}

.u-flex {
  display: flex;
}
.u-flex.--items-center {
  align-items: center;
}
.u-flex.--justify-between {
  justify-content: space-between;
}
.u-flex.--justify-center {
  justify-content: center;
}

.u-font-num {
  font-family: "Oswald", sans-serif;
}

.u-inline-block {
  display: inline-block;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-title01 {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 50px;
}
.u-title01 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 20px;
  background-color: #fff;
}
.u-title01::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
  .u-title01 {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  .u-title01 span {
    padding: 0 10px;
    margin: 0 20px;
  }
}
/******************************
  component
******************************/
.c-btn-black {
  display: inline-block;
  width: 250px;
  height: 40px;
  background: url(../images/icon-arrow.png) no-repeat center right 16px/5px 10px;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.c-btn-blue {
  display: inline-block;
  width: 250px;
  height: 40px;
  background: url(../images/icon-arrow.png) no-repeat center right 16px/5px 10px;
  background-color: #0098D9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.c-btn-gray {
  display: inline-block;
  width: 250px;
  height: 40px;
  background: url(../images/icon-arrow.png) no-repeat center right 16px/5px 10px;
  background-color: #A6A6A6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

/******************************
  splide
******************************/
.splide__track {
  overflow: visible !important;
}

.splide__list {
  overflow: visible !important;
  display: flex;
}

.splide__slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splide__slide img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

.splide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.splide__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hardlass-visual-slide {
  max-width: 1000px;
  margin: 0 auto 65px;
  position: relative;
}

.hardlass-visual-slide .splide__slide {
  background-color: #fff;
  border-radius: 15px;
}
.hardlass-visual-slide .splide__slide video {
  height: auto;
  object-fit: cover;
  display: block;
  opacity: 0.5;
  transition: 0.3s;
}
.hardlass-visual-slide .splide__slide.is-visible {
  opacity: 1;
}
.hardlass-visual-slide .splide__slide.is-visible video {
  opacity: 1;
}

.hardlass-visual-slide .splide__slide video {
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

.hardlass-effect-slide {
  max-width: 1084px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .splide__arrow {
    width: 35px;
    height: 35px;
  }
  .splide__arrow--prev {
    position: relative;
    left: -25px;
  }
  .splide__arrow--next {
    position: relative;
    right: -25px;
  }
  .hardlass-visual-slide-wrap {
    max-width: 100%;
    margin: 0 30px;
    overflow: visible;
  }
  .hardlass-visual-slide {
    max-width: 100%;
    padding: 0;
  }
  .hardlass-visual-slide {
    margin-bottom: 0;
  }
  .hardlass-visual-slide .splide__slide video {
    opacity: 1;
  }
  .hardlass-effect-slide {
    max-width: 100%;
  }
  .hardlass-effect-slide .splide__track {
    padding: 0;
  }
}
/******************************
  main
******************************/
.main {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .main {
    margin-top: 60px;
  }
}
/******************************
  footer
******************************/
footer {
  font-size: 1.6rem;
}

/******************************
  hardlass
******************************/
.hardlass-visual {
  position: relative;
  padding-top: 100px;
  margin-bottom: 90px;
  max-height: 780px;
  background: url(../images/img-main.jpg) no-repeat center top/cover;
  color: #fff;
}
.hardlass-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hardlass-visual-title-wrap {
  padding-left: 20px;
  background-color: #fff;
}

.hardlass-visual-logo-wrap {
  display: inline-block;
  background-color: #fff;
  padding: 10px 10px 10px 15px;
}

.hardlass-visual-logo {
  max-width: 223px;
}

.hardlass-visual-title {
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: 4.5px;
  margin: 16px 0 20px;
}

.hardlass-visual-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.hardlass-visual-text {
  border-top: 1px solid #fff;
  padding: 24px 0;
  font-size: 2.4rem;
  list-style: none;
  line-height: 1.6;
  font-weight: 500;
}

.hardlass-visual-english-text {
  font-size: 2rem;
}

.hardlass-visual-campaign-info {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-bottom: 100px;
  padding: 0 10px;
}

.hardlass-visual-campaign-info-text {
  padding-right: 60px;
}
.hardlass-visual-campaign-info-text strong {
  font-size: 2.2rem;
}

.hardlass-visual-description {
  font-size: 2rem;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .hardlass-visual-title {
    font-size: 3rem;
  }
  .hardlass-visual-text {
    font-size: 1.8rem;
  }
  .hardlass-visual-english-text {
    font-size: 1.4rem;
  }
  .hardlass-visual-campaign-info-text {
    padding-right: 10px;
  }
  .hardlass-visual-campaign-info-text strong {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .hardlass-visual {
    padding: 0;
    margin: 0;
    max-height: 100%;
    background: none;
  }
  .hardlass-visual::before {
    display: none;
  }
  .hardlass-visual-sp {
    position: relative;
    padding: 50px 25px;
    margin-bottom: 25px;
    background: url(../images/img-main-sp.jpg) no-repeat center top/cover;
  }
  .hardlass-visual-sp::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .hardlass-visual-logo {
    max-width: 128px;
  }
  .hardlass-visual-title {
    font-size: 2.5rem;
    letter-spacing: 0;
    margin: 15px 0;
  }
  .hardlass-visual-inner {
    max-width: 100%;
  }
  .hardlass-visual-text {
    padding: 15px 0;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .hardlass-visual-text span {
    display: inline-block;
    line-height: 1.8;
  }
  .hardlass-visual-english-text {
    font-size: 1.2rem;
  }
  .hardlass-visual-campaign-info {
    flex-direction: column;
    justify-content: center;
    height: auto;
    margin-bottom: 0;
    padding: 3px 15px;
  }
  .hardlass-visual-campaign-info-text {
    padding-right: 0;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
  }
  .hardlass-visual-campaign-info-text strong {
    font-size: 1.4rem;
  }
  .hardlass-visual-description {
    padding: 25px 15px 0;
    font-size: 1.4rem;
    text-align: left;
  }
}
.hardlass-trouble {
  padding-top: 200px;
}

.hardlass-trouble-list-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 50px;
}

.hardlass-trouble-list {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  background: url(../images/img-trouble.jpg) no-repeat center/cover;
  width: 300px;
  height: 200px;
  color: #333;
}

.hardlass-trouble-list-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
  line-height: 1.3;
}

.hardlass-trouble-list-text span {
  font-size: 2.8rem;
}

.hardlass-trouble-list-wrap02 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 50px;
  background: url(../images/img-trouble.jpg) no-repeat center/cover;
  padding: 40px 16px;
}

.hardlass-trouble-list02 {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  background: rgba(0, 176, 236, 0.8);
  width: 300px;
  height: 200px;
  color: #333;
}

.hardlass-trouble-list-text.--white {
  color: #fff;
}

@media screen and (max-width: 900px) {
  .hardlass-trouble-list-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .hardlass-trouble {
    padding-top: 50px;
  }
  .hardlass-trouble-list-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .hardlass-trouble-list {
    background: url(../images/img-trouble-sp.jpg) no-repeat center/cover;
    width: 100%;
    height: 100px;
  }
  .hardlass-trouble-list-text {
    font-size: 1.6rem;
  }
  .hardlass-trouble-list-text span {
    font-size: 1.8rem;
  }
  .hardlass-trouble-list-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .hardlass-trouble-list {
    background: url(../images/img-trouble-sp.jpg) no-repeat center/cover;
    width: 100%;
    height: 100px;
  }
  .hardlass-trouble-list-wrap02 {
    flex-direction: column;
    gap: 20px;
    padding: 20px 16px;
  }

  .hardlass-trouble-list02 {
    width: 100%;
    height: 100px;
  }
}
.hardlass-merit {
  padding-top: 100px;
}

.hardlass-merit-inner {
  padding: 50px;
  border-radius: 10px;
  border: 1px solid #000;
}

.hardlass-merit-title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.hardlass-merit-logo {
  max-width: 223px;
  margin: 0 auto 50px;
}

.hardlass-merit-text {
  margin-bottom: 50px;
}
.hardlass-merit-text span {
  font-size: 1.2rem;
}

.hardlass-merit-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.hardlass-merit-list:not(:last-child) {
  margin-bottom: 50px;
}

.hardlass-merit-list-text-wrap {
  padding-right: 46px;
}

.hardlass-merit-list-img {
  max-width: 338px;
  min-width: 338px;
  border-radius: 15px;
}

.hardlass-merit-list-num {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 17px;
  font-size: 1.6rem;
}

.hardlass-merit-list-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  line-height: 1;
}
.hardlass-merit-list-title strong {
  font-size: 3.2rem;
  padding-right: 14px;
}
.hardlass-merit-list-title span {
  font-size: 1.6rem;
  font-weight: bold;
}

.hardlass-merit-list-text {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .hardlass-merit {
    padding-top: 50px;
  }
  .hardlass-merit-inner {
    padding: 30px 15px;
  }
  .hardlass-merit-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .hardlass-merit-logo {
    max-width: 223px;
    margin: 0 auto 20px;
  }
  .hardlass-merit-text {
    margin-bottom: 30px;
  }
  .hardlass-merit-list {
    display: block;
  }
  .hardlass-merit-list:not(:last-child) {
    margin-bottom: 30px;
  }
  .hardlass-merit-list-text-wrap {
    padding-right: 0;
  }
  .hardlass-merit-list-img {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }
  .hardlass-merit-list-num {
    font-weight: bold;
    line-height: 1;
    margin-bottom: 17px;
    font-size: 1.6rem;
  }
  .hardlass-merit-list-text {
    line-height: 2;
  }
  .hardlass-merit-list-title strong {
    font-size: 2.6rem;
  }
}
.hardlass-effect {
  padding-top: 100px;
}

.hardlass-effect-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.hardlass-effect-slide-item {
  position: relative;
}

.hardlass-effect-slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hardlass-effect {
    padding: 50px 30px 0;
  }
  .hardlass-effect-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.hardlass-gallery {
  padding-top: 100px;
}

.hardlass-gallery-list-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.hardlass-gallery-list-wrap img {
  border-radius: 10px;
}

.hardlass-gallery-list {
  width: 22%;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .hardlass-gallery {
    padding-top: 50px;
  }
  .hardlass-gallery-list-wrap {
    gap: 15px;
    margin-bottom: 30px;
  }
  .hardlass-gallery-list {
    width: calc(50% - 15px);
  }
}
.hardlass-price {
  margin-top: 100px;
  border-top: 1px solid #000;
  padding-top: 100px;
}

.hardlass-price-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.hardlass-price-inner {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0 54px;
  margin-bottom: 50px;
}

.hardlass-price-box {
  width: calc(50% - 27px);
  padding: 35px 26px;
  border: 1px solid #000;
  border-radius: 10px;
}

.hardlass-price-box-title {
  font-size: 2.7rem;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 15px;
}
.hardlass-price-box-title.--lineHeight {
  line-height: 2.2;
}

.hardlass-price-box-title span {
  display: inline-block;
}

.hardlass-price-box-old-price {
  text-align: center;
  color: #A6A6A6;
}
.hardlass-price-box-old-price strong {
  font-size: 4.8rem;
  font-weight: normal;
}
.hardlass-price-box-old-price.--flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hardlass-price-tex {
  font-size: 1.4rem;
  font-weight: bold;
}
.hardlass-price-tex.--small {
  font-size: 1.2rem;
}

.hardlass-price-plus {
  font-size: 3.2rem;
}
.hardlass-price-plus.--space {
  margin-right: 15px;
}

.hardlass-price-over {
  font-weight: bold;
  font-size: 2rem;
}

.hardlass-price-box-list {
  margin-top: 8px;
  height: 6rem;
}
.hardlass-price-box-list.--adjust {
  margin-top: 26px;
}
.hardlass-price-box-text {
  font-size: 1.2rem;
}
.hardlass-price-box-text.--mid {
  font-size: 1.5rem;
}

.hardlass-price-link {
  font-size: 1.2rem;
  text-align: right;
}

.hardlass-price-box-bottom {
  position: relative;
  padding-top: 120px;
  display: flex;
  align-items: flex-end;
}

.hardlass-price-box-bottom-foot {
  margin-left: -12px;
}

.hardlass-price-box-bottom-foot.--over {
  right: 20px;
  bottom: 5px;
}

.hardlass-price-box-old-price-black strong {
  font-size: 3.2rem;
  font-weight: normal;
  text-decoration: line-through;
}

.hardlass-price-box-price-red strong {
  color: #E80606;
  font-size: 6.8rem;
  font-weight: normal;
  line-height: 1;
}

.hardlass-price-box-price-sub strong {
  font-size: 2rem;
  font-weight: normal;
  margin-right: 3px;
}

.hardlass-price-label {
  position: absolute;
  top: 330px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90px;
  text-align: center;
  color: #fff;
  background-color: #E60012;
  width: calc(100% - 66px);
  border-radius: 10px;
}
.hardlass-price-label span {
  display: inline-block;
  margin-top: 17px;
  font-size: 1.4rem;
  line-height: 1;
}
.hardlass-price-label strong {
  font-size: 3.4rem;
}

.hardlass-price-bottom-text {
  line-height: 1.562;
  margin-bottom: 100px;
  text-align: center;
}

@media screen and (max-width: 1010px) {
  .hardlass-price-label {
    top: 60%;
  }
}
@media screen and (max-width: 990px) {
  .hardlass-price-box-bottom {
    padding-top: 180px;
    justify-content: space-around;
  }
  .hardlass-price-box-price-red strong {
    font-size: 3rem;
  }
  .hardlass-price-box-old-price strong {
    font-size: 2.8rem;
  }
  .hardlass-price-box-old-price-black strong {
    font-size: 2.2rem;
  }
  .hardlass-price-plus {
    font-size: 2.2rem;
  }
  .hardlass-price-over {
    font-size: 1.4rem;
  }
  .hardlass-price-tex {
    font-size: 1.2rem;
  }
  .hardlass-price-label {
    top: 67%;
  }
}
@media screen and (max-width: 768px) {
  .hardlass-price {
    margin-top: 50px;
    padding-top: 50px;
  }
  .hardlass-price-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .hardlass-price-inner {
    display: block;
    margin-bottom: 30px;
  }
  .hardlass-price-box {
    width: 100%;
    padding: 30px 15px;
  }
  .hardlass-price-box:first-child {
    margin-bottom: 30px;
  }
  .hardlass-price-box-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .hardlass-price-box-title.u-sp {
    padding-top: 30px;
  }
  .hardlass-price-over {
    font-size: 1.6rem;
  }
  .hardlass-price-link {
    text-align: center;
  }
  .hardlass-price-box-list {
    margin: 10px 0 20px;
    height: auto;
  }
  .hardlass-price-box-text.--mid {
    margin: 10px 0 0;
  }
  .hardlass-price-box-bottom {
    padding-top: 0;
    display: block;
    max-width: 220px;
    margin: 0 auto;
  }
  .hardlass-price-box-bottom-foot {
    position: inherit;
    right: auto;
    bottom: auto;
  }
  .hardlass-price-box-bottom-foot.--over {
    right: auto;
    bottom: auto;
    padding-top: 10px;
  }
  .hardlass-price-box-old-price strong {
    font-size: 4.8rem;
  }
  .hardlass-price-box-old-price-black strong {
    font-size: 3.2rem;
    font-weight: normal;
    text-decoration: line-through;
  }
  .hardlass-price-box-price-red strong {
    color: #E80606;
    font-size: 6.8rem;
    font-weight: normal;
    line-height: 1;
  }
  .hardlass-price-box-price-sub strong {
    font-size: 2rem;
    font-weight: normal;
    margin-right: 3px;
  }
  .hardlass-price-label {
    position: inherit;
    top: auto;
    left: auto;
    transform: none;
    width: calc(100% + 78px); /* 親の左右padding分を足す */
    margin-left: -39px; /* 左右均等に引く */
    margin-right: -39px;
    height: 75px;
  }
  .hardlass-price-label span {
    font-size: 1.4rem;
  }
  .hardlass-price-label strong {
    font-size: 1.8rem;
  }
  .hardlass-price-bottom-text {
    margin-bottom: 50px;
    text-align: left;
  }
}
.hardlass-considerations {
  background-color: #E0EEF5;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hardlass-considerations-title {
  font-size: 2.4rem;
}

.hardlass-considerations-text {
  text-align: left;
  padding-top: 50px;
  line-height: 1.562;
  max-width: 851px;
  margin: 0 auto;
}
.hardlass-considerations-text.--red {
  text-align: center;
  margin-bottom: 25px;
}
.hardlass-considerations-text.--red strong {
  font-size: 2rem;
}

.hardlass-considerations-contact {
  padding: 50px 0 20px;
}

.hardlass-considerations-contact-title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hardlass-considerations-contact-inner {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #000;
  max-width: 511px;
  margin: 0 auto;
  padding: 20px 10px;
  font-size: 1.6rem;
}
.hardlass-considerations-contact-inner strong {
  font-size: 3.2rem;
}
.hardlass-considerations-contact-inner strong a {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .hardlass-considerations {
    padding: 50px 15px;
  }
  .hardlass-considerations-title {
    font-size: 1.8rem;
  }
  .hardlass-considerations-text {
    text-align: left;
    padding-top: 15px;
    max-width: 100%;
    font-size: 1.2rem;
  }
  .hardlass-considerations-text.--red {
    text-align: center;
    margin-bottom: 23px;
  }
  .hardlass-considerations-text.--red strong {
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .hardlass-considerations-text.--red span {
    display: block;
    text-align: left;
  }
  .hardlass-considerations-contact {
    padding: 50px 0 30px;
  }
  .hardlass-considerations-contact-title {
    font-size: 1.8rem;
  }
}
.hardlass-qa {
  padding-top: 100px;
}

.hardlass-qa-inner {
  max-width: 850px;
  margin: 0 auto;
}

.hardlass-qa-title {
  margin-bottom: 50px;
  font-size: 2.4rem;
}

.hardlass-qa-dedtails-wrap {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.hardlass-qa-dedtails {
  padding: 10px 0;
}
.hardlass-qa-dedtails:not(:last-child) {
  border-bottom: 1px dashed #000;
}
.hardlass-qa-dedtails[open] .hardlass-qa-summary .hardlass-qa-dedtails-text::after {
  transform: rotate(0);
}

.hardlass-qa-summary {
  list-style: none;
}
.hardlass-qa-summary::-webkit-details-marker {
  display: none;
}
.hardlass-qa-summary .hardlass-qa-dedtails-text {
  position: relative;
  display: inline-block;
  margin-right: 22px;
}
.hardlass-qa-summary .hardlass-qa-dedtails-text::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 8px;
  display: block;
  background: url(../images/icon-arrow-aco.png) no-repeat center/12px 10px;
  width: 12px;
  height: 10px;
  transform: rotate(180deg);
}

.hardlass-qa-dedtails-text {
  position: relative;
  padding-left: 30px;
  font-size: 1.2rem;
  line-height: 2.4;
}

.hardlass-qa-icon-gray {
  position: absolute;
  top: -12px;
  left: 0;
  font-size: 2rem;
  color: #BFBFBF;
  padding-right: 10px;
}

.hardlass-qa-icon-red {
  position: absolute;
  top: -12px;
  left: 0;
  font-size: 2rem;
  color: #E80606;
  padding-right: 10px;
}

@media screen and (max-width: 768px) {
  .hardlass-qa {
    padding-top: 50px;
  }
  .hardlass-qa-inner {
    max-width: 100%;
  }
  .hardlass-qa-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .hardlass-qa-dedtails-text {
    line-height: 1.6;
  }
  .hardlass-qa-dedtails-text.--answer {
    margin-top: 10px;
  }
  .hardlass-qa-icon-gray {
    top: -8px;
  }
  .hardlass-qa-icon-red {
    top: -5px;
  }
}
.hardlass-stage {
  padding-top: 100px;
  margin-bottom: 100px;
}

.hardlass-stage-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.hardlass-stage-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 850px;
  margin: 0 auto 30px;
  gap: 0 40px;
}

.hardlass-stage-image {
  border-radius: 15px;
  max-width: 405px;
  min-width: 405px;
}

.hardlass-stage-text {
  font-size: 1.4rem;
  line-height: 1.785;
}

@media screen and (max-width: 768px) {
  .hardlass-stage {
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .hardlass-stage-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .hardlass-stage-inner {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px;
  }
  .hardlass-stage-image {
    max-width: 100%;
    min-width: auto;
    margin-bottom: 30px;
  }
}
