@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  position: relative;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 16px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
  line-height: 1.9;
  overflow: auto;
}
.hamopen {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
a {
  text-decoration: none;
  transition: .4s;
}
a:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
button:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
ul, ol {
  list-style: none;
  padding: 0;
}
/*main section*/
main {
  display: block;
  position: relative;
  overflow: hidden;
}
main section {
  padding: 100px 0 115px;
  position: relative;
}
main section.stb {
  padding: 110px 0;
}
@media (max-width: 550px) {
  main section {
    padding: 60px 0 70px;
  }
  main section.stb {
    padding: 65px 0;
  }
}
.pdb {
  padding-bottom: 55px !important;
}
.pdb0 {
  padding-bottom: 1px !important;
}
@media (max-width: 550px) {
  .pdb {
    padding-bottom: 20px !important;
  }
}
/*img*/
img {
  line-height: 1;
  vertical-align: top;
  max-width: 100%;
  transition: .4s;
}
.mask01 img, .mask02 img {
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.mask01 img {
  mask-image: url(../img/mask01.svg);
  -webkit-mask-image: url(../img/mask01.svg);
}
.mask02 img {
  mask-image: url(../img/mask02.svg);
  -webkit-mask-image: url(../img/mask02.svg);
}
/*text*/
p {
  margin-bottom: 10px;
}
.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.45em;
  text-decoration-color: rgba(255, 239, 135, 0.55);
  text-underline-offset: -0.05em;
  text-decoration-skip-ink: none;
}
/*中央寄せ*/
.center {
  text-align: center;
}
@media (max-width:750px) {
  .spcenter {
    text-align: center !important;
  }
}
.fitc {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/* 見出し */
.maintitle {
  margin-bottom: 55px;
  display: block;
  text-align: center;
  line-height: 0.5;
  position: relative;
  font-weight: 600;
  font-size: clamp(2.3rem, 1.175rem + 3.6vw, 3.2rem);
  color: #00cf82; /*#4ad483*/
}
.maintitle .mf {
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
}
.maintitle.mtleft {
  text-align: left;
}
.txtmgb {
  margin-bottom: 33px !important;
}
.maintitle .sf {
  font-size: 41%;
  line-height: 1.45;
  display: inline-block;
  margin-top: 22px;
}
@media (max-width: 550px) {
  .maintitle .sf {
    margin-top: 17px;
  }
  .maintitle {
    margin-bottom: 35px;
  }
  .txtmgb {
    margin-bottom: 25px !important;
  }
}
/*02*/
.mtitle {
  font-weight: 600;
  position: relative;
  border-radius: 3px;
  margin-bottom: 17px;
  letter-spacing: 0.1em;
  font-size: clamp(1.15rem, 0.775rem + 1.2vw, 1.45rem);
  line-height: 1.7;
  background: #00bacf;
  color: #fff;
  padding: 12px 25px 15px 9px;
  border-left: 6px solid rgba(255, 255, 255, 0.4);
}
.mtitle span:not(.ib) {
  font-size: 80%;
}
.mtitle::after {
  content: '';
  width: 20px;
  height: 2px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
section:nth-child(2n) .mtitle {
  background: #00cf82;
}
@media (max-width: 550px) {
  .mtitle {
    margin-bottom: 15px;
  }
}
/*03*/
.stitle {
  font-weight: 600;
  position: relative;
  font-size: clamp(1.25rem, 0.8125rem + 1.4vw, 1.6rem);
  padding-left: 2px;
  line-height: 1.75;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 2px dotted #00bacf;
}
.stitle .en {
  font-size: 80%;
  display: block;
  color: #00bacf;
}
section:nth-child(2n) .stitle {
  border-bottom: 2px dotted #00cf82;
}
section:nth-child(2n) .stitle .en {
  color: #00cf82;
}
/* ボタン */
.mainbtn a {
  overflow: hidden;
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 24px 0;
  width: 260px;
  border-radius: 50px;
  color: #fff;
  background: #00cf82;
  border: 2px solid #00cf82;
}
section .mainbtn a::before {
  position: absolute;
  top: 49%;
  right: 15px;
  transform: translateY(-50%) scale(1.3, 1);
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  font-weight: bold;
  line-height: 1;
  font-size: 120%;
  transition: .4s;
  z-index: 2;
  pointer-events: none;
}
section .mainbtn a:hover::before {
  right: 10px;
}
.mainbtn a:hover {
  color: #00cf82;
  background: #fff;
}
/*btn*/
.bluebtn a {
  background: #00bacf;
  color: #fff;
  border: 2px solid #00bacf;
}
.bluebtn a:hover {
  background: #fff;
  color: #00bacf;
}
/**/
.tbtn {
  margin-top: 37px;
}
/**/
.btnflex {
  margin-left: auto;
  margin-right: auto;
}
.btnflex a {
  margin: 1px 7px;
  display: inline-block;
}
@media (max-width: 750px) {
  .mainbtn a {
    max-width: 220px;
    width: 100%;
    padding: 17px 0;
  }
  .tbtn {
    margin-top: 30px;
  }
}
/* flex要素 */
.flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aic {
  align-items: center;
}
.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .flexbox {
    display: block;
  }
  .flexbox img {
    width: 100%;
  }
  .flexbox div {
    width: 100%;
  }
  .spmgb {
    margin-bottom: 35px;
  }
}
/* 幅 */
.inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .inner02 {
    max-width: 1500px;
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 1999px) {
  .inner02 {
    max-width: 100%;
    width: 100%;
  }
  .mauto {
    margin-left: auto;
    margin-right: auto;
  }
  .mauto.w48 {
    width: 42%;
  }
  .mauto.w43 {
    width: 37%;
  }
}
@media (max-width: 750px) {
  .inner02 {
    width: 88%;
    margin: 0 auto;
  }
  .mauto.w48, .mauto.w43 {
    width: 100%;
  }
}
.w65 {
  width: 64.5%;
}
.w52 {
  width: 52%;
}
.w48 {
  width: 48%;
}
.w43 {
  width: 43%;
}
.w32 {
  width: 32%;
}
/*background*/
.bg_gray::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  background: radial-gradient(#cff7ff 15%, transparent 15%) 0 0 / 12px 12px #f0feff;
}
.bg_gray_green::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  background: radial-gradient(#c2ffdb 15%, transparent 15%) 0 0 / 12px 12px #f0fff6;
}
.bg_wall {
  position: relative;
}
.bg_wall::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_wall.webp);
  background-size: 950px;
  background-repeat: repeat;
  background-position: center;
  z-index: -99;
  opacity: 0.32;
}
/*illust*/
.bg01::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/01.png), url(../img/_bg/02.png);
  background-repeat: no-repeat;
  background-position: top right, bottom left;
  background-size: 350px;
  z-index: -1;
  opacity: 0.7;
}
.bg02::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/02.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 350px;
  z-index: -1;
  opacity: 0.7;
}
.bg03::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/03.png), url(../img/_bg/04.png);
  background-repeat: no-repeat;
  background-position: top right, bottom left;
  background-size: 300px, 350px;
  z-index: -1;
  opacity: 0.7;
}
.bg04::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/05.png), url(../img/_bg/06.png);
  background-repeat: no-repeat;
  background-position: top right, bottom left;
  background-size: 350px;
  z-index: -1;
  opacity: 0.7;
}
@media (max-width: 885px) {
  .bg03::before {
    background-position: top right, bottom -10px left -10px;
    background-size: 31%, 50%;
  }
  .bg01::before, .bg02::before, .bg04::before {
    background-size: 31%;
  }
}
/*反転*/
.bgx::before, .bgx::after {
  pointer-events: none;
  transform: scaleX(-1);
}
.bgy::before, .bgy::after {
  pointer-events: none;
  transform: scaleY(-1);
}
.bgxy::before, .bgxy::after {
  pointer-events: none;
  transform: scaleX(-1) scaleY(-1);
}
/* wave */
.wave::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: url(../img/_bg/wave.svg) repeat-x;
  background-size: 2500px !important;
  background-position: bottom center !important;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: -4;
}
.wave.cream::before {
  background: url(../img/_illust/bg/wave_cream.svg) repeat-x;
  filter: none;
}
.wave.blue::before {
  background: url(../img/_illust/bg/wave_blue.svg) repeat-x;
  filter: none;
}
@media (max-width: 750px) {
  .wave::before {
    background-size: 655px !important;
  }
}
/* illust ==============================*/
.psr {
  position: relative;
}
/**/
.tl, .tr, .bl, .br {
  position: absolute !important;
  z-index: 1;
  pointer-events: none;
}
.tl img, .tr img, .bl img, .br img {
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
}
/**/
.tl, .tr, .bl, .br {
  width: fit-content !important;
}
.tl img, .tr img, .bl img, .br img {
  width: auto !important;
  height: 150px !important;
}
/**/
.psr .tl, .psr .tr, .psr .bl, .psr .br {
  width: 33% !important;
  max-width: 170px;
}
.psr .tl img, .psr .tr img, .psr .bl img, .psr .br img {
  width: 100% !important;
  height: auto !important;
  mask-image: none !important;
}
/*位置*/
.tl {
  top: -90px;
  left: 1.5%;
}
.tr {
  top: -90px;
  right: 1.5%;
}
.bl {
  bottom: -90px;
  left: 1.5%;
}
.br {
  bottom: -90px;
  right: 1.5%;
}
.psr .tl {
  top: 0;
  left: 0;
}
.psr .tr {
  top: 0;
  right: 0;
}
.psr .bl {
  bottom: 0;
  left: 0;
}
.psr .br {
  bottom: 0;
  right: 0;
}
/**/
.garland {
  position: absolute !important;
  top: -5px !important;
  left: -5px !important;
  width: 53% !important;
  max-width: 250px;
}
.garland img {
  width: 100% !important;
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
}
@media (max-width: 1180px) {
  .tl img, .tr img, .bl img, .br img {
    height: 100px !important;
  }
  .tl {
    top: -45px;
  }
  .tr {
    top: -45px;
  }
  .bl {
    bottom: -40px;
  }
  .br {
    bottom: -40px;
  }
}
@media (max-width: 550px) {
  .tl img, .tr img, .bl img, .br img {
    height: 80px !important;
  }
}
/*横に揺れる動き*/
.moving {
  display: block;
  width: 100%;
  animation: movinganime 1.9s cubic-bezier(0.7, 0.02, 0, 0.97) infinite;
}
.moving.rev {
  animation-direction: reverse;
  animation-delay: 0.95s !important;
}
@keyframes movinganime {
  0% {
    transform: rotate(0deg)
  }
  20% {
    transform: rotate(0deg)
  }
  30% {
    transform: rotate(-2deg)
  }
  80% {
    transform: rotate(-2deg)
  }
  83% {
    transform: rotate(0deg)
  }
}
/* アニメーション ============*/
/* flowup */
.flowup {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.3s, transform 1.3s;
  transition-delay: 0.35s;
}
.flowup.inview {
  opacity: 1;
  transform: translateY(0);
}
/*delay*/
.delay01 {
  transition-delay: 0.45s;
}
.delay02 {
  transition-delay: 0.6s;
}
@media (max-width: 750px) {
  .delay01, .delay02 {
    transition-delay: 0.3s !important;
  }
}
/* color ============*/
section:nth-child(2n+1) .maintitle {
  color: #00bacf;
}
section:nth-child(2n+1) .mainbtn a {
  background: #00bacf;
  color: #fff;
  border: 2px solid #00bacf;
}
section:nth-child(2n+1) .mainbtn a:hover {
  background: #fff;
  color: #00bacf;
}
/*=== 共通部分ここまで ===*/
/* header ================================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 5px 20px;
  transition: all .5s;
  background: #fff;
  box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.25);
}
.header_inner {
  width: 97%;
  margin: 0 auto;
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* logo */
.header_title a {
  width: 315px;
}
.header h1 {
  line-height: 1;
}
.logoflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logoflex img:first-of-type {
  width: 24.5%;
}
.logoflex img:last-of-type {
  width: 68.5%;
}
.header_title a:hover {
  opacity: 0.6;
}
/* menu */
.header_nav {
  width: fit-content;
  margin-left: auto;
}
.header_nav ul {
  display: flex;
  text-align: center;
}
.header_nav ul li {
  padding: 5px 15px;
  position: relative;
  line-height: 1.6;
  border-right: 1px dashed #ddd;
}
.header_nav ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.header_nav ul li a {
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  line-height: 1.4;
  font-size: 1.07rem;
  color: #333;
  white-space: nowrap;
}
.header_nav ul li a:hover {
  opacity: 0.6;
  transition: .3s;
}
.header ul li a .fa-lock {
  margin-right: 2px;
}
/**/
.header_item {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: fit-content;
  margin-bottom: 17px;
}
.header_item > div {
  margin: 0 3px;
}
.header_item .mainbtn a {
  width: 205px;
  line-height: 1;
  padding: 12px 0;
  font-size: 0.8rem;
}
/*tel*/
.tel {
  font-size: 1.37rem;
  line-height: 1.45;
  margin-right: 13px !important;
  display: flex;
  align-items: center;
}
.tel a {
  color: #333;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 2px dotted #00cf82;
}
.tel a i {
  margin-right: 4px;
  color: #00cf82;
}
.telnote {
  display: block;
  font-size: 0.87rem;
  padding-top: 1px;
  margin-right: 10px;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
}
.tel a:hover {
  opacity: 0.6;
  transition: .3s;
}
/*icon*/
.iconbtn a {
  font-size: 1.4rem;
  color: #00bacf;
}
.iconbtn a .fa-instagram {
  font-size: 115%;
}
.iconbtn a:hover {
  opacity: 0.6;
}
/* hamburger ================================= */
.header__inner {
  display: none;
}
.hamburger {
  position: fixed;
  display: block;
  height: 33px;
  z-index: 9999;
  width: 60px;
  border: none;
  background-color: transparent;
}
.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
  background: #00cf82 !important;
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
  background: #00cf82 !important;
}
.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  transition: inherit;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
  background: #00cf82;
}
.hamburger__line:before {
  top: -9px;
}
.hamburger__line:after {
  top: 9px;
}
/**/
.hamburger__text {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  text-align: center;
  color: #00cf82;
}
.hamburger__text::before {
  content: "menu";
  text-transform: capitalize;
}
.hamburger.-active .hamburger__text::before {
  content: 'close';
  position: relative;
  bottom: -9px;
  color: #00cf82 !important;
}
/**/
.header__nav-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.header__nav-area.-active {
  opacity: 1;
  visibility: visible;
}
.wr {
  position: relative;
  padding: 65px 0 100px;
  width: 100%;
  margin: auto;
}
.wr::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/_bg/01.png), url(../img/_bg/02.png);
  background-repeat: no-repeat;
  background-position: top right, bottom left;
  background-size: 250px;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}
/*logo*/
.hamlogo {
  position: relative;
  z-index: 1;
  max-width: 235px;
  width: 50%;
  margin: 0 auto 20px;
}
/**/
.global-navigation {
  margin: auto;
  height: fit-content;
  width: 85%;
  max-width: 620px;
}
.global-navigation__list {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.global-navigation__list li {
  width: 48%;
  border-bottom: 1px dashed #ddd;
}
.global-navigation__list li a {
  margin: 3px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  display: block;
  padding: 17px 0;
  color: #333;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.global-navigation__list a:hover {
  opacity: 0.6;
}
@media (max-width: 1250px) {
  .header_title a {
    width: 24vw;
  }
  .header_nav ul li a {
    font-size: 1.33vw;
  }
  .telnote {
    font-size: 1.1vw;
  }
  .tel a {
    font-size: 1.75vw;
  }
  .header .iconbtn a {
    font-size: 1.75vw;
  }
}
@media (max-width: 1075px) {
  .header_nav, .header_item {
    display: none;
  }
  .header__inner {
    display: block;
  }
  .header {
    padding: 18px 16px 22px;
  }
  .header_inner {
    width: 100%;
    display: block;
  }
  .header_title a {
    width: 270px;
  }
  .hamburger {
    top: 31px;
    right: 12px;
  }
}
@media (max-width: 550px) {
  .header {
    padding: 13px 10px 15px;
  }
  .hamburger {
    top: 19px;
    right: 5px;
  }
  .header_title a {
    width: 200px;
  }
  .wr::after {
    background-size: 165px;
  }
  .global-navigation__list {
    display: block;
  }
  .global-navigation__list li {
    width: 100%;
  }
  .global-navigation__list li a {
    font-size: 0.95rem;
    padding: 15px 0;
  }
  .global-navigation .mainbtn a {
    font-size: 0.93rem;
    max-width: 200px;
    padding: 13px;
  }
  .header__nav-area .fitc {
    font-size: 0.9rem;
  }
}
/* footer =======================================*/
.wide img {
  object-fit: cover;
  width: 100%;
  height: 330px;
}
@media (max-width: 1200px) {
  .wide img {
    height: 25vw;
  }
}
@media (max-width: 1050px) {
  .wide img {
    height: 35vw;
  }
}
@media (max-width: 550px) {
  .wide img {
    height: 48vw;
  }
}
/**/
.footer {
  position: relative;
  padding: 0 0 40px;
}
.footer.bg_gray::after {
  background: radial-gradient(#c2ffdb 15%, transparent 15%) 0 0 / 12px 12px #f0fff6;
}
.footer .maintitle span {
  color: #fff;
}
/*box*/
.fbox {
  position: relative;
  z-index: 1;
  padding: 35px 10px 25px;
  background: #fff;
  width: 92%;
  max-width: 950px;
  margin: auto;
  margin-top: -50px;
  border-radius: 15px;
}
.fbox .inner {
  max-width: 750px;
}
/*logo*/
.flogo {
  display: block;
  width: 97%;
  max-width: 290px;
  margin: 0 auto 13px;
}
.flogo a:hover {
  opacity: 0.6;
}
.details {
  margin-bottom: 25px;
}
.ib {
  display: inline-block;
}
/*TEL・FAX*/
.links {
  max-width: 550px;
  margin: auto;
  margin-bottom: 17px;
}
.telfax a {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #333;
  font-size: clamp(1.3rem, 0.8rem + 1.6vw, 1.7rem);
  white-space: nowrap;
  border-bottom: 2px dotted #00cf82;
  line-height: 1.5;
}
.telfax a span {
  font-size: 60%;
}
.telfax a:hover {
  opacity: 0.6;
}
.fax {
  pointer-events: none;
}
.telfax.fax a {
  border-bottom: 2px dotted #00bacf;
}
/*icon*/
.ficons {
  display: flex;
  justify-content: center;
}
.footer .ficons {
  margin-top: 2px;
}
.ficons .iconbtn {
  margin: 0 4px;
  width: fit-content !important;
}
/* copyright */
.copyright {
  text-align: center;
  padding-top: 35px;
}
@media (max-width: 750px) {
  .fbox {
    padding: 35px 5px 45px;
  }
  .flogo {
    margin-left: auto;
    margin-right: auto;
    max-width: 260px;
  }
  .details {
    width: fit-content !important;
    margin: 0 auto 20px;
  }
  .links {
    max-width: 300px;
    margin: auto;
  }
  .telfax a {
    margin-bottom: 10px;
    line-height: 1.7;
  }
  .footer .ficons {
    margin-top: 17px;
    justify-content: center;
  }
}
@media (max-width: 550px) {
  .footer {
    padding: 0 0 30px;
  }
  .fbox {
    padding: 33px 5px 20px;
    margin-top: -20px;
  }
  .flogo {
    max-width: 210px;
    margin-bottom: 15px;
  }
  .details p {
    font-size: 97%;
  }
  .fbox .iconbtn a {
    font-size: 1.27rem;
  }
  .copyright {
    padding-top: 25px;
    font-size: 0.9rem;
  }
}
/*ページ上に戻るボタン*/
.go_top {
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #00bacf;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 79;
  border-radius: 50px;
}
.go_top::before {
  font-family: "Font Awesome 6 Free";
  content: "\f124";
  font-weight: bold;
  color: #fff;
  font-size: 0.85rem;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.go_top:hover {
  opacity: 0.6;
}
.tfade {
  position: relative;
  z-index: 79;
}
@media(max-width:550px) {
  .go_top {
    width: 53px;
    height: 53px;
    right: 15px;
    bottom: 10px;
  }
  .go_top::before {
    font-size: 0.7rem;
  }
}
/* スライド =====================*/
.topslide {
  overflow: hidden;
  position: relative;
  clip-path: ellipse(130% 100% at top);
}
/* img */
.slide_items img {
  position: relative;
  margin: auto;
  overflow: hidden;
  height: calc(100vh - 135px);
  min-height: 670px;
  width: 100%;
  object-fit: cover;
}
/*スライドアニメーション*/
@keyframes fadezoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.slick-animation {
  animation: fadezoom 14s linear 0s normal both;
}
/* catchcopy */
.catchcopy {
  z-index: 1;
  width: 90%;
  max-width: 680px;
  position: absolute;
  bottom: 10%;
  left: 3%;
  filter: drop-shadow(1px 1px 0px white) drop-shadow(-1px -1px 0px white) drop-shadow(-1px 1px 0px white) drop-shadow(1px -1px 0px white);
}
@media (max-width: 1075px) {
  .slide_items img {
    height: 70vw;
    min-height: auto;
  }
  .catchcopy {
    max-width: 62vw;
  }
}
@media (max-width: 550px) {
  .slide_items img {
    height: 115vw;
    min-height: 380px;
  }
  .catchcopy {
    filter: drop-shadow(0.7px 0.7px 0px white) drop-shadow(0.7px 0.7px 0px white) drop-shadow(-0.7px 0.7px 0px white) drop-shadow(0.7px -0.7px 0px white);
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
  }
}
/* について ============*/
.aboutus {
  padding-top: 120px;
}
.aboutus .maintitle {
  color: #00bacf !important;
}
.aboutus .inner {
  max-width: 1260px;
}
.abflex {
  display: flex;
  justify-content: space-between;
}
/*text*/
.abtext {
  width: 47%;
}
/*img*/
.abimgs {
  position: relative;
  width: 22%;
}
.abimgs div {
  position: absolute;
}
.abimgs:nth-child(1) {
  order: -1;
}
.abimgs:nth-child(1) div {
  top: 9%;
  left: 0;
}
.abimgs:nth-child(2) div {
  bottom: 16%;
  right: 0;
}
.abimgswrap {
  display: contents;
}
.abimgs:nth-child(1)::before, .abimgs:nth-child(2)::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.abimgs:nth-child(1)::before {
  background-size: 80% !important;
  background-position: bottom left !important;
  background: url(../img/_bg/01.png);
}
.abimgs:nth-child(2)::before {
  background-size: 100% !important;
  background-position: top right !important;
  background: url(../img/_bg/04.png);
  z-index: -1;
}
/*mask*/
.abimgs .abmask img {
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.abimgs:nth-child(1) .abmask img {
  mask-image: url(../img/aboutus_m01.svg);
  -webkit-mask-image: url(../img/aboutus_m01.svg);
}
.abimgs:nth-child(2) .abmask img {
  mask-image: url(../img/aboutus_m02.svg);
  -webkit-mask-image: url(../img/aboutus_m02.svg);
}
@media (max-width: 1370px) {
  .abimgs:nth-child(1)::before, .abimgs:nth-child(2)::before {
    background-size: 100% !important;
  }
}
/*illust*/
.abillust {
  max-width: 600px;
  margin: 45px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.abillust div {
  width: 27%;
}
@media (max-width: 1070px) {
  .abflex {
    display: block;
  }
  .abtext {
    width: 100%;
  }
  .abimgswrap {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
  }
  .abimgs {
    width: 48%;
    padding-top: 5%;
  }
  .abimgs:nth-child(1)::before, .abimgs:nth-child(2)::before {
    background-size: 50% !important;
  }
  .abimgs div {
    position: initial;
  }
}
@media (max-width: 750px) {
  .aboutus {
    padding-top: 70px;
  }
  .abimgswrap {
    display: block;
    margin-top: 25px;
  }
  .abimgs {
    width: 100%;
  }
  .abmask {
    width: 77%;
  }
  .abimgs:nth-child(2) .abmask {
    margin-left: auto;
  }
  .abimgs:nth-child(1)::before, .abimgs:nth-child(2)::before {
    background-size: 60% !important;
    z-index: -1;
  }
  .abimgs:nth-child(1)::before {
    background-position: top right !important;
  }
  .abimgs:nth-child(2)::before {
    background-position: bottom left !important;
  }
  .abillust {
    margin-top: 35px;
  }
  .abillust div {
    width: 44%;
  }
  .abillust div:nth-child(3) {
    margin: auto;
    margin-top: 5px;
  }
}
/* サービス案内 ============*/
.serbox h2 {
  margin-top: 15px;
  position: relative;
  font-size: clamp(1.25rem, 0.8125rem + 1.4vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: #00cf82;
  border-bottom: 2px dotted #00cf82;
  padding-bottom: 5px;
}
.serbox h2:first-letter {
  font-size: 120%;
}
.serbox h2 .target {
  white-space: nowrap;
  font-size: 58%;
  text-align: center;
  width: 36%;
  max-width: 140px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -110px;
  right: 0;
  color: #333;
  background: #d1ffe4;
  /*border: 2px solid #b5f5d0;*/
}
.serbox:nth-child(2n) h2 {
  color: #00bacf;
  border-bottom: 2px dotted #00bacf;
}
.serbox:nth-child(2n) h2 .target {
  background: #dbf8ff;
  /*border: 2px solid #bff3ff;*/
}
@media(max-width:750px) {
  .serbox {
    margin-bottom: 47px;
  }
  .serbox:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media(max-width:500px) {
  .serbox h2 {
    margin-top: 10px;
  }
  .serbox h2 .target {
    top: -31vw;
  }
}
/* はこんなところ！ ============*/
.features .flexbox {
  justify-content: center;
  counter-reset: number 0;
}
.feabox {
  box-shadow: rgb(0 0 0 / 1.5%) 0px 2px 8px 0px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  width: 31%;
  margin: 0 1% 30px;
}
.featext {
  padding: 15px;
  z-index: 1;
  position: relative;
}
.featext h2 {
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 13px;
  text-align: center;
  font-size: clamp(1.2rem, 1.0125rem + 0.6vw, 1.35rem);
}
.featext h2 span {
  display: block;
  font-size: 120%;
  color: #00cf82;
}
.feabox:nth-child(2n) .featext h2 span {
  color: #00bacf;
}
/*number*/
.feaimg {
  position: relative;
}
.feaimg::before {
  border-radius: 50%;
  width: 23%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  counter-increment: number 1;
  content: "0"counter(number);
  font-size: 1.35rem;
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #00cf82;
  padding-top: 2%;
}
.feabox:nth-child(2n) .feaimg::before {
  color: #00bacf;
}
@media(max-width:1030px) {
  .feabox {
    width: 48%;
  }
}
@media(max-width:750px) {
  .feabox {
    width: 100%;
  }
}
@media(max-width:550px) {
  .feaimg::before {
    font-size: 1.15rem;
  }
}
/* 3つの目的に合わせた療育プログラム ============*/
.eduimg {
  max-width: 730px;
  margin: auto;
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
  padding: 120px 0 110px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.fv .inner {
  width: 97%;
}
.fv .inner:not(.binner)::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/01.png), url(../img/_bg/02.png);
  background-repeat: no-repeat;
  background-position: top right, bottom left;
  background-size: 20%;
  z-index: -1;
  opacity: 0.2;
  filter: brightness(0) invert(1);
}
.fv::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/fv.webp);
  background-repeat: repeat !important;
  background-size: cover !important;
  background-position: 50% 35%;
  z-index: -2;
}
.fv::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #111;
  opacity: 0.35;
  z-index: -1;
}
.fv h2 {
  text-align: center;
  margin-bottom: 12px !important;
  font-size: clamp(1.6rem, 0.6rem + 3.2vw, 2.4rem);
  line-height: 1.5;
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: 600;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 7%);
}
@media(max-width:1235px) {
  .fv {
    padding: 90px 0 70px;
  }
}
@media(max-width:550px) {
  .fv::before {
    opacity: 0.45;
  }
  .fv {
    padding: 40px 0 30px;
  }
}
/* breadcrumb */
.binner {
  line-height: 1.4;
  width: 97%;
  font-size: 1rem;
  position: relative;
  color: #fff;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 5%);
}
.breadcrumb {
  z-index: 1;
  background: transparent;
  position: relative;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.breadcrumb li {
  display: inline;
  list-style: none;
}
.breadcrumb li:after {
  content: '>';
  position: relative;
  top: -0.1em;
}
.breadcrumb li:last-child:after {
  content: none;
}
.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}
.breadcrumb li:first-child a::before {
  font-family: "Font Awesome 6 Free";
  content: '\f015';
  font-weight: bold;
  font-size: 90%;
  position: relative;
  top: -0.05em;
}
@media(max-width:850px) {
  .binner {
    font-size: 0.8rem;
  }
}
/* 児童発達支援ページ ===========================================================================================================*/
.development .fitc {
  max-width: 758px;
}
/* 放課後等デイサービスページ ====================================================================================================*/
/* 放課後等デイサービス */
.description .fitc {
  max-width: 812px;
}
/**/
.descflex {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.descflex div {
  position: relative;
  padding: 30px 20px 10px;
  background: #f7fff0;
  width: 23%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.descflex div::before, .descflex div::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  opacity: 0.2;
  border: 2px solid #00cf82;
}
.descflex div::before {
  top: 3px;
  left: 3px;
}
.descflex div::after {
  bottom: 3px;
  right: 3px;
}
.descflex div:nth-child(2n)::before, .descflex div:nth-child(2n)::after {
  border: 2px solid #00bacf;
}
.descflex div:nth-child(2n) {
  background: #f2fdff;
  bottom: 40px;
}
.descflex div h2::before {
  opacity: 0.7;
  content: url(../img/deco.svg);
  position: absolute;
  display: block;
  top: 2px;
  left: -9px;
  width: 21%;
  filter: invert(57%) sepia(85%) saturate(2575%) hue-rotate(119deg) brightness(100%) contrast(101%);
}
.descflex div:nth-child(2n) h2::before {
  filter: invert(48%) sepia(78%) saturate(1777%) hue-rotate(149deg) brightness(100%) contrast(101%);
}
.descflex div h2 span {
  font-size: 105%;
  display: block;
  position: absolute;
  top: 8%;
  left: 7%;
}
.descflex div h2 {
  white-space: nowrap;
  line-height: 1.5;
  width: 100%;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #00cf82;
  color: #00cf82;
  text-align: center;
  font-size: 1.8rem;
}
.descflex div:nth-child(2n) h2 {
  border-bottom: 2px dotted #00bacf;
  color: #00bacf;
}
.descflex div p {
  white-space: nowrap;
  line-height: 1.5;
  font-size: 120%;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media(max-width:1220px) {
  .descflex div h2 {
    font-size: 2.3vw;
  }
  .descflex div p {
    font-size: 100%;
  }
}
@media(max-width:950px) {
  .descflex div {
    width: 48%;
    margin-bottom: 30px;
  }
  .descflex div h2 {
    font-size: 1.65rem;
  }
  .descflex div p {
    font-size: 115%;
  }
}
@media(max-width:550px) {
  .descflex {
    display: block;
  }
  .descflex div:nth-child(2n) {
    bottom: 0 !important;
    margin-left: auto;
  }
  .descflex div {
    width: 85%;
    margin-bottom: 25px;
  }
  .descflex {
    margin-top: 40px;
  }
  .descflex div h2 span {
    top: 8%;
    font-size: 7vw;
  }
  .descflex div h2 {
    font-size: 7vw;
  }
  .descflex div p {
    font-size: 5.6vw;
  }
}
/* 支援 */
.support .inner {
  max-width: 1450px;
}
.support .flexbox {
  justify-content: center;
}
.supbox {
  box-shadow: rgb(0 0 0 / 1.5%) 0px 2px 8px 0px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  width: 23%;
  margin: 0 1% 30px;
}
.suptext {
  padding: 10px 15px 15px;
  z-index: 1;
  position: relative;
}
.supbox .stitle {
  text-align: center;
  margin-bottom: 10px;
}
.supbox .stitle:first-letter {
  font-size: 110%;
  margin-right: 1px;
  color: #00cf82;
}
@media(max-width:1285px) {
  .supbox {
    width: 48%;
  }
}
@media(max-width:750px) {
  .supbox {
    width: 100%;
    margin: 0 0 30px;
  }
}
/*list*/
.acheck li {
  padding-left: 21px;
  position: relative;
}
.acheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: bold;
  display: inline-block;
  color: #00bacf;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
.dots.acheck li {
  padding-left: 13px;
}
.dots.acheck li::before {
  content: "\f111";
  font-size: .3em;
  top: 2.25em;
}
/* アート活動例 */
.actimgswrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.actimgs {
  height: fit-content;
}
.actimgs div {
  width: 80%;
  margin-bottom: 10px;
}
.actimgs div:last-of-type {
  margin-left: auto;
}
.actbox {
  margin-bottom: 40px;
}
.actbox:last-of-type {
  margin-bottom: 0 !important;
}
.actbox .stitle {
  margin-bottom: 10px;
}
.actbox .acheck {
  margin-bottom: 20px;
}
.actbox .acheck li {
  display: inline-block;
  margin-right: 15px;
}
.actbox .acheck li:last-of-type {
  margin-right: 0;
}
@media(max-width:750px) {
  .actimgs {
    margin-top: 33px;
  }
}
/* デイリープログラム */
.daily_program .mtitle {
  margin-bottom: 10px;
}
@media(max-width:750px) {
  .daily_program .flexbox .w48 {
    margin-bottom: 20px;
  }
  .daily_program .flexbox .w48:last-of-type {
    margin-bottom: 0;
  }
}
/*illust*/
.program_illust {
  margin: 27px auto 0;
  width: 90%;
}
/* 1日の流れ */
.program {
  position: relative;
  margin-bottom: 20px;
}
.program:last-of-type {
  margin-bottom: 0;
}
.program::before {
  content: "";
  width: 16px;
  height: 100%;
  background: #ebebeb;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.time {
  font-size: clamp(1.1rem, 1.0375rem + 0.2vw, 1.15rem);
  font-weight: 600;
  margin-bottom: 20px;
}
.time span {
  font-size: 130%;
}
.program p {
  position: relative;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  margin-left: auto;
  width: calc(100% - 45px);
}
.program p::after, .program p::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -42px;
  z-index: -1;
}
.program p::before {
  z-index: 1;
  width: 11px;
  height: 11px;
  background: #00cf82;
  border-radius: 50%;
}
.program p::after {
  width: 80px;
  border-bottom: 3px dotted #00cf82;
  position: absolute;
}
.afterschool {
  position: relative;
  padding-left: 35px;
}
.afterschool::before {
  background: #ddd;
  position: absolute;
  content: "";
  top: 0.6em;
  left: 0;
  width: 29px;
  height: 2px;
}
/* サービス利用の流れ */
.flow_text {
  margin-bottom: 55px;
}
@media(max-width:550px) {
  .flow_text {
    margin-bottom: 30px;
  }
}
.sflow {
  position: relative;
}
.sitem {
  position: relative;
  padding: 13px 5px;
  padding-left: 27px;
  margin-bottom: 25px;
  background: #f2fdff;
}
.sitem::after {
  font-family: "Font Awesome 6 Free";
  content: "\f0d7";
  font-weight: bold;
  font-size: 1rem;
  color: #00bacf;
  line-height: 1;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.sitem:last-child {
  margin-bottom: 0;
}
.sitem:last-child::after {
  content: none;
}
.sitem_wrap {
  counter-reset: number 0;
}
.sitem {
  counter-increment: number 1;
}
.sitem p {
  margin-bottom: 0;
}
.sitem p::after, .sitem p::before {
  content: "";
  display: block;
  position: absolute;
}
.sitem p::before {
  z-index: 1;
  width: 2.5em;
  height: 2.5em;
  background: #00bacf;
  border-radius: 50%;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
}
.sitem p::after {
  font-size: 1.1rem;
  color: #fff;
  z-index: 1;
  content: "0"counter(number);
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
}
@media(max-width:750px) {
  .sflow {
    margin-left: 10px;
  }
  .sitem_wrap {
    margin: 20px 0 0 auto;
    width: 93% !important;
  }
}
/* 情報公開 */
.data .maintitle {
  margin-bottom: 37px;
}
@media(max-width:750px) {
  .data .maintitle {
    margin-bottom: 27px;
  }
}
.data .inner {
  max-width: 1155px;
}
.data .flexbox .w48 {
  margin-bottom: 40px;
}
.data .flexbox .w48:last-of-type {
  margin-bottom: 0 !important;
}
.datalist {
  margin-bottom: 30px;
}
.datalist:last-child {
  margin-bottom: 0;
}
.datalist div {
  margin-bottom: 10px;
}
/**/
.datalist a {
  background: #fff;
  color: #595757;
  border: 2px solid #ddd;
  border-radius: 5px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  height: 100%;
  margin-bottom: 7px;
}
.datalist a:hover {
  background: #f7f7f7;
}
.datalist a span {
  position: relative;
  padding-left: 20px;
  display: inline-block;
}
.datalist a span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f1c1";
  font-weight: bold;
  display: inline-block;
  color: #eb441e;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media(max-width:750px) {
  .datalist div {
    margin-bottom: 5px;
  }
  .datalist a {
    padding: 10px 8px;
  }
}
/* 求人案内ページ ===========================================================================================================*/
/*img*/
.twflex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 37px;
}
.twflex div {
  width: 48.5%;
  position: relative;
}
.twflex div:last-child {
  top: 20px;
}
@media(max-width:1210px) {
  .twwrap.psr .tl, .twwrap.psr .tr, .twwrap.psr .bl, .twwrap.psr .br {
    max-width: 125px;
  }
}
@media(max-width:750px) {
  .twflex {
    display: block;
  }
  .twflex div {
    width: 80%;
  }
  .twflex div:last-child {
    top: 0;
    margin-left: auto;
    margin-top: 15px;
  }
}
/* 募集職種 */
/*児童発達支援管理責任者・児童指導員（保育士） 募集中！*/
.recinfo_p {
  font-size: 145%;
}
.recinfo_p::before {
  content: "＼";
  margin-right: 12px;
}
.recinfo_p::after {
  content: "／";
  margin-left: 5px;
}
.recinfo_p span {
  font-size: 120%;
}
.recinfo_p br {
  display: none;
}
@media(max-width:970px) {
  .recinfo_p::before, .recinfo_p::after {
    content: none;
  }
  .recinfo_p {
    text-align: center;
  }
  .recinfo_p br {
    display: block;
  }
}
@media(max-width:550px) {
  .recinfo_p {
    font-size: 107%;
  }
}
/*img*/
.thrimgs {
  display: flex;
  justify-content: space-between;
  margin: 55px auto;
}
.thrimgs div {
  width: 31%;
}
.thrimgs div:nth-child(1), .thrimgs div:nth-child(3) {
  transform: rotate(5deg);
}
.thrimgs div:nth-child(2) {
  transform: rotate(-5deg);
}
.thrimgs div img {
  padding: 3.5%;
  background: #fff;
  border-radius: 3px;
  box-shadow: rgba(149, 157, 165, 0.12) 0px 8px 24px;
}
@media(max-width:550px) {
  .thrimgs {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 135%;
    margin: 35px auto;
  }
}
/**/
.recinfo {
  text-align: center;
}
@media(max-width:970px) {
  .recinfo {
    text-align: left;
  }
}
/* 会社案内ページ ===========================================================================================================*/
@media (max-width:750px) {
  .SP_displayContents .inner {
    display: flex;
    flex-direction: column;
  }
  .SP_displayContents .flexbox, .SP_dc {
    display: contents;
  }
  .SP_displayContents .maintitle {
    order: -1;
  }
}
/* ごあいさつ */
.shadow {
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.glast {
  margin-top: 23px;
  text-align: right;
}
@media(max-width:750px) {
  .spmgb02 {
    margin-bottom: 15px;
  }
}
/* ロゴマークに込めた想い */
.belief .inner {
  max-width: 968px;
}
.beliefbox {
  position: relative;
  border: 4px solid #85e6c2;
  border-radius: 15px;
  padding: 70px 45px 50px;
}
.b_symbol::before {
  content: '';
  display: block;
  width: 81px;
  height: 50px;
  background-image: url(../img/belief.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -3;
}
.beliefbox::before {
  opacity: 0.3;
}
.beliefbox::after {
  border-radius: 15px;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background: #fff;
}
.b_symbol {
  max-width: 190px;
  margin: auto;
  width: 50%;
  margin-bottom: 33px;
}
/**/
.garland {
  position: absolute !important;
  top: -5px !important;
  left: -5px !important;
  width: 53% !important;
  max-width: 250px;
}
.garland img {
  width: 100% !important;
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
}
@media(max-width:650px) {
  .beliefbox {
    padding: 40px 15px 30px;
  }
}
@media(max-width:550px) {
  .b_symbol {
    margin-bottom: 25px;
  }
}
/* 会社概要 */
/*table*/
.info_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.info_table tr {
  border-bottom: 1px dashed #bfbfbf;
}
.info_table th {
  background: transparent;
  width: 35%;
}
.info_table th, .info_table td {
  font-weight: 600;
  padding: 23px 0;
}
.info_table td {
  padding-left: 10px;
  padding-right: 10px;
  width: 65%;
  background: transparent;
}
.ib {
  display: inline-block;
}
@media(max-width: 550px) {
  .info_table {
    border-collapse: collapse;
  }
  .info_table tr {
    border-bottom: none;
  }
  .info_table td {
    border-bottom: 1px dashed #bfbfbf;
    margin-bottom: 0;
  }
  .info_table td, .info_table th {
    width: 100%;
    padding: 8px 0 18px;
    display: block;
  }
  .info_table th {
    text-align: left;
    padding-bottom: 0;
    padding-top: 13px;
  }
  .info_table tr:first-child th {
    padding-top: 0;
  }
}
/* 施設情報 */
.infobox {
  background: #fff;
  border-radius: 15px;
  position: relative;
  padding: 45px 50px;
}
.infobox .stitle {
  padding-bottom: 12px;
}
.infobox .stitle .en {
  display: inline-block;
  color: #333 !important;
}
@media(max-width:1240px) {
  .infobox {
    padding: 35px 20px 40px;
  }
}
@media(max-width:550px) {
  .infobox {
    padding: 25px 13px 30px;
  }
  .infobox .stitle {
    text-align: center;
  }
  .infobox .stitle .en {
    font-size: 65%;
  }
}
/* お問い合わせ ==========================================*/
.contact_sec {
  position: relative;
}
.contact_sec .inner, .privacy .inner {
  max-width: 970px;
}
/*電話でのお問い合わせ*/
.tels {
  padding-bottom: 10px;
}
.tels .maintitle {
  margin-bottom: 23px;
}
.contop {
  margin-bottom: 60px;
}
@media(max-width:550px) {
  .tels {
    padding-bottom: 20px;
  }
  .contop {
    margin-bottom: 40px;
  }
}
/**/
.telwraptitle {
  white-space: nowrap;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  line-height: 1;
  background: #00bacf;
  border-radius: 40px;
  color: #fff;
  padding: 17px 45px;
}
/*枠*/
.contact_wrap {
  padding: 40px 15px;
  background: #fff;
  max-width: 640px;
  margin: auto;
  border-radius: 15px;
  border: 3px solid #37cdde;
  position: relative;
}
/*電話番号*/
.contact_wrap a {
  font-size: clamp(1.45rem, 0.5125rem + 3vw, 2.2rem);
  letter-spacing: 0.1em;
  margin-bottom: 3px;
  white-space: nowrap;
  color: #333;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.contact_wrap a i {
  color: #00bacf;
}
.contact_wrap a:hover {
  opacity: 0.6;
}
/*営業時間*/
.tel_mini_exp {
  margin-top: 5px;
  text-align: center;
}
.tel_mini_exp p {
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .contact_wrap {
    margin-bottom: 7px;
  }
  .contact_wrap:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .telwraptitle {
    top: -20px;
    font-size: 1.07rem;
    padding: 10px 25px 12px;
  }
  .contact_wrap {
    max-width: 100%;
    padding: 33px 5px 25px;
  }
  .tel_mini_exp {
    font-size: 92%;
    margin-top: 7px;
  }
}
/* メール ===================*/
.mnote {
  max-width: 905px;
  margin: auto;
  margin-top: 50px;
}
@media(max-width:550px) {
  .mnote {
    margin-top: 40px;
  }
}
.mailform .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.mailform .row:not(.last) {
  border-bottom: 0.9px dotted #6e050b;
}
.mailform .row div {
  text-align: left;
}
.mailform .row div:nth-child(1) {
  width: 28%;
  font-size: 97%;
}
.mailform .row div:nth-child(2) {
  width: 70%;
  line-height: 1.5;
}
.mailform .row span {
  color: #fff;
  background: #00cf82;
  padding: 6px 5px 5px;
  margin-right: 5px;
  font-size: 12px;
  border-radius: 3px;
}
.mailsp {
  background: #fff !important;
  border: 1px solid #00cf82;
  color: #00cf82 !important;
}
.mailform .row small {
  display: block;
  margin-top: 3px;
}
.mailform .box, .mailform textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100% !important;
  border-radius: 0;
  -webkit-appearance: none;
  margin-bottom: 5px;
  background: #fff;
}
.mailform button {
  display: block;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  color: #fff;
  background: #00cf82;
  border: 2px solid #00cf82;
  width: 270px;
  padding: 27px 0;
  transition: .4s;
  border-radius: 50px;
}
.mailform button:hover {
  background: #fff;
  color: #00cf82;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
.mails {
  padding-bottom: 60px;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
  display: none;
}
.mailform input[type=checkbox] + label {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
  background: #fff;
  border: 1px solid #b5b5b5;
  content: '';
  display: block;
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
  border-right: 3px solid #00cf82;
  border-bottom: 3px solid #00cf82;
  content: '';
  display: block;
  height: 13px;
  width: 7px;
  opacity: 0;
  position: absolute;
  top: 0.35em;
  left: 4px;
  transform: rotate(45deg);
  transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
  opacity: 1;
}
@media (max-width: 800px) {
  .mailform .row:first-of-type {
    padding-top: 3px !important;
  }
  .mailform .row {
    padding: 20px 0;
    flex-direction: column;
  }
  .mailform .row div:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .mailform .row div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .mailform input[type=checkbox] + label {
    display: block;
  }
  .mails {
    padding-bottom: 40px;
  }
  .mailform button {
    width: 210px;
    padding: 17px 0;
  }
  .selection small {
    font-size: 0.8rem;
  }
}
/* 個人情報の取り扱いについて */
.privacy {
  padding-top: 0;
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.accordion-title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: clamp(1rem, 0.5rem + 1.6vw, 1.4rem);
  padding: 15px 35px 15px 15px;
  transition: all .5s ease;
  background: #00bacf;
  line-height: 1.5;
  color: #fff;
  border-radius: 7px;
}
.privacy .accordion-title span {
  position: relative;
  padding-left: 27px;
  display: inline-block;
}
.privacy .accordion-title span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f023";
  font-weight: bold;
  margin-right: 10px;
  font-size: 80%;
  position: absolute;
  top: 0.15em;
  left: 0;
}
/*アイコンの＋と×*/
.privacy .accordion-title::before, .privacy .accordion-title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background: #fff;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.privacy .accordion-title::before {
  transform: rotate(0deg);
}
.privacy .accordion-title::after {
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.privacy .accordion-title.close::before {
  transform: rotate(45deg);
}
.privacy .accordion-title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.accordion-text {
  display: none; /*はじめは非表示*/
  background: #fff;
  padding: 13px 25px;
  font-size: 95%;
}
.accordion-text span {
  font-size: 103%;
}
.accordion-text span::before {
  content: "■";
  display: inline-block;
  font-size: 80%;
  margin-right: 0.35em;
  transform: translateY(-1px);
  color: #00bacf;
}
@media (max-width: 550px) {
  .privacy .accordion-title::before, .privacy .accordion-title::after {
    width: 11px;
  }
  .privacy .accordion-title span {
    padding-left: 20px;
  }
  .accordion-text {
    padding: 13px;
    font-size: 93%;
  }
}






/* 250327更新分 会社案内ページ 情報公開欄 ========================================*/
.disclosures_item_mgb {
  margin-bottom: 40px;
}
.nendo_mgb {
  margin-bottom: 25px;
}
.disclosures_item_mgb:last-of-type, .nendo_mgb:last-of-type {
  margin-bottom: 0 !important;
}
/*title*/
.ctitle {
  margin-top: -5px;
  margin-bottom: 7px;
  font-weight: 600;
  background: #fff;
  padding: 9px;
  font-size: clamp(1.15rem, 1.06rem + 0.32vw, 1.3rem);
}
.ctitle::before {
  font-family: "Font Awesome 6 Free";
  content: "\f219";
  font-weight: bold;
  color: #00cf82;
  margin-right: 5px;
  font-size: 70%;
  position: relative;
  top: -0.2em;
}
.disclosures_item_mgb .stitle {
  font-size: clamp(1.15rem, 1.06rem + 0.32vw, 1.3rem);
}
@media (max-width: 550px) {
  .disclosures_item_mgb .btnflex {
    text-align: center;
  }
}