@charset "UTF-8";
/***********************共通設定************************/
/* ==========================================================================//
//
//アルコールリワーク
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
.brsp {
  display: block;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .brsp {
    display: none;
  }
}

.brpc {
  display: none;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .brpc {
    display: block;
  }
}

.sec_ttl {
  text-align: center;
  font-weight: bold;
  color: #007e3d;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_ttl {
    font-size: 28px;
    margin-bottom: 44px;
    /* 1000以下  */
  }
}
@media all and (min-width: 751px) and (max-width: 1000px) {
  .sec_ttl {
    font-size: 24px;
  }
}

.btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .btn_list {
    gap: 24px 22px;
  }
}

.link_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .link_btn {
    min-height: 90px;
    font-size: 17px;
    width: calc((100% - 48px) / 3);
    /* 1000以下  */
  }
}
@media all and (min-width: 751px) and (max-width: 1000px) {
  .link_btn {
    font-size: 14px;
  }
}
.link_btn a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px;
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background-color: #fff;
  text-align: center;
  color: #2bb06b;
  border: 2px solid #62cc93;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .link_btn a {
    padding: 10px 5px;
  }
}
.link_btn a::after {
  position: absolute;
  content: "";
  background: url(../images/symptoms/ico_arrow.svg) no-repeat;
  background-size: cover;
  width: 6px;
  height: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .link_btn a:hover {
    background: #2bb06b;
    color: #fff;
  }
  .link_btn a:hover::after {
    right: 2px;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}

.sp_btn {
  margin-top: 20px;
}

.btn_motion2 {
  font-weight: bold;
  font-size: 24px;
  white-space: nowrap;
  margin-top: 40px;
}

/* MV
---------------------------------------------------------- */
#mv {
  background-image: url(../images/depression_anxiety/mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding: 40px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #mv {
    padding: 60px 20px 20px;
  }
}
#mv .copy {
  font-family: initial;
  display: block;
  text-align: center;
  font-size: 24px;
  margin: 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #mv .copy {
    font-size: 36px;
  }
}
#mv .copy span {
  font-family: inherit;
  font-style: inherit;
  display: block;
  font-weight: bold;
  color: #007e3d;
  font-size: inherit;
  line-height: 1.5;
  margin: unset;
}
#mv .copy .sub {
  font-size: 0.7em;
  margin-top: 4px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #mv .copy .sub {
    font-size: 0.83em;
  }
}
#mv .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  margin-top: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #mv .list {
    gap: 30px;
    margin-top: 40px;
  }
}
#mv .item {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #mv .item {
    width: 147px;
  }
}

/* セルフチェック
---------------------------------------------------------- */
.self_check {
  padding-top: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .self_check {
    padding-top: 40px;
  }
}
.self_check .block:not(:last-child) {
  margin-bottom: 40px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .self_check .block:not(:last-child) {
    margin-bottom: 50px;
  }
}
.self_check .ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #2BB06B;
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 10px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .self_check .ttl {
    padding: 14px 40px;
    margin-bottom: 20px;
  }
}
.self_check .heading {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1em;
  font-size: 15px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .self_check .heading {
    font-size: 20px;
  }
}
.self_check .heading span {
  font-weight: bold;
  font-size: 1.5em;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
}
.self_check .heading.question {
  color: #007e3d;
}
.self_check .heading.answer {
  color: #e38f00;
}
.self_check .tx {
  text-align: left;
  font-size: 14px;
  margin-top: 1em;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .self_check .tx {
    font-size: 16px;
  }
}
.self_check input[type=checkbox] {
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font: inherit;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-radius: 0;
  position: relative;
  aspect-ratio: 1;
  width: 26px;
  height: auto;
  background: #fff;
  border: 1px solid #c8c8c8;
  cursor: pointer;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .self_check input[type=checkbox] {
    width: 36px;
  }
}
.self_check input[type=checkbox]::before {
  content: "";
  background-image: url(../images/depression_anxiety/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 10/9;
  width: 56%;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.self_check input[type=checkbox]:checked::before {
  opacity: 1;
}
.self_check label {
  cursor: pointer;
}
.self_check .check_list {
  margin-top: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .self_check .check_list {
    margin-top: 30px;
  }
}
.self_check .check_list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-align: left;
  font-size: 14px;
  color: #2BB06B;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .self_check .check_list > li {
    font-size: 16px;
  }
}
.self_check .check_list > li:not(:last-child) {
  margin-bottom: 12px;
}
.self_check .check_list > li input {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.self_check .check_list > li label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* セルフチェック
---------------------------------------------------------- */
.guide {
  padding: 40px 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .guide {
    padding: 60px 0;
  }
}
.guide .guide_item:not(:last-child) {
  margin-bottom: 30px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .guide .guide_item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.guide .guide_item .heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  font-weight: 400;
  text-align: left;
  color: #007e3d;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .guide .guide_item .heading {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.guide .guide_item .heading span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border: 1px solid #2BB06B;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  color: #2BB06B;
  font-size: 0.8em;
}
.guide .guide_item .heading span::before {
  position: absolute;
  content: "";
}
.guide .guide_item .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .guide .guide_item .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .guide .guide_item .wrap .image {
    width: 38%;
  }
  .guide .guide_item .wrap .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.guide .guide_item .text {
  text-align: left;
}
.guide .guide_item .text p {
  letter-spacing: 0.03em;
  line-height: 1.56;
}
.guide .guide_item .text p:not(:last-child) {
  margin-bottom: 1.6em;
}
.guide .btn_list {
  margin-top: 30px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .guide .btn_list {
    margin-top: 40px;
  }
}

/* デイセラピーによる主な治療プログラム
---------------------------------------------------------- */
.day_therapy_program {
  background-color: #f6ffee;
  margin-inline: calc(50% - 50vw);
  padding: 40px calc(50vw - 50%);
  margin-top: 40px;
}

/* ご家族の方へ
---------------------------------------------------------- */
.sec_program {
  background-color: #f6ffee;
  padding: 40px 0;
}