@charset "UTF-8";
/*
Theme Name: 再発防止と自立の相談室
*/
/*変数*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN',sans-serif;
  color: #333;
}

.container {
  width: 948px;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .container {
    width: 670px;
  }
}

a {
  text-decoration: none;
}

footer {
  margin-top: 90px;
}

table {
  border-collapse: collapse;
}

table th, table td {
  border: solid 1px black;
}

/*ヘッダー*/
.header {
  width: 100%;
  height: 88px;
  position: relative;
}

@media (max-width: 750px) {
  .header {
    height: 90px;
  }
}

.header--container {
  width: 1264px;
  height: 88px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 750px) {
  .header--container {
    width: 100%;
    height: 90px;
  }
}

.header--container--tit {
  width: 290px;
  height: 40px;
}

@media (max-width: 750px) {
  .header--container--tit {
    width: 422px;
    height: 57px;
    margin-left: 40px;
  }
}

.header--container--tit img {
  width: 100%;
}

.header--container--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 750px) {
  .header--container--list {
    display: none;
  }
}

.header--container--list--item {
  font-size: 18px;
}

.header--container--list--item:nth-child(n+2) {
  margin-left: 20px;
}

.header--container--list--item a {
  color: #E9891B;
}

.contact-btn {
  background-color: #E9891B;
  border-radius: 24px;
  margin-left: 24px !important;
}

.contact-btn a {
  color: #fff;
  display: block;
  padding: 14px 16px;
}

/*ここから下がハンバーガーメニューのスタイル*/
.header--nav {
  display: none;
}

@media (max-width: 750px) {
  .header--nav {
    display: block;
  }
}

@media (max-width: 750px) {
  .header--container--list {
    display: none;
  }
}

/*メニューボタン展開前*/
.header--btn {
  display: none;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 0;
  width: 102px;
  height: 90px;
  border-left: solid 1px #DBDBDB;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 750px) {
  .header--btn {
    display: block;
  }
}

.header--btn span {
  display: block;
  position: absolute;
  width: 40px;
  height: 5px;
  left: 31.5px;
  border-radius: 5px;
  background: #E9891B;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header--btn span:nth-of-type(1) {
  top: 25px;
}

.header--btn span:nth-of-type(2) {
  top: 40px;
}

.header--btn span:nth-of-type(3) {
  top: 55px;
}

.header--btn.active {
  border: transparent;
}

.header--btn.active span:nth-child(1) {
  top: 50px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header--btn.active span:nth-child(2),
.header--btn.active span:nth-child(3) {
  top: 50px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*メニューボタン展開後*/
/*スマホ用のメニュー*/
.header--nav {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background-color: #F2FAD5;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity .6s ease, visibility .6s ease;
  transition: opacity .6s ease, visibility .6s ease;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header--nav--list {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.header--nav--list--item {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: .4s all;
  transition: .4s all;
}

.header--nav--list--item:last-of-type {
  padding-bottom: 0;
}

.header--nav--list--item:hover {
  opacity: 0.7;
}

.header--nav--list--item a {
  font-size: 28px;
  display: block;
  color: #E9891B;
  padding: 1em 0;
  text-decoration: none;
}

.header--nav.active {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ファーストビュー*/
.fv {
  width: 100%;
  height: 732px;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

@media (max-width: 750px) {
  .fv {
    height: 1093px;
  }
}

.fv--img {
  background-image: url(img/fv.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: calc((1205 / 1366)*100%);
  height: 550px;
  border-radius: 0 0 0 124px;
}

@media (max-width: 750px) {
  .fv--img {
    width: calc((586 / 750)*100%);
    height: 720px;
  }
}

.fv--img--txt {
  font-size: 24px;
  line-height: 42px;
  position: absolute;
  top: 286px;
  left: 48px;
}

@media (max-width: 750px) {
  .fv--img--txt {
    font-size: 30px;
    top: 60px;
    left: -90px;
  }
}

.fv--bg {
  background-color: #F2FAD5;
  position: absolute;
  z-index: -2;
  bottom: 52px;
  left: 0;
  width: calc((560 / 1366)*100%);
  height: 430px;
  border-radius: 0 124px 124px 0;
}

@media (max-width: 750px) {
  .fv--bg {
    width: calc((563 / 750)*100%);
    height: 916px;
    bottom: -30px;
  }
}

.fv--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 690px;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .fv--list {
    width: 100%;
  }
}

.fv--list--item {
  width: calc(100%/3);
  height: 74px;
  border: solid 2px #fff;
  border-radius: 10px;
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .fv--list--item {
    width: 50%;
    height: 118px;
    border-radius: 20px;
  }
}

.fv--list--item a {
  display: block;
  font-size: 24px;
  line-height: 74px;
  text-align: center;
  color: #fff;
}

@media (max-width: 750px) {
  .fv--list--item a {
    font-size: 36px;
    line-height: 118px;
  }
}

.fv--txt {
  background-color: #A7CB31;
  opacity: 0.6;
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 14px;
  margin-top: 40px;
}

@media (max-width: 750px) {
  .fv--txt {
    font-size: 28px;
    padding: 19px;
    margin-top: 30px;
  }
}

/* 支援方針*/
.policy {
  margin-top: 100px;
}

@media (max-width: 750px) {
  .policy {
    margin-top: 119px;
  }
}

.policy--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .policy--tit {
    font-size: 44px;
  }
}

.policy--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .policy--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.policy--txt {
  font-size: 28px;
  font-size: 18px;
  line-height: 43px;
  margin-top: 74px;
}

@media (max-width: 750px) {
  .policy--txt {
    font-size: 28px;
    width: 590px;
    margin: 90px auto 0;
  }
}

/* ３つのポイント*/
.point {
  margin-top: 90px;
  padding: 90px 0 64px;
  position: relative;
}

.point--bg {
  background-color: #F2FAD5;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: calc((1266 / 1366)*100%);
  height: 100%;
  border-radius: 124px 0 0 124px;
}

@media (max-width: 750px) {
  .point--bg {
    width: 100%;
  }
}

.point--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 750px) {
  .point--list {
    display: block;
    width: 590px;
    margin: 0 auto;
  }
}

.point--list--item {
  width: 260px;
}

@media (max-width: 750px) {
  .point--list--item {
    width: 100%;
  }
  .point--list--item:nth-child(n + 2) {
    margin-top: 60px;
  }
}

.point--list--item--tit {
  text-align: center;
  font-size: 28px;
  position: relative;
}

@media (max-width: 750px) {
  .point--list--item--tit {
    font-size: 44px;
  }
}

.point--list--item--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .point--list--item--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.point--list--item img {
  display: block;
  margin: 74px auto 0;
}

@media (max-width: 750px) {
  .point--list--item img {
    margin-top: 90px;
  }
}

@media (max-width: 750px) {
  .point--list--item:first-of-type img {
    width: 280px;
  }
  .point--list--item:nth-of-type(2) img {
    width: 343px;
  }
  .point--list--item:nth-of-type(3) img {
    width: 215px;
  }
}

.point--list--item--txt {
  margin-top: 50px;
  font-size: 18px;
  line-height: 26px;
}

@media (max-width: 750px) {
  .point--list--item--txt {
    font-size: 28px;
    line-height: 48px;
    text-align: center;
  }
}

.point--list--item--txt span {
  color: #FF0000;
}

/* お知らせ*/
.news {
  margin-top: 90px;
}

.news--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .news--tit {
    font-size: 44px;
  }
}

.news--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .news--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.news--list {
  margin-top: 74px;
}

@media (max-width: 750px) {
  .news--list {
    width: 590px;
    margin: 90px auto 0;
  }
}

.news--list--item {
  padding-bottom: 20px;
  border-bottom: solid 1px #707070;
}

@media (max-width: 750px) {
  .news--list--item {
    padding-bottom: 24px;
    border-bottom: solid 3px #707070;
  }
}

.news--list--item:nth-child(n + 2) {
  margin-top: 20px;
}

@media (max-width: 750px) {
  .news--list--item:nth-child(n + 2) {
    margin-top: 60px;
  }
}

.news--list--item a {
  color: #333;
}

.news--list--item a .news--list--item--date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  height: 25px;
  font-family: 'Futura';
  font-weight: 400;
  font-size: 18px;
}

@media (max-width: 750px) {
  .news--list--item a .news--list--item--date {
    font-size: 28px;
  }
}

.news--list--item a .news--list--item--date .cate {
  font-size: 16px;
  color: #fff;
  background-color: #E9891B;
  border-radius: 15px;
  margin-left: 25px;
  padding: 5px 29.5px;
}

@media (max-width: 750px) {
  .news--list--item a .news--list--item--date .cate {
    font-size: 22px;
    padding: 4px 37.5px;
  }
}

.news--list--item a .news--list--item--tit {
  font-size: 24px;
}

@media (max-width: 750px) {
  .news--list--item a .news--list--item--tit {
    font-size: 28px;
  }
}

.news--btn {
  display: block;
  width: 255px;
  border-radius: 37px;
  font-size: 24px;
  color: #fff;
  background-color: #E9891B;
  padding: 6px;
  text-align: center;
  margin: 96px auto 0;
}

@media (max-width: 750px) {
  .news--btn {
    font-size: 28px;
    width: 460px;
    padding: 22px;
    margin-top: 90px;
  }
}

.news-archive {
  min-height: 50vh;
}

/*支援内容*/
.service--content--fv {
  width: 100%;
  height: 680px;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

@media (max-width: 750px) {
  .service--content--fv {
    height: 608px;
  }
}

.service--content--fv--img {
  background-image: url(img/service.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: calc((1205 / 1366)*100%);
  height: 550px;
  border-radius: 0 0 124px 0;
}

@media (max-width: 750px) {
  .service--content--fv--img {
    width: calc((670 / 750)*100%);
    height: 356px;
  }
}

.service--content--fv--img--tit {
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 95px;
  right: 48px;
}

@media (max-width: 750px) {
  .service--content--fv--img--tit {
    font-size: 44px;
    top: 162px;
    right: 51px;
  }
}

.service--content--fv--txt {
  text-align: center;
  font-size: 24px;
  line-height: 37px;
  margin-bottom: 24px;
}

@media (max-width: 750px) {
  .service--content--fv--txt {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 90px;
  }
}

.service--content--fv--bg {
  background-color: #F2FAD5;
  position: absolute;
  z-index: -2;
  bottom: 0;
  right: 0;
  width: calc((560 / 1366)*100%);
  height: 430px;
  border-radius: 124px 0 0 124px;
}

@media (max-width: 750px) {
  .service--content--fv--bg {
    width: calc((440 / 750)*100%);
    height: 373px;
  }
}

.service--content .service--mask {
  height: 550px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 124px 0;
}

@media (max-width: 750px) {
  .service--content .service--mask {
    height: 356px;
  }
}

.service--content--list {
  margin-top: 118px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 750px) {
  .service--content--list {
    display: block;
    margin-top: 90px;
  }
}

.service--content--list--item {
  width: 460px;
}

@media (max-width: 750px) {
  .service--content--list--item {
    width: 100%;
  }
}

.service--content--list--item--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .service--content--list--item--tit {
    font-size: 44px;
  }
}

.service--content--list--item--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .service--content--list--item--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.service--content--list--item--box {
  height: 230px;
  margin-top: 48px;
  background-color: #F2FAD5;
  border-radius: 18px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 750px) {
  .service--content--list--item--box {
    height: auto;
    margin-top: 90px;
    padding: 90px 0 90px 60px;
  }
  .service--content--list--item--box.sp {
    background-color: #fff;
    margin-top: 0;
  }
}

.service--content--list--item--box--list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .service--content--list--item--box--list {
    margin: 0;
  }
}

.service--content--list--item--box--list--item {
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 750px) {
  .service--content--list--item--box--list--item {
    font-size: 28px;
    line-height: 58px;
  }
}

.service--content--list--item--box--list--item::before {
  position: relative;
  top: -2px;
  left: -18px;
  display: inline-block;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #E9891B;
}

@media (max-width: 750px) {
  .service--content--list--item--box--list--item::before {
    top: 3px;
    width: 26px;
    height: 26px;
  }
}

/*支援の流れ*/
.service--flow {
  margin-top: 90px;
}

.service--flow--fv {
  width: 100%;
  height: 700px;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

@media (max-width: 750px) {
  .service--flow--fv {
    height: 614px;
  }
}

.service--flow--fv--img {
  background-image: url(img/service-flow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: calc((949 / 1366)*100%);
  height: 550px;
  border-radius: 0 124px 124px 0;
}

@media (max-width: 750px) {
  .service--flow--fv--img {
    width: calc((580 / 750)*100%);
    height: 362px;
    border-radius: 0 60px 60px 0;
  }
}

.service--flow--fv--img--tit {
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 146px;
  left: 74px;
}

@media (max-width: 750px) {
  .service--flow--fv--img--tit {
    font-size: 44px;
    top: 159px;
    left: 40px;
  }
}

.service--flow--fv--txt {
  text-align: center;
  font-size: 24px;
  line-height: 37px;
  margin-bottom: 47px;
}

@media (max-width: 750px) {
  .service--flow--fv--txt {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 90px;
  }
}

.service--flow--fv--bg {
  background-color: #F2FAD5;
  position: absolute;
  z-index: -2;
  bottom: 0;
  right: 0;
  width: calc((560 / 1366)*100%);
  height: 430px;
  border-radius: 124px 0 0 124px;
}

@media (max-width: 750px) {
  .service--flow--fv--bg {
    width: calc((440 / 750)*100%);
    height: 373px;
  }
}

.service--flow--list {
  margin-top: 95px;
}

@media (max-width: 750px) {
  .service--flow--list {
    margin-top: 90px;
  }
}

.service--flow--list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.service--flow--list--item:nth-child(n+2) {
  margin-top: 50px;
}

@media (max-width: 750px) {
  .service--flow--list--item:nth-child(n+2) {
    margin-top: 90px;
  }
}

.service--flow--list--item:nth-child(n+2)::before {
  content: ' ';
  width: 0;
  height: 0;
  border: none;
  border-top: 22px solid #E9891B;
  border-right: 37px solid transparent;
  border-left: 37px solid transparent;
  position: absolute;
  top: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 750px) {
  .service--flow--list--item:nth-child(n+2)::before {
    border-top: 31px solid #E9891B;
    top: -55px;
  }
}

.service--flow--list--item--order {
  font-family: 'Futura';
  width: 152px;
  color: #fff;
  background-color: #A7CB31;
  border-radius: 32px 0 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 50px;
}

@media (max-width: 750px) {
  .service--flow--list--item--order {
    font-size: 60px;
  }
}

.service--flow--list--item--content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #F2FAD5;
  padding: 50px;
  border-radius: 0 23px 23px 0;
}

@media (max-width: 750px) {
  .service--flow--list--item--content {
    padding: 60px 0 60px 20px;
  }
}

.service--flow--list--item--content--tit {
  font-size: 28px;
  color: #A7CB31;
}

@media (max-width: 750px) {
  .service--flow--list--item--content--tit {
    font-size: 36px;
  }
}

.service--flow--list--item--content--tit span {
  font-size: 18px;
  color: #333;
}

@media (max-width: 750px) {
  .service--flow--list--item--content--tit span {
    font-size: 28px;
    display: block;
    margin-top: 10px;
  }
}

.service--flow--list--item--content--txt {
  margin-top: 24px;
  font-size: 18px;
  line-height: 29px;
}

@media (max-width: 750px) {
  .service--flow--list--item--content--txt {
    font-size: 28px;
    line-height: 42px;
    margin-top: 30px;
  }
  .service--flow--list--item--content--txt.third {
    white-space: nowrap;
  }
}

.service--flow--list--item--content--txt .br {
  display: none;
}

@media (max-width: 750px) {
  .service--flow--list--item--content--txt .br {
    display: block;
  }
}

.family--fv {
  width: 100%;
  height: 680px;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

@media (max-width: 750px) {
  .family--fv {
    height: 695px;
  }
}

.family--fv--img {
  background-image: url(img/family.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: calc((1205 / 1366)*100%);
  height: 550px;
  border-radius: 0 0 0 124px;
}

@media (max-width: 750px) {
  .family--fv--img {
    width: calc((669 / 750)*100%);
    height: 362px;
  }
}

.family--fv--img--tit {
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 302px;
  left: 48px;
}

@media (max-width: 750px) {
  .family--fv--img--tit {
    font-size: 44px;
    top: 159px;
    left: 51px;
  }
}

.family--fv--txt {
  text-align: center;
  font-size: 24px;
  line-height: 37px;
  margin-bottom: 24px;
}

.family--fv--txt .br {
  display: none;
}

.family--fv--txt span {
  color: #FF0000;
}

@media (max-width: 750px) {
  .family--fv--txt {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 90px;
  }
  .family--fv--txt .br {
    display: block;
  }
}

.family--fv--bg {
  background-color: #F2FAD5;
  position: absolute;
  z-index: -2;
  bottom: 0;
  left: 0;
  width: calc((560 / 1366)*100%);
  height: 430px;
  border-radius: 0 124px 124px 0;
}

@media (max-width: 750px) {
  .family--fv--bg {
    width: calc((440 / 750)*100%);
    height: 373px;
  }
}

.family--mask {
  height: 550px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 0 124px;
}

@media (max-width: 750px) {
  .family--mask {
    height: 362px;
  }
}

.family--fv--txt2 {
  margin-top: 26px;
  font-size: 24px;
  text-align: center;
}

.family--fv--txt2 .br {
  display: none;
}

@media (max-width: 750px) {
  .family--fv--txt2 {
    margin-top: -44px;
    font: size 28px;
    line-height: 40px;
  }
  .family--fv--txt2 .br {
    display: block;
  }
}

.family--fv--txt3 {
  margin-top: 30px;
  font-size: 24px;
  text-align: center;
}

@media (max-width: 750px) {
  .family--fv--txt3 {
    margin-top: 54px;
    font-size: 35px;
  }
}

/*家族のこと*/
.family--about {
  margin-top: 90px;
  position: relative;
}

.family--about--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .family--about--tit {
    font-size: 44px;
  }
}

.family--about--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .family--about--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.family--about--img {
  position: absolute;
  top: -24px;
  right: 240px;
  width: 152px;
  height: 119px;
}

@media (max-width: 750px) {
  .family--about--img {
    top: 124px;
    right: 50%;
    -webkit-transform: translate(50%);
            transform: translate(50%);
    width: 316px;
  }
  .family--about--img img {
    width: 100%;
  }
}

.family--about--list {
  margin-top: 64px;
  padding: 50px 100px;
  background-color: #F2FAD5;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 750px) {
  .family--about--list {
    margin-top: 326px;
    display: block;
    padding: 90px 40px;
  }
}

.family--about--list--item {
  width: 50%;
  font-size: 18px;
}

@media (max-width: 750px) {
  .family--about--list--item {
    width: 100%;
    font-size: 28px;
  }
}

.family--about--list--item:nth-child(n+3) {
  margin-top: 12px;
}

@media (max-width: 750px) {
  .family--about--list--item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.family--about--list--item::before {
  position: relative;
  top: -2px;
  left: -10px;
  display: inline-block;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 100%;
  background: #E9891B;
}

@media (max-width: 750px) {
  .family--about--list--item::before {
    top: 3px;
    width: 26px;
    height: 26px;
  }
}

/*ご本人のこと*/
.family--yourself {
  margin-top: 90px;
  position: relative;
}

.family--yourself--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .family--yourself--tit {
    font-size: 44px;
  }
}

.family--yourself--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .family--yourself--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.family--yourself--img {
  position: absolute;
  top: 0;
  right: 275px;
  width: 93px;
  height: 92px;
}

@media (max-width: 750px) {
  .family--yourself--img {
    top: 134px;
    right: 50%;
    -webkit-transform: translate(50%);
            transform: translate(50%);
    width: 232px;
  }
  .family--yourself--img img {
    width: 100%;
  }
}

.family--yourself--list {
  margin-top: 64px;
  padding: 50px 100px;
  background-color: #F2FAD5;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 750px) {
  .family--yourself--list {
    margin-top: 320px;
    display: block;
    padding: 90px 40px;
  }
}

.family--yourself--list--item {
  width: 50%;
  font-size: 18px;
}

@media (max-width: 750px) {
  .family--yourself--list--item {
    width: 100%;
    font-size: 28px;
  }
}

.family--yourself--list--item:nth-child(n+3) {
  margin-top: 12px;
}

@media (max-width: 750px) {
  .family--yourself--list--item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.family--yourself--list--item::before {
  position: relative;
  top: -2px;
  left: -10px;
  display: inline-block;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 100%;
  background: #E9891B;
}

@media (max-width: 750px) {
  .family--yourself--list--item::before {
    top: 3px;
    width: 26px;
    height: 26px;
  }
}

/*家族への支援*/
.family--support {
  margin-top: 90px;
  position: relative;
}

.family--support--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .family--support--tit {
    font-size: 44px;
  }
}

.family--support--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .family--support--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.family--support--img {
  position: absolute;
  top: 0;
  right: 260px;
  width: 105px;
  height: 92px;
}

@media (max-width: 750px) {
  .family--support--img {
    top: 126px;
    right: 50%;
    -webkit-transform: translate(50%);
            transform: translate(50%);
    width: 230px;
  }
  .family--support--img img {
    width: 100%;
  }
}

.family--support--list {
  margin-top: 64px;
  padding: 50px 100px;
  background-color: #F2FAD5;
  border-radius: 18px;
  -webkit-columns: 2;
          columns: 2;
}

@media (max-width: 750px) {
  .family--support--list {
    margin-top: 280px;
    -webkit-columns: 1;
            columns: 1;
    padding: 90px 40px;
  }
}

.family--support--list--item {
  font-size: 18px;
  line-height: 31px;
}

@media (max-width: 750px) {
  .family--support--list--item {
    width: 100%;
    font-size: 28px;
    line-height: 72px;
  }
}

.family--support--list--item span {
  font-family: 'Futura';
  font-size: 32px;
  color: #E9891B;
  display: block;
  padding-left: 15px;
  line-height: 45px;
}

.family--support--list--item span img {
  margin-right: 10px;
}

@media (max-width: 750px) {
  .family--support--list--item span {
    font-size: 61px;
    padding-left: 30px;
  }
  .family--support--list--item span img {
    width: 54px;
    height: 60px;
  }
}

.family--support--list--item::before {
  position: relative;
  top: -2px;
  left: -10px;
  display: inline-block;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 100%;
  background: #E9891B;
}

@media (max-width: 750px) {
  .family--support--list--item::before {
    top: 3px;
    width: 26px;
    height: 26px;
  }
}

.lawyer--fv {
  width: 100%;
  height: 680px;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

@media (max-width: 750px) {
  .lawyer--fv {
    height: 627px;
  }
}

.lawyer--fv--img {
  background-image: url(img/lawyer.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: calc((1205 / 1366)*100%);
  height: 550px;
  border-radius: 0 0 124px 0;
}

@media (max-width: 750px) {
  .lawyer--fv--img {
    width: calc((670 / 750)*100%);
    height: 362px;
  }
}

.lawyer--fv--img--tit {
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 95px;
  right: 48px;
}

@media (max-width: 750px) {
  .lawyer--fv--img--tit {
    font-size: 44px;
    top: 159px;
    right: 78px;
  }
}

.lawyer--fv--txt {
  text-align: center;
  font-size: 24px;
  line-height: 37px;
  margin-bottom: 24px;
}

@media (max-width: 750px) {
  .lawyer--fv--txt {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 119px;
  }
}

.lawyer--fv--bg {
  background-color: #F2FAD5;
  position: absolute;
  z-index: -2;
  bottom: 0;
  right: 0;
  width: calc((560 / 1366)*100%);
  height: 430px;
  border-radius: 124px 0 0 124px;
}

@media (max-width: 750px) {
  .lawyer--fv--bg {
    width: calc((440 / 750)*100%);
    height: 373px;
  }
}

.lawyer--mask {
  height: 550px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 124px 0;
}

@media (max-width: 750px) {
  .lawyer--mask {
    height: 363px;
  }
}

/* 裁判における情状鑑定意見書・支援計画書*/
.lawyer--plan {
  margin-top: 90px;
}

.lawyer--plan--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

.lawyer--plan--tit .br {
  display: none;
}

@media (max-width: 750px) {
  .lawyer--plan--tit {
    font-size: 44px;
  }
  .lawyer--plan--tit .br {
    display: block;
  }
}

.lawyer--plan--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .lawyer--plan--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.lawyer--plan--box {
  margin-top: 88px;
  background-color: #F2FAD5;
  border-radius: 26px;
  padding: 50px 0;
}

@media (max-width: 750px) {
  .lawyer--plan--box {
    margin-top: 90px;
    padding: 90px 40px 90px 85px;
  }
}

.lawyer--plan--box--txt {
  font-size: 18px;
  text-align: center;
}

@media (max-width: 750px) {
  .lawyer--plan--box--txt {
    font-size: 28px;
    white-space: nowrap;
  }
}

.lawyer--plan--box--list {
  margin: 50px auto;
  width: 605px;
  counter-reset: my-counter;
}

@media (max-width: 750px) {
  .lawyer--plan--box--list {
    width: 100%;
  }
}

.lawyer--plan--box--list--item {
  font-size: 18px;
  line-height: 29px;
  position: relative;
}

@media (max-width: 750px) {
  .lawyer--plan--box--list--item {
    font-size: 28px;
    line-height: 42px;
  }
}

.lawyer--plan--box--list--item:nth-child(n + 2) {
  margin-top: 35px;
}

@media (max-width: 750px) {
  .lawyer--plan--box--list--item:nth-child(n + 2) {
    margin-top: 50px;
  }
}

.lawyer--plan--box--list--item:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #E9891B;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  width: 30px;
  color: #ffffff;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: -50px;
}

@media (max-width: 750px) {
  .lawyer--plan--box--list--item:before {
    height: 45px;
    width: 45px;
  }
}

.lawyer--plan--box--txt1 {
  font-size: 18px;
  text-align: center;
  margin-top: 27px;
}

@media (max-width: 750px) {
  .lawyer--plan--box--txt1 {
    font-size: 28px;
    line-height: 42px;
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
}

.lawyer--plan--txt2 {
  font-size: 24px;
  line-height: 37px;
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 750px) {
  .lawyer--plan--txt2 {
    font-size: 28px;
    line-height: 50px;
    text-align: left;
    width: 590px;
    margin: 90px auto 0;
  }
  .lawyer--plan--txt2 .br {
    display: none;
  }
}

/*その他*/
.lawyer--other {
  margin-top: 90px;
}

.lawyer--other--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .lawyer--other--tit {
    font-size: 44px;
  }
}

.lawyer--other--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .lawyer--other--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.lawyer--other--list {
  margin-top: 114px;
  padding: 50px 100px;
  background-color: #F2FAD5;
  border-radius: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 750px) {
  .lawyer--other--list {
    margin-top: 80px;
    display: block;
    padding: 100px 60px 70px 100px;
  }
}

.lawyer--other--list--item {
  width: 50%;
  height: 33px;
  font-size: 18px;
  line-height: 33px;
  padding-left: 1em;
  text-indent: -0.8em;
}

@media (max-width: 750px) {
  .lawyer--other--list--item {
    width: 100%;
    height: auto;
    font-size: 28px;
    line-height: 50px;
  }
}

.lawyer--other--list--item::before {
  position: relative;
  top: -2px;
  left: -10px;
  display: inline-block;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 100%;
  background: #E9891B;
}

@media (max-width: 750px) {
  .lawyer--other--list--item::before {
    top: 3px;
    width: 26px;
    height: 26px;
  }
}

.training--fv {
  width: 100%;
  height: 680px;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

@media (max-width: 750px) {
  .training--fv {
    height: 631px;
  }
}

.training--fv--img {
  background-image: url(img/training.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: calc((1205 / 1366)*100%);
  height: 550px;
  border-radius: 0 0 0 124px;
}

@media (max-width: 750px) {
  .training--fv--img {
    width: calc((670 / 750)*100%);
    height: 373px;
  }
}

.training--fv--img--tit {
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 302px;
  left: 48px;
}

@media (max-width: 750px) {
  .training--fv--img--tit {
    font-size: 44px;
    top: 159px;
    right: 224px;
  }
}

.training--fv--txt {
  text-align: center;
  font-size: 24px;
  line-height: 37px;
  margin-bottom: 60px;
}

.training--fv--txt .br {
  display: none;
}

@media (max-width: 750px) {
  .training--fv--txt {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 119px;
  }
  .training--fv--txt .br {
    display: block;
  }
}

.training--fv--txt span {
  color: #FF0000;
}

.training--fv--bg {
  background-color: #F2FAD5;
  position: absolute;
  z-index: -2;
  bottom: 0;
  left: 0;
  width: calc((560 / 1366)*100%);
  height: 430px;
  border-radius: 0 124px 124px 0;
}

@media (max-width: 750px) {
  .training--fv--bg {
    width: calc((440 / 750)*100%);
    height: 373px;
  }
}

.training--mask {
  height: 550px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 0 124px;
}

@media (max-width: 750px) {
  .training--mask {
    height: 373px;
  }
}

/*犯罪予防研修*/
.training--criminal {
  margin-top: 90px;
}

.training--criminal--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .training--criminal--tit {
    font-size: 44px;
  }
}

.training--criminal--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .training--criminal--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.training--criminal--box {
  font-size: 18px;
  margin-top: 74px;
  background-color: #F2FAD5;
  border-radius: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 250px;
}

@media (max-width: 750px) {
  .training--criminal--box {
    margin-top: 90px;
    height: 552px;
    font-size: 28px;
  }
}

/*被害予防研修*/
.training--damage {
  margin-top: 90px;
}

.training--damage--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .training--damage--tit {
    font-size: 44px;
  }
}

.training--damage--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .training--damage--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.training--damage--box {
  font-size: 18px;
  margin-top: 74px;
  background-color: #F2FAD5;
  border-radius: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 250px;
}

@media (max-width: 750px) {
  .training--damage--box {
    margin-top: 90px;
    height: 552px;
    font-size: 28px;
  }
}

.staff--fv {
  width: 100%;
  height: 680px;
  position: relative;
}

@media (max-width: 750px) {
  .staff--fv {
    height: 531px;
  }
}

.staff--fv--img {
  background-image: url(img/staff.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: calc((1205 / 1366)*100%);
  height: 550px;
  border-radius: 0 0 0 124px;
}

@media (max-width: 750px) {
  .staff--fv--img {
    width: calc((670 / 750)*100%);
    height: 373px;
  }
}

.staff--fv--img--tit {
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 302px;
  left: 48px;
}

@media (max-width: 750px) {
  .staff--fv--img--tit {
    font-size: 44px;
    top: 143px;
    left: 37px;
  }
}

.staff--fv--bg {
  background-color: #F2FAD5;
  position: absolute;
  z-index: -2;
  bottom: 0;
  left: 0;
  width: calc((560 / 1366)*100%);
  height: 430px;
  border-radius: 0 124px 124px 0;
}

@media (max-width: 750px) {
  .staff--fv--bg {
    width: calc((440 / 750)*100%);
    height: 373px;
  }
}

.sataff--mask {
  height: 550px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 0 124px;
}

@media (max-width: 750px) {
  .sataff--mask {
    height: 373px;
  }
}

/*再犯防止と自立の専門家集団です*/
.staff--desc {
  margin-top: 90px;
}

@media (max-width: 750px) {
  .staff--desc {
    margin-top: 15px;
  }
}

.staff--desc--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .staff--desc--tit {
    font-size: 44px;
    line-height: 58px;
  }
}

.staff--desc--tit .br {
  display: none;
}

@media (max-width: 750px) {
  .staff--desc--tit .br {
    display: block;
  }
}

.staff--desc--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .staff--desc--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.staff--desc--txt {
  width: 681px;
  font-size: 18px;
  line-height: 33px;
  margin: 124px auto 0;
}

@media (max-width: 750px) {
  .staff--desc--txt {
    font-size: 28px;
    line-height: 44px;
    width: 590px;
    margin: 90px auto 0;
  }
  .staff--desc--txt .br {
    display: none;
  }
}

/*室長紹介*/
.staff--boss {
  margin-top: 90px;
  background-color: #E9891B;
  border-radius: 25px;
  padding: 50px 131px 65px;
}

@media (max-width: 750px) {
  .staff--boss {
    padding: 90px 40px;
  }
}

.staff--boss--name {
  font-size: 24px;
  color: #fff;
  padding-bottom: 20px;
  border-bottom: solid 1px #fff;
}

@media (max-width: 750px) {
  .staff--boss--name {
    font-size: 28px;
    padding-bottom: 30px;
    text-align: center;
  }
}

.staff--boss--name span {
  font-size: 18px;
}

.staff--boss--box {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (max-width: 750px) {
  .staff--boss--box {
    margin-top: 44px;
  }
}

.staff--boss--box--list {
  padding-top: 16px;
  font-size: 18px;
  line-height: 33px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 750px) {
  .staff--boss--box--list {
    line-height: 48px;
  }
}

.staff--boss--box--img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

@media (max-width: 750px) {
  .staff--boss--box--img {
    width: 180px;
    height: 180px;
    -webkit-transform: translateX(-33px);
            transform: translateX(-33px);
  }
}

/*スタッフ紹介*/
.staff--intro {
  margin-top: 130px;
}

@media (max-width: 750px) {
  .staff--intro {
    margin-top: 90px;
  }
}

.staff--intro--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 750px) {
  .staff--intro--list {
    padding: 0 40px;
  }
}

.staff--intro--list--item {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 750px) {
  .staff--intro--list--item {
    width: 46%;
  }
}

.staff--intro--list--item:nth-child(n+4) {
  margin-top: 90px;
}

@media (max-width: 750px) {
  .staff--intro--list--item:nth-child(n+3) {
    margin-top: 90px;
  }
}

.staff--intro--list--item:not(:nth-child(3n+3)) {
  margin-right: 5%;
}

@media (max-width: 750px) {
  .staff--intro--list--item:not(:nth-child(3n+3)) {
    margin-right: 0%;
  }
}

@media (max-width: 750px) {
  .staff--intro--list--item:nth-child(2n+2) {
    margin-left: 8%;
  }
}

.staff--intro--list--item--name {
  font-size: 24px;
  padding-bottom: 13px;
  border-bottom: solid 1px #829B85;
  position: relative;
}

@media (max-width: 750px) {
  .staff--intro--list--item--name {
    font-size: 28px;
  }
}

.staff--intro--list--item--name .man {
  color: #568FE9;
  font-size: 15px;
  position: absolute;
  bottom: 13px;
  right: 0;
}

@media (max-width: 750px) {
  .staff--intro--list--item--name .man {
    font-size: 18px;
  }
}

.staff--intro--list--item--name .woman {
  color: #EE8EE6;
  font-size: 15px;
  position: absolute;
  bottom: 13px;
  right: 0;
}

@media (max-width: 750px) {
  .staff--intro--list--item--name .woman {
    font-size: 18px;
  }
}

.staff--intro--list--item--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 29px;
  margin-bottom: 20px;
}

.staff--intro--list--item--list dt {
  width: 20%;
}

.staff--intro--list--item--list dd {
  width: 80%;
  white-space: nowrap;
}

.staff--intro--list--item--img {
  margin-top: auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
}

.staff--intro--list--item--img img {
  width: 100%;
}

@media (max-width: 750px) {
  .staff--intro--list--item--img {
    width: 270px;
    height: 270px;
  }
}

.contact--fv {
  width: 100%;
  height: 680px;
  position: relative;
}

@media (max-width: 750px) {
  .contact--fv {
    height: 433px;
  }
}

.contact--fv--img {
  background-image: url(img/contact.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: calc((1205 / 1366)*100%);
  height: 550px;
  border-radius: 0 0 0 124px;
}

@media (max-width: 750px) {
  .contact--fv--img {
    width: calc((670 / 750)*100%);
    height: 373px;
  }
}

.contact--fv--img--tit {
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 302px;
  left: 48px;
}

@media (max-width: 750px) {
  .contact--fv--img--tit {
    font-size: 44px;
    top: 132px;
    left: 23px;
  }
}

.contact--fv--bg {
  background-color: #F2FAD5;
  position: absolute;
  z-index: -2;
  bottom: 0;
  left: 0;
  width: calc((560 / 1366)*100%);
  height: 430px;
  border-radius: 0 124px 124px 0;
}

@media (max-width: 750px) {
  .contact--fv--bg {
    width: calc((440 / 750)*100%);
    height: 373px;
  }
}

.sataff--mask {
  height: 550px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 0 124px;
}

@media (max-width: 750px) {
  .sataff--mask {
    height: 373px;
  }
}

/*開所時間・面談場所*/
.contact--hour {
  margin-top: 90px;
}

@media (max-width: 750px) {
  .contact--hour {
    margin-top: 120px;
  }
}

.contact--hour--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .contact--hour--tit {
    font-size: 44px;
  }
}

.contact--hour--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .contact--hour--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.contact--hour--txt {
  width: 686px;
  margin: 74px auto;
  font-size: 18px;
  line-height: 33px;
}

.contact--hour--txt .br {
  display: none;
}

@media (max-width: 750px) {
  .contact--hour--txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 28px;
    line-height: 37px;
    text-align: center;
  }
  .contact--hour--txt .br {
    display: block;
  }
}

.contact--hour--txt span {
  color: #FF0000;
}

/*料金*/
.contact--price--tit {
  margin-top: 90px;
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .contact--price--tit {
    font-size: 44px;
  }
}

.contact--price--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .contact--price--tit:before {
    font-size: -30px;
    height: 8px;
  }
}

.contact--price--txt {
  margin-top: 74px;
  font-size: 18px;
  text-align: center;
  color: #707070;
}

@media (max-width: 750px) {
  .contact--price--txt {
    margin-top: 90px;
    font-size: 22px;
  }
}

.contact--price--list {
  width: 948px;
  margin: 50px auto 0;
  background-color: #F2FAD5;
  padding: 50px 131px;
  border-radius: 34px;
}

@media (max-width: 750px) {
  .contact--price--list {
    width: 100%;
    margin-top: 60px;
    padding: 90px 80px;
    border-radius: 0;
  }
}

.contact--price--list--tit {
  font-size: 28px;
  line-height: 30px;
  text-align: center;
}

.contact--price--list--tit span {
  display: block;
  font-size: 18px;
}

.contact--price--list--tit:nth-child(n+2) {
  margin-top: 50px;
}

@media (max-width: 750px) {
  .contact--price--list--tit:nth-child(n+2) {
    margin-top: 60px;
  }
}

.contact--price--list--content {
  margin-top: 24px;
}

@media (max-width: 750px) {
  .contact--price--list--content {
    margin-top: 30px;
  }
}

.contact--price--list--content table {
  width: 100%;
  font-size: 24px;
  background-color: #fff;
  border: solid 1px #707070;
}

@media (max-width: 750px) {
  .contact--price--list--content table {
    font-size: 28px;
  }
}

.contact--price--list--content table th {
  width: 25%;
  padding: 10px;
  border: solid 1px #707070;
}

@media (max-width: 750px) {
  .contact--price--list--content table th {
    width: 40%;
    padding: 7px;
  }
}

.contact--price--list--content table td {
  width: 75%;
  padding: 10px;
  text-align: center;
  border: solid 1px #707070;
}

@media (max-width: 750px) {
  .contact--price--list--content table td {
    width: 60%;
    padding: 7px;
  }
}

.contact--price--list--content--txt {
  margin-top: 24px;
  font-size: 18px;
  color: #707070;
  text-align: right;
}

@media (max-width: 750px) {
  .contact--price--list--content--txt {
    font-size: 22px;
    text-align: left;
    line-height: 30px;
  }
}

/*ご予約・お問い合わせ*/
.contact--reservation {
  margin-top: 90px;
  /*LINE*/
  /*メール*/
}

.contact--reservation--tit {
  font-size: 28px;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .contact--reservation--tit {
    font-size: 44px;
  }
}

.contact--reservation--tit:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 107px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A7CB31;
}

@media (max-width: 750px) {
  .contact--reservation--tit:before {
    bottom: -30px;
    height: 8px;
  }
}

.contact--reservation--line {
  margin-top: 90px;
  padding: 50px;
  background-color: #F2FAD5;
  border-radius: 26px;
  text-align: center;
}

@media (max-width: 750px) {
  .contact--reservation--line {
    padding: 90px 0;
  }
}

.contact--reservation--line--tit {
  font-size: 28px;
}

@media (max-width: 750px) {
  .contact--reservation--line--tit {
    font-size: 32px;
    line-height: 61px;
  }
}

.contact--reservation--line--tit .br {
  display: none;
}

@media (max-width: 750px) {
  .contact--reservation--line--tit .br {
    display: block;
  }
}

.contact--reservation--line img {
  margin-top: 50px;
  width: 296px;
  height: 296px;
}

@media (max-width: 750px) {
  .contact--reservation--line img {
    margin-top: 60px;
  }
}

.contact--reservation--line--id {
  margin-top: 24px;
  font-size: 18px;
}

@media (max-width: 750px) {
  .contact--reservation--line--id {
    margin-top: 60px;
    font-size: 28px;
  }
}

.contact--reservation--line--txt {
  margin-top: 24px;
  font-size: 18px;
}

@media (max-width: 750px) {
  .contact--reservation--line--txt {
    width: 590px;
    margin: 48px auto 0;
    font-size: 28px;
    line-height: 42px;
  }
}

.contact--reservation--mail {
  margin-top: 90px;
  padding: 50px;
  background-color: #F2FAD5;
  border-radius: 26px;
  text-align: center;
}

@media (max-width: 750px) {
  .contact--reservation--mail {
    padding: 90px 57px;
  }
}

.contact--reservation--mail--tit {
  font-size: 28px;
}

@media (max-width: 750px) {
  .contact--reservation--mail--tit {
    font-size: 36px;
  }
}

.contact--reservation--mail--adress {
  margin-top: 24px;
  font-family: 'Futura';
  font-size: 55px;
  color: #E9891B;
  display: block;
}

@media (max-width: 750px) {
  .contact--reservation--mail--adress {
    margin-top: 60px;
  }
}

.contact--reservation--mail--txt {
  margin-top: 24px;
  font-size: 18px;
}

@media (max-width: 750px) {
  .contact--reservation--mail--txt {
    font-size: 22px;
    line-height: 30px;
    margin-top: 60px;
  }
}

.contact--reservation--mail--txt .br {
  display: none;
}

@media (max-width: 750px) {
  .contact--reservation--mail--txt .br {
    display: block;
  }
}

.contact--reservation--form {
  /*フォーム*/
  width: 948px;
  margin: 90px auto 0;
  padding: 50px 131px;
  background-color: #F2FAD5;
  border-radius: 26px;
}

@media (max-width: 750px) {
  .contact--reservation--form {
    width: 100%;
    padding: 90px 40px;
    border-radius: 0;
  }
}

.contact--reservation--form--box {
  background-color: #fff;
  width: 100%;
  padding: 90px 48px;
  border-radius: 30px;
}

@media (max-width: 750px) {
  .contact--reservation--form--box {
    padding: 90px 40px 80px;
  }
}

.contact--reservation--form--box--tit {
  font-size: 28px;
  color: #E9891B;
  text-align: center;
}

@media (max-width: 750px) {
  .contact--reservation--form--box--tit {
    font-size: 36px;
  }
}

.contact--reservation--form--box form {
  margin-top: 90px;
}

.contact--reservation--form--box form p:nth-child(n+2) {
  margin-top: 24px;
}

.contact--reservation--form--box form p:nth-child(n+2) label {
  font-size: 18px;
}

@media (max-width: 750px) {
  .contact--reservation--form--box form p:nth-child(n+2) label {
    font-size: 26px;
  }
}

.contact--reservation--form--box form p input[type="text"],
.contact--reservation--form--box form p input[type="tel"] {
  margin-top: 15px;
  background-color: #F7F7F7;
  border: solid 1px #707070;
  width: 100%;
  height: 46px;
}

@media (max-width: 750px) {
  .contact--reservation--form--box form p input[type="text"],
  .contact--reservation--form--box form p input[type="tel"] {
    margin-top: 30px;
  }
}

.contact--reservation--form--box form p input::-webkit-input-placeholder {
  font-size: 18px;
}

.contact--reservation--form--box form p input:-ms-input-placeholder {
  font-size: 18px;
}

.contact--reservation--form--box form p input::-ms-input-placeholder {
  font-size: 18px;
}

.contact--reservation--form--box form p input::placeholder {
  font-size: 18px;
}

@media (max-width: 750px) {
  .contact--reservation--form--box form p input::-webkit-input-placeholder {
    font-size: 20px;
  }
  .contact--reservation--form--box form p input:-ms-input-placeholder {
    font-size: 20px;
  }
  .contact--reservation--form--box form p input::-ms-input-placeholder {
    font-size: 20px;
  }
  .contact--reservation--form--box form p input::placeholder {
    font-size: 20px;
  }
}

.contact--reservation--form--box form p input[type="textarea"],
.contact--reservation--form--box form p textarea {
  margin-top: 15px;
  background-color: #F7F7F7;
  width: 100%;
  height: 342px;
}

@media (max-width: 750px) {
  .contact--reservation--form--box form p input[type="textarea"],
  .contact--reservation--form--box form p textarea {
    margin-top: 30px;
  }
}

.contact--reservation--form--box form p input[type="submit"] {
  display: block;
  margin: 44px auto 0;
  width: 255px;
  height: 36px;
  border-radius: 37px;
  font-size: 24px;
  color: #fff;
  background-color: #E9891B;
  border: solid 1px #E9891B;
}

@media (max-width: 750px) {
  .contact--reservation--form--box form p input[type="submit"] {
    width: 100%;
    margin-top: 60px;
    height: 73px;
    font-size: 33px;
  }
}

/*フッダー*/
.footer {
  margin-top: 90px;
  padding: 137px 0 25px;
  background-color: #F2FAD5;
  border-radius: 0  124px 0 0;
}

@media (max-width: 750px) {
  .footer {
    padding-top: 90px;
  }
}

.footer--tit {
  width: 576px;
  height: 78px;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .footer--tit {
    width: 590px;
    height: 80px;
  }
}

.footer--list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 750px) {
  .footer--list {
    display: block;
    text-align: center;
  }
}

.footer--list--item {
  font-size: 18px;
}

@media (max-width: 750px) {
  .footer--list--item {
    font-size: 30px;
  }
}

.footer--list--item:nth-child(n+2) {
  margin-left: 20px;
}

@media (max-width: 750px) {
  .footer--list--item:nth-child(n+2) {
    margin: 60px 0 0 0;
  }
}

.footer--list--item a {
  color: #E9891B;
}

.footer--company {
  font-size: 15px;
  text-align: center;
  margin-top: 48.5px;
}

@media (max-width: 750px) {
  .footer--company {
    font-size: 20px;
    margin-top: 60px;
  }
}

.footer--copyright {
  color: #505050;
  font-size: 15px;
  text-align: center;
  margin-top: 36.5px;
}

@media (max-width: 750px) {
  .footer--copyright {
    font-size: 22px;
    margin-top: 43px;
  }
}

/*個別記事*/
.single {
  min-height: 50vh;
}

.single--tit {
  font-size: 28px;
  margin: 90px 0 10px;
  border-bottom: double 5px #A7CB31;
}

@media (max-width: 750px) {
  .single--tit {
    font-size: 44px;
  }
}

.single--date {
  margin: 5px 0 30px;
  text-align: right;
}

.single--content {
  line-height: 1.5;
}
/*# sourceMappingURL=style.css.map */