@charset "utf-8";
/*  
  リセット
---------------------------------*/
html, body, div, span,iframe,h1, h2, h3, h4, h5, h6, p, address, em, img, small, strong, b, i,dl, dt, dd, ol, ul, li,form, label, table, caption, tbody, tfoot, thead, tr, th, td,article, aside, figcaption, figure, footer, header,nav, section, time,video,a {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  box-sizing: border-box;
  font-style: normal;
}
article,aside,figcaption,figure,footer,header,nav,section { 
  display:block;
}
ul,ol{
  list-style:none;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
th{
  font-weight: normal;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
*{min-height:0vw;/*safari clamp関数対策 */}

/*  
  リセット
---------------------------------*/

/*  
  変数　
-----------------institution----------------*/
:root{
  /* テーマカラー */
	--theme-red:#ed828b;/* ポムリエ(柔らかい赤) */
  --theme-orange:#eba067;/* ポムリエアルファ（オレンジ） */
  --theme-yellow:#ebd05c;/* ポムリエサード（黄） */  
  --theme-blue:#67d0db;/* 児童発達支援事業所（青） */  
  --theme-green:#7acc93;/* サポートセンターポムリエ（緑） */
  --theme-purple:#be80ac;/* 保育所等訪問支援サービス（紫） */
  /* テーマカラー 透過 */
  --theme-red-op10:rgba(237,130,139,.1);
  --theme-red-op25:rgba(237,130,139,.25);
  --theme-red-op30:rgba(237,130,139,.3);
  --theme-red-op50:rgba(237,130,139,.5);
  --theme-orange-op10:rgba(235,160,103,.1);
  --theme-orange-op15:rgba(235,160,103,.15);
  --theme-orange-op50:rgba(235,160,103,.5);
  --theme-yellow-op10:rgba(235,208,92,.1);
  --theme-yellow-op50:rgba(235,208,92,.5);
  --theme-blue-op10:rgba(103,208,219,.1); 
  --theme-blue-op25:rgba(103,208,219,.25); 
  --theme-blue-op30:rgba(103,208,219,.3); 
  --theme-blue-op50:rgba(103,208,219,.5);
  --theme-green-op10:rgba(122, 204, 147,.1);
  --theme-green-op25:rgba(122, 204, 147,.25);
  --theme-green-op50:rgba(122, 204, 147,.5);
  --theme-purple-op10:rgba(190,128,172,.1);
  --theme-purple-op25:rgba(190,128,172,.25);
  --theme-purple-op35:rgba(190,128,172,.35);
  --theme-purple-op50:rgba(190,128,172,.5);
  /* その他　色 */
  --lightgreen:#bce5c9;
  --lightblue:#b9e9ee;
  --white:#fff;
  --lightpink:#f9d6d9;
  --darkpink:#E17E86;
  --color-basefont:#454948;
  /* 文字サイズ */
  --font15-13:clamp(13px,1.5rem,15px);
  --font16-14:clamp(14px,1.6rem,16px);
  --font18-16:clamp(16px,1.8rem,18px);
  --font20-18:clamp(18px,2rem,20px);
  --font22-20:clamp(20px,2.2rem,22px);
}



/* ====================================

  基本幅（PC）

======================================*/

/*  
  各要素　基本幅
---------------------------------*/
html{
  font-size:10px;/* 1rem = 10pxと定義 */
}
body{
  color: var(--color-basefont);
  line-height: 1.5;
  font-family:'Roboto','Zen Kaku Gothic New',sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  font-size:18px;
}
h1,h2,h3,h4,h5{
  line-height: 1.4;
  font-weight: 500;
}
a {
  text-decoration: none;
  transition:filter .2s;
  color:var(--font-color);
}
a:hover{
  filter: brightness(85%) contrast(130%);
}
main{
  width: min(100%,2560px);
  margin-left: auto;
  margin-right: auto;
}
main p{
  line-height:2;
}


/*  
  ヘッダー　　基本幅
---------------------------------*/
header{
  background: var(--white);
  text-align: center;
  font-size:18px;
  position: sticky;
  top: 0;
  z-index: 2;
  line-height: 1.4;
  box-shadow: 0 2px 2px -2px #ccc;
  width: min(100%,2560px);
  margin: auto;
}
h1{
  font-size:1.4rem;
  position:fixed;
  width:min(98%,1360px);
  top:5px;
  left: 0;
  right: 0;
  margin:auto;
  padding-left:.2%;
  z-index: 3;
}
header a{
  display: block;
}
header #header-contact{
  width: auto;
  height: 35px;
  white-space: nowrap;
  position: absolute;
  right:0;
  top:0;
}
header #header-contact a{
  background: var(--theme-red);
  color: var(--white);
  display: block;
  border-radius: 0 0 0 20px;
  line-height: 25px;
  padding:5px;
  width: 320px;
  position: absolute;
  top:0;
  right: 0;
  transition: transform .3s;
}
header #header-contact a:hover{
  transform: translateY(-3px);
}
header #header-contact i{
  font-size:1.2em;
}
header #header-contact i:last-of-type{
  margin:auto .75em auto .5em;
}
header .header-inner{
  width: min(100%,1920px);
  margin:0 auto;
  height: 80px;
}
header .header-inner::after{
  content:"";
  background:var(--white);
  display: inline-block;
  width: 150px;
  height: 75px;
  border-radius:0 0 150px 150px;
  margin-top: -75px;
}

header #header-logo img{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  z-index: 3;
  top:7px;
  width: 60px;
}


header #g-nav-list{
  width: min(98%,1360px);
  margin:auto;
  display: flex;
  justify-content: space-around;
  padding-top: 34px;
  /*gap:0 32.5rem;*/
  gap:0 26rem;
}

/* ヘッダーナビ　*/
header nav li{
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
header nav li.mobile-only{
  display: none
}

/* メインメニュー　*/
header nav .main-menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin:auto;
  width: calc((100% - 23rem) / 2)
}
header nav .main-menu > li{
  transition:all .3s;
}
header nav .main-menu > li > a{
  padding:11px 1%;
}
header nav .main-menu > li:hover{
  transform: translateY(-5px);
}
header nav .main-menu > li > a::after {
  content: '';
  height: 4px;
  display: inline-block;
  background:var(--theme-green);
  position: absolute;
  bottom: 8px;
  left:0;
  right:0;
  border-radius: 2px;
  opacity: 0;
  transition: .5s;
}
header nav .main-menu > li:hover a::after {
  opacity: 1; 
}
header nav .main-menu li.has-child a::after{
  background: none;
}


/* サブメニュー */
header nav .sub-menu{
  position: absolute;
  width:100%;
  top:50px;
  transition: all .3s;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
}
header nav .sub-menu.service{
  width:16em;
  left: calc((16em - 100%) / -2 );
}
header nav .sub-menu.soudan{
  width:14em;
  left: calc((14em - 100%) / -2 );
}
header nav .sub-menu.institution{
  width:14em;
  left: calc((14em - 100%) / -2 );
}
header nav .sub-menu.unei{
  width:8em;
  left: calc((8em - 100%) / -2 );
}
header nav .sub-menu.development{
  width:14em;
  left: 0;
}
header nav li.has-child:hover .sub-menu{
  visibility: visible;
  opacity: 1;
  transform: translateY(-6px);
}
header nav .sub-menu a{
  border-radius: 50px;
  line-height: 50px;
  margin-bottom: 4px;
  background: var(--white);
}
header nav .sub-menu.service a{
  background:var(--lightblue);
}
header nav .sub-menu.soudan a{
  background: #fbdbc1;
}
header nav .sub-menu.institution a{
  background:var(--lightpink);
}

header nav .sub-menu.development a{
  background:var(--lightgreen);
}

header nav .sub-menu.unei a{
  background: #f6eec1;
}
header nav .sub-menu.topics-blogs a{
  background:var(--lightgreen);
}

.logo-back{
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position:fixed;
  left: 50%;
  top:-50px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 3px #ccc;
  z-index:1;
}



/*  
  ホーム　基本幅
---------------------------------*/
/* ホームのメイン画像 */
.p-home #hero{
  position: relative;
}
.p-home #hero img{
  object-fit: cover;
  max-height:calc(100vh - 100px);
  width: 100%;
}
.p-home #hero .copy {
  width: min(90%,1360px);
  position: absolute;
  inset:0;
  margin: auto;
  display: grid;
  align-content: center;
  color:var(--white);
  font-weight: 900;
  font-size:clamp(25px,4vw,55px);
}

/* ホームの●●について */
.p-home .about-wrap{
  width: min(100%,2560px);
  margin:auto;
  padding:5rem 0;
}
.p-home .about-wrap:nth-of-type(1){
  background: url("../img/home/bg_2circles.svg") no-repeat right 5% top 1rem/42rem auto;
  padding-top: 10rem;
}
.p-home .about-wrap:nth-of-type(3){
  background: url("../img/home/bg_dots.svg") no-repeat left 1% top/55.6rem auto;
  padding-bottom: 10rem;
}
.p-home .about-container{
  display: flex;
  justify-content: space-between;
  gap:3rem 0;
  align-items: center;
}
.p-home .about-wrap:nth-of-type(odd) .about-container{
  flex-direction: row-reverse
}
.p-home .about-text{
  width: 48.5%;
  display: flex;
  flex-direction: column;
}
.p-home .about-text h2{
  margin:2rem auto 2rem 0;
}
.p-home .about-more{
  margin:auto auto 2rem 0;
  padding-top: 1em;
  width: 100%;
}
.p-home .about-more.pc-none .btn01{
  margin:auto;
}
.p-home .about-container figure{
  width:48%;
  max-width: 600px;
}
.p-home .about-img img{
  border-radius: 5rem;
}

/* ホーム　自立した生活ができるように */
.p-home #self{
  background-color: #dbf4f7;
  background-image:url("../img/home/bg_self1920w.png");
  background-size:cover;
  background-position:right bottom;
  width: min(100%,2560px);
  min-height: 65rem;
  margin: auto;
  display:flex;
  align-items: center;
  justify-content: center;
  padding:8rem 0;
  position: relative;
}
.p-home #self::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: 30px;
  background-image:url("../img/home/bg_self-top1920w.png");
  background-position: center;
  background-size: cover;
}
.p-home #self p{
  line-height: 2.8;
}

/* ホームのギャラリー */
.p-home #gallery ul{
  display: flex;
}
.p-home #gallery ul li:first-child,
.p-home #gallery ul li:last-child{
  width: calc(100% / 5 * 0.95);
}
.p-home #gallery ul li:first-child img,
.p-home #gallery ul li:last-child img{
  object-fit: cover;
  height: 100%;
  object-position:right;
}
.p-home #gallery ul li:last-child img{
  object-position:left;
}

/* ホームの施設一覧 */
.p-home #institution{
  background: #fef4e8;
  padding:7rem 0 10rem;
  text-align: center;
}
.p-home #institution .ins-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:3rem 1rem;
  margin-top: 3rem;
}
.p-home #institution section{
  width: 32.5%;
  max-width: 660px;
  background: var(--white);
  border-radius: 6.5rem;
}
.p-home #institution section a{
  border:5px solid var(--theme-red);
  border-radius: 6.5rem;
  background: var(--white);
  display:flex;
  flex-direction: column;
  height: 100%;
  padding:0 5% 5%;
}
.p-home #institution .alpha a{ border-color: var(--theme-orange)}
.p-home #institution .third a{ border-color: var(--theme-yellow)}
.p-home #institution .child a{ border-color: var(--theme-blue)}
.p-home #institution .support a{ border-color: var(--theme-green)}
.p-home #institution .houmon a{ border-color: var(--theme-purple)}
.p-home #institution  a::before{
  content:"";
  width:8rem;
  height:4rem;
  background:var(--theme-red);
  display: block;
  border-radius:0 0 100px 100px;
  margin:-1.5px auto 0;
}

.p-home #institution .alpha a::before{background: var(--theme-orange)}
.p-home #institution .third a::before{background: var(--theme-yellow)}
.p-home #institution .child a::before{background: var(--theme-blue)}
.p-home #institution .support a::before{background: var(--theme-green)}
.p-home #institution .houmon a::before{background: var(--theme-purple)}
.p-home #institution h3{
  height: 2.6rem;
  display: flex;
  margin:1rem auto .5rem;
  justify-content: center;
  align-items: center
}
.p-home #institution section a:hover{
  filter: none;
  background: var(--theme-red-op10);
}
.p-home #institution .alpha a:hover{ background: var(--theme-orange-op10)}
.p-home #institution .third a:hover{ background: var(--theme-yellow-op10)}
.p-home #institution .child a:hover{ background: var(--theme-blue-op10)}
.p-home #institution .support a:hover{ background: var(--theme-green-op10)}
.p-home #institution .houmon a:hover{ background: var(--theme-purple-op10)}

.p-home #institution h3 span{
  font-size: 2.2rem;
  font-weight: 700;
}
.p-home #institution h3 img{
  height: 100%;
  width: auto;
}
.p-home #institution .ins-add{
  font-size: var(--font16-14);
  line-height: 1.3;
  margin: .75rem auto;
}


.p-home #institution ul{
  margin:.5rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 300px;
  gap:5px;
  align-content:center
}

.p-home #institution li{
  background: var(--theme-red-op25);
  border-radius: 10px;
  font-size: var(--font16-14);
  padding:.1em 1em;
}

.p-home #institution .ins-summary{
  text-align:justify;
  margin: .75rem auto auto;
  max-width: 370px;
}
.p-home #institution dl{
  margin: auto auto 1.5rem;
}
.p-home #institution .alpha dl{
  min-height: 12rem
}
.p-home #institution dt{
  border-bottom: 2px solid var(--theme-red);
  display: inline-block;
  padding:0 .5rem;
  margin:2rem auto .5rem;
}
.p-home #institution section.alpha dt{border-color: var(--theme-orange)}
.p-home #institution section.third dt{border-color: var(--theme-yellow)}
.p-home #institution section.child dt{border-color: var(--theme-blue)}
.p-home #institution section.support dt{border-color: var(--theme-green)}
.p-home #institution section.houmon dt{border-color: var(--theme-purple)}
.p-home #institution .btn01{
  margin:0 auto;
  max-width: 370px;
}
.p-home #institution dd{
  text-align: left;
  margin-bottom: .25em;
}
.p-home #institution dd .kakomi{
  background: var(--theme-red-op25);
  display: inline-block;
  font-size: .88em;
  border-radius: 50%;
  line-height: 1;
  padding:.4em;
  margin-right: .2em;
}


/*  
  サブページ共通　基本幅
---------------------------------*/
/* メインコンテンツ */
main.p-sub{
  margin-bottom: 16rem;
}
/* サブページタイトル */
.page-ttlBox{
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  /*height:min(30rem,50vh);*/
  height:min(17rem,50vh);
  position: relative;
  font-size:3.6rem;
  z-index: -2;
}
.page-ttlBox > img{
  width:100%;
  object-fit: cover;
  position: absolute;
  inset:0;
  height: 100%;
  z-index: -1;
}

.page-ttlBox .ttl-text{
  padding:1rem 2.5% 0;
  color: var(--white);
  text-shadow: 0 0 .1em var(--color-basefont),0 0 .2em var(--color-basefont);
}
.page-ttlBox .ttl-img img{
  width:auto;
  height: 4rem;
} 

/* パンくず */
#bread{
  width:min(90%,1360px);
  font-size: var(--font16-14);
  margin: .5em auto;
  text-transform: uppercase;
}
#bread li{
  display: inline-block;
}
#bread li:not(:last-child)::after{
  padding:0 .2em;
  content:"＞";
  font-size:.8em;
}

/* ページ内ナビ */
.p-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.p-nav li {
  border: var(--theme-red) solid 1px;
  border-radius: 10px;
  padding: 1rem;
  line-height: 1.4;
  width: calc(100% / 4 - 1rem);
  text-align: center;
}
.p-nav li a {
  display: block;
}
.p-nav li:hover {
  background: var(--theme-red-op10);
}

.inst-list{
  display: flex;
  flex-wrap: wrap;
  gap:3rem 0;
  justify-content: space-between;
  margin: 5rem auto auto;
}
.inst-list li{
  width:250px;
  margin: auto;
}
#flow .flow-list{
  position: relative;
  max-width: 1100px;
  margin:4rem auto auto 1rem;
  counter-reset: number 0;
  line-height: 2;
}
#flow .flow-list li:not(:last-child)::after{
  position: absolute;
  top: 3rem;
  left: calc(1.5rem - 1px);
  display: block;
  height: calc(100% + 1.5rem);
  content: ""; 
  border-left: 2px solid var(--theme-red);
}
#flow .flow-list.blue-type li:not(:last-child)::after{
  border-left: 2px solid var(--theme-blue);
}
#flow .flow-list.purple-type li:not(:last-child)::after{
  border-left: 2px solid var(--theme-purple);
}
#flow .flow-list li{
  position: relative;
  padding-left: 6rem;
  margin-bottom: 5rem;;
}
#flow .flow-list li::before{
  width: 5rem;
  height: 5rem;
  background-color: var(--theme-red);
  display:inline-block;
  border-radius: 50%;
  counter-increment: number 1;
  content: counter(number,decimal-leading-zero);
  position: absolute;
  left: -1rem;
  top: -.5rem;
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  line-height: 5rem;
}
#flow .flow-list.blue-type li::before{
  background-color: var(--theme-blue);
}
#flow .flow-list.purple-type li::before{
  background-color: var(--theme-purple);
}
.p-sub #institution .inst-container{
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  text-align: center;
  margin:4rem auto -4rem;
  gap:6rem 3rem;
}
.p-sub #institution .inst-container section{
  width:min(300px,100%);
}
.p-sub #institution .inst-container a{
  display: block;
}
.p-sub #institution .inst-container p{
  line-height: 1.5;
}
.p-sub #institution .inst-container .btn02{
  width: 250px;
  margin: 3rem auto 1rem;
}

/*  
  発達障害について 基本幅
---------------------------------*/
.p-developmental .list-wrap,
.p-developmental .text-wrap{
  padding:clamp(1.5rem,3%,4rem) clamp(2rem,5%,4.5rem);
  margin:3rem auto;
  font-size: var(--font16-14);
  text-align: justify;
}
.p-developmental .list-wrap{
  display: flex;
  align-content: center;
  gap:3rem 1%;
}
.p-developmental #adhd .list-wrap{
  flex-direction: column;
}
.p-developmental .list-wrap li{
  padding:.55em 0;
  break-inside:avoid;
}
.p-developmental #adhd .list-wrap ul{
  column-count: 2;
  column-gap: 1.5em;
}
.p-developmental .list-wrap figure{
  width:39%;
  margin: auto;
}

.list-desorders {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.list-desorders li {
  width: calc(100% / 3 - 1rem);
  text-align: center;
  padding: 0 3rem 8rem 3rem;
  border: var(--theme-green-op50) 5px solid;
  border-radius: 6.5rem;
  position: relative;
}
.list-desorders li:hover {
  background: var(--theme-green-op25);
}
.list-desorders li::before {
  content: "";
  width: 8rem;
  height: 4rem;
  background: var(--theme-green-op50);
  display: block;
  border-radius: 0 0 100px 100px;
  margin: 0 auto;
}
.list-desorders a {
  display: block;
  height: 100%;
}
.list-desorders a:hover {
  filter: none;
}
.list-desorders a::after {
  content: "詳しく見る";
  right: 4.5rem;
  bottom: 3rem;
  position: absolute;
}
.list-desorders li dt {
  font-size: 2.2rem;
  margin-top: 2rem;
}
.list-desorders li dd {
  margin-top: 2rem;
}
.list-desorders li img {
  max-height: 200px;
  margin: 0 auto;
}
.list-desorders li p {
  text-align: left;
  margin-top: 2rem;
}

/*  
  放課後デイサービスについて 基本幅
---------------------------------*/

.p-houkagoday .cost-table{
  width: 100%;
  margin: 2rem auto 1rem;
}
.p-houkagoday .cost-table th,
.p-houkagoday .cost-table td{
  border:.5px solid;
  vertical-align: middle;
}
.p-houkagoday .cost-table th{
  background: var(--theme-red-op25);
  padding:.65em 1.5rem;
}
.p-houkagoday .cost-table td{
  padding:.65em 3rem;
}
.p-houkagoday .cost-table tr td:last-child{
  text-align: right;
}



/*  
  施設詳細　基本幅
---------------------------------*/
.p-institution .info-link{
  display: flex;
  justify-content: flex-end;
  gap:1.5em;
  width: min(90%,1360px);
  margin:auto auto 3rem;
}
.p-institution .info-link a::before{
  content: "";
  display: inline-block;
  background-size:cover;
  height: 2.2rem;
  vertical-align: middle;
  margin-right: .25em;
}
.p-institution .info-link li:nth-child(1) a::before{
  background-image:url("../img/common/icon_news.svg");
  width: 3.1rem;
}
.p-institution .info-link li:nth-child(2) a::before{
  background-image:url("../img/common/icon_blog.svg");
  width: 2.3rem;
}

.p-institution .tab{
	display: flex;
  width: min(95%,1360px);
  margin: 6rem auto 0;
  justify-content: center;
  text-align: center;
  gap:clamp(5px,3%,40px);
  line-height: 1.3;
  font-size:clamp(17px,1.8rem,18px);
}
.p-institution .tab li{
  flex:1;
  max-width: 31rem;
}
.p-institution .tab li a{
	display: block;
	padding:1.25em .5em 1em;
  border-radius: 1rem 1rem 0 0;
  height: 100%;
  background: var(--theme-red-op25);
}
.p-institution .tab li a:hover,
.p-institution .tab li.active a{
	color: var(--white);
  filter: none;
  background: var(--theme-red);
  font-weight: 700;
  cursor:pointer;
}
.p-institution .tab li.child a{
  background: var(--theme-blue-op25);
}
.p-institution .tab li.child a:hover,
.p-institution .tab li.child.active a{
  background: var(--theme-blue);
}
.p-institution .tab li.houmon a{
  background: var(--theme-purple-op35);
}
.p-institution .tab li.houmon a:hover{
  background: var(--theme-purple);
}
.p-institution .tab li.houmon.active a{
  background: var(--theme-purple);
  border-radius: 1rem;
}
.p-institution .tab li.keikaku.active a{
  background: var(--theme-green);
  border-radius: 1rem;
}
.p-institution .area {
	display: none;
	opacity: 0;
	background: #fff;
  width: 100%;
}
.p-institution .area.active{
  display: block;
  opacity: 1
}
.p-institution .area::before{
  content:"";
  display:block;
  width:min(95%,1360px);
  height:12px;
  background:var(--theme-red);
  margin:0 auto;
}
.p-institution .area#child-development::before{
  background:var(--theme-blue);
}
.p-institution .area .area-inner{
  margin-top:6rem;
  display: none;
  opacity: 0;
}
.p-institution .area.active .area-inner{
  animation-name: displayAnime01;
  animation-duration:.25s;
  animation-fill-mode: forwards;
  display: block;
}
@keyframes displayAnime01{
	0%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.p-institution .wrap-info-orange{
  background: #FFF6EF;
  margin-bottom: -220px;
  padding-bottom: 60px;
  animation-name: displayAnime02;
  animation-duration:2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime02{
	0%,50%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.p-institution section[id^="aim"] {
  background: #FBE4E6;
  border-radius: 2rem;
  padding:3rem 2.5% 1rem;
  text-align: center;
  margin:3rem auto;
}
.p-institution section[id^="aim"] h4{
  font-size: 2.2rem;
}
.p-institution section[id^="aim"] .aim-container{
  display: flex;
  justify-content: space-between;
}
.p-institution section[id^="aim"] section{
  display: flex;
  flex:1;
  flex-direction: column;
  padding:3rem 2.5rem 2rem;
  background: #FBE4E6;
  border-radius: 1.8rem;
  max-width: 540px;
  margin:0 auto;
}
.p-institution section[id^="aim"] h5{
  font-size: 2.2rem;
  background: var(--white);
  width: 8.4rem;
  height: 8.4rem;
  line-height: 8.4rem;
  margin:0 auto 2rem;
  border-radius: 50%;
  color:var(--theme-red);
  font-weight: bold
}
.p-institution section[id^="aim"] figure{
  aspect-ratio:4/3;
  display:grid;
  place-items:center;
  max-width:200px;
  margin: 0 auto;
}
.p-institution section[id^="aim"] p{
  margin:1em auto 0;
  border-top: 2px dotted #E07E86;
  padding-top:1em;
  text-align: justify;
  width: 100%;
}
.p-institution .wrap-wave-orange{
  background: #FFF6EF;
  position: relative;
  margin-bottom: -220px;
  padding-bottom: 60px;
}
.p-institution .wrap-wave-orange::before{
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  display: block;
  height: 30px;
  background-image: url("../img/common/bg_wave-orange-top.png");
  background-size: cover;
}
.p-institution section[id^="summary"] {
  width: min(86%,1100px);
  margin-left:auto;
  margin-right: auto;
  padding-top: 3rem;
}
.p-institution section[id^="summary"] .summary-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:3.25rem 0;
  margin:3rem auto;
}
.p-institution section[id^="summary"] .summary-container figure:not(.w100per),
.p-institution section[id^="summary"] .summary-container > div{
  width:49%;
}
.p-institution section[id^="summary"] .summary-container > div{
  margin-top: 3rem;
}
.p-institution figcaption{
  font-size: var( --font16-14);
  margin-top: .5em;
  line-height: 1.4;
}
.p-institution section[id^="summary"] table,
.p-institution section[id^="summary"] iframe{
  width: 100%;
}
.p-institution section[id^="summary"] tr{
  border-top:.5px solid;
}
.p-institution section[id^="summary"] tr:last-child{
  border-bottom:.5px solid;
}
.p-institution section[id^="summary"] th,
.p-institution section[id^="summary"] td{
  padding: 1em .5em;
  vertical-align: middle;
}
.p-institution section[id^="summary"] th{
  width: 7em;
  min-width: 4em;
}
.p-institution section[id^="summary"] iframe{
  height:41rem;
}
.p-institution #flow .flow-container{
  display: flex;
  gap:3rem 2.5%;
  margin:3rem auto 9rem;
}
.p-institution #flow .flow-container > section,
.p-institution #flow .flow-container > div{
  border-radius: 3rem;
  flex:1;
}
.p-institution #flow .flow-container > section,
.p-institution #flow .flow-container > div > section{
  border-radius: 3rem;
  padding-bottom: 1em;
}
.p-institution #flow .flow-container > div > section:first-child{
  margin-bottom:6rem;
}

.p-institution #flow section section,
.p-institution #flow section > p{
  width: min(90%,500px);
  padding:1.5em 0 1em;
  margin: auto;
}
.p-institution #flow h4{
  display: flex;
  align-items: center;
  gap:.5em;
  color: var(--darkpink);
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.p-institution #flow h4[class^="clock"]::before{
  content:"";
  width:5rem;
  height: 5rem;
  background-position: left center;
  background-size: cover;
}
.p-institution #flow .clock0000::before{
  background-image: url("../img/institution/clock0000.svg");
}
.p-institution #flow .clock0930::before{
  background-image: url("../img/institution/clock0930.svg");
}
.p-institution #flow .clock1000::before{
  background-image: url("../img/institution/clock1000.svg");
}
.p-institution #flow .clock1010::before{
  background-image: url("../img/institution/clock1010.svg");
}
.p-institution #flow .clock1155::before{
  background-image: url("../img/institution/clock1155.svg");
}
.p-institution #flow .clock1200::before{
  background-image: url("../img/institution/clock1200.svg");
}
.p-institution #flow .clock1300::before{
  background-image: url("../img/institution/clock1300.svg");
}
.p-institution #flow .clock1400::before{
  background-image: url("../img/institution/clock1400.svg");
}
.p-institution #flow .clock1500::before{
  background-image: url("../img/institution/clock1500.svg");
}
.p-institution #flow .clock1530::before{
  background-image: url("../img/institution/clock1530.svg");
}
.p-institution #flow .clock1600::before{
  background-image: url("../img/institution/clock1600.svg");
}
.p-institution #flow .clock1610::before{
  background-image: url("../img/institution/clock1610.svg");
}
.p-institution #flow .clock1615::before{
  background-image: url("../img/institution/clock1615.svg");
}
.p-institution #flow .clock1630::before{
  background-image: url("../img/institution/clock1630.svg");
}
.p-institution #flow .clock1645::before{
  background-image: url("../img/institution/clock1645.svg");
}
.p-institution #flow .clock1650::before{
  background-image: url("../img/institution/clock1650.svg");
}
.p-institution #flow .clock1700::before{
  background-image: url("../img/institution/clock1700.svg");
}
.p-institution #flow .clock1740::before{
  background-image: url("../img/institution/clock1740.svg");
}
.p-institution #flow li,
.p-institution #flow li p{
  line-height: 2;
}
.p-institution #flow ul.schedule > li{
  margin:.5rem auto 0;
}
.p-institution #flow ul.schedule > li::before{
  content:"●";
  color: var(--darkpink);
}
.p-institution #flow figure{
   margin:.5em auto 1em;
   display: inline-block;
}
.p-institution #flow .notice{
  background: #FBE4E6;
  border-radius: .5rem;
  padding:1rem 1.75rem;
  margin:1rem auto;
  text-align: justify;
}
.p-institution #flow .kugiri{
  border-top: .5px solid;
}
.p-institution #flow h3{
  border-radius: 3rem 3rem 0 0;
  font-size: var(--font22-20);
  text-align: center;
  padding:1.45em .5em;
}
.p-institution #weekday{
  background: var(--white);
}
.p-institution #weekend,
.p-institution #holiday{
  background:#FFFBDA;
}
.p-institution #weekday h3{
  background:var(--theme-blue);
  color: var(--white);
}
.p-institution #weekend h3,
.p-institution #holiday h3{
  background:var(--theme-red);
  color: var(--white);
}
.p-institution #flow-child .flow-2col{
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
  gap:5rem 5%;
  justify-content: center;
}
.p-institution #flow-child .flow-2col > section{
  width: min(100%,21em);
}
.p-institution .flow-hosoku {
  font-size: var(--font16-14);
  line-height: 1.6;
  text-align: center;
}
.p-institution #flow .flow-hosoku {
  margin:-7rem auto 7rem 2.5%;
}
.p-institution #flow-child .flow-hosoku {
  margin-top: 6rem;
  text-align: center;
}
.p-institution #information{
  background: #FFF6EF;
  margin-top: 15rem;
}



/*  
  施設詳細　ポムリエアルファ 基本幅
---------------------------------*/
.p-pomurie-alpha #program .program-container{
  display: flex;
  flex-wrap: wrap;
}
.p-pomurie-alpha #program section{
  width:calc(100% / 3);
  padding:.5em 1em;
  border-left:.5px solid;
  margin: 4rem auto 0;
}
.p-pomurie-alpha #program section:nth-child(3n){
  border-right:.5px solid;
}
.p-pomurie-alpha #program h4{
  text-align: center;
  color: var(--white);
  background: var(--theme-orange);
  font-size: var(--font20-18);
  border-radius: 1rem;
  padding:.06em .5em;
}
.p-pomurie-alpha #program figure{
  aspect-ratio:11/8;
  text-align: center;
  margin: 1.5rem auto;
  max-width: 220px;
  display: grid;
  place-items: center;
}
.p-pomurie-alpha #program img{
  object-fit: cover;
}
.p-pomurie-alpha #program section p,
.p-pomurie-alpha #program dl{
  padding: 0 0 1.5em;
  font-size: var(--font16-14);
  text-align: justify;
}
.p-pomurie-alpha #program dl::after{
  content:"";
  display: block;
  clear: both;
}
.p-pomurie-alpha #program dt{
  color: var(--white);
  background: var(--theme-orange);
  display: inline-block;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  padding:1em .5em;
  line-height: 1;
  float: left;
  margin:.25em 1em auto 0;
}
.p-pomurie-alpha #program dd{
  line-height: 1.8;
  overflow: hidden;
}

/*  
  施設詳細　サポートセンターポムリエ 基本幅
---------------------------------*/
.p-pomurie-support .town-list{
  display: flex;
  flex-wrap: wrap;
  gap:1em;
  margin-top: 2em;
}
.p-pomurie-support .town-list dd{
  width: calc(100% - 4em);
}

/*  
  運営会社　基本幅
---------------------------------*/
.p-company #philosophy li{
  background: var(--lightpink);
  text-align: center;
  font-size: 2.2rem;
  border-radius: 2rem;
  padding: .85em .75em;
}
.p-company #philosophy li:not(:last-child){
  margin-bottom: 1em;
}
.p-company #policy li{
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.8;
}
.p-company #policy li:not(:last-child){
  margin-bottom: 1em;
}
.p-company #policy li::before{
  content:"●";
  color: var(--theme-blue);
}
.p-company .photo-office img{
  display: block;
  margin: 6rem auto;
  width: min(100%,600px);
  border-radius: 3rem;
}
.p-company .list-business li:not(:last-child) ul{
  margin-bottom: 1.5em;
}
.p-company .list-business ul li{
  margin-left: 1em;
  text-indent: -1em;
  margin-top: .3em;
}
.p-company .list-business ul li::before{
  content:"・";
}
.p-company .table-overview{
  width: 100%;
  margin-top: 1rem;
}
.p-company .table-overview tr{
  border-top: .5px solid;
}
.p-company .table-overview tr:last-child{
  border-bottom: .5px solid;
}
.p-company .table-overview th,
.p-company .table-overview td{
  padding:1.65em 1.25em;
}
.p-company .table-overview th{
  text-align: left;
  min-width: 8.5em;
}
.p-company .facilities-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:3rem 1.5rem;
}
.p-company .facilities-container dl,
.p-company .facilities-container div{
  width:calc(50% - 1.5rem);
}
.p-company .facilities-container iframe{
  width: 100%;
  height: 30rem;
}
.p-company .list-history{
  display: flex;
  flex-wrap: wrap;
  gap:1.25em 0;
}
.p-company .list-history dt{
  width:5em;
}
.p-company .list-history dd{
  width: calc(100% - 5.5em);
}

/*  
  フッター　基本幅
---------------------------------*/
/* フッターのお問い合わせ */
footer .footer-contact{
  text-align: center;
  background-image: url("../img/common/bg_footer-nav.png");
  background-size: cover;
  background-position: center top;
  position: relative;
  margin:-30px auto 0;
  padding:10rem .5%;
  width:min(100%,2560px);
}
footer .footer-contact h2{
  font-size: 2.8rem;
  margin-bottom: 3rem;
}
footer .contact-btn{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:3rem 2.5%;
  margin:6rem auto;
}
footer .contact-btn li{
  width: min(100%,500px);
}
footer .footer-contact .btn01{
  color: var(--white);
  margin: auto;
  line-height: 8rem;
  height: 8rem;
  padding:0 2em 0 3em;
  font-size:2.6rem;
  white-space: nowrap;
}
footer .footer-contact .btn01:hover{
  filter: brightness(85%) contrast(130%);
}
footer .contact-btn .btn01.tel span{
  font-size:3.8rem;
  letter-spacing: .05rem;
  text-indent: -.05rem;
}
footer .contact-btn .btn01 i{
  position: absolute;
  left:2em;
  top:50%;
  transform: translateY(-50%)
}
footer .contact-btn .btn01.tel i{
  font-size:1.2em;
}
footer .contact-btn .btn01.tel::after{
  display: none
}
/* フッターのナビ */
footer .footer-nav{
  position: relative;
  padding:10rem 0;
  width:min(100%,2560px);
  margin: auto;
}
footer .footer-nav::before{
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  bottom:60px;
  display: block;
  height: 30px;
  background-image:url("../img/common/bg_footer-nav-top.png");
  background-size:  cover;
}
footer .nav-container{
  display: flex;
  gap:0 5%;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-nav h2{
  font-size: var(--font16-14);
  text-align: center;
  margin-bottom: 5rem;
}
footer .footer-nav h2 img{
  width: 11rem;
  display: block;
  margin: auto auto .5em;
}
footer .footer-nav .footer-menu{
  display: flex;
  justify-content: space-around;
  gap:0 5%;
  width: min(100%,760px);
}
footer .footer-nav li{
  padding:.4em 0
}


/* フッターの施設一覧 */
footer .footer-institution{
  text-align: center;
  padding:3rem 0;
}
footer .footer-institution .ins-container{
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap:6rem 5%;
  width:min(90%,960px);
  margin: 6rem auto;
}
footer .footer-institution section{
  display: flex;
  flex-direction: column;
}
footer .footer-institution h3{
  margin:0 auto;
  min-width: 14em;
}
footer .footer-institution h3 a{
  color: var(--white);
  display: block;
  border-radius: 1.3rem;
  padding:.1em .75em;
} 
footer .footer-institution .footer-add{
  font-size:var(--font16-14);
  margin:auto;
  padding:1rem 0;
}

/* 著作権 */
footer #copyright{
  background: url("../img/common/bg_copy.svg") no-repeat center top /cover;
  text-align: center;
  font-size: var(--font16-14);
  min-height: 0vw;/*safari*/
  padding:3.5rem 5% 3rem;
  text-transform: uppercase;
}
/* ページトップ */
#pagetop img{
  width: 8.3rem;
  height: 8.3rem;
}
#pagetop {
  position: fixed;
  right: 2rem;
  opacity: 0;
}
#pagetop.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
  opacity: 0;
  }
  to {
  opacity: 1;
  }
}
#pagetop.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}


/*  
  その他　基本幅
---------------------------------*/
/* 見出し */
.ttl01{
  font-size:var(--font22-20);
  min-height: 0vw;/*safari*/
  display: flex;
  align-items: center;
  gap:0 1rem;
}
.ttl01::before{
  content:"";
  min-width:3.8rem;
  height:7.6rem;
  border-radius:0 100px 100px 0;
  background:var(--theme-red-op50);
  display: inline-block;
}
.ttl01.circle-orange::before{background: var(--theme-orange)}
.ttl01.circle-green::before{background: var(--theme-green-op50)}
.ttl01.circle-blue::before{background: var(--theme-blue-op50)}
.ttl02{
  font-size:2.4rem;
  text-align: center;
}
.ttl02::before{
  content: "";
  display: block;
  background: url("../img/common/icon_pomurie.svg") no-repeat;
  margin: auto auto .25em;
  /*width:9rem;
  height:8.5rem;*/
  width:7.2rem;
  height: 6.8rem;
}

/* ボタン */
.btn01{
  background: var(--theme-red);
  display: block;
  width:min(100%,500px);
  text-align: center;
  line-height:1.4;
  font-size:var(--font16-14);
  border-radius: 4rem;
  padding:2.85rem 5rem;
  position: relative;
}
a:hover .btn01,
.btn01:hover{
  color: var(--white);
  filter: none;
}
.btn01::after{
  font: var(--fa-font-solid);
  content:"\f061";
  font-size:3.3rem;
  color:var(--white);
  position: absolute;
  right: 3.5rem;
  top:50%;
  transform: translateY(-50%);
  transition:right .3s;
}
a:hover .btn01::after,
.btn01:hover::after{
  right:1.5rem;
}
.btn01.btn-red{
  background:var(--theme-red-op50);
}
.btn01.btn-green{
  background:var(--theme-green-op50);
}
a:hover .btn01.btn-green,
.btn01.btn-green:hover{
  background:var(--theme-green);
}
.btn01.btn-blue{
  background:var(--theme-blue-op50);
}
.btn01.btn-blue:hover{
  background:var(--theme-blue);
}
.btn01.white-green{
  background: var(--white);
  border:2px solid var(--theme-green-op50);
  margin: auto;
}
.btn01.white-green::after{
  color:var(--theme-green);
}
.btn01.white-green:hover{
  background:var(--theme-green);
}
.btn01.white-green:hover::after{
  color:var(--white);
}
.btn02{
  background: var(--theme-red);
  color: var(--white);
  display: block;
  border-radius: 1.3rem;
  padding: .1em .75em;
  text-align: center;
}
.underline-thick{
  background-image: linear-gradient(transparent 80%,var(--theme-red-op25) 0);
  padding-bottom: .25em;
}
.blue-type .underline-thick {
  background-image: linear-gradient(transparent 80%,var(--theme-blue-op30) 0);
}
.purple-type .underline-thick {
  background-image: linear-gradient(transparent 80%,var(--theme-purple-op25) 0);
}


/* 表 */
.table01{
  width: 100%;
}
.table01 th,
.table01 td{
  border:.5px solid;
  padding:.5em clamp(.25em,2.5%,1.5em);
}
.table01 th{
  border:.5px solid;
  background: var(--lightpink);
}
.table01 td{
  background: var(--white);
}
.table01.text-center tr{
  text-align: center;
}
.table01.text-horizontal-center tr{
  text-align: center;
}
.table01.text-vertical-center tr,
.table01.text-vertical-center td{
  vertical-align: middle;
}

/* 各ページのお知らせ・療育ブログ */
/* 施設カテゴリー */

.list-category {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1rem;
}

.news-category.pomurie,
.news-category{
  background: var(--theme-red);
  color: var(--white);
  font-size: var(--font15-13);
  border-radius: 10px; 
  line-height: 3rem;
  text-align: center;
  padding: 0 1em;
  display: inline-block;
  min-width: 10em;
  margin:.5rem 0;
}
.news-category.alpha{background: var(--theme-orange)}
.news-category.third{background: var(--theme-yellow)}
.news-category.service{background: var(--theme-blue)}
.news-category.supprt{background: var(--theme-green)}
.news-category.houmon{background: var(--theme-purple)}

#information{
  background: #fef4e8;
  padding-bottom: 7rem;
}
#information .info-container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap:6rem 0;
  margin:3rem auto;
}
#information section{
  width: 48.5%;
  max-width: 660px;
  background: var(--white);
  margin-top: 3rem;
  border-radius: 6.5rem;
  padding:3.5rem 5%;
  display: flex;
  flex-direction: column;
}
#information section h3,
#information h4{
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
#information section h3::before,
#information h4::before{
  content: "";
  display: inline-block;
  background-size:cover;
  height: 3rem;
  vertical-align: middle;
  margin-right: .25em;
}
#information #news h3::before,
#information #news h4::before{
  background-image:url("../img/common/icon_news.svg");
  width: 4.2rem;
}
#information #blog h3::before,
#information #blog h4::before{
  background-image:url("../img/common/icon_blog.svg");
  width: 3.2rem;
}
#information li a{
  display: block;
  padding:1rem 0;
}
#information li:not(:last-child) a{
  border-bottom: 1px dotted;
}
#information li a::after{
  content: "";
  display: block;
  clear: both;
}
#information .info-more{
  margin: auto auto 0;
  padding-top: 3rem;
  width: min(100%,350px);
}

.p-institution #information .news-category {  /* 施設ページでカテゴリーは非表示 */
  display: none;
}
.p-institution #information section {
  max-width: unset;
  border-radius: 3rem;
}
#information img[class$="-img"]{
  border-radius: 3rem;
  width: 22%;
  max-width: 12rem;
  margin-right: 3%;
  float:left;
}

#information dt,
#information dd[class$="-text"]{
  font-size: var(--font16-14);
  overflow: hidden;
}


/* リストマーク */
.list-disc li{
  margin-left:1.25em;
  text-indent: -1.25em;
  padding:.25em 0;
}
.list-kome li{
  margin-left:1em;
  text-indent: -1em;
  padding:.25em 0;
}
.list-disc li::before{
  padding-right: .25em;
  content:"●";
}
.list-kome li::before{
  content:"※";
}
.list-disc.disc-red li::before{
  color: var(--theme-red);
}
.list-disc.disc-green li::before{
  color: var(--theme-green);
}

/* 文字サイズ */
.font30rem{font-size:3rem}
.font16-14{font-size:var(--font16-14)}


/* 文字種 */
.upper{text-transform: uppercase}

/* 文字飾り */
.underline{text-decoration: underline}

/* 折り返し */
.nowrap{white-space: nowrap}
.breakall{word-break: break-all;}

/* 配置 */
.center{text-align: center}
.pc-center{text-align: center}
.left{text-align: left}
.right{text-align: right}

/* ボックス幅 */
.w-inner{width:min(86%,1360px)}
.w90per{width: 90%}
.w100per{width: 100%}
.w-inner,
.w90per,
.w100per{
  margin-left: auto;
  margin-right: auto;
}

.max350{max-width: 350px}
.max500{max-width: 500px}
.max660{max-width: 660px}
.max800{max-width: 800px}
.max960{max-width: 960px}
.max1000{max-width: 1000px}
.max1100{max-width: 1100px}
.max1360{max-width: 1360px}
.max1920{max-width: 1920px}

/* 前景色 */
.white{color: var(--white)}

/* 背景色 */
.bg-red{background-color:var(--theme-red)!important}
.bg-red-op25{background-color:var(--theme-red-op25)}
.bg-red-op50{background-color:var(--theme-red-op50)}
.bg-orange{background-color: var(--theme-orange)!important}
.bg-orange-op15{background-color: var(--theme-orange-op15)!important}
.bg-orange-op50{background-color: var(--theme-orange-op50)}
.bg-yellow{background-color: var(--theme-yellow)!important}
.bg-yellow-op50{background-color: var(--theme-yellow-op50)}
.bg-blue{background-color: var(--theme-blue)!important}
.bg-blue-op25{background-color: var(--theme-blue-op25)!important}
.bg-green{background-color: var(--theme-green)!important}
.bg-green-op25{background-color:var(--theme-green-op25)!important}
.bg-green-op50{background-color:var(--theme-green-op50)!important}
.bg-blue-op50{background-color:var(--theme-blue-op50)!important}
.bg-blue-op30{background-color:var(--theme-blue-op30)!important}
.bg-purple{background-color: var(--theme-purple)!important}
.bg-purple-op25{background-color: var(--theme-purple-op25)!important}


/* 余白 */
.mt1em{margin-top: 1em}
.mt1rem{margin-top:1rem}
.mt2rem{margin-top:2rem!important}
.mt3rem{margin-top:3rem!important}
.mt4rem{margin-top:4rem}
.mt6rem{margin-top: 6rem}
.mt8rem{margin-top: 8rem}
.mt10rem{margin-top: 10rem}
.mt12rem{margin-top: 12rem}
.ml1em{margin-left: 1em}
.mb1em{margin-bottom: 1em}
.mb1rem{margin-bottom: 1rem}
.pt2rem{padding-top: 2rem}
.pt3rem{padding-top: 3rem}
.pt6rem{padding-top: 6rem}
.pb6rem{padding-bottom: 6rem}
.pb8rem{padding-bottom: 8rem}

/* telリンク無効 */
a[href^="tel:"] {
  pointer-events: none;
}

/* 表示・非表示 */
.pc-none{
  display: none;
}



/*  
  スクロールしたら出現（動き）
---------------------------------*/
/* その場で */
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(5rem);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/* 左から */
.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-6rem);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */
.fadeRight{
  animation-name:fadeRightAnime;
  animation-delay: 0.5s;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(6rem);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}
/* 最初は非表示 */
.fadeInTrigger,
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}
.delay-time05{  
  animation-delay: 0.5s;
}
.delay-time1{  
  animation-delay: 1s;
}
.delay-time15{  
  animation-delay: 1.5s;
}
.delay-time2{  
  animation-delay: 2s;
}

/* ====================================

  1921px以上

======================================*/

@media screen and (min-width:1921px) {

  html{
    font-size: 11px;/* 1rem = 11pxと定義 */
  }
  .p-home #self{
    min-height:80rem;
  }
  
  .page-ttlBox{
    height:min(30rem,50vh);
  }

}

/* ====================================

  1366px以下：小型PC 

======================================*/

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

  html{
    font-size: 9.5px;/* 1rem = 9.5pxと定義 */
  }
  
}


/* ====================================

  1280px以下：小型PC 

======================================*/

@media screen and (max-width:1280px) {
  html{
    font-size: 9.3px;/* 1rem = 9.3pxと定義 */
  }

/*  
  ヘッダー　1280px以下
  （ここからハンバーガーメニュー）
---------------------------------*/
  header .header-inner{
    height: 65px;
  }
  header .header-inner::after{
    margin-top: 2px;
  }
  h1{
    display: none;
  }

  header #header-logo img {
    height: 60px;
    top: 4px;
    width: auto;
  }

  .logo-back {
    top: -73px;
  }


  header #header-contact{
    left: 0
  }
  header #header-contact a{
    left:0;
    width: 65px;
    height: 65px;
    border-radius: 0;
    padding-top: 4px;
    line-height: 36px;
  }
  header #header-contact a:hover{
    transform: none;
  }
  header #header-contact i:last-of-type{
    margin: auto auto auto 1rem;
  }
  header #header-contact a > span{
     display: block;
     font-size:12px;
     letter-spacing: -.125em;
     line-height: 20px;
   }
   header #header-contact span span{
     display: none;
   }
  header .openbtn{
    position:fixed;
    top:0;
    right:0;
    cursor: pointer; 
    width: 65px;
    height: 65px;
    background:#ec6d45;
  }
  .openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 17px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 50%;
  }
  .openbtn span:nth-of-type(1) {
    top: 17px;
  }
  .openbtn span:nth-of-type(2) {
    top: 31px;
  }
  .openbtn span:nth-of-type(3) {
    top: 46px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 20.5px;
    transform: translateY(9.6px) rotate(-45deg);
    width: 30%;
    left: 24px;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3){
    top: 40px;
    transform: translateY(-9.6px) rotate(45deg);
    width: 30%;
    left: 24px
  }
  header nav{
    position:fixed;
    top:65px;
    right: -520px;
    width:100%;
    max-width: 520px;
    height: 100vh;
    background:#fef4e8;
    transition: all 0.6s;
    display: block;
    text-align: left;
    z-index: -1;
  }
  /*ナビゲーションの縦スクロール*/
   header nav.panelactive #g-nav-list{
    position: fixed;
    max-width: inherit;
    height: calc(100vh - 65px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    width:100%;
    padding: 4rem 0 10rem;
  }
  header nav.panelactive{
    right: 0;
  }
  
  /* メニュー */
  header nav li{
    white-space: inherit;
  }
  header nav li a{
    border-bottom: 1px solid;
    position: relative;
  }
  header nav li a::before{
    content: "";
    display: block;
    position: absolute;
    right:.25em;
    top:50%;
    transform: translateY(-50%);
  }
  /* メインーメニュー */
  header nav .main-menu {
    display: none;
    height: auto;
    margin:auto;
    width: 90%;
    max-width: 18em;
  }
  header nav .main-menu:nth-of-type(2){
    padding-left: 0;
  }
  header nav .main-menu > li > a::before{
    background:url("../img/common/allow_black.svg");
    width: 13px;
    height:13px;
  }
  header nav.panelactive .main-menu {
    display: block;
  }
  header nav .main-menu .mobile-only{
    display: block
  }
  header nav .main-menu > li:hover{
    transform: none;
  }
  header nav .main-menu > li > a{
    padding:1.5rem 2rem 1.5rem 1.5rem;
  }
  header nav .main-menu > li > a::after{
    display: none;
  }
  header nav .main-menu li.has-child:hover{
    cursor:pointer;
  }
  header nav .main-menu li.has-child > a::before{
    font: var(--fa-font-solid);
    right:.35em;
    content:"\2b";
    background: none;
    font-size: 16px;
    height: auto;
  }
  header nav .main-menu li.has-child.active > a::before{
    content:"\f068";
  }

  
  /* サブメニュー  */
  header nav li.has-child .sub-menu{
    position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;
    opacity:1;
    display: none;
    transition:none;
  }

  header nav .sub-menu.service a,
  header nav .sub-menu.soudan a,
  header nav .sub-menu.institution a,
  header nav .sub-menu.unei a,
  header nav .sub-menu.topics-blogs a,
  header nav .sub-menu.development a{
    border-radius: 0;
    line-height:inherit;
    margin-bottom: auto;
    background: none;
    padding:1.5rem 1rem 1.5rem 2em;
  }
  header nav li.has-child:hover .sub-menu{
    transform: none;
  }
  header nav .sub-menu a::before{
    font: var(--fa-font-solid);
    left:1.25em;
    content:"\f105";
    font-size: 16px;
  }
  header .pc-service,
  header .pc-topics-blogs,
  header .pc-soudan,
  header .pc-unei{
    display: none;
  }

  /*  
    ホーム　1280px以下
  ---------------------------------*/
  /* ホームのメイン画像 */
  .p-home #hero img{
    max-height:calc(100vh - 80px);
  }
  /* ホームの施設案内 */
  .p-home #institution section{
    width: 48%;
  }

  
  /*  
  サブページ共通　1280px以下
  ---------------------------------*/
  /* サブページタイトル */
  .p-developmental .page-ttlBox img,
  .p-houkagoday .page-ttlBox img{
    object-position: 75% center;
  }
  
}


/* ====================================

  960px以下：タブレット・スマホ横

======================================*/
@media screen and (max-width:960px){
  html{
    font-size: 9px;/* 1rem = 9pxと定義 */
  }
  body{
    font-size:17px;
  }
  
  /*  
    ホーム　960px以下
  ---------------------------------*/
  /* ホームの●●について */
  .p-home .about-container,
  .p-home .about-wrap:nth-of-type(2n+1) .about-container{
    flex-direction: column;
  }
  .p-home .about-text,
  .p-home .about-container figure{
    width: 100%;   
  }
  .p-home .about-wrap:nth-of-type(1){
    background-size: 60% auto;
    background-position: right -10% top 2rem;
  }
  .p-home .about-wrap:nth-of-type(3){
    background-position: left -5% bottom 20rem;
    background-size: 70% auto;
  }  
  /* ホームの自立した生活ができるように */
  .p-home #self{
    background-position:80% bottom;
  }
  /* ホームの施設一覧 */
  .p-home #institution section{
    width: 100%;
    margin: auto;
  }
  .p-home #institution .ins-summary{
    max-width: inherit;
  }
  .p-home #institution .alpha dl,
  .p-home #institution .child .ins-add,
  .p-home #institution .support .ins-add {
    min-height: inherit;
  }
  .p-home #institution li{
    width: 100%;
  }
    
  /*  
    サブページ共通　960px以下
  ---------------------------------*/
  /* ページ内ナビ */
  .p-nav li {
    width: calc(100% / 3 - 1rem);
  }

  /* お知らせ */
  #information section{
    width: 100%;
    margin:auto;
  }

  /*  
    発達障害について　960px以下
  ---------------------------------*/
  .p-developmental .list-wrap{
    flex-direction: column;
  }
  .p-developmental #adhd .list-wrap ul{
    column-count: 2;
    column-width: 25em;
  }
  .p-developmental .list-wrap figure{
    width: 70%;
    margin:0 auto;
  }
  .list-desorders li {
    width: calc(100% / 2 - 1rem);
  }
  
  /*  
    放課後デイサービスについて　960px以下
  ---------------------------------*/
  .p-houkagoday .cost-table th,
  .p-houkagoday .cost-table td{
    padding:.5em .5rem;
    font-size: var(--font16-14);
  }

  
  
  /*  
    施設詳細　960px以下
  ---------------------------------*/

  .p-institution section[id^="summary"] .summary-container > div{
    width:100%;
  }
  .p-institution section[id^="summary"] .summary-container .map-wrap{
    margin-top: 0;
  }
  .p-institution #flow .flow-container{
    flex-direction: column;
  }
  
  /*  
    施設詳細　ポムリエアルファ 960px以下
  ---------------------------------*/
  .p-pomurie-alpha #program section{
    width:calc(100% / 2);
  }
  .p-pomurie-alpha #program section:nth-child(3n){
    border-right:none;
  }
  .p-pomurie-alpha #program section:nth-child(2n){
    border-right:.5px solid;
  }
  
  /*  
    運営会社 960px以下
  ---------------------------------*/
  .p-company .table-overview th,
  .p-company .table-overview td{
    padding:1.5em .5em;
  }
  .p-company .table-overview th{
    min-width: 5em;
  }
  .p-company .facilities-container{
    gap:1rem;
  }
  .p-company .facilities-container dl,
  .p-company .facilities-container div{
    width:100%;
  }
   .p-company .facilities-container div:not(:last-child){
     margin-bottom: 4rem
   }
   
  
  
  /*  
    その他　960px以下
  ---------------------------------*/
  /* 配置 */
  .pc-center{
    text-align:initial;
  }
  /* 表示・非表示 */
  .pc-none{
    display: block;
  }
  .pc-only{
    display: none;
  }
  
  /*  
    スクロールしたら出現（動き） 960px以下
  ---------------------------------*/
  /* モバイルでは逆方向（右から） */
  .fadeLeft.mobile-reverse{
    animation-name:fadeLeftAnime-reverse;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
  }
  @keyframes fadeLeftAnime-reverse{
    from {
      opacity: 0;
    transform: translateX(6rem);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }

  /* モバイルでは逆方向（左から） */
  .fadeRight.mobile-reverse{
    animation-name:fadeRightAnime-reverse;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
  }
  @keyframes fadeRightAnime-reverse{
    from {
      opacity: 0;
    transform: translateX(-6rem);
    }

    to {
      opacity: 1;
    transform: translateX(0);
    }
  }


}


@media screen and (max-width:768px){
  html{
    font-size: 8.5px;/* 1rem = 8.5pxと定義 */
  }

  /*  
    施設詳細　768px以下
  ---------------------------------*/
  .p-institution .tab{
    gap:1%;
  }
  .p-institution .tab li{
    flex:1;
    margin-left: auto;
    margin-right: auto;
  }
  .p-institution section[id^="aim"] {
    background:inherit;
    }
  .p-institution section[id^="aim"] .aim-container{
    flex-direction: column;
    margin-top: 2rem;
    gap:2.5rem;
    }
  .p-institution section[id^="aim"] section{
    width: 100%;
    }
  .p-institution section[id^="aim"] figure{
    aspect-ratio:inherit;
    }
  .p-institution section[id^="aim"] p{
    border-top: none;
    margin-top: 0;
  }


  /*  
    フッター　768px以下
  ---------------------------------*/
  footer .nav-container{
    justify-content: space-around;
  }
  footer .footer-nav .footer-menu{
    flex-direction: column;
    max-width: 16em;
    margin: auto;
  }
}


/* ====================================

  520px以下：スマホ縦  

======================================*/

@media screen and (max-width:520px){
  html{
    font-size: 8px;/* 1rem = 8pxと定義 */
  }
  body{
    font-size:16px;
  }
  
  /*  
    ホーム　520px以下
  ---------------------------------*/
  /* ホームのメイン画像 */
  .p-home #hero .copy{ 
     font-size:8vw
  }
  /* ホームの施設案内 */
  .p-home #institution section a{
    border:none;
  }
  .p-home #institution  a::before{
    margin:0 auto;
  }
  .p-home #institution ul{
    width: 100%;
  }
  
  /* ホームの自立した生活ができるように */
  .p-home #self{
    background-image:url("../img/home/bg_self780w.png");
    background-position: center bottom;
    height: auto;
    min-height:500px;
  }
  .p-home #self p{
    line-height: 2;
  }
  
  /*  
    サブページ共通　520px以下
  ---------------------------------*/
  /* サブページタイトル */
  .page-ttlBox{
    height: 15rem;
  }

  /* ページ内ナビ */
  .p-nav li {
    width: calc(100% / 2 - 1rem);
  }
  
  #flow .flow-list{
    margin-left: -1rem;
  }
  #flow .flow-list li:not(:last-child)::after,
  #flow .flow-list.blue-type li:not(:last-child)::after,
  #flow .flow-list.purple-type li:not(:last-child)::after{
    border:none;
  }
  #flow .flow-list li::before{
    left: 0;
  }

  /*  
    発達障害ついて　520px以下
  ---------------------------------*/
  .list-desorders {
    row-gap: 3rem;
  }
  .list-desorders li {
    width: 100%;
  }

  /*  
    放課後デイサービスについて　520px以下
  ---------------------------------*/
  .p-houkagoday .cost-table tr th:first-child{
    width: calc(1em + 1rem);
  }


  /*  
    施設詳細　520px以下
  ---------------------------------*/
  .p-institution .tab{
    justify-content: space-between;
    font-size: clamp(15px,3.46vw,18px);
  }
  .p-institution section[id^="summary"] figure:not(:first-child){
    width: 100%;
  }
  .p-institution section[id^="summary"] th,
  .p-institution section[id^="summary"] td{
    display: block;
  }
  .p-institution section[id^="summary"] th{
    padding-bottom: 0;
    text-align: left;
  }
  .p-institution .flow-hosoku {
    text-align:left;
  }
  
  /*  
    施設詳細　ポムリエアルファ 520px以下
  ---------------------------------*/
  .p-pomurie-alpha #program section{
    width:100%;
  }
  .p-pomurie-alpha #program section,
  .p-pomurie-alpha #program section:nth-child(2n){
    border:none;
    padding:0;
  }
  .p-pomurie-alpha #program figure{
    aspect-ratio:inherit;
  }
  .p-pomurie-alpha #program section p,
  .p-pomurie-alpha #program dl{
    padding:0 1em 1.5em;
  }
  
  /*  
    運営会社 520px以下
  ---------------------------------*/
  .p-company .table-overview th,
  .p-company .table-overview td{
    display: block;
  }
  .p-company .table-overview th{
    padding:1.25em .5em .5em;
  }
  .p-company .table-overview td{
    padding:.5em .5em 1.25em;
  }
  .p-company .facilities-container{
    margin-top: 4rem;
  }
  .p-company .list-history{
    gap:0;
  }
  .p-company .list-history dt,
  .p-company .list-history dd{
    width: 100%;
  }
  .p-company .list-history dt:not(:first-child){
    margin-top: 1em;
  }

  /*  
    フッター　520px以下
  ---------------------------------*/
  /* フッターのお問い合わせ */
  footer .footer-contact .btn01{
    font-size: 5vw;
    padding:0 1em;
  }
  footer .contact-btn .btn01.tel::after{
    display: block;
  }
  footer .contact-btn .btn01 i{
    left:4rem;
  }
  /* フッターのナビ */
  footer .nav-container{
    flex-direction:column;
  }
  footer .footer-nav .footer-menu > ul{
    margin: auto;
    width: 16em;
  }
  
  /*  
    その他　520px以下
  ---------------------------------*/  
  /* ボタン */
  .btn01{
    padding:1.9rem 5rem;
  }
  /* 配置 */
  .sp-left{
    text-align: left;
  }
  /* telリンク有効 */
  a[href^="tel:"] {
      pointer-events:auto;
  }
  /* 表示・非表示 */
  .sp-none{
    display: none;
  }
  
}
  
/* ====================================

  320px以下：小型スマホ縦  

======================================*/
@media screen and (max-width:320px){
  html{
    font-size: 7px;/* 1rem = 7pxと定義 */
  }
}

/* ====================================

  print

======================================*/
@media print{
  body{
    width: 1360px;
  }
  #pagetop{
    display: none;
  }
.fadeInTrigger
.fadeInTrigger-child,
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 1;
  }
}

