@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;
  }
}

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

/* お酒に関する心配事を気軽に相談できる外来
---------------------------------------------------------- */
#care #mv {
  background-image: url(../images/rework_depression/mv.jpg);
}

/* MV
---------------------------------------------------------- */
#mv {
  background-image: url(../images/care_alcohol/mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 240px;
  padding: 40px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #mv {
    height: 417px;
    padding: 65px 20px 20px;
  }
}
#mv .page_ttl {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #007e3d), to(#4fd491));
  background: linear-gradient(90deg, #007e3d 0, #4fd491 100%);
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 14px 30px;
  margin: 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #mv .page_ttl {
    font-size: 36px;
    padding: 16px 80px;
  }
}
#mv .sub {
  font-weight: bold;
  color: #007e3d;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 26px;
  text-shadow: 0 0 30px #fff;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #mv .sub {
    font-size: 40px;
    margin-top: 50px;
  }
}

/* navi
---------------------------------------------------------- */
.page_navi {
  background-color: #f6ffee;
  padding: 20px 0;
  margin-top: 20px;
  margin-bottom: 40px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .page_navi {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
.page_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .page_navi ul {
    gap: 130px;
  }
}
.page_navi ul li {
  color: #007e3d;
  font-weight: bold;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .page_navi ul li {
    font-size: 18px;
  }
}
.page_navi ul li a {
  color: #303030;
  font-weight: 400;
}
@media (hover: hover) {
  .page_navi ul li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page_navi ul li a:hover {
    opacity: 0.6;
  }
}

/* feature
---------------------------------------------------------- */
.sec_feature .ttl {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .ttl {
    font-size: 30px;
  }
}
.sec_feature .links {
  counter-reset: number 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .links {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
    margin-top: 90px;
  }
}
@media all and (min-width: 751px) and (max-width: 1100px) {
  .sec_feature .links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px 30px;
  }
}
.sec_feature .links > li {
  position: relative;
  counter-increment: number 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .links > li {
    width: 24%;
  }
}
@media all and (min-width: 751px) and (max-width: 1100px) {
  .sec_feature .links > li {
    width: 40%;
  }
}
.sec_feature .links > li::before {
  position: absolute;
  content: counter(number, decimal-leading-zero) ".";
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  line-height: 0.6;
  color: #007e3d;
  font-weight: bold;
  font-size: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .links > li::before {
    font-size: 38px;
  }
}
.sec_feature .links > li a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #007e3d), to(#4fd491));
  background: linear-gradient(90deg, #007e3d 0, #4fd491 100%);
  color: #fff;
  font-weight: bold;
  padding: 12px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .links > li a {
    min-height: 50px;
    font-size: 15px;
    padding: 12px 6px;
  }
}
@media (hover: hover) {
  .sec_feature .links > li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .sec_feature .links > li a:hover {
    opacity: 0.7;
  }
}
.sec_feature .feature_list {
  margin-top: 60px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .feature_list {
    margin-top: 120px;
  }
}
.sec_feature .feature_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .feature_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: unset;
  }
  .sec_feature .feature_item .image {
    width: 32%;
    padding: 0 50px;
  }
  .sec_feature .feature_item .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.sec_feature .feature_item:not(:last-child) {
  margin-bottom: 40px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .feature_item:not(:last-child) {
    margin-bottom: 100px;
  }
}
.sec_feature .feature_item:nth-child(odd) {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .feature_item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.sec_feature .feature_item .heading {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8em;
  text-align: left;
  color: #007e3d;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .feature_item .heading {
    font-size: 26px;
    margin-bottom: 15px;
    /* 1000以下  */
  }
}
@media all and (min-width: 751px) and (max-width: 1000px) {
  .sec_feature .feature_item .heading {
    font-size: 20px;
  }
}
.sec_feature .feature_item .sub {
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 16px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .feature_item .sub {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.sec_feature .feature_item p {
  text-align: left;
  line-height: 1.6;
}
.sec_feature .support_list {
  margin-top: 60px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .support_list {
    margin-top: 80px;
  }
}
.sec_feature .support_item {
  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;
  background-color: #f6ffee;
  padding: 24px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .support_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    padding: 50px;
  }
}
.sec_feature .support_item:not(:last-child) {
  margin-bottom: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .support_item:not(:last-child) {
    margin-bottom: 36px;
  }
}
.sec_feature .support_item .texts {
  text-align: left;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .support_item .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.sec_feature .support_item .texts p {
  line-height: 1.6;
}
.sec_feature .support_item .image {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .support_item .image {
    width: 35%;
  }
}
.sec_feature .support_item .heading {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 1em;
  color: #007E3D;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_feature .support_item .heading {
    font-size: 20px;
  }
}

/* 利用までの流れ
---------------------------------------------------------- */
.sec_use_flow {
  padding-top: 40px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_use_flow {
    padding-top: 80px;
  }
}
.sec_use_flow .tx {
  text-align: left;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_use_flow .tx {
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.sec_use_flow .flow_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_use_flow .flow_list {
    gap: 40px 60px;
    margin-top: 40px;
  }
}
.sec_use_flow .flow_item {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_use_flow .flow_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc((100% - 240px) / 5);
    min-height: 114px;
    /* 1000以下  */
  }
}
@media all and (min-width: 751px) and (max-width: 1000px) {
  .sec_use_flow .flow_item {
    width: 180px;
  }
}
.sec_use_flow .flow_item .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border: 2px solid #2BB06B;
  color: #2BB06B;
  font-weight: bold;
  font-size: 15px;
  padding: 14px 6px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_use_flow .flow_item .box {
    font-size: 17px;
    padding: 19px 6px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1100px) {
  .sec_use_flow .flow_item .box {
    font-size: 14px;
  }
}
.sec_use_flow .flow_item:not(:first-child) .box::before {
  position: absolute;
  content: "";
  clip-path: polygon(0 33%, 55% 33%, 55% 0, 100% 50%, 55% 100%, 55% 67%, 0 67%);
  background-color: #2BB06B;
  aspect-ratio: 2/3;
  width: 20px;
  /* 750以下  */
  /* 751以上 */
}
@media all and (max-width: 750px) {
  .sec_use_flow .flow_item:not(:first-child) .box::before {
    top: -6px;
    left: 50%;
    -webkit-transform: translate(-50%, -100%) rotate(90deg);
            transform: translate(-50%, -100%) rotate(90deg);
  }
}
@media all and (min-width: 751px) {
  .sec_use_flow .flow_item:not(:first-child) .box::before {
    aspect-ratio: 45/39;
    top: 50%;
    left: -12px;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
    width: 36px;
  }
}
.sec_use_flow .other {
  margin-top: 30px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_use_flow .other {
    margin-top: 60px;
  }
}
.sec_use_flow .other .heading {
  font-weight: bold;
  text-align: left;
}
.sec_use_flow .other .bold {
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px;
}

/* 休職から職場復帰までの流れ
---------------------------------------------------------- */
.sec_job_flow {
  padding: 40px 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_job_flow {
    padding: 80px 0;
  }
}
.sec_job_flow .flow_item {
  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;
  background-color: #f6ffee;
  padding: 24px 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_job_flow .flow_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    padding: 50px;
  }
  .sec_job_flow .flow_item .image {
    width: 32%;
  }
  .sec_job_flow .flow_item .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.sec_job_flow .flow_item:not(:last-child) {
  position: relative;
  margin-bottom: 40px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_job_flow .flow_item:not(:last-child) {
    margin-bottom: 80px;
  }
}
.sec_job_flow .flow_item:not(:last-child)::before {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #2BB06B;
  aspect-ratio: 4/1;
  width: 80px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_job_flow .flow_item:not(:last-child)::before {
    bottom: -25px;
    width: 150px;
  }
}
.sec_job_flow .flow_item .texts {
  text-align: left;
}
.sec_job_flow .flow_item .heading {
  font-weight: bold;
  margin-bottom: 1em;
  color: #007E3D;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_job_flow .flow_item .heading {
    font-size: 20px;
  }
}

/* program
---------------------------------------------------------- */
.sec_program {
  background-color: #f6ffee;
  padding: 40px 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_program {
    padding: 60px 0;
  }
}
.sec_program .program_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_program .program_list {
    gap: 18px;
    margin-bottom: 50px;
  }
}
.sec_program .program_item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  border: 2px solid #2BB06B;
  font-weight: bold;
  color: #2BB06B;
  font-size: 15px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_program .program_item {
    width: calc((100% - 54px) / 4);
    font-size: 17px;
  }
}
.sec_program .program_item a {
  padding: 14px;
  display: block;
  color: #2BB06B;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_program .program_item a {
    padding: 16px 8px;
  }
}
@media (hover: hover) {
  .sec_program .program_item a:hover {
    background-color: #2BB06B;
    color: #fff;
  }
}
.sec_program .btn_motion {
  font-weight: bold;
}

/* アルコールリワークの様子
---------------------------------------------------------- */
.sec_scene {
  padding-top: 40px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_scene {
    padding-top: 80px;
  }
}
.sec_scene .img_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) {
  .sec_scene .img_list {
    gap: 30px;
  }
}
.sec_scene .img_list .image {
  width: 100%;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_scene .img_list .image {
    width: calc((100% - 60px) / 3);
  }
}

/* アクセス
---------------------------------------------------------- */
.sec_access {
  padding-top: 40px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_access {
    padding-top: 80px;
  }
}
.sec_access .ttl {
  color: #303030;
}
.sec_access .access_wrap {
  margin-bottom: 70px;
  text-align: left;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_access .access_wrap {
    margin-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.sec_access .access_wrap .map {
  width: 100%;
  height: 240px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_access .access_wrap .map {
    width: min(540px, 100%);
    height: 265px;
  }
}
.sec_access .access_wrap .right_texts .text_list li {
  /* 750以下  */
}
.sec_access .access_wrap .right_texts .text_list li:not(:first-child) {
  margin-top: 18px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_access .access_wrap .right_texts .text_list li:not(:first-child) {
    margin-top: 10px;
  }
}
@media all and (max-width: 750px) {
  .sec_access .access_wrap .right_texts .text_list li:first-child {
    margin-top: 26px;
  }
}
.sec_access .access_wrap .right_texts .text_list li h3 {
  padding-bottom: 8px;
  font-size: 16px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_access .access_wrap .right_texts .text_list li h3 {
    padding-bottom: 10px;
    font-size: 20px;
  }
}
.sec_access .access_wrap .right_texts .text_list li p {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_access .access_wrap .right_texts .text_list li p {
    font-size: 20px;
  }
}
.sec_access .access_wrap .right_texts .btn_motion {
  font-weight: bold;
  margin-top: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_access .access_wrap .right_texts .btn_motion {
    margin-top: 40px;
  }
}