@charset "UTF-8";
@import url("grid.css");
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
    /* スムーススクロール */
  }
}

:root {
  /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
  --base-color: #000;
  --link-color: #666;
  --linkhover-color: #999;
  --back-color: #f7f7f7;
  --border-color: #ccc;
  --white-color: #fff;
  --nav-color: #333;
}

.red {
  color: #ed614c;
}

.yellow {
  color: #fabb00;
}

.green {
  color: #72bb2b;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white-color);
  color: var(--base-color);
}

img {
  max-width: 100%;
  height: auto;
  /*高さ自動*/
}

.round img {
  border-radius: 1.6rem;
}

.bold {
  font-weight:600;
}

a {
  display: block;
  color: var(--link-color);
  text-decoration-line: none;
}

a:hover {
  color: var(--linkhover-color);
}

h1,
h2,
h3 {
  font-family: "Nunito", "Kosugi Maru", sans-serif;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

h2 {
  font-weight: 500;
}

.fs15 {
  font-size: 15px;
}

.fs14 {
  font-size: 14px;
}

.fs13 {
  font-size: 13px;
}

.fs12 {
  font-size: 12px;
}

.ls-1 {
  letter-spacing: -1px;
}

.ls1 {
  letter-spacing: 1px;
}

.tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.justify {
  text-align: justify;
}

.yakuhan {
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

.normal {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'MS Pゴシック', sans-serif;
}

.maru {
  font-family: "Nunito", "Kosugi Maru", sans-serif;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.hr_yellow {
  height: 5px;
  background-image: repeating-linear-gradient(-45deg, #fabd00 0, #fabd00 2px, transparent 0, transparent 50%);
  background-size: 5px 5px;
}

.hr_orange {
  height: 5px;
  background-image: repeating-linear-gradient(-45deg, #d44013 0, #d44013 2px, transparent 0, transparent 50%);
  background-size: 5px 5px;
}

.hr_green {
  height: 5px;
  background-image: repeating-linear-gradient(-45deg, #70ba2b 0, #70ba2b 2px, transparent 0, transparent 50%);
  background-size: 5px 5px;
}

.button {
  margin: 1rem;
}

span {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.center-box {
  text-align: center;
  margin: 0 20px;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }

  span {
    display: contents;
  }

  .box-left {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }

  .sp-center {
    text-align: center;
  }

  .sp-left {
    text-align: left;
  }

  .sp-justify {
    text-align: justify;
  }
}

/*PCでは改行しない。タブレットとスマートフォンでは改行する*/
.sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

/*スマートフォンでは非表示*/
@media screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}

/************************************
** flex-box
************************************/
.flex-center-center {
display: flex;
align-items: center;
justify-content: center;
}

/************************************
** ボタン設定
************************************/

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap {
  margin: 30px 0;
}

a.btn-c {
  font-size: 2.6rem;
  position: relative;
  padding: 0 6rem 2rem 7rem;
  color: #fff;
  background: #e94919;
  -webkit-box-shadow: 0 5px 0 #d44114;
  box-shadow: 0 5px 0 #d44114;
}
@media screen and (max-width: 768px) {
  a.btn-c {
    padding: 0 2rem 1rem 3rem;
  }
}

a.btn-c span {
  font-size: 1.5rem;
  letter-spacing: 1px;
  position: absolute;
  top: -1.25rem;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.4rem 0;
  color: #d44114;
  border: 2px solid #d44114;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn-c span:before,
a.btn-c span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}

a.btn-c span:before {
  bottom: -10px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #d44114 transparent transparent transparent;
}

a.btn-c span:after {
  bottom: -7px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

a.btn-c i {
  margin-right: 1rem;
}

a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #eb5b30;
  -webkit-box-shadow: 0 2px 0 #d44114;
  box-shadow: 0 2px 0 #d44114;
}

/************************************
** シャドウ設定
************************************/

/*テキストシャドウ */
.text-shadow-basic {
  text-shadow: #333 0 -2px;
}

.text-shadow-left {
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1;
  color: #000000;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.text-shadow-center {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000000;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.box-shadow1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  background-color: #dddddd;
  border-radius: 3px;
  box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.2);
}

.box-shadow2 {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

/************************************
** 余白設定
************************************/

/* マージン */
.m10 {
  margin: 10px;
}

.m20 {
  margin: 20px;
}

.m30 {
  margin: 30px;
}

.m40 {
  margin: 40px;
}

.m50 {
  margin: 50px;
}

.m60 {
  margin: 60px;
}

/* マージントップ */
.mt0 {
  margin-top: 0;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

/* マージンボトム */
.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

/* パディング */
.p10 {
  padding: 10px !important;
}

.p20 {
  padding: 20px !important;
}

.p30 {
  padding: 30px !important;
}

.p40 {
  padding: 40px !important;
}

.p50 {
  padding: 50px !important;
}

.p60 {
  padding: 60px !important;
}

/* パディングトップ */
.pt0 {
  padding-top: 0 !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

/* パディングボトム */
.pb0 {
  padding-bottom: 0 !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

/* パディング上下 */
.ptb0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ptb10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.ptb20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.ptb30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.ptb40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.ptb50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.ptb60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* パディング左右 */
.plr10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.plr20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.plr30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.plr40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.plr50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.plr60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.plr64 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.plr72 {
  padding-left: 72px;
  padding-right: 72px;
}

/************************************
** 角丸設定
************************************/
.radius20 {
  border-radius: 20px;
}

/************************************
** ヘッダー
************************************/
.header {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin-bottom: 0;
  justify-content: center;
}

.subtitle {
  font-size: 14px;
  text-align: center;
}

.header-box {
  margin-left: auto;
  margin-top: 8px;
}

.contact-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  width: 200px;
  font-size: 16px;
  text-decoration: none;
  background-color: var(--link-color);
  color: var(--white-color);
  box-shadow: 1px 1px var(--base-color);
}

.contact-button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white-color);
  border-right: 2px solid var(--white-color);
  transform: rotate(45deg);
}

.contact-button:hover {
  opacity: 0.9;
  color: var(--white-color);
}

@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    margin-bottom: 0;
  }

  .header li {
    padding-top: 0;
  }
}

/************************************
** メインビジュアル
************************************/
#mainimg {
  width: 100%;
  background-image: url(../img/mainimg.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

#mainimg img {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #mainimg {
    width: 100%;
    background-image: url(../img/mainimg-sp.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  #mainimg img {
    padding: 20px;
  }
}

/*メインコンテンツここから
-------------------------------------*/
main {
  margin: 0;
}

section {
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
}
.gray-back {
  background-color: var(--back-color);
  /*background: url('../img/gray-back.jpg'); gray-back.jpg背景画像を使用したい時にオンにしてください*/
  background-size: cover;
  height: 100%;
}

.light-yellow-back {
  position: relative;
  background-color: #fff0c5;
}

.light-green-back {
  position: relative;
  background-color: #c8e7be;
}

.yellow-back {
  position: relative;
  background-color: #fabd00;
}

.green-back {
  position: relative;
  background-color: #70ba2b;
}

.white-back {
  position: relative;
  background-color: #fff;
}

.dot-back-y {
  background-color: #fff;
  background-image:
    radial-gradient(#ffebb2 30%, transparent 30%);
  background-size: 20px 20px;
}

.dot-back-g {
  background-color: #fff;
  background-image:
    radial-gradient(#b7ffb2 30%, transparent 30%);
  background-size: 20px 20px;
}

.stripe-back-y {
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 235, 178, 0.7) 10px, rgba(255, 235, 178, 0.7) 14px);

}

.read {
  line-height: 1.4;
	font-size: clamp(1.8rem, calc(1.25vw + 1.5rem), 2.4rem);
  font-family: "Kosugi Maru", sans-serif;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

/*キャッチコピー
-------------------------------------*/
.catch-box {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}

.catch-left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 250px;
  height: calc(100% + 100px);
  margin: -200px 0 0 0;
}

.catch-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 230px;
  height: calc(100% + 100px);
  margin: -200px 0 0 0;
}

@media screen and (max-width: 1200px) {

  .catch-left,
  .catch-right {
    display: none;
  }
}

.catch {
  display: flex;
  align-items: center;
  margin: 1.6rem 8rem;
  text-align: center;
  line-height: 1.7;
}

.catch h1 {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.catch h3 {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .catch {
    margin: 0 10px;
  }
}


/*3つのメリット
-------------------------------------*/
.sec3 {
  padding-top: 9rem;
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto;
}

.merit h2 {
  letter-spacing: 1px;
}

.merit h3 {
  color: #000;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .order-1 {
    order: -1;
  }
}

/*放課後等デイサービスとは？
-------------------------------------*/
.box1 {
  background-color: #fff;
  margin-top: 6rem;
  margin-bottom: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
  padding-bottom: 30px;
  border: 10px solid;
  border-image: linear-gradient(to right, #ffbb00, #ed614c);
  border-image-slice: 1;
}
@media screen and (max-width: 768px) {
  .box1 {
    background-color: #fff;
margin:10px;
padding:20px;
border:none;
  }
}

.box2 {
  position: relative;
  top: -40px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
}

.box3 {
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .box1 {
    background-color: #fff;
margin:10px;
padding:20px;
border:none;
  }
.box3 {
    margin-left: 0px;
}
}

.service h2 {
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}

.grad-1 {
  display: inline-block;
  font-weight: bold;
  margin: 0 auto 5%;
  background: linear-gradient(to right, #ffbb00, #ed614c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec5 {
  padding-top: 9rem;
  background-image: url("../img/sec5-bg.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto;
}

/*理念
-------------------------------------*/
.philosophy h2 {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

.philosophy h3 {
  font-size: clamp(1.6rem, 5vw, 5rem);
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'MS Pゴシック', sans-serif !important;
  font-weight: 600;
  color: #fabb00;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 0;
}

.philosophy h4 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 600;
}

.philosophy h5 {
  font-family: "Kosugi Maru", sans-serif;
}

/*選ばれる理由
-------------------------------------*/
.strength h2 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.inner {
  background-color: #fff;
  margin: 20px;
  padding: 20px;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.inner2 {
  background-color: #fff;
  margin: 20px;
  padding: 40px;
}

/*開校までのながれ
-------------------------------------*/
.box4 {
  background-color: #000;
  padding-left: 6rem;
  padding-right: 6rem;
  border: 10px solid;
  border-image: linear-gradient(to right, #ffbb00, #ed614c);
  border-image-slice: 1;
}

/*よくある質問
-------------------------------------*/

.accordion-007 {
  margin-bottom: 30px;
}

.accordion-007 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border: 2px solid #fabd00;
  border-radius: 5px;
  color: #333;
  font-weight: 600;
  cursor: pointer;
}

.accordion-007 summary::-webkit-details-marker {
  display: none;
}

.accordion-007 summary::before,
.accordion-007 summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background-color: #fabd00;
  content: '';
}

.accordion-007 summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion-007 summary::after {
  transition: rotate .3s;
}

.accordion-007[open] summary::after {
  rotate: 90deg;
}

.accordion-007 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin-top: 20px;
  padding: .8em 1.2em;
  border: 2px solid #fabd00;
  border-radius: 5px;
  background-color: #fff;
  color: #333333;
  transition: transform .5s, opacity .5s;
}

.accordion-007[open] p {
  transform: none;
  opacity: 1;
}

.accordion-007 p::before,
.accordion-007 p::after {
  position: absolute;
  top: -15px;
  left: 1.2em;
  width: 30px;
  height: 15px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  content: '';
}

.accordion-007 p::before {
  background-color: #fabd00;
}

.accordion-007 p::after {
  top: -12px;
  background-color: #fff;
}

/*会社概要
-------------------------------------*/
table {
  border-collapse: collapse;
  width: 100%;
}

.tb01 th,
.tb01 td {
  padding: 20px;
  border: solid 1px #ecdeb5;
  text-align: left;
  box-sizing: border-box;
}

.tb01 th {
  background: #fff0c5;
  color: #000;
  font-weight: 500;

}

.tb01 td {
  background-color: #fff;
}

@media screen and (max-width: 640px) {
  .tb01 {
    width: 100%;
  }

  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

}

/* Googleマップ
-------------------------------------*/
.gmap {
  margin: 3rem 0;
}


/*コピーライト
-------------------------------------*/
.copyright {
  text-align: center;
  padding: 1rem 0;
  background-color: #fabd00;
}

.copyright a {
  color: var(--white-color);
  text-decoration: none;
  display: inline;
}

/*フローティングボタン
-------------------------------------*/
.floating-banner {
  display: block;
  position: fixed;
  z-index: 9999;
  bottom: 150px;
  margin-bottom: 0;
  right: 40px;
  margin-left: 650px;
  width: auto;
}

.floating-banner::after {
  transform: rotate(-45deg);
}

.floating-banner:hover{
  animation: zoom .4s; /* アニメーション */
}
@keyframes zoom {
  50% {
    transform:translate(0, -20px);
  }
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 50px;
  right: 40px;
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  background: #d44114;
  border: 4px solid #d44114;
  padding-top: 30px;
  text-align: center;
  text-decoration: none;
  opacity: 1;
}
#pagetop::after {
  content: "";
  display: block;
  border-top: 2px solid var(--base-color);
  border-right: 2px solid var(--base-color);
  width: 25%;
  height: 25%;
  top: 45%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}
#pagetop:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
#pagetop {
display: none!important;
}
}

/* 下層ページヘッダー
-------------------------------------*/
.subimg {
  height: 350px;
  background: url("../img/subimg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 2rem;
}

.subimg h1 {
  height: 350px;
  line-height: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-color);
  text-shadow: 1px 2px 3px var(--link-color);
  margin: 0;
}

/* パンくずリスト
-----------------------------------*/
.breadcrumb {
  margin: 0 0 1em 0;
  padding: 0;
}

.breadcrumb li {
  list-style-type: none;
}

.breadcrumb li a {
  display: inline-block;
  color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px) {

  /*ヘッダー
-------------------------------------*/
  .header-box {
    display: none;
  }

  /*スマホ用メニュー
-------------------------------------*/
  .spnavi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    text-decoration: none;
    background-color: var(--link-color);
    color: var(--white-color);
  }

  .spnavi a {
    display: inline-block;
    color: var(--white-color);
  }

  .spnavi a:hover {
    opacity: 0.9;
    background-color: var(--link-color);
    color: var(--white-color);
  }

  .spnavi::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--white-color);
    border-right: 2px solid var(--white-color);
    transform: rotate(45deg);
  }

  /*メイン画像
-------------------------------------*/
  #mainimg h1 {
    height: 350px;
  }

}