@charset "utf-8";

/* ------- */
/* ヘッダー */
/* ------- */

header {
  position: relative;
  height: 100px;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

.header-title {
  width: 50%;
  display: flex;
  justify-content: start;
}

.header-title img {
  width: 215px;
  height: 35px;
  margin-left: 20px;
}

.header-title a {
  margin: auto 0;
}

.header-title p {
  margin: auto 0;
  font-size: 13px;
  font-weight: bold;
  margin-left: 30px;
}

.header-menu {
  width: 50%;
  display: flex;
  justify-content: end;
}

.header-menu a {
  margin: 0 15px;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
}

.header-list {
  display: flex;
  justify-content: center;
}

.header-list a:last-child {
  margin-right: 30px;
}

.header-list li , .contact {
  margin: auto 0;
}

.contact {
  display: flex;
  align-items: center;
  text-align: center;
  height: 100px;
  background-color: #D2DB62;
}

.contact a {
  display: inline-block;
}

.contact p {
  font-size: 10px;
}

/* ハンバーガーメニュー */
.humburger {
  background-color: #D2DB62;
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 0;
}
.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #FFF;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #D2DB62;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  width: 80%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
  border-bottom: dotted 6px #d7c436;
}

.nav-overlay__item a {
  font-family: var(--font-marugothic);
  letter-spacing: 0.5em;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}

/* ------- */
/* ヒーロー */
/* ------- */

.hero {
  width: 100%;
  height: 830px;
  position: relative;
  top: -100px;
  background-image: url(../images/hero-image.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-left {
  position: relative;
  top: 250px;
}

.catch {
  text-align: left;
  font-size: 90px;
  color: #FFF;
  text-shadow: 0 0 20px #383838;
  font-family: var(--font-marugothic);
  letter-spacing: -0.05em;
  line-height: 1.4;
}

.catch-p {
  text-align: left;
  text-shadow: 0 0 10px #FFF;
  font-size: 30px;
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 30px;
}

.catch-p span {
  color: var(--sab-color-blue);
  font-size: 35px;
}

/* ------- */
/* アバウト */
/* ------- */

.about-p p {
  font-size: 25px;
  font-family: var(--font-marugothic);
  line-height: 1.9;
}

.about-p span {
  font-size: 40px;
  color: var(--sab-color-blue);
}

.about-p img {
  position: relative;
  top: -50px;
}

.about-img {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-end;
}

.about-img img {
  width: 100%;
  overflow: hidden;
}

.about-img img:nth-child(1) {
  max-width: 317px;
}

.about-img img:nth-child(3) {
  max-width: 300px;
}

.about-img img:nth-child(2) ,
.about-img img:nth-child(4) {
  max-width: 210px;
  margin-bottom: 30px;
}

.about-back-wrapper {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
  z-index: -1000;
  background-color: var(--sab-color-blue);
  width: 100%;
  height: 100px;
}

.about-wrapper {
  background-color: var(--sab-color-blue);
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-wrapper-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-wrapper p {
  color: #FFF;
  font-size: 35px;
  font-family: var(--font-marugothic);
  letter-spacing: 0.1em;
  line-height: 2;
}

/* ------- */
/* ポリシー */
/* ------- */

.policy {
  display: flex;
  justify-content: space-between;
}

.policy-title h1 {
  font-size: 57px;
  text-align: left;
  color: var(--sab-color-blue);
}

.policy-title dd {
  font-size: 25px;
  font-family: var(--font-marugothic);
  text-align: left;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: dotted 5px #C6E4E6;
}

.policy-text {
  width: 100%;
  max-width: 630px;
}

.policy-text p {
  text-align: left;
  line-height: 1.8;
}

/* ------- */
/* ポイント */
/* ------- */

/* point-about */

.point-about {
  background: #F0F0F0;
}

.point::before {
  content: " ";
  display: block;
  width: 100%;
  height: 60px;
  background-image: url(../images/nami-gray.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.point-about-list {
  width: 100%;
  height: 1fr;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
  place-content: center;
  place-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 50px 20px 100px 20px;
}

.point-about-item {
  width: 100%;
  max-width: 375px;
  height: 1fr;
  background-color: #C6E4E6;
  border: solid 5px #FFF;
  border-radius: 30px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.point-about-item h2 {
  font-size: 55px;
  font-family: var(--font-marugothic);
  color: #FFF;
}

.point-about-item dd {
  display: inline-block;
  width: 80%;
  max-width: 265px;
  margin-bottom: 10px;
  padding: 5px 0;
  border-radius: 30px;
  text-align: center;
  color: #59D2DD;
  background-color: #FFF;
}

.point-about-item img {
  display: block;
  margin: 0 auto;
}

.point-img {
  display: block;
  margin-top: -30px;
}

.point-img img {
  width: 100px;
}

.yajirushi {
  padding-bottom: 10px;
}

/* point-wrapper */

.point-wrapper {
  background-color: #FFF;
}

.yohaku {
  width: 100%;
  height: 50px;
}

.point-wrapper-item {
  text-align: center;
}

.point-wrapper-img {
  width:  100%;
  height: 350px;
}

.img-01 {
  background-image: url(../images/chiiku.png);
  background-size: cover;
  display: block;
}

.img-02 {
  background-image: url(../images/doutoku.png);
  background-size: cover;
  display: block;
}

.img-03 {
  background-image: url(../images/undou.png);
  background-size: cover;
  display: block;
}

.img-04 {
  background-image: url(../images/ryouiku.png);
  background-size: cover;
  display: block;
}

.point-wrapper-box {
  width: 240px;
  height: 120px;
  line-height: 100px;
  background-color: #FFF;
  margin: auto;
  border-radius: 0 0 120px 120px;
}

.point-wrapper-img h3 {
  font-size: 30px;
  font-family: var(--font-marugothic);
  color: var(--sab-color-blue);
}

.point-wrapper-item p {
  width: 100%;
  max-width: 1010px;
  line-height: 1.8;
  text-align: left;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}

/* ---------- */
/* スケジュール */
/* ---------- */
.schedule::before {
  content: " ";
  display: block;
  width: 100%;
  height: 132px;
  background-image: url(../images/nami-blue.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.schedule::after {
  content: " ";
  display: block;
  width: 100%;
  height: 132px;
  background-image: url(../images/nami-blue-shita.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.schedule-wrapper {
  background-color: #C6E4E6;
  position: relative;
}

.schedule-img {
  position: absolute;
  top: -100px;
}

.schedule-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.schedule-graph {
  padding: 100px 0 150px 0;
}

.schedule-graph h2 {
  width: 225px;
}

.graph-01 {
  width: 100%;
  max-width: 880px;
  text-align: center;
  margin: 0 auto;
  border-spacing: 0 10px;
  border-collapse: separate; 
  padding: 100px 20px 0 20px;
}

.graph-01 tr {
  background-color: #A6CFD1;
  height: 50px;
  font-size: 20px;
  font-weight: 600;
}

.graph-title {
  background-color: #FFF;
  border-radius: 30px;
  position: relative;
  color: var(--sab-color-blue);
  font-size: 20px;
}

.graph-none {
  background-color: #C6E4E6;
}

.graph-title::after {
  top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-top-color: #FFF;
	border-width: 5px;
	margin-left: -5px;
}

.ichinichi {
  border-radius: 30px 0 0 30px;
}

.hannichi {
  border-radius: 0 30px 30px 0;
}

.ichinichi , .hannichi  {
  color: #FFF;
}

.schedule-program {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.schedule-program h2 {
  width: 100px;
  margin-bottom: 40px;
}

.program-left {
  width: 50%;
  float: left;
}

.program-left p {
  font-weight: 300;
  line-height: 2.5;
}

.program-left img {
  margin-top: 20px;
}

.program-right {
  width: 50%;
  display: inline-block;
  padding: 0 20px;
  overflow: hidden;
}

.program-right img {
  width: 100%;
  max-width: 330px;
}

.program-right img:nth-child(2) {
  position: relative;
  top: -80px;
  right: -165px;
}

/* --------- */
/* 支援・評価 */
/* -------- */
.shien-hyouka-wrapper {
  width: 100%;
}

.shien-hyouka-left {
  width: 50%;
  float: left;
}

.shien-hyouka-left img {
  width: 100%;
}

.shien-hyouka-left img:nth-child(1) {
  max-width: 155px;
  position: relative;
  top: -90px;
  margin-bottom: -90px;
}

.shien-hyouka-left img:nth-child(2) {
  max-width: 330px;
  margin-bottom: 30px;
}

.shien-hyouka-left img:nth-child(3) {
  max-width: 330px;
  position: relative;
  left: -50px;
}

.shien-hyouka-right {
  width: 50%;
  display: inline-block;
  padding-left: 80px;
}

.shien h3 {
  width: 100%;
  max-width: 360px;
  margin-bottom: 50px;
  text-align: left;
}

.shien p, .hyouka p {
  text-align: left;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--main-color);
}

.shien-hyouka-right p::before {
  content: "●";
  margin-right: 10px;
}

.hyouka {
  margin-top: 100px;
}

.hyouka h3 {
  width: 100%;
  max-width: 360px;
  margin-bottom: 50px;
  text-align: left;
}

/* ------- */
/* 就労支援 */
/* ------- */
.shuurou-shien {
  background-color: var(--sab-color-blue);
}

.shuurou-shien-wrapper p {
  width: 100%;
  max-width: 480px;
  font-size: 35px;
  font-family: var(--font-marugothic);
  font-weight: 600;
  color: #FFF;
  margin: 0 auto;
}

.shuurou-shien-wrapper dd {
  font-weight: 600;
  margin-top: 30px;
  line-height: 2.2;
}

/* ------- */
/* 施設紹介 */
/* ------- */
.company-title h1 {
  width: 125px;
  margin: 0 auto;
}

.company-gaiyou table {
  margin: 0 auto;
  border-spacing: 50px 25px;
  border-collapse: separate; 
  padding-top: 80px;
  padding-bottom: 100px;
}

.company-gaiyou th {
  width: 300px;
  background-color: var(--sab-color-blue);
  border-radius: 30px;
  font-family: var(--font-marugothic);
  color: #FFF;
  padding: 12px 0;
}

.company-gaiyou td {
  font-weight: 600;
  text-align: left;
}

.map {
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}

.map iframe {
  width: 100%;
  height: 540px;
}

.map p {
  text-align: left;
  margin-top: 30px;
  line-height: 2.2;
}

.contact-wrapper {
  width: 865px;
  margin: 70px auto 0 auto;
  padding: 50px;
  border: solid 10px var(--sab-color-blue);
  border-radius: 40px;
}

.contact-item p {
  width: 50%;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  float: left;
  line-height: 2.2;
}

.contact-items {
  width: 50%;
  display: inline-block;
  margin: 0 auto;
}

.contact-items a {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  color: #383838;
}

.contact-items a::before {
  content: " ";
  display: inline-block;
  width: 20px;
  height: 30px;
  background-image: url(../images/icon-smartphone.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 20px;
}

.contact-items p {
  width: 100%;
  text-align: center;
  font-weight: 300;
}

.contact-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  height: auto;
  margin-top: 30px;
}

.contact-btn {
  display: flex;
  align-items: center;   /* 垂直中央 */
  justify-content: center; /* 水平中央 */
  font-size: 15px;
  font-family: var(--font-marugothic);
  width: 50%;
  height: 60px;
  box-sizing: border-box;
  border-radius: 50px;
}

.info-btn {
  background-color: var(--sab-color-blue);
  color: #FFF;
}

.con-btn {
  border: solid 1px #383838;
  color: #383838;
}

.con-btn::before {
  content: url(../images/icon-mail.svg);
  margin-right: 10px;
  vertical-align: middle;
}

/* --- */
/* SNS */
/* --- */
.sns {
  background-color: #F0F0F0;
}

/* ------- */
/* 会社概要 */
/* ------- */
.company-ace-wrapper table {
  width: 100%;
  max-width: 830px;
  margin: 70px auto 0 auto;
}

.company-ace-wrapper th,
.company-ace-wrapper td {
  font-size: 20px;
  font-weight: 300;
  padding: 30px 0;
  border-bottom: solid 5px #C6E4E6;
}

.company-ace-wrapper td {
  text-align: left;
  padding-left: 130px;
}

/* ------ */
/* footer */
/* ------ */
footer {
  background-color: #D2DB62;
}

.footer-wrapper {
  width: 90%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 auto;
  padding: 30px 0px;
  border-bottom: solid 1px #FFF;
}

.footer-wrapper img {
  width: 215px;
  height: 35px;
}

.footer-item  a {
  font-size: 33px;
  font-weight: 600;
  color: #FFF;
}

.footer-item p {
  font-size: 12px;
  color: #FFF;
}

.footer-btn {
  display: inline-block;
  width: 80%;
  max-width: 345px;
  height: 60px;
  border-radius: 30px;
  line-height: 60px;
  background-color: #FFF;
  font-size: 15px;
  font-weight: 600;
  color: var(--main-color);
}

.footer-btn::before {
  content: url(../images/icon-mail.svg);
  position: relative;
  top: 5px;
  margin-right: 20px;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
}

.footer-list a {
  font-weight: 600;
  color: #FFF;
}

small {
  display: inline-block;
  color: #FFF;
  padding: 30px 0;
}

/* スクロールトップ */
.pagetop-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border: solid 5px #FFF;
  box-shadow: 5px 5px 5px #7c7c7c;
  border-radius: 50%;
  background: var(--sab-color-blue);
  cursor: pointer;
  right: 50px;
  bottom: 50px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.3s, transform 0.3s;
}

.pagetop-btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 5px solid #FFF;
  border-top: 5px solid #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(45deg);
}

.pagetop-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------- */
/* お問い合わせフォーム */
/* ----------------- */
.contact-form-inner {
    width: 100%;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.form-item:first-child {
    margin-top: 0;
}
.form-item {
    width: 70%;
    margin: 30px auto 0;
}
.form-item label{
    display: block;
    font-size: 16px;
    color: #333333;
}
.form-item input{
    width: 100%;
    height: 50px;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #cccccc;
}

.form-item input::placeholder,
.form-item textarea::placeholder {
    padding-left:15px;
}
.form-flex {
    display: flex;
    flex-direction: column;
}
.form-flex input {
    height: 50px;
    border-radius: 20px;
    border: 1px solid #cccccc;
}
.form-flex input.your-add-1 {
    width: 40%;
}
.form-flex input.your-add-2 {
    width: 100%;
}
.form-hissu {
    color: #ffffff;
    font-size: 13px;
    margin-left: 15px;
    padding: 3px 5px;
    background-color: red;
}

.form-item textarea{
    height: auto;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #cccccc;
    padding: 15px;
}
.last-check {
    display: flex;
    align-items: center;
    vertical-align: middle;
}
.last-check > input {
    width: auto;
    height: auto;
    margin: 0 10px 0 0;
}
.last-check a {
    text-decoration: none;
}
.form-item.send-btn{
    /* max-width: 200px; */
    margin: 40px auto 0;
}
.send-btn p {
  text-align: left;
}

.form-item.send-btn input{
    background-color: var(--sab-color-blue);
    color: #ffffff;
    border: 0;
    border-radius: 0px;
    font-weight: 700;
    cursor: pointer;
}
.form-item.send-btn input:hover {
    background-color: #FFFFFF;
    color: var(--sab-color-blue);
    border: 1px solid var(--sab-color-blue);
    transition: all .3s;
}

/* レスポンシブコード
画面サイズ768px以下で表示を変えています
 */
@media screen and (max-width:768px) {
    .contact-form-inner {
        padding: 30px 15px;
        border: none;
    }
    .form-item {
        width: 95%;
        margin: 20px auto 0;
    }
    .form-item > input{
        height: 35px;
        border-radius: 15px;
        margin-top: 5px;
    }
    .form-item textarea{
        border-radius: 15px;
        margin-top: 5px;
    }
    .form-item input::placeholder {
        padding-left:5px;
    }
    .form-flex input {
        height: 35px;
        border-radius: 15px;
        margin-top: 5px;
    }
    .form-flex input.your-add-1 {
        width: 70%;
    }
    .form-hissu {
        margin-left: 5px;
    }
    .form-free {
        margin-left: 5px;
    }
    .last-check > input {
        margin: 0 5px 0 0;
    }
    .form-item.send-btn{
        width: 80%;
        margin: 30px auto 0;
    }
} 

/* --------- */
/* post-page */
/* --------- */

.post-page {
  width: 100%;
  max-width: 1040px;
  padding: 100px 0;
  margin: 0 auto;
}

/* ---------- */
/* レスポンシブ */
/* ---------- */
@media (max-width:950px) {

    .header-title {
      width: 90%;
    }

    .header-menu {
      width: 10%;
    }
}
@media (max-width:768px) {
    .policy {
      flex-direction: column;
    }
    .policy-title h1 {
      text-align: center;
    }

    .policy-title dd {
      width: 300px;
      text-align: center;
      margin: 0 auto;
      padding-top: 5px;
      padding-bottom: 5px;
    }

    .policy-text {
      margin-top: 50px;
    }

    .company-gaiyou th {
      width: 120px;
      padding: 5px 0;
    }
    .footer-wrapper {
      flex-direction: column;
      gap: 20px;
    }

}
@media (max-width:480px) {
    /* ------- */
    /* ヘッダー */
    /* ------- */
    .header-title {
      width: 80%;
    }

    .header-menu {
      width: 20%;
    }

    .header-title img {
      margin-left: 10px;
    }

    .header-title a {
      margin: 20px 0 0 0;
    }

    .header-title p {
      display: none;
    }
    /* ------- */
    /* ヒーロー */
    /* ------- */
    .hero {
      height: 650px;
      background-image: url(../images/hero-image-sh.png);
    }

    .hero-left {
      top: 100px;
    }
    
    .catch {
      font-size: 40px;
      letter-spacing: 1px;
      text-shadow: 0 0 10px #383838;
      white-space: nowrap;
      margin-top: 15px;
    }

    .catch-p {
      font-size: 18px;
      color: #FFF;
      text-shadow: 0 0 5px #FFF;
      margin-left: 10px;
    }

    .catch-p span {
      color: #FFF;
      font-size: 30px;
    }

    /* ------- */
    /* アバウト */
    /* ------- */
    .about-p img {
      width: 80%;
    }

    .about-p p {
      font-size: 20px;
      font-family: var(--font-marugothic);
      line-height: 1.5;
    }

    .about-p span {
      font-size: 30px;
    }

    .about-img {
      padding: 0 30px;
    }

    .about-wrapper {
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .about-wrapper p {
      font-size: 20px;
    }

    .about-wrapper img {
      width: 150px;
    }

    /* ------- */
    /* ポリシー */
    /* ------- */

    .policy-title h1 {
      font-size: 32px;
      text-align: center;
    }

    .policy-title dd {
      width: 200px;
      font-size: 18px;
    }

    /* ------- */
    /* ポイント */
    /* ------- */
    .point::before {
      content: " ";
      display: block;
      width: 100%;
      height: 34px;
      background-image: url(../images/nami-gray-sh.png);
      background-size: cover;
      background-repeat: no-repeat;
    }

    .point-about-list {
      gap: 25px;
      padding-bottom: 50px;
    }

    .point-about-item h2 {
      font-size: 25px;
    }

    .point-about-item dd {
      font-size: 10px;
    }

    .point-img img {
      width: 70px;
    }

    /* point-wrapper */

    .yohaku {
      height: 25px;
    }

    .point-wrapper-box {
      width: 120px;
      height: 60px;
      line-height: 50px;
      border-radius: 0 0 150px 150px;
    }

    .point-wrapper-img h3 {
      font-size: 18px;
    }

    .point-wrapper-img {
      height: 198px;
    }

    .img-01 {
      background-image: url(../images/chiiku-sh.png);
    }

    .img-02 {
      background-image: url(../images/doutoku-sh.png);
    }

    .img-03 {
      background-image: url(../images/undou-sh.png);
    }

    .img-04 {
      background-image: url(../images/ryouiku-sh.png );
    }

    /* ---------- */
    /* スケジュール */
    /* ---------- */
    .schedule::before {
      height: 35px;
      background-image: url(../images/nami-blue-sh.png);
      background-size: auto;
    }

    .schedule::after {
      height: 50px;
      background-image: url(../images/nami-blue-shita-sh.png);
    }

    .schedule-program {
      padding-bottom: 30px;
    }

    .schedule-img {
      display: block;
      width: 70px;
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%); 
    }

    .schedule-graph {
      padding: 50px 0 50px 0;
    }

    .graph-01 {
      padding: 50px 20px 0 20px;
    }

    .graph-title {
      font-size: 14px;
    }

    .graph-01 tr {
      height: 28px;
      font-size: 12px;
    }

    .program-left {
      width: 100%;
    }

    .program-left img {
      display: none;
    }

    .program-right {
      width: 100%;
      display: flex;
      justify-content: center;
      padding-top: 50px;
      padding-bottom: 0;
      padding-left: 0;
      padding-right: 0;
    }

    .program-right img {
      max-width: 170px;
    }

    .program-right img:nth-child(2) {
      position: static;
    }
    
    /* --------- */
    /* 支援・評価 */
    /* -------- */

    .shien-hyouka-wrapper {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap-reverse;
    }

    .shien-hyouka-left {
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 50px;
    }

    .shien-hyouka-right {
      width: 100%;
      padding-left: 0;
    }

    .shien p {
      margin-left: 30px;
      margin-right: 30px;
    }

    .hyouka {
      margin-top: 50px;
    }

    .hyouka p {
      margin-left: 30px;
      margin-right: 30px;
    }

    .shien-hyouka-left img:nth-child(1) {
      display: none;
    }

    .shien-hyouka-left img:nth-child(2) {
      max-width: 170px;
    }

    .shien-hyouka-left img:nth-child(3) {
      max-width: 170px;
      position: static;
      margin-top: 30px;
    }

    /* ------- */
    /* 就労支援 */
    /* ------- */

    .shuurou-shien-wrapper img {
      width: 100%;
      max-width: 98px;
    }

    .shuurou-shien-wrapper p {
      font-size: 20px;
      max-width: 300px;
    }

    /* ------- */
    /* 施設紹介 */
    /* ------- */
    .company-gaiyou table {
      width: 100%;
      display: block;
      border-spacing: 15px;
      margin: 0;
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .company-title img {
      width: 100px;
    }

    .company-gaiyou th {
      display: block;
      width: 100px;
    }

    .map iframe {
      width: 100%;
      height: 270px;
    }

    .contact-wrapper {
      width: 100%;
      max-width: 430px;
      padding: 30px;
    }

    .contact-item p {
      width: 100%;
      font-size: 15px;
      line-height: 2;
    }

    .contact-item a {
      font-size: 25px;
    }

    .contact-items a::before {
    width: 15px;
    height: 20px;
    margin-right: 10px;
    vertical-align: baseline;
  }

    .contact-items {
      width: 100%;
      margin-top: 20px;
    }

    .contact-btn-wrapper {
      flex-direction: column;
      gap: 10px;
    }

    .contact-btn {
      width: 100%;
    }

    /* ------- */
    /* 会社概要 */
    /* ------- */
  
    .company-ace-wrapper table {
      margin: 50px auto 0 auto;
    }

    .company-ace-wrapper th,
    .company-ace-wrapper td {
      font-size: 16px;
      padding: 20px 0;
    }

    .company-ace-wrapper th {
      width: 65px;
    }
    .company-ace-wrapper td {
      padding-left: 30px;
    }

    /* --------- */
    /* post-page */
    /* --------- */

    .post-page {
      max-width: 480px;
      padding: 50px 20;
    }

}