@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  position: relative;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  color: #7d6951;
  font-size: 20px;
  background: #fbf9f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
  line-height: 1.85;
  overflow: auto;
}
@media (max-width: 550px) {
  body {
    font-size: 18px;
  }
}
.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;
  position: relative;
}
@media (max-width: 550px) {
  main section {
    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;
}
.circle img {
  border-radius: 50%;
}
.rounded01 img {
  border-radius: 59% 41% 31% 80% / 62% 53% 57% 58%;
}
.rounded02 img {
  border-radius: 46% 74% 52% 48% / 52% 52% 68% 71%;
}
.rounded01, .rounded02 {
  position: relative;
}
.rounded01::before, .rounded01::after, .rounded02::before, .rounded02::after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 45%;
  height: 50%;
  animation: horizontalAnim 4.3s infinite alternate;
}
@keyframes horizontalAnim {
  0% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
.rounded01::before, .rounded02::before {
  z-index: -1;
  mix-blend-mode: overlay;
}
.rounded01::after, .rounded02::after {
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  opacity: 0.8;
}
.rounded01::before, .rounded01::after {
  bottom: 0;
  left: 0;
  border-radius: 46% 74% 52% 48% / 52% 52% 68% 71%;
}
.rounded02::before, .rounded02::after {
  top: 0;
  right: 0;
  border-radius: 59% 41% 31% 80% / 62% 53% 57% 58%;
}
/*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;
}
.ib {
  display: inline-block;
}
/*list*/
.acheck li {
  padding-left: 23px;
  position: relative;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.acheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: bold;
  display: inline-block;
  color: #a88d6c;
  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;
}
/*中央寄せ*/
.center {
  text-align: center;
}
@media (max-width:750px) {
  .spcenter {
    text-align: center !important;
  }
}
.fitc {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/* 見出し */
/*01*/
.maintitle {
  margin-bottom: 50px;
  display: block;
  text-align: center;
  line-height: 1.4;
  position: relative;
  font-size: clamp(1.8rem, 1.32rem + 1.7067vw, 2.6rem);
  font-weight: 700;
}
.maintitle:first-letter {
  color: #a88d6c;
}
.maintitle.mtleft {
  text-align: left;
}
.txtmgb {
  margin-bottom: 35px !important;
}
@media (max-width: 550px) {
  .maintitle {
    margin-bottom: 37px;
  }
  .txtmgb {
    margin-bottom: 25px !important;
  }
}
/*02*/
.mtitle {
  font-weight: 700;
  position: relative;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: clamp(1.2rem, 0.6375rem + 1.8vw, 1.65rem);
  line-height: 1.7;
  background: #7d6951;
  color: #fff;
  padding: 13px 25px 15px 12px;
  border-left: 6px solid rgba(255, 255, 255, 0.4);
}
.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;
}
/*03*/
.stitle {
  font-weight: 700;
  font-size: clamp(1.4rem, 1.16rem + 0.8533vw, 1.8rem);
  line-height: 1.6;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.stitle:first-letter {
  font-size: 120%;
  color: #a88d6c;
}
/*04*/
.cotitle {
  font-weight: 700;
  position: relative;
  margin-bottom: 17px;
  font-size: clamp(1.4rem, 1.16rem + 0.8533vw, 1.8rem);
  line-height: 1.55;
  padding-left: 24px;
}
.cotitle:after, .cotitle:before {
  content: '';
  position: absolute;
  height: 40%;
  width: 9px;
  left: 0;
  background: #7d6951;
}
.cotitle:after {
  bottom: 13.5%;
}
.cotitle:before {
  top: 13.5%;
  opacity: 0.7;
}
@media (max-width: 550px) {
  .cotitle {
    padding-left: 20px;
  }
}
/* ボタン */
.mainbtn a {
  overflow: hidden;
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 24px 0;
  width: 286px;
  border-radius: 100px;
  border: 2px solid #7d6951;
  color: #fff;
  background: #7d6951;
}
section .mainbtn a::after {
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: bold;
  position: absolute;
  top: 49%;
  right: 2%;
  transform: translateY(-50%);
}
.mainbtn a:hover {
  color: #7d6951;
  background: #fff;
}
/**/
.tbtn {
  margin-top: 37px;
}
/**/
.btnflex {
  margin-left: auto;
  margin-right: auto;
}
.btnflex a {
  margin: 2px 7px;
  display: inline-block;
}
@media (max-width: 550px) {
  .mainbtn a {
    max-width: 250px;
    width: 100%;
    padding: 19px 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: 23px;
  }
  .spmgb02 {
    margin-bottom: 13px;
  }
}
/* 幅 */
.inner {
  width: 88%;
  max-width: 1270px;
  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 {
    width: 100% !important;
  }
}
.w73 {
  width: 73.5%;
}
.w65 {
  width: 64.5%;
}
.w52 {
  width: 52%;
}
.w48 {
  width: 48%;
}
.w43 {
  width: 43%;
}
.w32 {
  width: 32%;
}
.w23 {
  width: 23%;
}
/* background */
.bg_white::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -100;
}
/* illust */
.sky .maintitle {
  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;
}
.sky {
  background-image: url(../img/sky.webp);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
}
.skymini .maintitle, .skymini p, .skymini .stitle {
  text-shadow: 1px 1px 0 #fbf9f4, -1px -1px 0 #fbf9f4, -1px 1px 0 #fbf9f4, 1px -1px 0 #fbf9f4, 0px 1px 0 #fbf9f4, 0 -1px 0 #fbf9f4, -1px 0 0 #fbf9f4, 1px 0 0 #fbf9f4;
}
.bg_white.skymini .maintitle, .bg_white.skymini p, .bg_white.skymini .stitle {
  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;
}
.skymini::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/skymini.png);
  background-repeat: no-repeat;
  background-position: top -1px left -1px;
  background-size: 40%;
  z-index: -5;
  opacity: 0.55;
}
@media (max-width: 550px) {
  .skymini::before {
    background-size: 50%;
    opacity: 0.7;
  }
}
.leaf01 .maintitle, .leaf01 p {
  text-shadow: 1px 1px 0 #fbf9f4, -1px -1px 0 #fbf9f4, -1px 1px 0 #fbf9f4, 1px -1px 0 #fbf9f4, 0px 1px 0 #fbf9f4, 0 -1px 0 #fbf9f4, -1px 0 0 #fbf9f4, 1px 0 0 #fbf9f4;
}
.bg_white.leaf01 .maintitle, .bg_white.leaf01 p {
  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;
}
.leaf01::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/leaf01.svg);
  background-repeat: no-repeat;
  background-position: top -5px left -1px;
  background-size: 40%;
  opacity: 0.6;
  z-index: -5;
}
@media (max-width: 550px) {
  .leaf01::before {
    background-size: 50%;
    opacity: 0.8;
  }
}
.leaf02 .maintitle, .leaf02 p, .leaf02 .stitle {
  text-shadow: 1px 1px 0 #fbf9f4, -1px -1px 0 #fbf9f4, -1px 1px 0 #fbf9f4, 1px -1px 0 #fbf9f4, 0px 1px 0 #fbf9f4, 0 -1px 0 #fbf9f4, -1px 0 0 #fbf9f4, 1px 0 0 #fbf9f4;
}
.bg_white.leaf02 .maintitle, .bg_white.leaf02 p, .bg_white.leaf02 .stitle {
  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;
}
.leaf02::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/leaf02.svg);
  background-repeat: no-repeat;
  background-position: top -1px left -1px;
  background-size: 40%;
  opacity: 0.8;
  z-index: -5;
}
@media (max-width: 550px) {
  .leaf02::before {
    background-size: 50%;
  }
}
.leaf03 .maintitle, .leaf03 p, .leaf03 .stitle {
  text-shadow: 1px 1px 0 #fbf9f4, -1px -1px 0 #fbf9f4, -1px 1px 0 #fbf9f4, 1px -1px 0 #fbf9f4, 0px 1px 0 #fbf9f4, 0 -1px 0 #fbf9f4, -1px 0 0 #fbf9f4, 1px 0 0 #fbf9f4;
}
.bg_white.leaf03 .maintitle, .bg_white.leaf03 p, .bg_white.leaf03 .stitle {
  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;
}
.leaf03::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/leaf03.png);
  background-repeat: no-repeat;
  background-position: top -1px right -1px;
  background-size: 30%;
  opacity: 0.7;
  z-index: -5;
}
@media (max-width: 550px) {
  .leaf03::before {
    background-size: 50%;
  }
}
.leaf04 .maintitle, .leaf04 p, .leaf04 .stitle {
  text-shadow: 1px 1px 0 #fbf9f4, -1px -1px 0 #fbf9f4, -1px 1px 0 #fbf9f4, 1px -1px 0 #fbf9f4, 0px 1px 0 #fbf9f4, 0 -1px 0 #fbf9f4, -1px 0 0 #fbf9f4, 1px 0 0 #fbf9f4;
}
.bg_white.leaf04 .maintitle, .bg_white.leaf04 p, .bg_white.leaf04 .stitle {
  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;
}
.leaf04::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/leaf04.png);
  background-repeat: no-repeat;
  background-position: top -1px left -1px;
  background-size: 30%;
  opacity: 0.8;
  z-index: -5;
}
@media (max-width: 550px) {
  .leaf04::before {
    background-size: 50%;
  }
}
.tree::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/tree.svg);
  background-repeat: no-repeat;
  background-position: bottom -1px right -1px;
  background-size: 40%;
  opacity: 0.8;
  z-index: -5;
}
@media (max-width: 550px) {
  .tree::before {
    background-size: 65%;
  }
}
.grassland:before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/grassland.png);
  background-repeat: no-repeat;
  background-position: bottom -1px right -1px;
  background-size: 40%;
  opacity: 0.8;
  z-index: -5;
}
@media (max-width: 550px) {
  .grassland::before {
    background-size: 65%;
  }
}
.earth:before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/earth.png);
  background-repeat: no-repeat;
  background-position: bottom -1px right -1px;
  background-size: contain;
  opacity: 0.8;
  z-index: -5;
}
.ivy {
  position: absolute;
  bottom: -41px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  z-index: 1;
  pointer-events: none;
}
.ivy::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/ivy.svg) repeat-x;
  background-size: 990px;
  background-position: center;
}
@media (max-width: 550px) {
  .ivy {
    bottom: -46px;
  }
  .ivy::before {
    background-size: 520px;
  }
}
.wood {
  position: absolute;
  top: -63px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  z-index: 1;
  pointer-events: none;
}
.wood::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/wood.png) repeat-x;
  background-size: 990px;
  background-position: center;
}
@media (max-width: 550px) {
  .wood {
    top: -55px;
  }
  .wood::before {
    background-size: 490px;
  }
}
.flowers::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/flowers.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  opacity: 0.8;
  z-index: -5;
}
@media (max-width: 550px) {
  .flowers::before {
    background-size: 170%;
  }
}
.house::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/house.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 50%;
  opacity: 0.8;
  z-index: -5;
}
.sky .house::before {
  z-index: 0;
}
@media (max-width: 550px) {
  .house::before {
    background-size: 90%;
  }
}
.town::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/town.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 60%;
  opacity: 0.7;
  z-index: -5;
}
@media (max-width: 750px) {
  .town::before {
    background-size: 130%;
  }
}
.earth_orange::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/earth_orange.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 60%;
  opacity: 0.7;
  z-index: -5;
}
@media (max-width: 1225px) {
  .earth_orange::before {
    background-size: 80%;
  }
}
@media (max-width: 750px) {
  .earth_orange::before {
    background-size: 130%;
  }
}
.road .maintitle, .road p, .road .stitle {
  text-shadow: 1px 1px 0 #fbf9f4, -1px -1px 0 #fbf9f4, -1px 1px 0 #fbf9f4, 1px -1px 0 #fbf9f4, 0px 1px 0 #fbf9f4, 0 -1px 0 #fbf9f4, -1px 0 0 #fbf9f4, 1px 0 0 #fbf9f4;
}
.bg_white.road .maintitle, .bg_white.road p, .bg_white.road .stitle {
  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;
}
.road::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/road.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  opacity: 0.8;
  z-index: -5;
}
@media (max-width: 550px) {
  .road::before {
    background-size: 170%;
  }
}
/*反転*/
.bgx::before, .bgx::after {
  transform: scaleX(-1);
}
.bgy::before, .bgy::after {
  transform: scaleY(-1);
}
.bgxy::before, .bgxy::after {
  transform: scaleX(-1) scaleY(-1);
}
/* color =====================*/
/*ピンク*/
.pink .rounded01::before, .pink .rounded02::before {
  background: #ffbeb0;
}
.pink .mainbtn a {
  border: 2px solid #ffbeb0;
  color: #fff;
  background: #ffbeb0;
}
.pink .mainbtn a:hover {
  color: #ffbeb0;
  background: #fff;
}
.pink .info_table th {
  background: #ffbeb0;
}
.pink .mtitle {
  background: #ffbeb0;
}
.pink .stitle:first-letter {
  color: #ffbeb0;
}
.pink .cotitle:after, .pink .cotitle:before {
  background: #ffbeb0;
}
.pink .acheck li::before {
  color: #ffbeb0;
}
/*水色*/
.blue .rounded01::before, .blue .rounded02::before {
  background: #8edce8;
}
.blue .mainbtn a {
  border: 2px solid #8edce8;
  color: #fff;
  background: #8edce8;
}
.blue .mainbtn a:hover {
  color: #8edce8;
  background: #fff;
}
.blue .info_table th {
  background: #8edce8;
}
.blue .mtitle {
  background: #8edce8;
}
.blue .stitle:first-letter {
  color: #8edce8;
}
.blue .cotitle:after, .blue .cotitle:before {
  background: #8edce8;
}
.blue .acheck li::before {
  color: #8edce8;
}
/*黄色オレンジ*/
.orange .rounded01::before, .orange .rounded02::before {
  background: #ffbd82; /*#ffc591*/
}
.orange .mainbtn a {
  border: 2px solid #ffbd82;
  color: #fff;
  background: #ffbd82;
}
.orange .mainbtn a:hover {
  color: #ffbd82;
  background: #fff;
}
.orange .info_table th {
  background: #ffbd82;
}
.orange .mtitle {
  background: #ffbd82;
}
.orange .stitle:first-letter {
  color: #ffbd82;
}
.orange .cotitle:after, .orange .cotitle:before {
  background: #ffbd82;
}
.orange .acheck li::before {
  color: #ffbd82;
}
/* illust ============*/
.psr {
  position: relative;
}
.tl, .tr, .bl, .br {
  pointer-events: none;
  width: 26% !important;
  max-width: 180px !important;
  position: absolute;
}
.psr .tl, .psr .tr, .psr .bl, .psr .br {
  width: 30% !important;
  max-width: 155px !important;
  z-index: 1;
}
.tl img, .tr img, .bl img, .br img {
  width: 100% !important;
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}
.zindex {
  z-index: 1 !important;
}
/*位置*/
.tl {
  left: 1%;
}
.tr {
  right: 1%;
}
.tl, .tr {
  top: -4%;
}
.bl {
  left: 1%;
}
.br {
  right: 1%;
}
.bl, .br {
  bottom: -2%;
}
/**/
.slp.tl, .slp.tr {
  top: -55px;
  max-width: 165px !important;
}
/**/
.psr .bl, .psr .br {
  bottom: 0 !important;
}
@media (max-width: 1020px) {
  .tl, .tr, .bl, .br {
    max-width: 16vw !important;
  }
}
@media (max-width: 750px) {
  .tl, .tr, .bl, .br {
    max-width: 105px !important;
  }
  .tl, .tr {
    top: -1.5%;
  }
  .bl, .br {
    bottom: -1%;
  }
}
@media (max-width: 450px) {
  .slp.tl, .slp.tr {
    top: -8%;
  }
}
/* cats ================*/
/* walking */
.cats {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  width: 97% !important;
  max-width: 887px !important;
  z-index: 2;
  padding: 2% 0;
}
.cats div {
  width: calc(100% / 3);
  margin: 0 1.5% 0;
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 1.2s, transform 1.6s;
}
.cats div:nth-child(1) {
  transition-delay: 0.25s;
}
.cats div:nth-child(2) {
  transition-delay: 0.45s;
}
.cats div:nth-child(3) {
  transition-delay: 0.6s;
}
.cats.inview div {
  opacity: 1;
  transform: translateX(0);
}
.cats.tl, .cats.tr {
  top: -6%;
}
.cats.tl, .cats.bl {
  transform: scaleX(-1);
}
@media (max-width: 750px) {
  .cats.tl, .cats.tr {
    top: -15vw;
  }
}
/* sleeping */
.sleeping_cats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 44% !important;
  max-width: 325px !important;
  z-index: 2;
}
.sleeping_cats div:nth-child(1) {
  width: 54%;
}
.sleeping_cats div:nth-child(2) {
  width: 42%;
}
.sleeping_cats.tl, .sleeping_cats.tr {
  top: -30%;
}
@media (max-width: 1020px) {
  .sleeping_cats {
    max-width: 29vw !important;
  }
}
@media (max-width: 920px) {
  .sleeping_cats {
    max-width: 225px !important;
  }
}
@media (max-width: 750px) {
  .sleeping_cats.tl, .sleeping_cats.tr {
    top: -12vw;
  }
}
@media (max-width: 550px) {
  .sleeping_cats.tl, .sleeping_cats.tr {
    top: -19vw;
  }
}
/* アニメーション ============*/
/* 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);
}
/* zoom */
.zoomup {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 1.3s, transform 1.3s;
  transition-delay: 0.35s;
}
.zoomup.inview {
  opacity: 1;
  transform: scale(1);
}
/* illust animation ========*/
/* 小刻みに揺れる */
.koro {
  animation: korokoro 5s infinite ease-in-out alternate;
}
@keyframes korokoro {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  51% {
    transform: translate(0, 0) rotate(0deg);
  }
  55% {
    transform: translate(0, 0) rotate(-3deg);
  }
  59% {
    transform: translate(0, -1px) rotate(0deg);
  }
  60% {
    transform: translate(0, -1px) rotate(3deg);
  }
  65% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  70% {
    transform: translate(0, 1px) rotate(0deg);
  }
  75% {
    transform: translate(0, 0) rotate(3deg);
  }
  79% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* ゆらゆら揺れる */
.yura {
  transform-origin: center bottom;
  animation: yurayura 5s linear infinite;
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(7deg);
  }
  50% {
    transform: rotate(-7deg);
  }
}
/* 上下 */
.horizon {
  animation: horizontalAnim 4.3s infinite alternate;
}
/* 回転 */
.rotation {
  animation: rotateanim 75s linear infinite normal;
}
@keyframes rotateanim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**/
.rev {
  animation-direction: alternate-reverse;
}
/*=== 共通部分ここまで ===*/
/* header ================================================*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 0 17px;
  transition: .5s all;
  background: #fbf9f4;
}
.header_inner {
  position: relative;
  width: calc(100% - 2%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* logo */
.header h1 {
  line-height: 1;
}
.header_title a:hover {
  opacity: 0.6;
}
.header_title {
  width: 368px;
}
/* お問い合わせはコチラ */
.header_inner .mainbtn {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_inner .mainbtn a {
  width: 240px;
}
.header_inner .mainbtn a {
  padding: 8px 0;
  font-size: 0.97rem;
  font-weight: 700;
}
/**/
.header_item {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: fit-content;
  margin-bottom: 10px;
}
.header_item > div {
  margin: 0 3px;
}
.header_item .mainbtn {
  margin-left: 13px;
}
.header_item .mainbtn a {
  min-width: auto;
  width: 220px;
  line-height: 1;
  padding: 9px 0 11px;
  font-size: 0.93rem;
}
/*tel*/
.tel {
  padding-bottom: 2px;
  font-size: 1.35rem;
}
.tel a {
  color: #7d6951;
}
.tel 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 {
  position: relative;
  line-height: 1.6;
  border-left: 1px dashed rgba(0, 0, 0, 0.27);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header_nav ul li:last-child {
  border-right: 1px dashed rgba(0, 0, 0, 0.27);
}
.header_nav ul li a {
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  line-height: 1.5;
  font-size: 1.15rem;
  padding: 5px 25px;
  color: #7d6951;
  white-space: nowrap;
}
.header_nav ul li a span {
  display: block;
  font-size: 90%;
}
.header_nav ul li a:hover {
  opacity: 0.6;
}
@media (max-width: 1620px) {
  .header_title {
    width: 24vw;
  }
  .header_nav ul li a {
    font-size: 1.25vw;
    padding: 5px 1vw;
  }
  .header_inner .mainbtn {
    margin-left: 1vw;
  }
  .header_inner .mainbtn a {
    font-size: 1vw;
    width: 14.5vw;
  }
}
/* hamburger ================================= */
.header__inner {
  position: relative;
  height: fit-content;
  display: none;
}
.hamburger {
  display: block;
  height: 31px;
  position: relative;
  z-index: 9997;
  width: 55px;
  border: none;
  background-color: transparent;
}
.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  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-color: #7d6951;
  border-radius: 10px;
}
.hamburger__line:before {
  top: -10.5px;
}
.hamburger__line:after {
  top: 10.5px;
}
.hamopen .header {
  position: fixed;
}
/*
.hamburger__text {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1.4;
}
.hamburger__text::before {
  content: "menu";
  text-align: center;
  font-size: 0.9rem;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  margin-left: 3px;
  color: #fff;
}
.hamburger.-active .hamburger__text::before {
  content: 'close';
  position: relative;
  bottom: -9px;
  margin-left: 0;
  color: #fff !important;
}
*/
/**/
.header__nav-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh; /* fallback */
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/hamburger.webp);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.header__nav-area.-active {
  opacity: 1;
  visibility: visible;
}
/* menu */
.global-navigation {
  margin: auto;
  width: 94%;
  max-width: 600px;
  height: fit-content;
  /*padding: 60px 0 110px;*/
  position: relative;
  z-index: 1;
}
.global-navigation__list {
  padding: 22px 25px 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}
.global-navigation__list > li {
  margin: 3px 0;
  display: block;
  padding: 15px 5px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}
.global-navigation__list li a {
  display: inline-block;
  width: 100%;
  color: #7d6951;
  line-height: 1.5;
}
.global-navigation__list a:hover {
  opacity: 0.6;
}
@media (max-width:1190px) {
  .header_title {
    width: 335px;
  }
  .header {
    padding: 16px 15px 18px;
  }
  .header_inner {
    width: 100%;
    max-width: 100%;
  }
  .header_inner .mainbtn, .header_nav, .header_item {
    display: none;
  }
  .header__inner {
    display: block;
  }
}
@media (max-width: 550px) {
  .header_title {
    width: 250px;
  }
  .header {
    padding: 14px 6px 16px;
  }
  .global-navigation__list {
    padding: 12px 15px 20px;
  }
  .global-navigation__list > li {
    font-size: 1rem;
    padding: 15px 5px 17px;
  }
  .header__nav-area.-active .mainbtn {
    font-size: 0.85rem;
  }
}
/* footer ================================================*/
footer {
  position: relative;
}
footer {
  background-image: url(../img/forest.webp);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
footer::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/blue.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
}
.footer_contact {
  position: relative;
  padding: 60px 0 40px;
}
.footer_contact .inner {
  max-width: 1070px;
}
/**/
.f_flex {
  display: flex;
  align-items: center;
}
/* address */
.f_address {
  width: fit-content;
  margin-left: 65px;
  padding: 40px 55px;
  background: #fff;
  border-radius: 10px;
  white-space: nowrap;
  text-align: center;
}
.flogo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 10px;
}
.f_address p {
  margin-bottom: 0;
}
/* link */
.f_link {
  width: 100%;
  max-width: 602px;
  margin: auto;
}
.f_link a {
  text-align: center;
  padding: 24px 0;
  display: block;
  border-radius: 100px;
  border: 2px solid #7d6951;
  color: #fff;
  background: #7d6951;
}
.f_link a:hover {
  color: #7d6951;
  background: #fff;
}
/* copyright */
.copyright {
  text-align: center;
  padding-bottom: 27px;
  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;
  font-size: clamp(0.9rem, 0.72rem + 0.64vw, 1.2rem);
}
@media (max-width: 1125px) {
  .f_flex {
    display: block;
  }
  .f_address {
    margin: 35px auto 0;
    white-space: normal;
  }
}
@media (max-width: 750px) {
  .f_address {
    width: 100%;
  }
  .f_address p .ib.spblock {
    display: block;
  }
  .f_address p:last-of-type {
    margin-top: 10px;
  }
  .f_address p:last-of-type span {
    display: block;
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
}
@media (max-width: 550px) {
  footer {
    background-size: 180%;
  }
  .footer_contact {
    padding: 50px 0 30px;
  }
  .footer_contact .inner {
    width: 93%;
  }
  .f_address {
    padding: 23px 15px 19px;
  }
  .f_link a {
    padding: 21px 0;
  }
}
/*ページ上に戻るボタン*/
.tfade {
  position: relative;
  z-index: 9;
}
.page_top {
  position: fixed;
  bottom: 15px;
  right: 10px;
  width: 225px;
  z-index: 50;
}
.page_top a {
  display: block;
}
.page_top a:hover {
  padding-bottom: 10px;
}
@media (max-width: 550px) {
  .page_top {
    width: 120px;
    bottom: 60px;
    right: 5px;
  }
}
/*SP お問い合わせはコチラボタン*/
.mobile_btn {
  display: none;
}
@media (max-width: 550px) {
  footer {
    margin-bottom: 54px;
  }
  .mobile_btn {
    display: block;
    position: fixed;
    z-index: 50;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .mobile_btn a {
    display: block;
    width: 100%;
    background: #7d6951;
    color: #fff;
    text-align: center;
    padding: 13px 0;
    font-size: 1.03rem;
  }
}
/* スライド ================================================================*/
.topslidewrap {
  position: relative;
  overflow: hidden;
}
.topslide {
  position: relative;
  width: 95%;
  margin: 0 auto;
  padding-top: 10px;
}
/* img */
.slide_items {
  overflow: hidden;
  animation: fluid-animation 50s ease 0s infinite normal;
}
.slide_items img {
  object-fit: cover;
  width: 100%;
  height: calc(100vh - 110px);
  min-height: 715px;
}
/*画像アニメーション*/
/* border radius */
@keyframes fluid-animation {
  0%, 100% {
    border-radius: 59% 41% 31% 80% / 62% 53% 57% 58%;
  }
  50% {
    border-radius: 46% 74% 52% 48% / 52% 52% 68% 71%;
  }
}
/* slick animation */
.slick-animation {
  animation: fadezoom 14s linear 0s normal both;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@media (max-width: 1190px) {
  .topslide {
    padding-top: 0;
  }
  .slide_items img {
    min-height: auto;
    height: 59vw;
  }
}
@media (max-width: 750px) {
  .slide_items img {
    height: 120vw;
  }
}
/* catchcopy =============*/
.catchcopy {
  position: absolute;
  bottom: 30px;
  left: 4%;
  font-size: 3.1rem;
  z-index: 1;
  white-space: nowrap;
  line-height: 1.4;
  color: #fff;
}
.catchcopy span {
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
  background: #ffbeb0;
  padding: 5px 7px;
  width: fit-content;
  box-shadow: 4px 4px 0px 0px #fff;
}
span.hushtug {
  font-size: 54%;
  background: #fff;
  color: #ffbeb0;
  box-shadow: 4px 4px 0px 0px #ffbeb0;
}
@media(max-width:1190px) {
  .catchcopy {
    font-size: 3.7vw;
  }
}
@media(max-width:750px) {
  .catchcopy {
    font-size: 5.2vw;
    bottom: 9px;
    right: 10px;
  }
}
@media(max-width:550px) {
  .catchcopy span {
    margin-bottom: 7px;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 0px 0px #fff;
  }
  span.hushtug {
    font-size: 69%;
    box-shadow: 2px 2px 0px 0px #ffbeb0;
  }
}
/* illust ================*/
/*枝*/
.s_leaf {
  position: absolute;
  top: 0;
  right: -5px;
  width: 27%;
  max-width: 360px;
}
/*絵の具*/
.s_br_e {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  z-index: -1;
}
.s_tl_e {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  z-index: -1;
}
/*丸*/
.s_tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  max-width: 355px;
}
/*猫*/
.s_cat {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30%;
  max-width: 295px;
}
@media (max-width: 1190px) {
  .s_tl {
    max-width: 215px;
  }
  .s_cat {
    max-width: 200px;
    right: 3px;
  }
}
@media (max-width: 750px) {
  .s_tl {
    left: -11%;
  }
  .s_cat {
    right: -7px;
  }
}
/* ごあいさつ ==============================================================*/
.welcome {
  padding: 4.5vw 0;
  padding-bottom: 0 !important;
  overflow: hidden;
}
.welcome .inner {
  width: 100%;
  max-width: 100%;
}
.welcome p {
  margin-bottom: 15px;
}
.welcome p:last-of-type {
  margin-bottom: 0 !important;
}
/*text*/
.weltext {
  margin-left: 7%;
  width: 41%;
}
/*img*/
.topimgs {
  width: 39%;
  position: absolute;
  top: 74%;
  transform: translateY(-50%);
  right: 2%;
  z-index: -1;
}
.topimgs .bimg {
  margin-bottom: 8%;
}
.topimgs .bimg:nth-child(1) {
  transform: rotate(3deg);
}
.topimgs .bimg:nth-child(2) {
  transform: rotate(-3deg);
}
.topimgs .bimg img {
  border-radius: 9px;
}
.topimgs .bimg {
  box-shadow: rgba(149, 157, 165, 0.12) 0px 8px 24px;
  padding: 12px;
  background: #fff;
  border-radius: 9px;
}
@media (max-width: 1765px) {
  .weltext {
    margin-left: 5vw;
  }
  .topimgs {
    right: 5vw;
  }
}
@media (max-width: 1610px) {
  .topimgs {
    top: 70%;
  }
}
@media (max-width: 1405px) {
  .topimgs {
    top: 35vw;
  }
}
@media (max-width: 1265px) {
  .welcome {
    padding: 80px 0 100px;
  }
  .welcome .maintitle {
    text-align: center;
  }
  .weltext {
    width: 88%;
    margin: 0 auto 55px;
  }
  .topimgs {
    width: 95%;
    display: flex;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
  }
  .topimgs .bimg {
    margin: 0 1%;
  }
  .topimgs .bimg:nth-child(2) {
    transform: translateY(7%) rotate(-3deg);
  }
}
@media (max-width: 800px) {
  .welcome .wide {
    width: 115%;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 750px) {
  .topimgs .bimg {
    padding: 8px;
    border-radius: 5px;
  }
  .topimgs .bimg img {
    border-radius: 5px;
  }
}
@media (max-width: 550px) {
  .welcome {
    padding: 55px 0;
  }
  .weltext {
    margin-bottom: 40px;
  }
  .topimgs {
    display: block;
  }
  .topimgs .bimg {
    margin: 0;
    width: 85%;
  }
  .topimgs .bimg:nth-child(2) {
    margin-left: auto;
    transform: translateY(0) rotate(-3deg);
  }
}
/* 事業所紹介 ==============================================================*/
.introduction .cats {
  top: -8%;
}
@media (max-width: 1265px) {
  .introduction .cats {
    top: -15vw;
  }
}
/**/
.introduction {
  padding-bottom: 0;
}
.wide, .wide img {
  width: 100%;
}
/**/
.introduction .flexbox {
  margin-bottom: 60px;
}
.introduction .flexbox:last-of-type {
  margin-bottom: 0;
}
/*title*/
.introduction h3 {
  font-weight: 700;
  font-size: clamp(1.65rem, 1.26rem + 1.3867vw, 2.3rem);
  line-height: 1.6;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
  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;
}
.introduction h3 .mini {
  font-size: 73%;
}
/*color*/
.introduction .pink h3 .ib {
  color: #ffbeb0;
}
.introduction .blue h3 .ib {
  color: #8edce8;
}
.introduction .orange h3 .ib {
  color: #ffbd82;
}
/* 看護師・准看護師・介護職員募集中 ========================================*/
/* ご応募お待ちしております */
.recbtn {
  margin-top: 20px;
}
.recbtn p {
  position: relative;
  text-align: center;
  padding: 0 40px;
  font-size: clamp(1.2rem, 0.9rem + 1.0667vw, 1.7rem);
  line-height: 1.75;
}
.recbtn p::before, .recbtn p::after {
  opacity: 0.6;
  position: absolute;
  bottom: 0;
  font-size: 90%;
}
.recbtn p::before {
  content: "＼";
  left: 0;
}
.recbtn p::after {
  content: "／";
  right: 0;
}
@media(max-width:960px) {
  .recbtn p span {
    display: block;
  }
}
@media(max-width:550px) {
  .recbtn p::before, .recbtn p::after {
    font-size: 100%;
  }
}
/* フィルター */
.disabled_wrap {
  position: relative;
}
.disabled_wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
}
.disabled_wrap div {
  overflow: hidden;
  filter: blur(3px);
}
.disabled_wrap .disabled_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  text-align: center;
  padding: 0 8px;
  z-index: 2;
  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;
  font-weight: 700;
  font-size: clamp(1.3rem, 0.425rem + 2.8vw, 2rem);
  line-height: 1.6;
}
@media (max-width: 750px) {
  .disabled_wrap .disabled_text {
    top: 90px;
    transform: translateX(-50%);
  }
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
  padding: 115px 0 95px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.fv .inner {
  width: 97%;
}
.fv::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/fv.webp);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: bottom center;
  z-index: -1;
}
.fv h2 {
  text-align: center;
  margin-bottom: 17px !important;
  font-size: clamp(1.8rem, 1.2rem + 2.1333vw, 2.8rem);
  line-height: 1.25;
  z-index: 1;
  position: relative;
  font-weight: 700;
  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;
}
@media(max-width:1190px) {
  .fv {
    padding: 90px 0 70px;
  }
}
@media(max-width:650px) {
  .fv {
    padding: 40px 0 35px;
  }
}
/* breadcrumb */
.binner {
  line-height: 1.5;
  width: 97%;
  font-size: clamp(0.85rem, 0.7rem + 0.5333vw, 1.1rem);
  position: relative;
  color: #7d6951;
}
.breadcrumb {
  z-index: 1;
  position: relative;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  overflow: hidden;
  width: 100%;
  max-width: fit-content;
  padding: 4px 9px 5px;
  background: #fff;
  border-radius: 3px;
}
.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: #7d6951;
}
.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;
}
/* デイサービス ともながページ ===========================================================================================================*/
main.pink .maintitle:first-letter {
  color: #ffbeb0;
}
/* デイサービス ともながでできること */
.daycare .inner {
  max-width: 1220px;
}
/* 一日の流れ */
.flow .flowd {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
.flow .flowd:last-child {
  margin-bottom: 0 !important;
}
/* 左側 時間 */
.ftime {
  position: relative;
  font-size: clamp(0.8rem, 0.662rem + 0.4907vw, 1.03rem);
  color: #fff;
  width: 140px;
  background: #ffbeb0;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.ftime::before {
  z-index: -2;
  content: "";
  width: 2px;
  height: 90%;
  border-left: 1px dashed #7d6951;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.flowd:last-of-type .ftime::before {
  content: none;
}
/* 右側 */
.flow .fwrap {
  width: 100%;
  position: relative;
  background-color: #fff;
  padding: 20px;
  margin-left: 1em;
  border-left: solid 8px #f7b6a8;
}
.fwrap::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  display: inline-block;
  border-style: solid;
  border-width: 15px;
  border-color: rgba(0, 0, 0, 0) #f7b6a8 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.fwrap p {
  margin-bottom: 0;
}
@media(max-width: 750px) {
  .flow .fwrap {
    width: 97%;
  }
  .flow .flowd {
    margin-bottom: 10px;
  }
  .flexbox .w48:first-of-type .flowd:last-of-type .ftime::before {
    content: "";
  }
  .flexbox .w48:first-of-type .flow .flowd:last-of-type {
    margin-bottom: 10px !important;
  }
  .flow .fwrap {
    padding: 10px 13px;
  }
  .ftime {
    width: 115px;
  }
}
/*flow*/
.flow .flowd.flow_img_wrap {
  align-items: flex-start;
}
.flow .flowd.flow_img_wrap .fwrap::before {
  top: 22px;
  transform: translateY(0);
}
.flow .flowd.flow_img_wrap .ftime::before {
  content: "" !important;
  height: 237%;
  bottom: -233%;
}
@media(max-width: 1600px) {
  .flow .flowd.flow_img_wrap .ftime::before {
    height: 9vw;
    bottom: -9vw;
  }
}
@media(max-width: 1235px) {
  .flow .flowd.flow_img_wrap .ftime::before {
    height: 12vw;
    bottom: -12vw;
  }
}
@media(max-width: 750px) {
  .flow .flowd.flow_img_wrap .ftime::before {
    height: 30vw;
    bottom: -30vw;
  }
  .flow_img_flex .rounded img {
    border-radius: 5px;
  }
}
/* チラシ */
.flyer_link {
  display: block;
  width: 100%;
  max-width: 790px;
  margin: auto;
}
.flyer_link img {
  border-radius: 10px;
}
.flyer_link:hover {
  opacity: 0.6;
}
@media(max-width: 550px) {
  .flyer_daycare .maintitle .ib {
    display: block;
  }
}
/* 年間行事表 */
.events .inner {
  max-width: 1700px;
  width: 96%;
}
/*box*/
.ybox {
  width: 23.5%;
  padding: 27px;
  border-radius: 10px;
  margin-bottom: 25px;
  background: #fff;
  position: relative;
  border: 2px solid #f2efe6;
}
/*月*/
p.month {
  padding-bottom: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: -11px;
  left: -11px;
  margin-bottom: 15px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 75px;
  background: #ffbeb0;
  color: #fff;
  white-space: nowrap;
}
/*img*/
.sibox {
  text-align: center;
}
.sibox img {
  width: auto !important;
  height: 160px !important;
  margin-bottom: 20px;
}
/*list*/
.ybox .acheck li:last-of-type {
  border-bottom: none;
}
@media(max-width:1350px) {
  .events .inner {
    max-width: 900px;
    width: 88%;
  }
  .ybox {
    width: 48.3%;
  }
}
@media(max-width:750px) {
  .events .inner {
    max-width: 400px;
  }
  .ybox {
    width: 100%;
  }
}
@media(max-width:550px) {
  .ybox {
    padding: 30px 20px;
  }
  p.month {
    width: 65px;
  }
  .sibox img {
    height: 120px !important;
  }
}
/* スタッフの紹介 */
.pink .member p span {
  background: #ffbeb0;
}
/* 対応エリア */
.dc_area_text .maintitle {
  margin-bottom: 15px;
}
.dc_area_text p {
  font-size: clamp(1.2rem, 1.02rem + 0.64vw, 1.5rem);
}
/* 居宅介護支援事業所 ともながページ =====================================================================================================*/
main.blue .maintitle:first-letter {
  color: #8edce8;
}
/* 居宅介護支援事業所 ともながでできること */
@media (max-width:750px) {
  .SP_displayContents .inner, .SP_displayContents .inner02 {
    display: flex;
    flex-direction: column;
  }
  .SP_displayContents .flexbox, .SP_dc {
    display: contents;
  }
  .SP_displayContents .SP_dc_title {
    order: -1;
  }
  .SP_dc_title.maintitle {
    margin-bottom: 45px !important;
  }
  .SP_dc_title.stitle {
    width: 100%;
    margin-bottom: 23px;
    margin-top: -20px;
  }
}
/*主な業務*/
.rc_services {
  margin-top: 70px;
}
.rc_services .inner {
  width: 97%;
}
.examflex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.examflex div {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 29.3%;
  margin: 0 2% 30px;
}
.examflex div img {
  object-fit: contain;
  width: 62%;
  height: 32%;
}
.examflex div p {
  margin: 15px auto 0;
  text-align: center;
}
@media(max-width:825px) {
  .examflex div {
    width: 46%;
  }
}
@media(max-width:550px) {
  .rc_services {
    margin-top: 35px;
  }
  .examflex {
    display: block;
  }
  .examflex div {
    width: 80%;
    margin: 0 auto 20px;
  }
  .examflex div:last-of-type {
    margin-bottom: 0 !important;
  }
}
/* スタッフの紹介 */
.member p {
  margin-bottom: 20px;
}
.member p:last-of-type {
  margin-bottom: 0;
}
.member p span {
  text-shadow: none;
  display: block;
  padding: 3px 9px 5px;
  color: #fff;
  border-radius: 5px;
  width: 140px;
  text-align: center;
}
.blue .member p span {
  background: #8edce8;
}
/* 対応エリア */
.rc_area .inner {
  max-width: 1036px;
}
@media(max-width:750px) {
  .areaimg {
    margin: 33px auto 0;
    width: 90% !important;
  }
}
/* 訪問看護ステーション ともながページ ===================================================================================================*/
main.orange .maintitle:first-letter {
  color: #ffbd82;
}
main.orange .ivy::before {
  filter: hue-rotate(305deg) saturate(0.8);
}
/* 訪問看護ステーション ともながでできること */
.nursing .inner {
  max-width: 1327px;
}
/* 具体的なサービス内容 */
.ns_services .inner {
  width: 96%;
  max-width: 1653px;
}
.nsflex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.nsflex .nsbox {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 29.3%;
  margin: 0 2% 30px;
}
.nsflex h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: clamp(1.5rem, 1.38rem + 0.4267vw, 1.7rem);
}
.nsflex .nsillust {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 70%;
  max-width: 300px;
  margin: 0 auto 20px;
}
.nsflex .nsillust img {
  object-fit: contain;
  width: 90%;
  height: 67%;
}
@media(max-width:1275px) {
  .ns_services .inner {
    width: 88%;
  }
  .nsflex .nsbox {
    width: 46%;
  }
}
@media(max-width:750px) {
  .nsflex {
    display: block;
  }
  .nsflex .nsbox {
    width: 100%;
    margin: 0 auto 20px;
  }
  .nsflex div:last-of-type:not(.nsillust) {
    margin-bottom: 0 !important;
  }
  .nsflex .nsillust {
    margin-bottom: 10px;
  }
}
@media(max-width:550px) {
  .ns_services .maintitle .ib {
    display: block;
  }
}
/*サービス開始までの流れ  */
.skyorange {
  background-image: url(../img/skyorange.webp);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
}
.skyorange .maintitle, .skyorange p, .skyorange .stitle {
  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;
}
.flow_image {
  margin: auto;
  width: 100%;
  max-width: 790px;
}
@media(max-width:550px) {
  .skyorange {
    background-size: 130%;
  }
  .ns_flow .maintitle {
    margin-bottom: 17px;
  }
}
/* 訪問看護ステーション ともながチラシ */
.flyer .sleeping_cats.tl, .flyer .sleeping_cats.tr {
  top: -78px;
}
@media(max-width:550px) {
  .flyer .sleeping_cats.tl, .flyer .sleeping_cats.tr {
    top: -12.5vw;
  }
}
/* スタッフの紹介 */
.orange .member p span {
  background: #ffd731;
}
/* 採用情報ページ ========================================================================================================================*/
.recruitment .btnflex {
  margin: 10px 0 55px;
}
.recruitment .btnflex a::after {
  content: none;
}
.recruitment .btnflex a:nth-child(1) {
  border: 2px solid #8edce8;
  color: #fff;
  background: #8edce8;
}
.recruitment .btnflex a:nth-child(1):hover {
  color: #8edce8;
  background: #fff;
}
.recruitment .btnflex a:nth-child(2) {
  border: 2px solid #ffbeb0;
  color: #fff;
  background: #ffbeb0;
}
.recruitment .btnflex a:nth-child(2):hover {
  color: #ffbeb0;
  background: #fff;
}
/**/
.rec_item {
  margin-bottom: 70px;
}
.rec_item:last-of-type {
  margin-bottom: 0 !important;
}
@media(max-width:550px) {
  .recruitment .btnflex {
    margin-bottom: 40px;
  }
  .recruitment .maintitle {
    margin-bottom: 25px !important;
  }
  .rec_item {
    margin-bottom: 60px;
  }
}
/*table*/
.info_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 2px solid #f0ebe6;
}
.info_table tr {
  border-bottom: 2px solid #f0ebe6;
}
.info_table tr:nth-child(odd) td {
  background: #fbf9f4;
}
.info_table th, .info_table td {
  padding: 19px 10px;
}
.info_table th {
  border-right: 2px solid #f0ebe6;
  position: relative;
  color: #fff;
  width: 30%;
  font-weight: 700;
  background: #7d6951;
}
.info_table td {
  background: #fff;
  width: 70%;
  border-right: 2px solid #f0ebe6;
  border-left: 2px solid #f0ebe6;
}
@media (max-width: 750px) {
  .info_table td, .info_table th {
    width: 100%;
    padding: 10px 13px;
    display: block;
    border: none;
    text-align: left;
  }
  .info_table th {
    border-bottom: 2px solid #f0ebe6;
  }
  .info_table td {
    padding-bottom: 10px !important;
    background: #fff !important;
  }
}
/* 応募情報 */
.information .sleeping_cats.tl, .information .sleeping_cats.tr {
  top: -78px;
}
@media (max-width: 550px) {
  .information .sleeping_cats.tl, .information .sleeping_cats.tr {
    top: -12vw;
  }
}
/* 事業所概要・お問い合わせページ ========================================================================================================*/
/*img*/
.twflex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 45px;
}
.twflex .tw {
  width: 48.5%;
}
.twflex .tw:last-child {
  margin-top: 20px;
}
@media(max-width: 550px) {
  .twflex {
    display: block;
    margin-bottom: 35px;
  }
  .twflex .tw {
    width: 87%;
  }
  .twflex .tw:last-child {
    margin-top: 15px;
    margin-left: auto;
  }
}
/* 事業所概要 */
.about .btnflex {
  margin-bottom: 55px;
}
.about .btnflex a {
  width: 400px;
}
.about .btnflex a:nth-child(3) {
  border: 2px solid #ffbeb0;
  color: #fff;
  background: #ffbeb0;
}
.about .btnflex a:nth-child(3):hover {
  color: #ffbeb0;
  background: #fff;
}
.about .btnflex a:nth-child(2) {
  border: 2px solid #8edce8;
  color: #fff;
  background: #8edce8;
}
.about .btnflex a:nth-child(2):hover {
  color: #8edce8;
  background: #fff;
}
.about .btnflex a:nth-child(1) {
  border: 2px solid #ffbd82;
  color: #fff;
  background: #ffbd82;
}
.about .btnflex a:nth-child(1):hover {
  color: #ffbd82;
  background: #fff;
}
.about .btnflex a::after {
  content: none;
}
@media (max-width: 550px) {
  .about .maintitle {
    margin-bottom: 30px;
  }
  .about .btnflex {
    margin-bottom: 40px;
  }
  .about .btnflex a {
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
}
/* アクセス */
.map .maintitle {
  margin-bottom: 25px;
}
.m_fc_name {
  font-size: clamp(1.2rem, 1.02rem + 0.64vw, 1.5rem);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}
.m_fc_name span:not(.ib) {
  display: inline-block;
  padding: 7px 15px 10px;
  color: #fff;
  border-radius: 5px;
  margin: 5px 7px;
}
.m_fc_name span:nth-child(3):not(.ib) {
  background: #ffbeb0;
}
.m_fc_name span:nth-child(2):not(.ib) {
  background: #8edce8;
}
.m_fc_name span:nth-child(1):not(.ib) {
  background: #ffbd82;
}
.map iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
@media (max-width: 790px) {
  .m_fc_name {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .m_fc_name span:not(.ib) {
    display: block;
    margin: 10px 0;
  }
}
@media (max-width: 550px) {
  .m_fc_name .ib {
    display: block;
  }
  .map iframe {
    height: 280px;
  }
}
/* 運営会社情報 */
.overview {
  padding-bottom: 0;
}
/* お問い合わせ =======================================*/
.contact_sec {
  position: relative;
}
.contact_sec .inner {
  max-width: 1118px;
}
/**/
.contop {
  text-align: center;
  max-width: 950px;
  margin-bottom: 50px;
}
@media(max-width:900px) {
  .contop {
    text-align: left;
  }
}
@media (max-width: 550px) {
  .contop {
    margin-bottom: 40px;
  }
}
/* 電話・FAX */
/*box*/
.telbox {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}
@media (max-width:750px) {
  .telbox {
    margin-bottom: 10px;
  }
  .telbox:last-child {
    margin-bottom: 0;
  }
}
@media (max-width:550px) {
  .telbox {
    padding: 17px;
  }
}
/* 番号 */
.telbox a {
  white-space: nowrap;
  font-size: clamp(1.55rem, 1.28rem + 0.96vw, 2rem);
  color: #735954;
}
.telbox a i {
  color: #a88d6c;
}
.telbox a:hover {
  opacity: 0.6;
}
.telwrap {
  margin-top: 0 !important;
}
.telwrap p {
  margin-top: 5px;
  margin-bottom: 0;
}
/*fax*/
.fax {
  pointer-events: none;
}
.telboxwrap {
  margin-top: 50px;
}
.telboxwrap .telbox a {
  margin-right: 40px;
}
.telboxwrap .telbox p {
  margin-bottom: 4px;
}
.telboxwrap .telbox {
  display: flex;
  align-items: center;
}
.fcheck {
  display: flex;
}
.fcheck li {
  padding-left: 21px;
  margin-right: 20px;
  position: relative;
}
.fcheck li:last-child {
  margin-right: 0;
}
.fcheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: bold;
  display: inline-block;
  color: #a88d6c;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media (max-width: 1335px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox a {
    margin-right: 0;
  }
  .telboxwrap .telbox p {
    margin-top: 7px;
  }
}
@media (max-width:750px) {
  .telboxwrap .tr, .telboxwrap .tl, .telboxwrap .br, .telboxwrap .bl {
    display: none;
  }
}
@media (max-width:550px) {
  .telboxwrap .telbox p, .fcheck li {
    font-size: 90%;
  }
}
@media (max-width: 500px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox p {
    margin-bottom: 7px;
  }
  .fcheck {
    display: block;
  }
  .fcheck li {
    margin-right: 0;
  }
}
/* メール */
.mnote {
  max-width: 1078px;
  margin: auto;
  margin-top: 55px;
}
.mpdb {
  padding-bottom: 55px !important;
  margin-bottom: 0 !important;
}
@media(max-width:550px) {
  .mnote {
    margin-top: 45px;
    font-size: 93%;
  }
  .mpdb {
    padding-bottom: 27px !important;
  }
}
.formsel p:last-child {
  margin-bottom: 0;
}
.mailform .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.mailform .row:not(.last) {
  border-bottom: 0.9px dotted #735954;
}
.mailform .row div {
  text-align: left;
}
.mailform .row div:nth-child(1) {
  width: 28%;
}
.mailform .row div:nth-child(2) {
  width: 70%;
  line-height: 1.5;
}
.mailform .row span {
  color: #fff;
  background: #ffbeb0;
  padding: 5px;
  margin-right: 3px;
  font-size: 75%;
  border-radius: 3px;
}
.mailform .row small {
  display: block;
  margin-top: 3px;
}
.mailform label {
  color: #735954;
}
.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 {
  border-radius: 50px;
  display: block;
  width: 270px;
  padding: 24px 0;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  transition: .4s;
  position: relative;
  overflow: hidden;
  background: #ffbeb0;
  color: #fff;
  border: 2px solid #ffbeb0;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
.mailform button:hover {
  color: #ffbeb0;
  background: #fff;
}
/*チェックボックス*/
.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 #7d6951;
  border-bottom: 3px solid #7d6951;
  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;
}
/**/
.mailform .box.mini {
  width: 130px !important;
}
.mailform .postal_btn {
  padding: 7px;
  background: #f4f4f4;
  border-radius: 2px;
  margin-left: 3px;
  border: 1px solid #ccc;
}
.mailform .postal_btn:hover {
  opacity: 0.7;
}
@media(max-width:550px) {
  .mailform .box.mini {
    width: 110px !important;
  }
  .mailform .postal_btn {
    padding: 7px 3px;
  }
}
/**/
.mails {
  padding-bottom: 40px;
}
.mails .maintitle {
  font-size: clamp(1.6rem, 1.24rem + 1.28vw, 2.2rem);
}
@media (max-width: 550px) {
  .mails {
    padding-bottom: 15px;
  }
  .mailform button {
    width: 220px;
    padding: 19px 0;
  }
  .formsel label {
    font-size: 0.95rem;
  }
  .mailform input[type=checkbox] + label {
    display: block;
  }
}
@media (max-width:960px) {
  .mailform .row:first-child {
    padding-top: 5px;
  }
  .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%;
  }
}
/* 個人情報の取り扱いについて */
.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;
  cursor: pointer;
  font-size: clamp(1rem, 0.64rem + 1.28vw, 1.6rem);
  padding: 15px 5px 15px;
  transition: all .5s ease;
  line-height: 1.65;
  font-weight: 700;
}
.accordionwrap {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.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;
  position: absolute;
  top: 0;
  left: -2px;
  color: #a88d6c;
}
/*アイコンの＋と×*/
.privacy .accordion-title::before, .privacy .accordion-title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background: #a88d6c;
  top: 49%;
  right: 1%;
  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: transparent;
  padding: 0 25px 13px;
  margin-top: 13px;
  font-size: 95%;
}
.accordion-text span {
  font-size: 103%;
}
.accordion-text span::before {
  content: "■";
  display: inline-block;
  font-size: 90%;
  margin-right: 2px;
  color: #a88d6c;
}
@media (max-width: 550px) {
  .privacy .accordion-title::before, .privacy .accordion-title::after {
    width: 11px;
  }
  .privacy .accordion-title span {
    padding-left: 20px;
  }
  .accordion-text {
    padding: 0 5px 13px;
    font-size: 90%;
  }
}