@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=BIZ+UDPGothic:wght@400;700&family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;500;700&display=swap");
:root {
  --corporate: #004098;
  --orange: #f4a57a;
  --pink: #f09abf;
}

.mv {
  background: url(../img/mv_1400.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .mv {
    background-image: url(../img/mv_640.jpg);
  }
}
.mv .title_area {
  background: url(../../img/common/pagetitle_bg_700_120.png) left center/700px 120px repeat-x, rgba(0, 172, 151, 0.7);
}

.intro {
  padding: 80px 0;
}
.intro_inner {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 93.75%;
  margin: auto;
  display: grid;
  place-content: center;
  place-items: center;
  row-gap: 1em;
}
.intro_inner h2 {
  font-size: 46px;
  font-weight: 700;
  text-align: center;
  color: var(--corporate);
  margin-left: -0.5em;
}
@media screen and (max-width: 640px) {
  .intro_inner h2 {
    font-size: 48px;
  }
}
.intro_inner p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--corporate);
  text-align: center;
}
@media screen and (max-width: 640px) {
  .intro_inner p {
    font-size: 28px;
  }
}

.headline {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 400px;
  height: 50px;
  border-radius: 25px;
  padding: 0 1.3em;
  box-sizing: border-box;
  margin: auto;
  display: grid;
  place-content: center;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.headline span {
  margin-left: 0.25em;
  letter-spacing: 0.25em;
}
.headline.cl01 {
  background: #4cc5b6;
}
.headline.cl02 {
  background: #a48b78;
}
@media screen and (max-width: 640px) {
  .headline {
    height: 62px;
    border-radius: 31px;
    font-size: 30px;
  }
}

.area01 {
  padding-bottom: 90px;
  background: #fbe0d0;
}
.area01_inner {
  width: 93.75%;
  margin: 40px auto 0;
}
.area01_inner .panels {
  display: grid;
  grid-template-columns: repeat(4, 266px);
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .area01_inner .panels {
    grid-template-columns: repeat(2, 266px);
  }
}
@media screen and (max-width: 640px) {
  .area01_inner .panels {
    grid-template-columns: 1fr;
  }
}
.area01_inner .panels li {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px 1fr;
}
.area01_inner .panels li .property {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  place-content: center;
  border: solid var(--corporate);
  border-width: 1px 1px 0 1px;
  border-radius: 10px 10px 0 0;
  background: #cceeea;
  font-size: 20px;
  line-height: 1.25;
  color: var(--corporate);
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .area01_inner .panels li .property {
    font-size: 30px;
  }
}
.area01_inner .panels li .property span {
  font-size: 0.8em;
}
.area01_inner .panels li .property::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  content: "";
  width: 226px;
  height: 1px;
  background: var(--corporate);
}
@media screen and (max-width: 640px) {
  .area01_inner .panels li .property::before {
    width: 560px;
  }
}
.area01_inner .panels li .value {
  box-sizing: border-box;
  border: solid var(--corporate);
  border-width: 0 1px 1px 1px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  padding: 0.75em 1.25em;
  font-size: 17px;
  line-height: 1.6;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .area01_inner .panels li .value {
    font-size: 24px;
  }
}
.area01_inner .panels li .value a {
  display: block;
  text-align: right;
  color: #036eb8;
}
.area01_inner .panels li .value a:hover {
  text-decoration: underline;
}
.area01_inner .target {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media screen and (max-width: 640px) {
  .area01_inner .target {
    grid-template-columns: auto;
    row-gap: 26px;
  }
}
.area01_inner .target .item01 {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--corporate);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .area01_inner .target .item01 {
    width: 160px;
    height: 160px;
    font-size: 28px;
    margin: auto;
  }
}
.area01_inner .target .item02 {
  font-size: 19px;
  line-height: 1.375;
  display: grid;
  grid-template-columns: auto;
  row-gap: 0.5em;
  color: #231815;
}
@media screen and (max-width: 640px) {
  .area01_inner .target .item02 {
    font-size: 24px;
    text-align: center;
  }
}
.area01_inner .target .item02 .case01 {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
}
.area01_inner .target .item02 .case01 li:first-child {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .area01_inner .target .item02 .case01 {
    grid-template-columns: auto;
  }
}
.area01_inner .target .item02 .case02 {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
}
.area01_inner .target .item02 .case02 li:nth-child(-n+2) {
  font-weight: 700;
}
.area01_inner .target .item02 .case02 li:nth-child(1) {
  grid-area: 1/1/3/2;
}
@media screen and (max-width: 768px) {
  .area01_inner .target .item02 .case02 li:nth-child(1) {
    grid-area: 1/1/2/2;
  }
}
.area01_inner .target .item02 .case02 li:nth-child(2) {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 768px) {
  .area01_inner .target .item02 .case02 li:nth-child(2) {
    grid-area: 1/2/2/3;
  }
}
.area01_inner .target .item02 .case02 li:nth-child(3) {
  grid-area: 2/2/3/3;
  text-indent: -0.5em;
}
@media screen and (max-width: 768px) {
  .area01_inner .target .item02 .case02 li:nth-child(3) {
    grid-area: 2/1/3/3;
  }
}
@media screen and (max-width: 640px) {
  .area01_inner .target .item02 .case02 li:nth-child(3) {
    text-indent: 0;
  }
}

.area02 {
  padding: 90px 0;
  margin-bottom: 20px;
}
.area02_inner h3 {
  text-align: center;
  font-size: 34px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--corporate);
}
@media screen and (max-width: 640px) {
  .area02_inner h3 {
    font-size: 36px;
  }
}
.area02_inner .team {
  width: 93.75%;
  max-width: 758px;
  margin: 50px auto 0;
}
@media screen and (max-width: 640px) {
  .area02_inner .team {
    width: 520px;
    max-width: inherit;
  }
}
.area02_inner .works {
  margin-top: 50px;
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  row-gap: 50px;
}
@media screen and (max-width: 640px) {
  .area02_inner .works {
    row-gap: 60px;
  }
}
.area02_inner .works ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .area02_inner .works ul {
    grid-template-columns: auto;
    row-gap: 1.25em;
  }
}
@media screen and (max-width: 640px) {
  .area02_inner .works ul {
    row-gap: 1.5em;
  }
}
.area02_inner .works ul li.item01 {
  width: 405px;
}
@media screen and (max-width: 640px) {
  .area02_inner .works ul li.item01 {
    width: 560px;
  }
}
.area02_inner .works ul li.item01 .work_title {
  box-sizing: border-box;
  line-height: 1.3;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  padding-left: 0.5em;
  border: solid var(--orange);
  border-width: 0 0 1px 6px;
}
@media screen and (max-width: 640px) {
  .area02_inner .works ul li.item01 .work_title {
    font-size: 30px;
  }
}
.area02_inner .works ul li.item01 .note {
  font-size: 18px;
  line-height: 1.55;
  margin-top: 1em;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .area02_inner .works ul li.item01 .note {
    font-size: 24px;
  }
}
.area02_inner .works ul li.item02 {
  width: 395px;
}
@media screen and (max-width: 768px) {
  .area02_inner .works ul li.item02 {
    width: 405px;
  }
}
@media screen and (max-width: 640px) {
  .area02_inner .works ul li.item02 {
    width: 560px;
  }
}
.area02_inner .works ul.reverse li.item01 {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 768px) {
  .area02_inner .works ul.reverse li.item01 {
    grid-area: 1/1/2/2;
  }
}
.area02_inner .works ul.reverse li.item02 {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 768px) {
  .area02_inner .works ul.reverse li.item02 {
    grid-area: 2/1/3/2;
  }
}
.area02_inner .rehabilitation {
  width: 100%;
  max-width: 820px;
  margin: 90px auto 0;
  background: url(../img/lattice_bg_19.png) center center/19px 19px repeat;
  box-sizing: border-box;
  padding: 38px;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}
.area02_inner .rehabilitation .rehabili_title {
  box-sizing: border-box;
  line-height: 1.3;
  font-size: 22px;
  font-weight: 700;
  color: var(--pink);
  padding-left: 0.5em;
  border: solid var(--pink);
  border-width: 0 0 1px 6px;
}
@media screen and (max-width: 640px) {
  .area02_inner .rehabilitation .rehabili_title {
    font-size: 30px;
  }
}
.area02_inner .rehabilitation .read {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
}
@media screen and (max-width: 640px) {
  .area02_inner .rehabilitation .read {
    font-size: 24px;
  }
}
.area02_inner .rehabilitation .list_img {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 378px 1fr;
}
@media screen and (max-width: 768px) {
  .area02_inner .rehabilitation .list_img {
    grid-template-columns: auto;
    row-gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .area02_inner .rehabilitation .list_img {
    grid-template-columns: 1fr;
  }
}
.area02_inner .rehabilitation .list_img .item01 {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 768px) {
  .area02_inner .rehabilitation .list_img .item01 {
    grid-area: 1/1/2/2;
  }
}
.area02_inner .rehabilitation .list_img .item01 ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  display: grid;
  grid-template-columns: auto;
  row-gap: 0.44em;
}
@media screen and (max-width: 768px) {
  .area02_inner .rehabilitation .list_img .item01 ul {
    margin: auto;
  }
}
@media screen and (max-width: 640px) {
  .area02_inner .rehabilitation .list_img .item01 ul {
    margin: 0 auto 0 0;
  }
}
.area02_inner .rehabilitation .list_img .item01 ul li {
  font-size: 18px;
  line-height: 1.25;
  position: relative;
  padding-left: 1em;
  color: #1d2088;
}
.area02_inner .rehabilitation .list_img .item01 ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  content: "・";
}
@media screen and (max-width: 640px) {
  .area02_inner .rehabilitation .list_img .item01 ul li {
    font-size: 24px;
  }
}
.area02_inner .rehabilitation .list_img .item02 {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 768px) {
  .area02_inner .rehabilitation .list_img .item02 {
    width: 500px;
    margin: auto;
    grid-area: 2/1/3/2;
  }
}
@media screen and (max-width: 640px) {
  .area02_inner .rehabilitation .list_img .item02 {
    width: 100%;
  }
}
.area02_inner .rehabilitation .contact_banner {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  width: 100%;
  margin-top: 30px;
  padding: 1.125em 0;
  background: #f09abf;
  box-sizing: border-box;
  border-radius: 20px;
}
.area02_inner .rehabilitation .contact_banner_inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .area02_inner .rehabilitation .contact_banner_inner {
    font-size: 29px;
    line-height: 42px;
  }
}
.area02_inner .rehabilitation .contact_banner_inner a {
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 640px) {
  .area02_inner .rehabilitation .contact_banner_inner a {
    vertical-align: middle;
  }
}
.area02_inner .rehabilitation .contact_banner_inner a:hover {
  filter: drop-shadow(0 0 3px #fff);
}/*# sourceMappingURL=style.css.map */