@charset "UTF-8";

:root {
  --baseColor: #D1D5CF;
  --primaryColor: #417571;
  --secondaryColor: #BECAE9;
  --tertiaryColor: #F5E3CC;
  --textColor: #07272D;
}


body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #07272D;
  line-height: 200%;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.container {
  width: 100vw;
}

.pc {
  display: none;
}

img {
  width: 100%;
  height: auto;
}

header {
  background-color: var(--primaryColor);
  position: relative;
  top: 5px;
  margin-top: -5px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 11px;
}

.header-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--tertiaryColor);
}

.header-right .p-1 {
  line-height: 100%;
  border-radius: 100px;
  border: 1px solid var(--Shell, #F5E3CC);
}

@media screen and (max-width: 1023px) {
  /* h1 {
    width: 220px;
    margin: 0px auto;
    padding: 17px;
    padding-top: 0;

  } */

  .header-inner {
    display: block;
    padding: 0;
  }

  .header-right {
    display: block;
    background-color: var(--baseColor);
    color: var(--primaryColor);
    text-align: center;
  }

  .header-right .p-1 {
    border: none;
    font-size: 14px;
    padding-top: 20px;
    margin-bottom: 16px;
    font-weight: 500;
  }

  .header-right .p-2 {
    padding-bottom: 12px;
    font-weight: 500;
  }
}

.kv {
  position: relative;
}

.kv img {
  position: relative;
  top: 5px;
}

.kv p {
  position: absolute;
  font-size: 16px;
  font-weight: 500;
  line-height: 240%;
  letter-spacing: 3.8px;
  top: 70%;
  left: 35%;
  transform: translate(-50%, -50%);
}

.btn {
  position: fixed;
  right: 0;
  bottom: 10px;
  transition: 0.2s;
  width: 70px;
  z-index: 999;
}

.top-btn {
  display: block;
  transition: 0.2s;
  width: 70px;
}

.top-btn:hover {
  opacity: 0.8;
}

.upper {
  display: block;
  transition: 0.2s;
  width: 70px;
}

.upper:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1023px) {
  .btn {
    display: none;
  }

  .kv img {
    top: 0;
  }

  .kv p {
    margin-left: 20px;
    white-space: nowrap;
    line-height: 200%;
    letter-spacing: 1.8px;
  }
}

/* pr */
.pr-sp {
  display: none;
}

.pr {
  position: absolute;
}

.pr-inner {
  position: relative;
  width: 80%;
  margin-top: -50px;
  left: 50%;
  transform: translate(-48.5%, -5%);
}
@media screen and (max-width: 1300px) {
  .pr-inner {
    width: 90%;
  }
}

.pr-a-wrap {
  width: 50%;
  height: 110px;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 60%);
}
@media screen and (max-width: 1200px) {
  .pr-a-wrap {
    top: 55%;
  }
}

.pr-a {
  border-radius: 3px;
  background: var(--secondaryColor);
  box-shadow: 0px 4px 12px 0px rgba(118, 130, 161, 0.20);
  text-align: center;
  text-decoration: none;
  display: block;
  cursor: pointer;
  padding-top: 50px;
  padding-bottom: 25px;
  align-items: center;
  position: relative;
}

.pr-a::after {
  content:"日曜/月曜/水曜限定";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 50px 11px;
  font-size: 24px;
  font-weight: 500;
  background-color: #fff;
  color: #07272D;
  border: 2px solid #BECAE9;
  border-radius: 50px;
  white-space: nowrap;
}

.pr-a:hover {
  opacity: 0.7;
}

.pr-a .p-1 {
  color: var(--textColor);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 5px;
}

.pr-a .p-2 {
  font-size: 12px;
}

@media screen and (max-width: 1023px) {
  .pr {
    display: none;
  }

  .pr-sp {
    display: block;
    width: 90%;
    position: absolute;
    margin-top: -50px;
    left: 50%;
    transform: translate(-47%, -5%);
  }

  .pr-inner-sp {
    background-color: #fff;
    width: 90%;
    padding-top: 20px;
    position: relative;
    left: 50%;
    transform: translate(-53%, -0.8%);
    padding-bottom: 24px;
  }

  .pr-inner-sp div {
    width: 90%;
    margin: 0 auto;
  }

  .pr-a-sp {
    position: relative;
    width: 90%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px 5px;
    border-radius: 3px;
    background: var(--secondaryColor);
    box-shadow: 0px 4px 12px 0px rgba(118, 130, 161, 0.20);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin: 12px auto;
  }

  .pr-a-sp::after {
    content:"日曜/月曜/水曜限定";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px 7px;
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    color: #07272D;
    border: 2px solid #BECAE9;
    border-radius: 50px;
    white-space: nowrap;
    line-height: 1;
  }

  .pr-a-sp .p-1{
    font-weight: 500;
    font-size: 14px;
  }

  .pr-sp .p-2-sp {
    text-align: center;
    line-height: 150%;
    font-size: 12px;
    margin-bottom: 24px;
  }

  .pr-sp .p-3-sp {
    font-size: 10px;
    line-height: 150%;
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 823px) {

  .pr-sp {
    display: block;
    width: 90%;
    position: absolute;
    margin-top: -10px;
    left: 50%;
    transform: translate(-47%, -5%);
  }
}

@media screen and (max-width: 330px) {
  .pr-sp {
    margin-top: -10px;
  }
}

@media screen and (max-width: 330px) {
  .pr-a-sp .p-1{
    font-size: 12px;
  }
}

section h2 {
  text-align: center;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.9px;
  font-size: 18px;
  margin-bottom: 60px;
}

/* section1 */
#section-1 {
  background-color: var(--baseColor);
}

#section-1 ul {
  border-radius: 3px;
  background: rgba(7, 39, 45, 0.10);
  width: 55%;
  margin: 0 auto;
  padding: 46px 64px;
}

#section-1 ul li {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
}

#section-1 ul li div {
  width: 19px;
  margin-right: 9px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1023px) {
  #section-1 {
    padding-top: 175%;
    padding-bottom: 64px;
  }

  #section-1 ul {
    width: 90%;
    background-color: transparent;
    padding: 0;
  }

  #section-1 ul li {
    background: rgba(7, 39, 45, 0.10);
    margin-bottom: 12px;
    padding: 12px;
    align-items: flex-start;
  }

  #section-1 ul li:last-child {
    margin-bottom: 0;
  }

  #section-1 ul li div {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    margin-top: -8px;
  }

  #section-1 ul li p {
    font-size: 16px;
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  #section-1 {
    padding-top: 175%;
    padding-bottom: 64px;
  }
}

@media screen and (max-width: 668px) {
  #section-1 {
    padding-top: 185%;
    padding-bottom: 64px;
  }
}

@media screen and (max-width: 568px) {
  #section-1 {
    padding-top: 205%;
    padding-bottom: 64px;
  }
}

@media screen and (max-width: 435px) {
  #section-1 {
    padding-top: 225%;
    padding-bottom: 64px;
  }
}

@media screen and (max-width: 350px) {
  #section-1 {
    padding-top: 240%;
    padding-bottom: 64px;
  }
}

@media screen and (min-width: 768px) {
  #section-1 {
    padding-top: 170%;
    padding-bottom: 64px;
  }
}

@media screen and (min-width: 1024px) {
  #section-1 {
    padding-top: 50%;
  }
}


/* section2 */
#section-2 {
  background-color: var(--baseColor);
}

#section-2 ul {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin: 0 auto;
}

#section-2 ul li {
  background-color: #417571;
  width: 30%;
  padding: 60px 40px;
  color: #F5E3CC;
  border-radius: 3px;
  box-shadow: 0px 2px 4px 0px rgba(43, 76, 74, 0.15);
}

#section-2 ul li div {
  width: 102px;
  height: auto;
  margin-bottom: 24px;
}

#section-2 ul li h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.4px;
  margin-bottom: 24px;
}

#section-2 ul li p {
  font-size: 20px;
}

@media screen and (max-width: 1023px) {

  #section-2 {
    padding-bottom: 89px;
  }

  #section-2 ul {
    display: block;
    width: 84%;
  }

  #section-2 ul li {
    width: 100%;
    margin-bottom: 24px;
    padding: 32px 34px;
  }

  #section-2 ul li div {
    width: 64px;
    margin-bottom: 18px;
  }

  #section-2 ul li h3 {
    font-size: 20px;
    margin-bottom: 18px;
    height: auto;
  }

  #section-2 ul li p {
    font-size: 16px;
  }

  .triangle {
    width: 98px;
    margin: -25px auto 39px;
  }
}

.section-3-wrapper{
  padding: 140px 11.54%;
  background-color: #417571;
}

@media screen and (max-width: 768px){
  .section-3-wrapper{
    padding: 40px 3.54%;
    background-color: #417571;
  }
}

#section-3{
  background-color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  #section-3{
   padding-top: 40px;
  }
}

/* section3 */
.section-3-h3 {
  text-align: center;
  margin-bottom: 78px;
}

.section-3-h3 p {
  color: #417571;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-3-h3 p::before,
.section-3-h3 p::after{
  content: "";
  display: block;
  width: 26.7%;
  height: 2px;
  background-color: #417571;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .section-3-h3{
    padding: 0 3%;
  }
  .section-3-h3 p::before,
  .section-3-h3 p::after{
    width: 20%;
  }
}

.section-3-h3 h3 {
  color: #417571;
  font-size: 32px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.92px;
  display: inline-block;
  padding-top: 46px;
}

.kikai-img {
  width: 80%;
  margin: 0 auto;
}

.section-3-inner {
  background-color: var(--baseColor);
  width: 80%;
  margin: -110px auto 0;
  padding: 130px 2.7% 124px;
}

.section-3-inner .p-1 {
  color: #000;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.4px;
  margin-bottom: 64px;
}

.section-3-inner ul {
  display: flex;
  justify-content: space-between;
}

.section-3-inner ul li {
  width: 31.5%;
  background-color: #fff;
  padding: 20px 18px;
}

.section-3-inner ul li div {
  margin-bottom: 24px;
}

.section-3-inner ul li h4 {
  font-size: 20px;
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  justify-content: center;
}

.section-3-inner ul li p {
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.section-3-inner2 {
  margin-top: 120px;
}

.lab {
  width: 73%;
  margin: 0 auto;
  margin-bottom: 24px;
}

.section-3-inner2 .p-1 {
  width: 74%;
  margin: 0 auto;
  font-size: 18px;
  line-height: 200%;
}

@media screen and (max-width: 1023px) {
  .section-3-h3 p {
    font-size: 18px;
    /* margin-bottom: 18px; */
  }

  .section-3-h3 {
    margin-bottom: 24px;
  }

  .section-3-h3 h3 {
    padding-top: 0;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.05rem;
  }

  .kikai-img {
    width: 90%;
  }

  .section-3-inner {
    width: 100%;
    margin-top: -35px;
    padding: 0;
    padding-bottom: 16px;
  }

  .section-3-inner .p-1 {
    font-size: 18px;
    padding-top: 62px;
  }

  .section-3-inner ul {
    display: block;
  }

  .section-3-inner ul li {
    width: 90%;
    background-color: #fff;
    border-radius: 3px;
    padding: 20px 17.5px;
    margin: 0 auto 24px;
  }

  .section-3-inner ul li h4 {
    display: flex;
    justify-content: center;
    padding: 0;
    margin-bottom: 12px;
  }

  .section-3-inner ul li .pc {
    display: none;
  }

  .section-3-inner ul li div {
    margin-bottom: 12px;
  }

  .section-3-inner ul li p {
    font-size: 14px;
  }

  .section-3-inner2 {
    margin-top: 0;
    background-color: #FFFFFF;
    padding-bottom: 64px;
    padding-top: 40px;
  }

  .lab {
    width: 90%;
    margin-bottom: 18px;
  }

  .section-3-inner2 .section-3-h3 {
    margin-bottom: 6px;
  }

  .section-3-inner2 .p-1 {
    font-size: 14px;
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .section-3-inner .p-1 {
    margin-bottom: 34px;
  }
  .section-3-inner ul li{
    padding: 14px 17.5px;
  }
  .section-3-inner ul li h4{
    letter-spacing: 0.01rem;
  }
  .section-3-inner ul li p{
    line-height: 1.8;
  }
  .section-3-inner2{
    padding-bottom: 40px;
  }
  .section-3-inner2 .p-1{
    line-height: 1.8;
  }
}

/* CTA */
.cta {
  background-color: var(--primaryColor);
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-inner {
  background-color: #fff;
  width: 70%;
  margin: 0 auto;
  border-radius: 0px 0px 3px 3px;
}

.cta h2 {
  width: 70%;
  background-color: var(--baseColor);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2.8px;
  padding: 40px;
  border-radius: 3px 3px 0px 0px;
  margin: 0 auto;
}

.cta-inner-img {
  width: 70%;
  padding-top: 40px;
  position: relative;
  left: 57%;
  transform: translate(-50%, 0%);
}

.cta h3 {
  color: #417571;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 1.14px;
  text-align: center;
  margin-top: -45px;
  margin-bottom: 40px;
}

.cta-price {
  display: flex;
  justify-content: space-around;
  width: 75%;
  margin: 20px auto 40px;
}

.cta-price-left {
  width: 45%;
}

.cta-price .p-1 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 17px;
  border-radius: 3px;
  border: 1.237px solid var(--primaryColor);
  color: var(--primaryColor);
  margin-bottom: 9px;
}

.cta-price .p-2 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 17px;
  border-radius: 3px;
  border: 1.237px solid var(--primaryColor);
  color: var(--primaryColor);
}

.cta-price-right {
  width: 50%;
}

.cta a {
  position: relative;
  width: 80%;
  height: auto;
  border-radius: 3px;
  background: var(--secondaryColor);
  box-shadow: 0px 4px 12px 0px rgba(118, 130, 161, 0.20);
  text-align: center;
  text-decoration: none;
  display: block;
  cursor: pointer;
  padding: 45px 30px 20px;
  margin: 0 auto;
}

.cta a::after {
  content:"日曜/月曜/水曜限定";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 50px 11px;
  font-size: 24px;
  font-weight: 500;
  background-color: #fff;
  color: #07272D;
  border: 2px solid #BECAE9;
  border-radius: 50px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cta a::after {
    top: -15px;
    padding: 5px 14px 6px;
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    color: #07272D;
    border: 2px solid #BECAE9;
    border-radius: 50px;
    line-height: 1;
  }
}

.cta a:hover {
  opacity: 0.7;
}

.cta a .p-1 {
  color: var(--textColor);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 5px;
}

.cta a .p-2 {
  font-size: 12px;
}

.cta-bottomp {
  width: 80%;
  color: var(--Seabed, #07272D);
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.7px;
  margin: 25px auto 0;
  padding-bottom: 39px;
}

.pr-p-2 {
  display: none;
}

@media screen and (max-width: 1023px) {
  .cta h2 {
    font-size: 20px;
    width: 90%;
    padding: 20px;
  }

  .cta-inner {
    width: 90%;
  }

  .cta-price {
    display: none;
  }

  .cta-inner-img {
    width: 90%;
    padding-top: 22px;
    position: relative;
    left: 0;
    transform: translate(0%, 0%);
    margin: 0 auto 22px;
  }

  .cta a .p-1 {
    font-size: 16px;
  }

  .cta a {
    width: 90%;
    padding: 10px 5px 5px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pr-p-2 {
    display: block;
    font-size: 12px;
    text-align: center;
    line-height: 150%;
    margin-top: 12px;
  }

  .cta-bottomp {
    font-size: 10px;
    padding-bottom: 20px;
  }

  .cta {
    padding-bottom: 64px;
  }
}

/* section4 */
#section-4 {
  background-color: var(--baseColor);
  padding-top: 104px;
  padding-bottom: 100px;
}

#section-4 h2 {
  margin-bottom: 90px;
}

.section-4-inner1 {
  background-color: #fff;
  width: 70%;
  margin: 0 auto 60px;
  padding-top: 38px;
  padding-bottom: 43px;
}

#section-4 h3 {
  width: 70%;
  margin: 0 auto;
  background-color: var(--primaryColor);
  color: #F5E3CC;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
  border-radius: 3px 3px 0px 0px;
}

#section-4 h3 span {
  font-size: 24px;
  margin-right: 7px;
}

#section-4 .h3-p {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.4px;
  margin-bottom: 101px;
}

.section-4-inner1 ul {
  width: 95%;
  margin: 0 auto;
}

.section-4-inner1 ul li {
  display: flex;
  /* justify-content: space-between; */
  column-gap: 24px;
  margin-bottom: 80px;
}

.section-4-inner1 ul li:last-child {
  margin-bottom: 0;
}

.line {
  width: 1px;
  height: 80px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 990;
}

.score-pc {
  width: 95%;
  margin: 20px auto 0px;
}

.section-4-inner1-left {
  width: 40%;
}

.section-4-inner1-right {
  width: 58%;
}

.section-4-inner1-right h4 {
  border-radius: 3px;
  background: #F1F2F1;
  padding: 14px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 32px;
}

.section-4-inner1-right p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1.rem;
}

.attention ul {
  width: 100%;
}

.attention ul li {
  margin-bottom: 0;
  position: relative;
  padding-left: 15px;
  list-style: none;
  line-height: 1.5;
}

.attention ul li:before {
  content: "●";
  position: absolute;
  top: 10%;
  left: 0;
  font-size: 5px;
}

.attention {
  width: 70%;
  color: var(--Seabed, #07272D);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.4px;
  margin: 40px auto;
  /* padding-bottom: 119px; */
}

.attention p {
  width: 80px;
  text-align-last: left;
}

.section-4-inner2 {
  background-color: #fff;
  width: 70%;
  margin: 0 auto 60px;
  padding-bottom: 120px;
  padding-top: 80px;
}

.score-sp {
  display: none;
}

.trial {
  width: 80%;
  margin: 0 auto 80px;
}

.section-4-inner2 h4 {
  border-radius: 3px;
  background: #F1F2F1;
  text-align: center;
  padding: 15.5px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
}

.trial-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.trial-inner-left {
  width: 40%;
}

.trial-inner-right {
  width: 55%;
}

.trial-inner-right .p-1 {
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.9px;
  margin-bottom: 50px;
}

.trial-inner-right .p-2 {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  padding: 15px;
  border-top: 1px solid var(--textColor);
  border-bottom: 1px solid var(--textColor);
}

.trial-inner-right ul {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.trial-inner-right ul li {
  font-size: 12px;
  padding: 8px 30px;
  text-align: center;
  border-radius: 100px;
  border: 0.7px solid var(--textColor);
  margin-right: 8px;
  line-height: 100%;
}

.section-4-inner2 .p-3 {
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .section-4-inner2 .p-3 {
    font-size: 10px;
    line-height: 1.5;
  }
}

.section-4-inner2 .p-3 a {
  color: #417571;
}

.section-4-inner2 .p-3 a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1023px) {
  #section-4 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  #section-4 h2 {
    margin-bottom: 24px;
  }

  #section-4 h3 {
    width: 90%;
    font-size: 24px;
    padding: 23px;
  }

  #section-4 h3 span {
    font-size: 14px;
  }

  .section-4-inner1 {
    width: 90%;
    padding-top: 24px;
    padding-bottom: 24px;
    margin: 0 auto 24px;
  }

  #section-4 .h3-p {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .section-4-inner1 ul {
    width: 90%;
  }

  .section-4-inner1 ul li {
    display: block;
    margin-bottom: 40px;
  }

  .section-4-inner1-left {
    width: 100%;
    margin-bottom: 12px;
  }

  .section-4-h4 {
    border-radius: 3px;
    background: #F1F2F1;
    text-align: center;
    padding: 0 8.5px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
  }

  .section-4-inner1-right {
    width: 100%;
  }

  .section-4-inner1-right p {
    font-size: 14px;
  }

  .section-4-inner1-right .line {
    display: none;
  }

  .score {
    width: 90%;
  }

  .score-pc {
    display: none;
  }

  .score-sp {
    display: block;;
    padding-top: 40px;
    /* padding-bottom: 54px; */
  }

  .score-sp img {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .attention {
    width: 90%;
    padding-bottom: 0;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .attention ul li {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .section-4-inner2 {
    width: 90%;
    padding-top: 40px;
    padding-bottom: 64px;
  }

  #section-4 .h3-p {
    margin-bottom: 40px;
  }

  .section-4-inner2 h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .trial {
    width: 90%;
    margin-bottom: 40px;
  }

  .trial-inner {
    display: block;
  }

  .trial-inner-left {
    width: 100%;
    margin-bottom: 12px;
  }

  .trial-inner-right {
    width: 100%;
  }

  .trial-inner-right .p-1 {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .trial-inner-right .p-2 {
    font-size: 14px;
    padding: 17px;
  }

  .trial-inner-right ul li {
    padding: 8px 20px;
  }
}

/* タブ切り替え */
.recom {
  padding: 120px 0 165px;
  background-color: #D1D5CF;
}

.recom h3 {
  font-size: 32px;
  font-weight: 500;
  margin: 40px auto 80px;
}

.tab-inner {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto 80px;
}

.tab-inner-left {
  width: 35%;
}

.tab-inner-right {
  width: 60%;
  text-align-last: left;
}

.recom h4 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2.8px;
  margin-bottom: 20px;
}

.tab-inner-right .p-1 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.9px;
  margin-bottom: 20px;
}

.tab-inner-right .p-2 {
  font-size: 16px;
}

.doctorscomments {
  width: 90%;
  margin: 0 auto 80px;
  border-radius: 3px;
  background: rgba(7, 39, 45, 0.10);
  padding: 40px 32px;
}

.doctorscomments p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-align-last: left;
  margin-bottom: 15px;
}

.recom-inner {
  width: 70%;
  margin: 120px auto 0;
}

@media screen and (max-width: 1023px) {
  .recom-inner {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width:768px) {
  .recom {
    padding: 64px 0 0px;
  }
}


@media (max-width:768px) {
  .recom-inner {
    padding: 0px;
  }
}

.recom-title {
  padding-bottom: 86px;
}

@media (max-width:768px) {
  .recom-title {
    padding-bottom: 44px;
  }
}

.r-title-inner {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.r-contents {
  text-align: center;
  background-color: #fff;
  margin: 0 auto;
}

.r-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

@media (max-width:768px) {
  .r-section {
    padding-top: 24px;
  }
}

.r-content-title {
  margin-bottom: 80px;
  background-color: #417571;
  color: #fff;
  padding-bottom: 10px;
}

@media (max-width:768px) {
  .r-content-title {
    padding: 0px 0 9px;
    margin-bottom: 24px;
  }
}

.r-content-title p {
  display: inline-block;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.1em;
  font-weight: 500;
  background-color: #fff;
  color: #07272D;
  padding: 13px 52px;
  margin: 17px 0 24px;
  border-radius: 3px;
}

@media (max-width:768px) {
  .r-content-title p {
    font-size: 16px;
    padding: 4px 38px;
    border-radius: 3px;
    margin: 17px 0 7px;
  }
}

.r-content-title h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.1em;
  margin-bottom: 11px;
}

@media (max-width:768px) {
  .r-content-title h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
  }
}

.r-content-title:after,
.r-content-title:before {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: 100%;
  height: 1px;
}

.r-content-about {
  padding-bottom: 80px;
}

@media (max-width:768px) {
  .r-content-about {
    padding-bottom: 38px;
  }
}

@media (max-width: 430px) {
  .r-content-about {
    padding-bottom: 8px;
  }
}

.r-content-about h4 {
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding-bottom: 80px;
}

@media (max-width:768px) {
  .r-content-about h4 {
    font-size: 18px;
    line-height: 180%;
    padding-bottom: 24px;
  }
}

@media (max-width: 374px) {
  .r-content-about h4 {
    padding: 0 20px;
  }
}

.r-content-about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  padding: 0 50px;
}

@media screen and (max-width: 1000px) {
  .r-content-about-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 24px;
  }
}

.r-content-about-l {
  width: 43%;
}

@media (max-width:768px) {
  .r-content-about-l {
    width: 100%;
  }
}

.r-content-about-r {
  width: 50%;
}

@media (max-width:768px) {
  .r-content-about-r {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .r-content-about-l {
    width: 75%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1000px) and (max-width:768px) {
  .r-content-about-l {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .r-content-about-r {
    width: 75%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1000px) and (max-width:768px) {
  .r-content-about-r {
    width: 100%;
  }
}

.r-content-about-text1,
.r-content-about-text2,
.r-content-about-text3 {
  text-align: left;
  padding-bottom: 71px;
  font-size: 20px;
  line-height: 200%;
  letter-spacing: 0.05em;
  font-weight: 400;
}

@media (max-width:768px) {

  .r-content-about-text1,
  .r-content-about-text2,
  .r-content-about-text3 {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.05em;
    padding-bottom: 23px;
  }
}

.r-content-about-text2 {
  padding-bottom: 33px;
}

.r-content-about-text3 {
  padding-bottom: 38px;
}

.r-content-tag {
  justify-content: center;
}

@media (max-width:768px) {
  .r-content-tag {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.r-content-tag p {
  padding: 8px 30px;
}

@media (max-width: 430px) {
  .r-content-tag p {
    padding: 4px 30px;
  }
}

.sub2-title {
  background-color: #417571;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 14px 0;
  font-weight: 500;
  margin: 0 40px 40px;
}

@media (max-width:768px) {
  .sub2-title {
    margin: 30px 0px;
  }
}

@media (max-width: 430px) {
  .sub2-title {
    font-size: 18px;
    padding: 9px 0;
    margin: 30px 0px 23px;
  }
}

@media (max-width:768px) {

  .r-content-merit h6,
  .r-content-merit img,
  .r-content-merit p {
    padding: 0 20px;
  }
}

@media (max-width: 430px) {

  .r-content-merit h6,
  .r-content-merit img,
  .r-content-merit p {
    padding: 0 24px;
  }
}

.r-content-merit h6 {
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.05em;
  font-size: 28px;
  padding-bottom: 60px;
}

@media (max-width:768px) {
  .r-content-merit h6 {
    font-size: 18px;
    line-height: 180%;
    padding-bottom: 24px;
  }
}

@media (max-width: 430px) {
  .r-content-merit h6 {
    letter-spacing: -0.05em;
  }
}

.r-content-merit img {
  max-width: 706px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 40px;
}

@media (max-width:768px) {
  .r-content-merit img {
    padding-bottom: 12px;
  }
}

.r-content-merit p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 200%;
  letter-spacing: 0.05em;
  padding-bottom: 80px;
  text-align: left;
}

@media (max-width:768px) {
  .r-content-merit p {
    font-size: 14px;
    line-height: 150%;
    padding-bottom: 38px;
  }
}

@media (max-width: 430px) {
  .r-content-merit p {
    padding-bottom: 7px;
  }
}

.r-content-how1,
.r-content-how2,
.r-content-how3 {
  margin: 0 auto;
}

.r-content-how1 img,
.r-content-how2 img,
.r-content-how3 img {
  padding-bottom: 20px;
}

@media (max-width:768px) {

  .r-content-how1 img,
  .r-content-how2 img,
  .r-content-how3 img {
    padding: 0 20px 12px;
  }
}

.r-content-how1 img {
  margin: 0 auto;
}

.r-content-how1 img:nth-of-type(1) {
  max-width: 374px;
  padding-bottom: 24px;
}

.r-content-how1 img:nth-of-type(2) {
  max-width: 457px;
  padding-bottom: 20px;
}

.r-content-how1 h5 {
  margin-bottom: 55px;
}

.r-content-how2 img {
  margin: 0 auto;
  max-width: 600px;
}

.r-content-how3 img {
  margin: 0 auto;
  max-width: 709px;
}

.r-content-how-text1,
.r-content-how-text2,
.r-content-how-text3,
.r-content-how-text4,
.r-content-how-text5,
.r-content-how-text6 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 200%;
  letter-spacing: 0.05em;
  padding-bottom: 39px;
  text-align: left;
}

@media (max-width:768px) {

  .r-content-how-text1,
  .r-content-how-text2,
  .r-content-how-text3,
  .r-content-how-text4,
  .r-content-how-text5,
  .r-content-how-text6 {
    font-size: 14px;
    padding: 0 20px;
    padding-bottom: 38px;
  }
}

.r-content-how-text1 {
  padding-bottom: 60px;
}

.r-content-comment {
  padding: 40px 45px 60px;
  background-color: #417571;
}

@media (max-width:768px) {
  .r-content-comment {
    padding: 48px 24px 48px;
  }
}

.r-content-comment h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding-bottom: 40px;
  color: #fff;
}

.r-content-comment-inner {
  padding: 31px 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  background-color: #fff;
  border-radius: 3px;
  overflow: hidden;
}

@media (max-width:768px) {
  .r-content-comment-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0px;
    gap: 12px;
  }
}

.r-content-comment-l {
  width: 32%;
}

@media (max-width:768px) {
  .r-content-comment-l {
    width: 100%;
  }
}

.r-content-comment-r {
  width: 65%;
}

@media (max-width:768px) {
  .r-content-comment-r {
    width: 100%;
  }
}

.r-content-comment-r-text {
  font-size: 20px;
  line-height: 200%;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: left;
  padding-bottom: 67px;
}

@media (max-width:768px) {
  .r-content-comment-r-text {
    font-size: 14px;
    line-height: 150%;
    padding: 0 14px 24px;
  }
}

.r-content-comment-r-name {
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: left;
  padding-bottom: 16px;
}

@media (max-width:768px) {
  .r-content-comment-r-name {
    padding: 0 14px 12px;
    font-size: 16px;
    color: #417571;
    font-weight: 700;
    line-height: 100%;
  }
}

.r-content-comment-r-intro {
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
}

@media (max-width:768px) and (max-width:768px) {
  .r-content-comment-r-intro {
    padding: 0 14px 53px;
    font-size: 14px;
    line-height: 180%;
  }
}

.recom-btn {
  margin-bottom: 80px;
}

@media (max-width:768px) {
  .recom-btn {
    margin-top: 28px;
  }
}

@media (max-width: 430px) {
  .recom-btn {
    margin: 37px 0 65px;
  }
}

.r-content-risk {
  padding: 40px 52px 80px;
}

@media (max-width:768px) {
  .r-content-risk {
    background-color: #D1D5CF;
    padding: 24px 0px 40px;
  }
}

@media (max-width:768px) {

  .r-content-risk h5,
  .r-content-risk p,
  .r-content-risk ul {
    padding: 0 24px;
  }
}

.r-content-risk h5 {
  font-size: 24px;
  background-color: #F2F2F2;
  letter-spacing: 0.1em;
  line-height: 150%;
  font-weight: 400;
  display: block;
  padding: 10px 0;
  margin-bottom: 20px;
}

@media (max-width: 430px) {
  .r-content-risk h5 {
    font-size: 20px;
    padding: 8px 0;
    margin-bottom: 13px;
  }
}

.r-content-risk p,
.r-content-risk ul,
.r-content-risk a {
  text-align: left;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.1em;
}

@media (max-width:768px) {

  .r-content-risk p,
  .r-content-risk ul,
  .r-content-risk a {
    font-size: 12px;
    line-height: 140%;
  }
}

@media (max-width: 430px) {

  .r-content-risk p,
  .r-content-risk ul,
  .r-content-risk a {
    letter-spacing: 0em;
  }
}

.r-content-risk a {
  color: #417571;
}

.r-none,
.r-active {
  background-color: #D9D9D9;
  text-align: center;
  border-radius: 3px 3px 0px 0px;
}

.r-none p,
.r-active p {
  font-size: 28px;
  padding: 32px;
}

.r-none p span,
.r-active p span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
}

.r-none p:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1023px) {

  .r-none p,
  .r-active p {
    font-size: 28px;
    padding: 12px;
  }

  .r-none p span,
  .r-active p span {
    font-size: 12px;
  }
}

@media screen and (max-width: 1200px) and (max-width:768px) {

  .r-none p,
  .r-active p {
    font-size: 16px;
    background-color: unset;
    letter-spacing: 0em;
    font-weight: 500;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1200px) and (max-width: 374px) {

  .r-none p,
  .r-active p {
    font-size: 12px;
  }
}

@media screen and (max-width: 1200px) and (max-width:768px) {

  .r-none,
  .r-active {
    border-radius: 5px 5px 0px 0px;
  }
}

.r-none {
  width: 50%;
  height: 140px;
}

@media screen and (max-width: 1200px) and (max-width:768px) {
  .r-none {
    height: 60px;
  }
}

.r-active {
  width: 50%;
  background-color: #fff;
}

.a-content-rev {
  background-color: #D1D5CF;
}

.a-content-inner {
  display: flex;
  gap: 97px;
  width: 85%;
  margin-left: auto;
  padding: 107px 0 95px;
}

@media (max-width:1280px) {
  .a-content-inner {
    width: 93%;
    padding: 120px 0 40px;
  }
}

@media (max-width:768px) {
  .a-content-inner {
    padding: 24px 0 95px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    margin: 0 auto;
    max-width: 500px;
  }
}

@media (max-width: 430px) {
  .a-content-inner {
    padding: 11px 0 71px;
    width: 88%;
  }
}

.a-content-inner-rev {
  margin-left: unset;
  margin-right: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width:768px) {
  .a-content-inner-rev {
    padding: 24px 0 95px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    margin: 0 auto;
  }
}

@media (max-width: 430px) {
  .a-content-inner-rev {
    padding: 24px 0 68px;
  }
}

.a-content-img {
  width: 75%;
}

@media (max-width:768px) {
  .a-content-img {
    width: 100%;
  }
}

.a-content-img img {
  max-width: 100%;
}

@media (max-width:768px) {
  .a-content-img img {
    width: 327px;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto;
  }
}

.a-content-text {
  width: 56%;
}

@media (max-width:1280px) {
  .a-content-text {
    width: 87%;
  }
}

@media (max-width:768px) {
  .a-content-text {
    width: 100%;
  }
}

.a-content-text img {
  width: 100px;
  padding-bottom: 60px;
  padding: 16px 0px 60px;
}

@media (max-width:768px) {
  .a-content-text img {
    max-width: 64px;
    padding: 16px 0px 24px;
  }
}

.a-content-text h3 {
  font-size: 42px;
  font-weight: 500;
  padding-bottom: 40px;
  letter-spacing: 0.1em;
  line-height: 200%;
}

.a-content-text p {
  font-size: 32px;
  letter-spacing: 0.1em;
  padding-bottom: 60px;
  line-height: 200%;
}

@media screen and (max-width: 1600px) {
  .a-content-text h3 {
    font-size: 35px;
  }
}

@media screen and (max-width: 1385px) {
  .a-content-text h3 {
    font-size: 32px;
  }
}

@media screen and (max-width: 1385px) and (max-width:1280px) {
  .a-content-text h3 {
    font-size: 24px;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 1385px) and (max-width:768px) {
  .a-content-text h3 {
    font-size: 24px;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 1385px) and (max-width: 430px) {
  .a-content-text h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1385px) {
  .a-content-text p {
    font-size: 20px;
  }
}

@media screen and (max-width: 1385px) and (max-width:1280px) {
  .a-content-text p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 180%;
  }
}

@media screen and (max-width: 1385px) and (max-width:768px) {
  .a-content-text p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 180%;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1023px) {
  .recom h3 {
    font-size: 16px;
    margin: 0;
    margin-bottom: 16px;
  }

  .r-section {
    padding-top: 16px;
  }

  .tab-inner {
    display: block;
    margin-bottom: 40px;
  }

  .tab-inner-left {
    width: 100%;
    margin-bottom: 12px;
  }

  .tab-inner-right {
    width: 100%;
  }

  .recom h4 {
    font-size: 18px;
  }

  .tab-inner-right .p-1 {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .tab-inner-right .p-2 {
    font-size: 14px;
  }
}

.appeal {
  padding-top: 120px;
}

@media screen and (max-width: 1023px) {
  .appeal {
    padding-top: 35px;
  }

  .appeal h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }
}

.photo {
  padding: 120px 0 140px;
  position: relative;
}

@media (max-width: 430px) {
  .photo {
    padding: 40px 0 80px;
  }
}

.photo-title {
  padding-bottom: 80px;
}

@media (max-width:768px) {
  .photo-title {
    padding-bottom: 24px;
  }
}

.photo-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.container {
  margin: 0 auto;
  max-width: 762px;
  width: 90%;
}

.slick-slide {
  height: 491px;
  margin-bottom: 28px;
}

@media (max-width: 430px) {
  .slick-slide {
    height: 200px;
  }
}

@media (max-width:768px) {
  .slick-img img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.slick-current img {
  height: 491px;
  width: 100%;
}

@media (max-width: 430px) {
  .slick-current img {
    height: 200px;
    max-width: 350px;
    margin: 0 auto;
  }
}

.thumbnail img {
  height: 192px;
  width: 100%;
  max-width: 308px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 430px) {
  .thumbnail img {
    height: 68px;
    max-width: 105px;
  }
}

@media (max-width:1280px) {
  .thumbnail button {
    display: none !important;
  }
}

.thumbnail-img {
  height: 192px;
  margin: 0 13px;
}

@media (max-width: 430px) {
  .thumbnail-img {
    height: 68px;
    max-width: 105px;
    width: 100%;
    margin: 0 10px;
  }
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  height: 80px;
  width: 80px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

@media (max-width:1280px) {
  .slide-arrow {
    height: 44px;
    width: 44px;
  }
}

@media (max-width: 430px) {
  .slide-arrow {
    height: 22px;
    width: 22px;
  }
}

.prev-arrow {
  left: -4%;
}

@media (max-width:1280px) {
  .prev-arrow {
    left: -2%;
  }
}

@media (max-width: 430px) {
  .prev-arrow {
    left: 0%;
    top: 41%;
  }
}

.next-arrow {
  right: -4%;
}

@media (max-width:1280px) {
  .next-arrow {
    right: -2%;
  }
}

@media (max-width: 430px) {
  .next-arrow {
    right: 0%;
    top: 41%;
  }
}

.info {
  padding: 120px 0 120px;
  background: #D1D5CF;
}

.info-inner h2{
  margin-bottom: 0;
}

@media (max-width: 430px) {
  .info {
    padding: 44px 0 30px;
  }
}

.info-title {
  padding-bottom: 80px;
}

@media (max-width:768px) {
  .info-title {
    padding-bottom: 34px;
  }
}

@media (max-width: 430px) {
  .info-title {
    padding-bottom: 17px;
  }
}

.info-contents {
  margin: 0 auto;
  max-width: 900px;
}

@media (max-width:768px) {
  .info-contents {
    padding: 0 24px;
  }
}

.info-content-outline {
  padding-bottom: 30px;
}

.info-content-text {
  padding: 30px 0;
  border-bottom: 1px solid #07272D;
  display: block;
  font-style: normal;
}

@media (max-width:768px) {
  .info-content-text {
    padding: 12px 0;
    font-size: 14px;
  }
}

.info-content-text:nth-child(8) {
  border-bottom: none;
}

@media (max-width: 430px) {
  .info-content-map {
    max-width: 327px;
    width: 100%;
    height: 200px;
    margin: 0 auto;
  }
}

.info-content-map iframe {
  max-width: 100%;
}

@media (max-width: 430px) {
  .info-content-map iframe {
    max-width: 327px;
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 430px) {
  footer {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }


  /* h1 {
    width: 150px;
    height: auto;
    margin-left: 100px;
  } */

  .header-right .p-1 {
    font-size: 20px;
    padding: 15px 44px;
    margin-top: 32px;
    margin-bottom: 32px;
    margin-right: 30px;
  }

  .header-right .p-2 {
    font-size: 23px;
    margin-right: 80px;
  }

  .fz16 {
    font-size: 16px;
  }

  .kv p {
    font-size: 30px;
    font-weight: 500;
    line-height: 240%;
    letter-spacing: 3.8px;
    top: 50%;
    left: 29%;
  }

  #section-1 h2,
  #section-2 h2 {
    margin-bottom: 98px;
  }

  section h2 {
    font-size: 38px;
  }

  #section-2 {
    padding-top: 120px;
    padding-bottom: 136px;
  }

  .triangle {
    width: 150px;
    margin: -38px auto 0;
  }

}

#section-3 {
  padding-top: 84px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #section-3 {
    padding-top: 40px;
    padding-bottom: 0;
  }
}

#section-3 h2 {
  margin-bottom: 118px;
}
@media screen and (max-width: 768px) {
  #section-3 h2 {
    margin-bottom: 22px;
  }
}

.slick-slide img {
  height: 500px;
  object-fit: cover;
}

.thumbnail img {
  height: 180px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
.slick-slide img {
  height: 200px;
  object-fit: cover;
}

.thumbnail img {
  height: 70px;
  object-fit: cover;
}
}

.toggle-inner{
  width: 72.9%;
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px){
  .toggle-inner{
    width: 100%;
  }
}

.inter {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.toggle-section{
  background-color: #D1D5CF;
  padding: 136px 0 160px;
}

@media screen and (max-width: 768px){
  .toggle-section{
    padding: 40px 0 64px;
  }
}

.sub-title{
  display: block;
  font-size: 16px;
  color: #417571;
}
@media screen and (max-width: 768px){
  .sub-title{
    font-size: 10px;
  }
}

.toggle-btn-wrapper{
  display: flex;
  justify-content: space-between;
}

.toggle-btn{
  display: block;
  font-size: 28px;
  width: 32.1%;
  text-align: center;
  padding: 34px 0px;
  background-color: #F5E3CC;
  position: relative;
}
@media screen and (max-width: 768px){
  .toggle-btn{
    font-size: 18px;
    padding: 12px 5px;
    line-height: 1;
  }
}

.toggle-active{
  background-color: #FFFFFF;
}

.toggle-active::before{
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #417571;
  position: absolute;
  top: 0;
  left: 0;
}

.toggle-content-wrapper{
  background-color: #FFFFFF;
  /* min-height: 600px; */
}

.toggle-content{
  transition: opacity .5s linear;
}

.case-first-inner{
  padding: 60px 100px 65px;
}

@media screen and (max-width: 768px){
  .case-first-inner{
    padding: 37px 0;
    width: 89.3%;
    margin: 0 auto;
  }
}

.toggle-content.active{
  background-color: #FFFFFF;
  display: block;
  /* z-index: 0; */
  opacity: 1;
}

.toggle-content{
  display: none;
  opacity: 0;
  /* z-index: -1; */
}

.case-center-text{
  text-align: center;
  margin-bottom: 18px;
  font-size: 24px;
}
@media screen and (max-width: 768px){
  .case-center-text{
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.09rem;
  }
}

.case-sub-title{
  color: #F5E3CC;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.15rem;
  background-color: #417571;
  text-align: center;
  padding: 18px 5px;
}
@media screen and (max-width: 768px){
  .case-sub-title{
    font-size: 12px;
    padding: 9px 5px;
    line-height: 1;
  }
}

.case-center-green{
  color: #417571;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-align: center;
  margin-top: 64px;
}
@media screen and (max-width: 768px){
  .case-center-green{
    font-size: 14px;
    line-height: 1.5;
    margin-top: 30px;
  }
}

.case-second-inner{
  max-width: 1056px;
  width: 76.85%;
  margin: 0 auto;
}
@media screen and (max-width: 768px){
  .case-second-inner{
    width: 86.86%;
  }
}

.case1-img2{
  margin-left: 60px;
  margin-bottom: 82px;
  margin-top: 30px;
}
@media screen and (max-width: 768px){
  .case1-img2{
    margin-left: 0;
    margin-bottom: 40px;
    margin-top: 30px;
  }
}

.case-third-inner{
  width: 74.28%;
}

.case-third-inner{
  max-width: 1040px;
  width: 74.28%;
  margin: 0 auto;
}
@media screen and (max-width: 768px){
  .case-third-inner{
    width: 89.3%;
  }
}

.case1-img3{
  margin-left: 50px;
  margin-bottom: 98px;
}
@media screen and (max-width: 768px){
  .case1-img3{
    margin-left: 0;
    margin-bottom: 40px;
    margin-top: 30px;
  }
}

.case-catch-copy{
  font-size: 28px;
  color: #417571;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  margin-bottom: 84px;
}
@media screen and (max-width: 768px){
  .case-catch-copy{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 19px;
  }
}

.case-action-btn-wrapper{
  width: 78.5%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px){
  .case-action-btn-wrapper{
    width: 89.3%;
  }
}

.action-btn{
  display: block;
  text-align: center;
  font-size: 48px;
  color: #F5E3CC;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  background-color: #417571;
  border-radius: 12px;
  padding: 40px 20px;
  position: relative;
}
@media screen and (max-width: 768px){
  .action-btn{
    font-size: 18px;
    line-height: 1.4;
    padding: 13px 5px;
  }
}

.action-btn::after{
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-color: #F5E3CC;
  border-bottom: solid 4px;
  border-right: solid 4px;
  transform: rotate(-45deg);
  position: absolute;
  right: 5%;
  top: 40%;
  /* border-radius: 10px; */
}
@media screen and (max-width: 768px){
  .action-btn::after{
    width: 10px;
    height: 10px;
    border-bottom: solid 2px;
    border-right: solid 2px;
  }
}

.action-btn-subtext{
  display: block;
  font-size: 20px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px){
  .action-btn-subtext{
    font-size: 11px;
  }
}

.case-explanation{
  width: 85.7%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 76px;
}
@media screen and (max-width: 768px){
  .case-explanation{
    font-size: 12px;
    width: 89.3%;
    margin-top: 30px;
  }
}

.case-explanation-content{
  display: flex;
}
@media screen and (max-width: 768px){
  .case-explanation-content{
    display: block;
  }
}

.case-explanation-title{
  display: block;
  min-width: 100px;
}

.case-explanation-text{
  display: block;
}

.case-explanation-list{
  font-size: 14px;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px){
  .case-explanation-list{
    font-size: 12px;
    padding-bottom: 40px;
  }
}

.only-sp{
  display: none;
}
@media screen and (max-width: 768px){
  .only-sp{
    display: block;
  }
}

.only-pc{
  display: block;
}
@media screen and (max-width: 768px){
  .only-pc{
    display: none;
  }
}

.problem{
  padding: 84px 10px 64px;
  background-color: #D1D5CF;
}
@media screen and (max-width: 768px) {
  .problem{
    padding: 64px 10px 64px;
  }
}

.lp-subtitle{
  font-size: 38px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

.lp-subtitle-text{
  font-size: 20px;
  display: block;
  line-height: 1;
  color: #417571;
  letter-spacing: 0.05rem;
}

.lp-subtitle.line-decorated{
  width: 74.29%;
  margin: 0 auto;
}

@media screen and (max-width: 768px){
  .lp-subtitle.line-decorated{
    width: 96.3%;
  }
}

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

.line-decoration::before,
.line-decoration::after{
  content: "";
  display: block;
  width: 21.7%;
  height: 2px;
  background-color: #417571;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .lp-subtitle-text{
    font-size: 16px;
  }
  .lp-subtitle{
    font-size: 20px;
    margin-bottom: 38px;
    letter-spacing: 0.05rem;
  }
  .line-decoration::before,
  .line-decoration::after{
    width: 5.7%;
  }
}

.section1-img1{
  display: block;
  width: 57.29%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section1-img1{
    width: 95.3%;
  }
}

.section1-text{
  font-size: 28px;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1rem;
  font-weight: 500;
}

.section1-text-strong{
  font-size: 36px;
  font-weight: 400;
  color: #417571;
}

@media screen and (max-width: 768px) {
  .section1-text{
    font-size: 18px;
    line-height: 1.6;
    margin-top: 24px;
  }
  .section1-text-strong{
    font-size: 20px;
  }
}

.charm{
  padding: 0 10px 140px;
  background-color: #D1D5CF;
}
@media screen and (max-width: 768px) {
  .charm{
    padding: 0 10px 64px;
  }
}

.section1-img2{
  display: block;
  width: 76.29%;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .section1-img2{
    width: 94.3%;
    margin: 34px auto 0;
  }
}

.action-banner{
  padding: 40px 0px 120px;
  background-color: #F5E3CC;
}
@media screen and (max-width: 768px) {
  .action-banner{
    padding: 27px 0px 24px;
  }
}

.action-banner-title{
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  color: #F5E3CC;
  background-color:#417571;
  line-height: 1;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .action-banner-title{
    font-size: 20px;
    padding: 15px;
    margin-bottom: 24px;
  }
}

.action-banner-subtitle{
  font-size: 20px;
  font-weight: 400;
  display: block;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .action-banner-subtitle{
    font-size: 14px;
    letter-spacing: 0.04rem;
  }
}

.action-banner-img{
  display: block;
  width: 82.1%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .action-banner-img{
    width: 93.3%;
    position: relative;
    left: -1.3%;
  }
}

.banner-action-btn-wrapper{
  width: 81.55%;
  margin: 0 auto;
  padding: 40px 4.3% 83px;
  background-color: #ffff;
  position: relative;
  left: 0.3%;
}
@media screen and (max-width: 768px) {
  .banner-action-btn-wrapper{
    width: 89.33%;
    padding: 10px 4.3% 14px;
    left: 0.6%;
  }
}

.skin-analysis-btn{
  font-size: 24px;
  color: #417571;
  text-align: center;
  display: block;
  max-width: 342px;
  width: 65.84%;
  padding: 20px 7.9%;
  border: solid 1px #417571;
}

@media screen and (max-width: 768px) {
  .skin-analysis-btn{
    font-size: 18px;
    width: 100%;
    padding: 18px 7.9% 10px;
    margin-top: 24px;
  }
}

.skin-analysis-btn::after{
  content: "";
  display: inline-block;
  width: 26px;
  height: 7px;
  background-image: url(../img/analysis-btn-arrow.png);
  background-size: 26px 7px;
  background-repeat: no-repeat;
  margin-left: 26px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .skin-analysis-btn::after{
    margin-left: 10px;
  }
}

.bg-grey{
  background-color: #D1D5CF;
}

.mg-30-to-22{
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .mg-30-to-22{
    margin-bottom: 22px;
  }
}

.outlink{
  font-weight: bold;
  text-decoration: underline;
  color: #417571;
}

.slider-section-title{
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .slider-section-title{
    margin-bottom: 34px;
  }
}