@charset "UTF-8";
/*
 * Config
 */
/*
 * Color
 */
/*
 * Media Break
 */
/*
 * Fonts
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://db.onlinewebfonts.com/c/1dd1c7d8df011c2266f33ebd5927c0ab?family=DIN+2014+Demi");
html {
  font-size: 10px;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 0.833vw; /* Scaling font-size */
  }
}
@media (max-width: 560px) {
  html {
    font-size: 10px;
  }
}
html {
  color-scheme: light !important; /* Indicate to the browser that light mode is preferred */
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light !important; /* Force light mode styles */
  }
}
/*
 * BEM関連
 */
/*
 * clearfix
 */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs
*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul li, ol li {
  list-style: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
}

html, body {
  font-family: Hiragino Sans, "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.4;
  font-weight: 500;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #181818;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  background-size: 100%;
  position: relative;
  text-align: unset !important;
  font-size: 1.4rem;
  min-height: 100vh;
}
@media (min-width: 561px) {
  body {
    font-size: 1.6rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

header, nav, main, footer, small, button, label {
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #181818;
}

a:hover, a:active, button:hover, button:active {
  color: inherit;
  outline: 0;
  text-decoration: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  border-radius: 0;
}

a:hover, a:active {
  outline: 0;
  opacity: 0.8;
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #a5a5a5;
}

:-ms-input-placeholder {
  color: #a5a5a5;
}

::-moz-placeholder {
  color: #a5a5a5;
}

::-placeholder {
  color: #a5a5a5;
}

input[type=checkbox] {
  cursor: pointer;
}

select {
  cursor: pointer;
}

.cf:after {
  clear: both;
  content: "";
  display: block;
}

.text_indent {
  padding-left: 1em;
  text-indent: -1em;
}

.pconly {
  display: none;
}
@media (min-width: 561px) {
  .pconly {
    display: block;
  }
}

.sponly {
  display: block;
}
@media (min-width: 561px) {
  .sponly {
    display: none;
  }
}

.c-blue {
  color: #5285d9;
}

.c-yellow {
  color: #f4e280;
}

.is-din {
  font-family: "DIN 2014 Demi", sans-serif !important;
}

.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__content {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}
.header__content .left {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__logo img {
  width: 14.2rem;
}
.header__tel {
  display: none;
  align-items: flex-start;
  gap: 0.5rem;
}
.header__tel img {
  width: 2.4rem;
}
.header__tel p {
  text-align: center;
  font-size: 1.4rem;
}
.header__tel p span {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.header__btns {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 561px) {
  .header__btns {
    display: flex;
  }
}

.js-ham {
  display: flex;
  flex-direction: column;
  top: 2.5rem;
  right: 2rem;
  position: fixed;
  z-index: 100;
}
@media (min-width: 561px) {
  .js-ham {
    display: none;
  }
}
.js-ham span {
  width: 3rem;
  background-color: #000;
  height: 2px;
  margin: 3px 0;
  transition: transform 0.3s;
}
.js-ham.is-open {
  padding-top: 1.5rem;
}
.js-ham.is-open span {
  margin: -1px 0;
}
.js-ham.is-open span:nth-child(1) {
  transform: rotate(45deg);
}
.js-ham.is-open span:nth-child(2) {
  opacity: 0;
}
.js-ham.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.js-nav {
  display: flex;
  justify-content: flex-end;
  position: fixed;
  z-index: 90;
  width: 100vw;
  height: 100dvh;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  right: -100vw;
  transition: all 0.3s;
}
.js-nav .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10rem 2rem 0;
  background-color: #fff;
  gap: 3rem;
}
.js-nav .content .nav__btns {
  flex-grow: 1;
  padding-top: 2rem;
}
.js-nav .content .btn {
  margin-bottom: 2rem;
}
.js-nav .content .nav__tel {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}
.js-nav .content .nav__tel img {
  height: 3rem;
  margin-top: 0.7rem;
}
.js-nav .content .nav__tel p {
  font-size: 1.4rem;
  text-align: center;
}
.js-nav .content .nav__tel p span {
  font-size: 3rem;
}
.js-nav a {
  font-size: 1.4rem;
  font-weight: 700;
}
.js-nav.is-open {
  opacity: 1;
  right: 0;
}

footer {
  text-align: center;
  padding-bottom: 3rem;
  font-size: 1.2rem;
}
@media (min-width: 561px) {
  footer {
    font-size: 1.4rem;
    padding-bottom: 5rem;
  }
}

.main__section {
  padding: 4.5rem 0;
}
@media (min-width: 561px) {
  .main__section {
    padding: 9rem 0;
  }
}
.main__section__title {
  padding-bottom: 3rem;
}
@media (min-width: 561px) {
  .main__section__title {
    padding-bottom: 6rem;
  }
}
.main__section__title h2 {
  color: #5285d9;
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  position: relative;
}
@media (min-width: 561px) {
  .main__section__title h2 {
    font-size: 4.8rem;
  }
}
.main__section__title h2 small {
  font-size: 1.4rem;
}
@media (min-width: 561px) {
  .main__section__title h2 small {
    font-size: 3rem;
  }
}
.main__section__title h2 img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1rem;
  height: 2.5rem;
}
@media (min-width: 561px) {
  .main__section__title h2 img {
    height: auto;
    bottom: -4rem;
  }
}
.main__section .catch {
  text-align: center;
  font-weight: 700;
  padding-bottom: 4rem;
}
@media (min-width: 561px) {
  .main__section .catch {
    padding-bottom: 6rem;
  }
}
.main__section .catch span {
  padding-bottom: 0.5rem;
  line-height: 2;
  font-size: 1.4rem;
  background: linear-gradient(transparent 93%, #5285d9 7%);
}
@media (min-width: 561px) {
  .main__section .catch span {
    font-size: 2.4rem;
  }
}
.main__section .cta {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}
@media (min-width: 561px) {
  .main__section .cta {
    padding-top: 6rem;
  }
}

.wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@-webkit-keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes FadeInY {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes FadeInY {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes FadeInX {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes FadeInX {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.is-fadeAutoin-no-transform {
  transition: opacity 0.6s ease;
  opacity: 0;
}

.is-fadeAutoin-no-transform.is-play {
  opacity: 1;
}

.is-fadein {
  transition: opacity 0.6s ease, transform 0.6s ease !important;
  opacity: 0;
}

.is-fadein.is-play {
  opacity: 1;
}

.is-fade-y {
  transition: opacity 0.6s ease, transform 0.6s ease !important;
  opacity: 0;
  transform: translateY(50px);
}

.is-fade-y.is-play {
  opacity: 1;
  transform: translateY(0);
}

.is-fade-x {
  transition: opacity 0.6s ease, transform 0.6s ease !important;
  opacity: 0;
  transform: translateX(50px);
}

.is-fade-x.is-play {
  opacity: 1;
  transform: translateX(0);
}

.is-fade-x-rev {
  transition: opacity 0.6s ease, transform 0.6s ease !important;
  opacity: 0;
  transform: translateX(-50px);
}

.is-fade-x-rev.is-play {
  opacity: 1;
  transform: translateX(0);
}

.is-fadeAutoin {
  opacity: 0;
  -webkit-animation: FadeIn 0.6s ease;
  animation: FadeIn 0.6s ease;
  animation-fill-mode: forwards;
}

.is-fadeAuto-y {
  opacity: 0;
  -webkit-animation: FadeInY 0.6s ease;
  animation: FadeInY 0.6s ease;
  animation-fill-mode: forwards;
}

.is-fadeAuto-x {
  opacity: 0;
  -webkit-animation: FadeInX 0.6s ease;
  animation: FadeInX 0.6s ease;
  animation-fill-mode: forwards;
}

.is-fadeAuto-x-rev {
  opacity: 0;
  -webkit-animation: FadeInXrev 0.6s ease;
  animation: FadeInXrev 0.6s ease;
  animation-fill-mode: forwards;
}

.is-delay.delay-1 {
  transition-delay: 0.6s !important;
}

.is-delay.delay-2 {
  transition-delay: 0.6s !important;
}

.is-delay.delay-3 {
  transition-delay: 0.9s !important;
}

.is-delay.delay-4 {
  transition-delay: 1.2s !important;
}

/* anim-delay */
.is-animdelay.delay-1 {
  animation-delay: 1s !important;
}

.is-animdelay.delay-2 {
  animation-delay: 1.5s !important;
}

.is-animdelay.delay-3 {
  animation-delay: 2s !important;
}

.is-animdelay.delay-4 {
  animation-delay: 2.5s !important;
}

.btn {
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center !important;
  justify-content: center;
  text-align: center;
  transition: opacity 0.5s;
  color: #fff;
  font-weight: 700;
  background-color: #ccc;
  font-size: 1.4rem;
  width: 80%;
  height: 6rem;
  border-radius: 5rem;
  background-image: url(../images/disability_co/ico-btn-arr2.png);
  background-repeat: no-repeat;
  background-position: 93% center;
  gap: 1rem;
  background-size: 0.8rem;
}
@media (min-width: 561px) {
  .btn {
    gap: 2rem;
    background-size: auto;
    font-size: 2.6rem;
    width: 43.5rem;
    height: 8.6rem;
  }
}
.btn img {
  width: 2rem;
}
@media (min-width: 561px) {
  .btn img {
    width: auto;
  }
}
.btn:hover {
  opacity: 0.5;
  color: #fff;
}
.btn-header {
  height: 4.7rem !important;
  width: 23.8rem !important;
  font-size: 1.3rem;
  border-width: 3px !important;
  background-image: url(../images/disability_co/ico-btn-arr.png);
}
.btn-nav {
  height: 4.7rem !important;
  width: 23.8rem !important;
  font-size: 1.3rem;
  border-width: 3px !important;
}
.btn-yellow {
  background-color: #ffb93f;
  border-bottom: 3px solid #d49a34;
}
@media (min-width: 561px) {
  .btn-yellow {
    border-bottom: 6px solid #d49a34;
  }
}
.btn-blue {
  background-color: #5285d9;
  border-bottom: 3px solid #3d63a1;
}
@media (min-width: 561px) {
  .btn-blue {
    border-bottom: 6px solid #3d63a1;
  }
}
.btn-column {
  background-color: #181818;
  height: 4.9rem;
  width: 100%;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.mv {
  background-color: #ecfafc;
  background-image: url(../images/disability_co/mv-bg.png);
  padding-top: 8rem;
  background-size: 100% 100%;
}
.mv > div {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 561px) {
  .mv > div {
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}
.mv__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mv__text img {
  width: 100%;
}
@media (min-width: 561px) {
  .mv__text img {
    width: 84.5rem;
  }
}
.mv__text img:last-child {
  width: 80%;
}
@media (min-width: 561px) {
  .mv__text img:last-child {
    width: 68.7rem;
  }
}
.mv__text p {
  text-align: center;
  color: #a4a2a0;
  font-weight: 500;
  font-size: 1.3rem;
  padding-top: 1.5rem;
}
@media (min-width: 561px) {
  .mv__text p {
    font-size: 2.25rem;
    padding-right: 2.2rem;
    padding-top: 1.5rem;
  }
}
.mv__image {
  margin-right: -5rem;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 561px) {
  .mv__image {
    display: block;
    margin-right: -30rem;
  }
}
.mv__image .round {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -2rem;
  padding-top: 2rem;
}
@media (min-width: 561px) {
  .mv__image .round {
    display: none;
  }
}
.mv__image .round img {
  width: 45%;
}
.mv__image .round img:last-child {
  margin-top: -2rem;
}
.mv__image > img {
  width: 50%;
}
@media (min-width: 561px) {
  .mv__image > img {
    width: 55.7rem;
  }
}

.sec1 {
  background-image: url(../images/disability_co/sec1-bg.png);
  background-size: 100% 100%;
  background-position: center;
  padding-bottom: 3.5rem;
}
.sec1__content > p:not(.catch) {
  text-align: center;
  font-weight: 600;
  line-height: 2;
  padding-bottom: 6rem;
}
.sec1__content .content {
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 2.7rem 2.7rem rgb(215, 249, 252);
  -moz-box-shadow: 2px 2px 2.7rem 2.7rem rgb(215, 249, 252);
  box-shadow: 2px 2px 2.7rem 2.7rem rgb(215, 249, 252);
}
.sec1__content .content h3 {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  width: 100%;
  margin: 0 0 0 auto;
}
@media (min-width: 561px) {
  .sec1__content .content h3 {
    text-align: left;
    padding: 1.5rem;
    font-size: 3rem;
    width: 85%;
    padding-left: 15%;
  }
}
.sec1__content .content h3 span {
  font-size: 2rem;
}
@media (min-width: 561px) {
  .sec1__content .content h3 span {
    font-size: 3.9rem;
  }
}
.sec1__content .content h3::before {
  content: "";
  background-color: #000;
  width: 7rem;
  height: 1.8rem;
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media (min-width: 561px) {
  .sec1__content .content h3::before {
    left: 40%;
  }
}
.sec1__content .content div {
  position: relative;
  gap: 2rem;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 561px) {
  .sec1__content .content div {
    flex-direction: row;
  }
}
.sec1__content .content div img {
  margin-top: 2rem;
  width: 60%;
}
@media (min-width: 561px) {
  .sec1__content .content div img {
    margin-top: -13rem;
    width: 35.3rem;
  }
}
.sec1__content .content div ul {
  padding-top: 3rem;
}
@media (min-width: 561px) {
  .sec1__content .content div ul {
    padding-top: 5rem;
  }
}
.sec1__content .content div ul li {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 0 1.5rem;
}
@media (min-width: 561px) {
  .sec1__content .content div ul li {
    padding: 0;
    font-size: 1.8rem;
  }
}
.sec1__content .content div ul li:last-child {
  margin-bottom: 0;
}
.sec1__content .content div ul li::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  background-image: url(../images/disability_co/ico-check.png);
  flex-shrink: 0;
}
@media (min-width: 561px) {
  .sec1__content .content div ul li::before {
    width: 2.8rem;
  }
}

.sec2 {
  background-color: #5585dc;
  background-image: url(../images/disability_co/sec2-bg.png);
  background-size: auto 100%;
  background-position: center -5rem;
  padding: 9rem 0;
}
@media (min-width: 561px) {
  .sec2 {
    background-size: 100% 100%;
    padding: 18rem 0;
  }
}
.sec2 .main__section__title {
  padding-bottom: 6rem;
}
@media (min-width: 561px) {
  .sec2 .main__section__title {
    padding-bottom: 13rem;
  }
}
.sec2 .main__section__title h2 {
  color: #fff;
}
.sec2__content .content > div {
  background-color: #fff;
  display: flex;
  margin-bottom: 4.5rem;
  -webkit-box-shadow: 2px 2px 1.5rem 1.5rem rgb(96, 143, 219);
  -moz-box-shadow: 2px 2px 1.5rem 1.5rem rgb(96, 143, 219);
  box-shadow: 2px 2px 1.5rem 1.5rem rgb(96, 143, 219);
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 561px) {
  .sec2__content .content > div {
    flex-direction: row;
  }
}
.sec2__content .content > div > img {
  width: 100%;
  margin-top: -6rem;
}
@media (min-width: 561px) {
  .sec2__content .content > div > img {
    margin-top: 0;
    width: 40.1rem;
  }
}
.sec2__content .content > div dl {
  padding: 2rem;
  background-color: #fff;
  margin-top: -6rem;
}
@media (min-width: 561px) {
  .sec2__content .content > div dl {
    padding: 3.5rem;
    margin-top: 0;
  }
}
.sec2__content .content > div dl dt {
  padding-bottom: 1rem;
}
@media (min-width: 561px) {
  .sec2__content .content > div dl dt {
    padding-bottom: 2rem;
  }
}
.sec2__content .content > div dl dt img {
  width: 10rem;
  margin-bottom: 1rem;
}
@media (min-width: 561px) {
  .sec2__content .content > div dl dt img {
    width: fit-content;
    margin-bottom: 1.5rem;
  }
}
.sec2__content .content > div dl dt h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 561px) {
  .sec2__content .content > div dl dt h3 {
    font-size: 3rem;
  }
}
.sec2__content .content > div dl dd {
  line-height: 2;
  font-size: 1.4rem;
}
@media (min-width: 561px) {
  .sec2__content .content > div dl dd {
    font-size: 1.8rem;
  }
}
.sec2__content .content > div dl dd small {
  padding-top: 1.5rem;
}
.sec2__content .content > div dl dd small a {
  font-size: 1.2rem;
  color: #a4a2a0;
  font-weight: 500;
}
@media (min-width: 561px) {
  .sec2__content .content > div dl dd small a {
    font-size: 1.6rem;
  }
}
.sec2__content .cta {
  padding-top: 0;
}

.sec3 {
  background-color: #d0f2f6;
  margin-top: -5rem;
  padding: 0rem 0 4.5rem;
}
@media (min-width: 561px) {
  .sec3 {
    padding: 9rem 0;
    margin-top: 0;
  }
}
.sec3 .main__section__title {
  padding-bottom: 2rem;
}
@media (min-width: 561px) {
  .sec3 .main__section__title {
    padding-bottom: 5rem;
  }
}
.sec3 .main__section__title h2 img {
  bottom: 2rem;
}
@media (min-width: 561px) {
  .sec3 .main__section__title h2 img {
    bottom: 3.5rem;
  }
}
.sec3 .main__section__title h2 small {
  padding-top: 1rem;
}
.sec3__content .content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-direction: column;
}
@media (min-width: 561px) {
  .sec3__content .content {
    gap: 10rem;
    flex-direction: row;
  }
}
.sec3__content .content p {
  line-height: 2;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 561px) {
  .sec3__content .content p {
    font-size: 1.8rem;
  }
}
.sec3__content .content img {
  width: 60%;
}
@media (min-width: 561px) {
  .sec3__content .content img {
    width: 37.9rem;
  }
}

.sec4 {
  background-color: #4870a9;
  background-image: url(../images/disability_co/sec4-bg.png);
  background-size: auto 100%;
  background-position: center;
  padding: 9rem 0;
}
@media (min-width: 561px) {
  .sec4 {
    background-size: 100% 100%;
    padding: 18rem 0;
  }
}
.sec4 .main__section__title {
  padding-bottom: 6rem;
}
@media (min-width: 561px) {
  .sec4 .main__section__title {
    padding-bottom: 10rem;
  }
}
.sec4 .main__section__title h2 {
  color: #fff;
}
.sec4 .main__section__title h2 img {
  bottom: -1.5rem;
}
.sec4__content .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 561px) {
  .sec4__content .content {
    gap: 3rem;
  }
}
.sec4__content .content > div:not(.arr) {
  width: 100%;
}
.sec4__content .content > div:not(.arr) dl {
  background-color: #e3f4fc;
  display: flex;
  align-items: flex-start;
  padding: 1rem 1.5rem;
  flex-direction: column;
}
@media (min-width: 561px) {
  .sec4__content .content > div:not(.arr) dl {
    flex-direction: row;
    align-items: center;
    padding: 1.8rem 4rem;
  }
}
.sec4__content .content > div:not(.arr) dl dt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  font-size: 3dvb;
}
.sec4__content .content > div:not(.arr) dl dt span {
  font-size: 3rem;
}
@media (min-width: 561px) {
  .sec4__content .content > div:not(.arr) dl dt span {
    font-size: 6rem;
  }
}
.sec4__content .content > div:not(.arr) dl dd {
  flex-grow: 1;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 561px) {
  .sec4__content .content > div:not(.arr) dl dd {
    font-size: 2.5rem;
  }
}
.sec4__content .content > div:not(.arr) > div {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  flex-direction: column;
}
@media (min-width: 561px) {
  .sec4__content .content > div:not(.arr) > div {
    gap: 4rem;
    flex-direction: row;
    padding: 4rem 0 4rem 10rem;
  }
}
.sec4__content .content > div:not(.arr) > div .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 15rem;
  -webkit-box-shadow: 2px 2px 1rem 1rem rgba(230, 230, 230, 0.5);
  -moz-box-shadow: 2px 2px 1rem 1rem rgba(230, 230, 230, 0.5);
  box-shadow: 2px 2px 1rem 1rem rgba(230, 230, 230, 0.5);
  border-radius: 15rem;
  padding: 2rem;
}
@media (min-width: 561px) {
  .sec4__content .content > div:not(.arr) > div .image {
    width: 26.5rem;
    height: 26.5rem;
  }
}
.sec4__content .content > div:not(.arr) > div .image.mod img {
  margin-left: 3rem;
}
.sec4__content .content > div:not(.arr) > div .image img {
  width: 80%;
}
@media (min-width: 561px) {
  .sec4__content .content > div:not(.arr) > div .image img {
    width: 14rem;
  }
}
@media (min-width: 769px) {
  .sec4__content .content > div:not(.arr) > div .image img {
    width: auto;
  }
}
.sec4__content .content > div:not(.arr) > div p {
  line-height: 2;
  font-size: 1.4rem;
}
@media (min-width: 561px) {
  .sec4__content .content > div:not(.arr) > div p {
    font-size: 1.8rem;
  }
}
.sec4__content .content .arr {
  display: flex;
}

.sec5 {
  padding-bottom: 5rem;
  padding-top: 0;
}
@media (min-width: 561px) {
  .sec5 {
    padding-top: 9rem;
    padding-bottom: 10rem;
  }
}
.sec5 .main__section__title {
  padding-bottom: 2rem;
}
@media (min-width: 561px) {
  .sec5 .main__section__title {
    padding-bottom: 5rem;
  }
}
.sec5 .main__section__title h2 img {
  bottom: 3.5rem;
}
.sec5 .main__section__title h2 small {
  padding-top: 1rem;
}
.sec5__content .catch {
  padding-bottom: 4rem;
}
@media (min-width: 561px) {
  .sec5__content .catch {
    padding-bottom: 9.5rem;
  }
}
.sec5__content .content dl {
  margin-bottom: 1rem;
}
@media (min-width: 561px) {
  .sec5__content .content dl {
    margin-bottom: 2rem;
  }
}
.sec5__content .content dl:last-child {
  margin-bottom: 0;
}
.sec5__content .content dl dt {
  background-color: #e3f4fc;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 561px) {
  .sec5__content .content dl dt {
    gap: 2rem;
    padding: 1.8rem 2.5rem;
    font-size: 1.8rem;
  }
}
.sec5__content .content dl dt span {
  font-size: 3.4rem;
  line-height: 1;
}
.sec5__content .content dl dd {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2;
  padding: 1rem 0;
}
@media (min-width: 561px) {
  .sec5__content .content dl dd {
    font-size: 1.6rem;
    padding: 2rem 0;
  }
}

.sec6 {
  background-color: #f3f3f3;
  padding-bottom: 0;
}
.sec6 .main__section__title {
  padding-bottom: 3rem;
}
@media (min-width: 561px) {
  .sec6 .main__section__title {
    padding-bottom: 5rem;
  }
}
.sec6 .main__section__title h2 img {
  bottom: 3.5rem;
}
.sec6 .main__section__title h2 small {
  padding-top: 1rem;
}
.sec6__content .catch {
  padding-bottom: 4rem;
}
@media (min-width: 561px) {
  .sec6__content .catch {
    padding-bottom: 9.5rem;
  }
}
.sec6__content .content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 561px) {
  .sec6__content .content {
    gap: 4rem;
  }
}
.sec6__content .content a {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 1rem 1rem rgb(230, 230, 230);
  -moz-box-shadow: 2px 2px 1rem 1rem rgb(230, 230, 230);
  box-shadow: 2px 2px 1rem 1rem rgb(230, 230, 230);
  width: 100%;
}
@media (min-width: 561px) {
  .sec6__content .content a {
    width: calc((100% - 8rem) / 3);
  }
}
.sec6__content .content a .image img {
  width: 100%;
}
.sec6__content .content a .text {
  padding: 1.5rem 1.5rem 2rem;
}
@media (min-width: 561px) {
  .sec6__content .content a .text {
    padding: 2rem 2.5rem 3rem;
  }
}
.sec6__content .content a .text .date {
  color: #a9a9a9;
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
}
@media (min-width: 561px) {
  .sec6__content .content a .text .date {
    padding-bottom: 1rem;
    font-size: 1.6rem;
  }
}
.sec6__content .content a .text p {
  line-height: 2;
  font-size: 1.4rem;
}
@media (min-width: 561px) {
  .sec6__content .content a .text p {
    font-size: 1.8rem;
  }
}
.sec6__content .content a .text .btn {
  margin-top: 2rem;
}
@media (min-width: 561px) {
  .sec6__content .content a .text .btn {
    margin-top: 3rem;
  }
}

.sec7 {
  background-color: #5585dc;
  background-image: url(../images/disability_co/sec7-bg.png);
  background-size: auto 100%;
  background-position: center;
  padding: 9rem 0;
}
@media (min-width: 561px) {
  .sec7 {
    background-size: 100% 100%;
    padding: 23rem 0;
  }
}
.sec7 .main__section__title {
  padding-bottom: 5rem;
}
.sec7 .main__section__title h2 {
  color: #fff;
}
.sec7 .main__section__title h2 img {
  bottom: 3.5rem;
}
.sec7 .main__section__title h2 small {
  padding-top: 1rem;
}
.sec7__content .catch span {
  color: #fff;
  background: linear-gradient(transparent 93%, #bdeffa 7%);
}
.sec7__content .form {
  background-color: #fff;
  padding: 2rem;
}
@media (min-width: 561px) {
  .sec7__content .form {
    padding: 9rem 20rem;
  }
}
.sec7__content .form dl {
  margin-bottom: 2rem;
  width: 100%;
}
@media (min-width: 561px) {
  .sec7__content .form dl {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
  }
}
.sec7__content .form dl dt {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 561px) {
  .sec7__content .form dl dt {
    height: 5rem;
    width: 25rem;
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.sec7__content .form dl dt span {
  color: #fff;
  background-color: #f36241;
  display: flex;
  padding: 0.5rem;
  margin-left: 1rem;
  font-size: 1.2rem;
}
@media (min-width: 561px) {
  .sec7__content .form dl dt span {
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
  }
}
.sec7__content .form dl dd {
  flex-grow: 1;
}
.sec7__content .form dl dd input, .sec7__content .form dl dd textarea {
  border: 1px solid #d7d7d7;
  font-size: 1.6rem;
  min-height: 5rem;
  padding: 1rem;
  width: 100%;
}
@media (min-width: 561px) {
  .sec7__content .form dl dd input, .sec7__content .form dl dd textarea {
    padding: 1rem 2rem;
  }
}
.sec7__content .form dl dd textarea {
  height: 19rem;
}
.sec7__content .form .check {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 2rem;
}
@media (min-width: 561px) {
  .sec7__content .form .check {
    padding-bottom: 4.5rem;
    font-size: 1.8rem;
  }
}
.sec7__content .form .check input {
  position: absolute;
  opacity: 0;
}
.sec7__content .form .check input:checked + label .mock {
  border: none;
  width: 2.8rem;
  margin-right: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  background-image: url(../images/disability_co/ico-check.png);
}
.sec7__content .form .check .mock {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-right: 1.8rem;
  border: 1px solid #d7d7d7;
}
.sec7__content .form .check a {
  text-decoration: underline;
}
.sec7__content .form [type=submit] {
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 561px) {
  .sec7__content .form [type=submit] {
    width: 43.5rem;
  }
}

.sec8 table {
  width: 100%;
}
.sec8 table tr {
  border-bottom: 1px solid #dcdcdc;
}
.sec8 table tr:first-child {
  border-top: 1px solid #dcdcdc;
}
.sec8 table th {
  background-color: #f6f6f6;
  padding: 1rem;
  font-size: 1.4rem;
  width: 100px;
}
@media (min-width: 561px) {
  .sec8 table th {
    padding: 2rem 3rem;
    font-size: 1.8rem;
    width: 285px;
  }
}
.sec8 table td {
  padding: 1rem;
  font-size: 1.4rem;
  line-height: 2;
}
@media (min-width: 561px) {
  .sec8 table td {
    font-size: 1.8rem;
    padding: 2rem 3rem;
  }
}
.sec8 .is-text{
  text-align: center;
  margin-bottom: 3rem;
}
.sec8 .is-text a{
  color: #5285d9;
}
/*# sourceMappingURL=style.css.map */
