@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
.pc_ {
  display: none;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .pc_ {
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .pc_ {
    display: block;
  }
}

.sp_ {
  display: block;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .sp_ {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .sp_ {
    display: none;
  }
}

:root {
  --default-color: #fff;
  --primary_color: #ffffff;
  --secondary_color: #22203c;
  --background_color: #fff;
  font-size: 62.5%;
}

.contents_stj {
  max-width: 100%;
  margin: 0 auto;
  color: var(--default-color);
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.contents_stj a {
  text-decoration: none;
}
.contents_stj a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.bg_color_ {
  background-color: #fff;
}

#contents_wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (min-width: 600px) and (max-width: 999px) {
  #main_contents {
    max-width: 90vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  #main_contents {
    max-width: 95vw;
    margin: 0 auto;
  }
}

#first_view {
  padding-top: 3rem;
}
#first_view .logo_ {
  width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  #first_view .logo_ {
    width: 25%;
  }
}
@media screen and (max-width: 599px) {
  #first_view .logo_ {
    width: 40%;
  }
}
#first_view h1.title_ {
  font-size: 3rem;
  color: #A87E7D;
  margin-top: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 599px) {
  #first_view h1.title_ {
    font-size: 3.5rem;
  }
}
#first_view h1.title_ span {
  display: block;
  font-size: 70%;
}
@media screen and (max-width: 599px) {
  #first_view h1.title_ span {
    font-size: 60%;
  }
}

#ankers_ {
  margin-top: 4rem;
}
@media screen and (max-width: 599px) {
  #ankers_ {
    margin-top: 2.6rem;
  }
}
#ankers_ ul.anker_container {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  #ankers_ ul.anker_container {
    flex-wrap: wrap;
    gap: 20px 15px;
  }
}
#ankers_ ul.anker_container li.anker_ {
  width: min(43vw, 210px);
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  #ankers_ ul.anker_container li.anker_ {
    width: 23vw;
  }
}
@media screen and (max-width: 599px) {
  #ankers_ ul.anker_container li.anker_:nth-child(1) {
    margin: 0 90px;
  }
}

.main_area {
  margin-top: 8rem;
}
@media screen and (max-width: 599px) {
  .main_area {
    margin-top: 6rem;
  }
}
.main_area .bg_color_inner {
  background-color: #C5A3A6;
  position: relative;
  padding: 7rem 0;
}
@media screen and (max-width: 599px) {
  .main_area .bg_color_inner {
    padding: 3rem 0;
  }
}
@media screen and (min-width: 1000px) {
  .main_area .bg_color_inner .brd_logo {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .main_area .bg_color_inner .brd_logo {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
.main_area .bg_color_inner .brd_logo img {
  width: 240px;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .main_area .bg_color_inner .brd_logo img {
    width: 200px;
    margin: 0 auto 3rem;
  }
}
@media screen and (max-width: 599px) {
  .main_area .bg_color_inner .brd_logo img {
    width: 220px;
    margin: 0 auto 3rem;
  }
}
.main_area#sv_ .bg_color_inner {
  background-color: #D5B8BB;
}
.main_area#pc_ .bg_color_inner {
  background-color: #EDC4CC;
  color: #333;
}
.main_area .item_contents {
  margin-bottom: 6rem;
}
@media screen and (max-width: 599px) {
  .main_area .item_contents {
    margin-bottom: 5rem;
  }
}
.main_area .item_contents::after {
  content: "";
  display: block;
  border-bottom: solid 0.5px #fff;
  padding-bottom: 5rem;
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .main_area .item_contents::after {
    padding-bottom: 4rem;
  }
}
.main_area .item_contents .mv_ {
  position: relative;
}
.main_area .item_contents .mv_ .mv_img {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .main_area .item_contents .mv_ .mv_img {
    width: 90%;
  }
}
.main_area .item_contents .mv_ .arrows {
  position: absolute;
  top: 46%;
  right: 11%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .main_area .item_contents .mv_ .arrows {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .main_area .item_contents .mv_ .arrows {
    display: none;
  }
}
.main_area .item_contents .mv_ .arrows img {
  width: 140px;
}
.main_area .item_contents .mv_ .item_info {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 10px;
}
.main_area .item_contents .mv_ .item_info span {
  display: block;
  font-size: 75%;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 5px;
}
.main_area .item_contents .subV_ {
  margin-top: 5rem;
}
@media screen and (max-width: 599px) {
  .main_area .item_contents .subV_ {
    margin-top: 4rem;
  }
}
.main_area .item_contents .subV_ .item_img {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 670px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .main_area .item_contents .subV_ .item_img {
    max-width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .main_area .item_contents .subV_ .item_img {
    max-width: 90vw;
    flex-direction: column;
  }
}
.main_area .item_contents .subV_ .item_img img {
  width: min(40vw, 335px);
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .main_area .item_contents .subV_ .item_img img {
    width: 80%;
  }
}
.main_area .item_contents .subV_ .item_text {
  font-size: 1.3rem;
  line-height: 2.5;
  margin-top: 10px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .main_area .item_contents .subV_ .item_text {
    font-size: 1.2rem;
    width: 90%;
    line-height: 2;
    margin: 10px auto 0;
  }
}
.main_area .item_contents .subV_ .item_text span {
  display: block;
  line-height: 1.5;
  margin-top: 15px;
}
.main_area .btn_ {
  background-color: #BF868A;
  width: 600px;
  margin: 0 auto;
  border-radius: 50px;
  filter: drop-shadow(0 3px 0 #6b6b6b);
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .main_area .btn_ {
    width: 86%;
    margin: -20px auto 15px;
  }
}
.main_area .btn_ a {
  display: block;
  padding: 15px 0 13px;
  color: #fff;
}
.main_area#sv_ .btn_ {
  background-color: #CCA1A6;
}
.main_area#pc_ .btn_ {
  background-color: #DEA4B0;
}

#pc_ .item_contents::after {
  content: "";
  border-bottom: solid 0.5px #333;
}

.all_btn_ {
  background-color: #666;
  width: 600px;
  margin: 40px auto 50px;
  border-radius: 50px;
  filter: drop-shadow(0 3px 0 #171717);
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .all_btn_ {
    width: 86%;
  }
}
.all_btn_ a {
  display: block;
  padding: 15px 0 13px;
  color: #fff;
}

#footer_ hr {
  height: 2px;
  background-color: #333;
  border: none;
  max-width: 1000px;
  margin: 30px auto;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  #footer_ hr {
    width: 90vw;
  }
}
@media screen and (max-width: 599px) {
  #footer_ hr {
    width: 90vw;
    margin: 30px auto;
  }
}
#footer_ .feature_ {
  border: solid 1px #333;
  padding: 10px 0;
  text-align: center;
  width: 500px;
  margin: 30px auto 0;
}
@media screen and (max-width: 599px) {
  #footer_ .feature_ {
    width: 90vw;
    margin: 20px auto 0;
  }
}
#footer_ .feature_ a {
  display: block;
  color: #333;
  text-decoration: none;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  #footer_ .feature_ a {
    font-size: 14px;
  }
}
#footer_ ul.sns_btn_container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 0 70px;
}
#footer_ ul.sns_btn_container li.sns_btn {
  width: 35px;
}
#footer_ ul.sns_btn_container li.sns_btn a {
  text-decoration: none;
}
#footer_ ul.sns_btn_container li.sns_btn a img {
  width: 100%;
  vertical-align: top;
}/*# sourceMappingURL=2310all_smartphone_shoulder.css.map */