@charset "utf-8";

/*css変更*/

/* ----------------------------------------------------
header
--------------------------------------------------- */
.header_video {
  width: 92%;
  margin: 0 auto;
}

/* header2 */
.header2 {
  background-image: url(../img/shugido_head2.jpg);
  background-size: 100%;
  height: 130rem;
}

.header2 .header_video {
  padding: 44rem 0 0;
}

/* header3 */
.header3 {
  background-image: url(../img/shugido_head3.jpg);
  background-size: 100%;
  height: 140rem;
}

.header3 .header_video {
  padding: 52rem 0 0;
}

/* ----------------------------------------------------
video
--------------------------------------------------- */
#video {
  padding: 10rem 0;
}

#video .sub_head {
  font-size: 4.8rem;
  margin-bottom: 5rem;
}

/* ----------------------------------------------------
intro
--------------------------------------------------- */
#intro {
  background: url(../img/bg_intro.jpg);
  background-size: cover;
}

#intro .notice {
  padding-top: 3rem;
}

/* ----------------------------------------------------
history
--------------------------------------------------- */
#history {
  padding: 0 0 14rem;
  background: var(--black);
  color: #fff;
}

#history p {
  font-size: 4.2rem;
  line-height: 1.8;
}

/* ----------------------------------------------------
case
--------------------------------------------------- */
#case {
  background: url(../img/bg_case.jpg);
  background-position: top center;
  padding: 14rem 0 4rem;
}

.case_box+.case_box {
  margin-top: 12rem;
}

.case_box_ttl {
  font-size: 5.5rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}

.case_box:nth-child(3) .case_box_ttl {
  font-size: 5.2rem;
}

.case_box_num {
  position: relative;
  color: var(--blue);
  font-size: 6rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 6rem;
}

.case_box:first-child .case_box_num {
  margin-bottom: 4rem;
}

.case_box_num:before,
.case_box_num:after {
  position: absolute;
  top: 50%;
  width: 32rem;
  height: 1rem;
  content: '';
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
}

.case_box_num:before {
  left: 0;
}

.case_box_num:after {
  right: 0;
}

.ba_video {
  position: relative;
}

.b_box {
  position: relative;
}

.a_box {
  position: relative;
}

.b_box video,
.a_box video {
  width: 100%;
  display: block;
}

.b_video_ttl {
  background: var(--mainTxtColor);
  color: #fff;
  text-align: center;
  font-size: 4.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  padding: 2rem 0;
}

.a_video_ttl {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 4.5rem;
  font-weight: 600;
  padding: 2rem 0;
}

.b_caption {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.4;
  font-size: 4.5rem;
  padding: 4.5rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  place-items: center center;
  background: var(--mainTxtColor);
}

.case_box:nth-child(2) .b_caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #707070;
}

.case_box:nth-child(2) .b_caption p {
  text-align: left;
  font-size: 4rem;
  line-height: 1.6;
  width: 69%;
}

.case_box:nth-child(2) .b_caption img {
  width: 31%;
}

.a_caption {
  line-height: 1.4;
  font-size: 4.5rem;
  font-weight: 600;
  padding: 4.5rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  place-items: center center;
  background: var(--red);
  color: #fff;
}

.ba_ttl {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  font-feature-settings: 'palt'1;
  position: relative;
  letter-spacing: 2px;
  background: #168ea2;
  padding: 2rem 0;
  color: #fff;
}

/* ----------------------------------------------------
symptoms
--------------------------------------------------- */
#symptoms {
  background: #faf4ed;
  position: relative;
  padding: 0;
}

#symptoms::before {
  content: "";
  width: 100%;
  height: 10rem;
  background: #f4f3f1;
  position: absolute;
  display: inline-block;
  top: -0.1rem;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#symptoms.head23::before {
  background: #f0efed;
}

.symptoms_box {
  border: 1px solid var(--yellow);
}

.symptoms_box_ttl {
  background: var(--gold);
  padding: 2rem 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: center;
  font-size: 5rem;
}

.symptoms_box_inner {
  padding: 5rem;
  background: #fff;
}

/* アコーディオンエリアの設定 */
.ac_area {
  display: none;
  padding: 0 0 2rem;
}

.ac_inner:first-child {
  padding: 0rem;
}

/* フォームボタンの文言・アイコン */
.cta_btn:after {
  content: '+';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
}

.cta_btn.opened {
  border: 1px solid #fff;
  color: #fff;
}

.cta_btn.opened:before {
  content: '閉じる';
  font-size: 4.5rem;
  font-weight: 500;
}

.cta_btn.opened:after {
  content: 'ー';
  font-size: 4rem;
}

.cta_btn span {
  display: block;
  font-size: 4.5rem;
  font-weight: 500;
}

.cta_btn.opened span {
  display: none;
}

.cta_btn {
  display: block;
  width: 100%;
  background: none;
  color: #fff;
  line-height: 1.2;
  padding: 3rem 0;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 10;
  font-family: inherit;
  border-radius: 40px;
  border: 1px solid #fff;
  text-align: center;
}

.cta_btn:hover {
  filter: brightness(1.3);
}

.ac_area p {
  font-size: 4rem;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 5rem;
}

.symptoms_box .cta_btn {
  color: var(--mainTxtColor);
  border-color: var(--mainTxtColor);
}

.symptoms_box .ac_area p {
  font-size: 3.5rem;
}

/* ----------------------------------------------------
symptoms
--------------------------------------------------- */
#symptoms2 {
  background: #11242e;
  padding: 0 0 14rem;
}

#symptoms2 .lead {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

/* ----------------------------------------------------
secret
--------------------------------------------------- */
#secret {
  background: url(../img/bg_secret.jpg);
  background-position: top center;
}

.list1 {
  padding: 2rem 5rem;
  border: 1px solid var(--red);
  background: #fff
}

.list1 li {
  position: relative;
  padding: 4rem 0 4rem 7rem;
  border-bottom: 1px dotted var(--red);
  color: var(--blue);
  font-size: 4.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.list1 li::before {
  content: "";
  position: absolute;
  top: 6.3rem;
  left: 0;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--red);
  border-radius: 2px;
}

.list1 li::after {
  content: "";
  border-left: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  width: 4.2rem;
  height: 2.2rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  left: 0.5rem;
  top: 6.2rem;
}

.list1 li:last-child {
  border-bottom: none;
}

/* ----------------------------------------------------
method
--------------------------------------------------- */
#method {
  background: var(--blue);
  padding: 14rem 0 0;
}

.dot_ttl {
  color: #fff;
  padding: 3rem 0;
  border-top: 4px double #fff;
  border-bottom: 4px double #fff;
  text-align: center;
}

/* ----------------------------------------------------
voice
--------------------------------------------------- */
#voice {
  padding: 0 0 14rem;
  background: #efefef;
}

.voice_ttl_wrap {
  background: var(--blue);
  padding: 5rem 5rem 6rem;
}

.voice_num {
  position: relative;
  color: #fff;
  font-size: 6.5rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  opacity: 0.3;
  margin-bottom: 2rem;
}

.voice_num:before,
.voice_num:after {
  position: absolute;
  top: 50%;
  width: 28rem;
  height: 1rem;
  content: '';
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.voice_num:before {
  left: 0;
}

.voice_num:after {
  right: 0;
}

.voice_ttl {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1.4;
  text-align: center;
}

.voice_ttl+.voice_ttl {
  margin-top: 2rem;
  color: var(--yellow);
}

.voice_ttl ruby[data-ruby]::after {
  transform: translate(-50%, -1.8rem);
  letter-spacing: .5rem;
}

.voice_box_wrap {
  background: #fff;
  padding: 7rem 5rem;
}

.voice_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voice_box_name {
  width: 55%;
  font-size: 3.8rem;
  line-height: 1.5;
}

.voice_box img {
  width: 45%;
}

.fukidashi {
  position: relative;
  font-size: 4.4rem;
  line-height: 1.5;
  font-style: italic;
  background: #fff9d9;
  padding: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-bottom: 6rem;
}

.fukidashi::before {
  position: absolute;
  content: '';
  width: 5rem;
  height: 10rem;
  background-color: #fff9d9;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
  top: -8rem;
  right: 20rem;
}

.fukidashi p+p {
  margin-top: 2rem;
}

.description_ttl {
  padding: 2rem 5rem 1rem;
  background: var(--mainTxtColor);
  color: #fff;
  text-align: center;
}

.description_box {
  padding: 5rem;
  border: 1px solid var(--mainTxtColor);
}

.description_box p:last-of-type {
  font-size: 3.5rem;
}

/* ----------------------------------------------------
reco
--------------------------------------------------- */
#reco {
  background: var(--black);
}

.reco_ttl {
  background: url(../img/reco_obi.jpg);
  padding: 5rem;
  font-size: 5.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.reco_box {
  background: #fff;
  padding: 7rem 5rem;
}

.reco_txt {
  background-color: #f9f4ed;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23e7d1bd' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 5rem;
  font-size: 3.5rem;
  margin-bottom: 8rem;
}

.reco_box+.reco_ttl {
  margin-top: 10rem;
}

#reco .fukidashi {
  font-size: 4rem;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  margin-bottom: 0;
}

#reco .fukidashi::before {
  left: 50%;
  transform: translateX(-50%);
}

/* ----------------------------------------------------
content
--------------------------------------------------- */
#content {
  background: url(../img/bg_content.jpg);
  background-position: top center;
}

.content_box {
  background: #fff;
  padding: 8rem 5rem;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}

.content_box+.content_box {
  margin-top: 10rem;
}

.content_box_num {
  position: relative;
  color: var(--red);
  font-size: 7rem;
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  opacity: 0.3;
  margin-bottom: 2rem;
}

.content_box_num:after {
  position: absolute;
  top: 50%;
  width: 39rem;
  height: 1rem;
  content: '';
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  right: 0;
}

.content_box_ttl {
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.content_box img {
  margin-bottom: 5rem;
}

/* list2 */
.list2 {
  border-radius: 2rem;
  background-color: #ffffff;
  margin-bottom: 4rem;
}

.list2 li {
  position: relative;
  padding: 2rem 0rem 2rem 13rem;
  background: #c5393917;
  line-height: 1.5;
}

.list2 li::after {
  content: "";
  width: 11rem;
  height: 6rem;
  background: url(../img/content_check.png);
  background-size: cover;
  position: absolute;
  top: 2rem;
  left: 0;
}

.list2 li+li {
  margin-top: 2rem;
}

#content .list1 {
  font-size: 4rem;
  line-height: 1.5;
  background: #fff9d9;
}

#content .list1 li {
  color: var(--mainTxtColor);
}

#content .list1 li::before {
  top: 5.6rem;
}

#content .list1 li::after {
  top: 5.6rem;
}

/* ----------------------------------------------------
profile
--------------------------------------------------- */
#profile {
  padding-top: 0;
  background: url(../img/bg_profile.jpg);
  background-position: top center;
  color: #fff;
}

#profile .lead:nth-child(1) {
  text-align: left;
}

.profile_wrap {
  margin-top: 2rem;
}

.profile_box {
  margin-bottom: 10rem;
}

.profile_box h3 {
  background: var(--gold);
  color: var(--mainTxtColor);
  text-align: center;
  padding: 3rem 5rem;
  font-size: 4.5rem;
  line-height: 1.5;
  font-weight: 700;
}

.profile_box h3.ttl2 {
  background: var(--blue);
  color: #fff;
  font-weight: 500;
}

.profile_box_inner {
  padding: 7rem 5rem;
  background: #fff;
}

.profile_box_inner .profile_box {
  margin-bottom: 0;
}

.profile_box_inner .profile_box:last-child {
  margin-top: 6rem;
}

/* ----------------------------------------------------
Information
--------------------------------------------------- */
#information {
  padding: 10rem 0;
  background: #fff;
  color: #000;
}

#information p {
  font-size: 4.2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1.5;
  letter-spacing: 0;
}

#information ul {
  font-size: 3rem;
  line-height: 1.5;
}

#information ul li {
  text-align: justify;
  text-indent: -1em;
  padding: 0.2em 0 0.2em 1em;
}

#information ul li::before {
  content: "●";
}