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

共通設定

=========================================================================================*/
/*GOOGLEFONT*/
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');
p, a, li, dt, dd, time, h1, h2, h3, h4, h5, h6, th, td, span, label, input {
  font-family: "Zen Maru Gothic", serif, "Helvetica Neue", Arial, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal !important;
}
/*セクション共通指定*ベースcolor: BR#544936;　OR#f7b249  背景#fff2e6*/
*, *::before, *::after {
  box-sizing: border-box !important;
}
body {
  color: #544936;
  background-color: #fff;
  /*background-image: radial-gradient(#fff2e6 20%, transparent 20%), radial-gradient(#fff2e6 20%, transparent 20%);*/
  background-image: radial-gradient(#dafbff 20%, transparent 20%), radial-gradient(#dafbff 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}
html {
  font-size: 10px;
}
section {
  margin-bottom: clamp(80px, 20vw, 180px);
  padding: 0px;
}
padding-8vw {
  padding-top: 8vw;
}
section.slider {
  margin-bottom: 0px;
}
a {
  transition: all .3s;
}
/*.btn01 {
  border: 1px solid #f7b249;
  background-color: #f7b249;
}
/*PC以外ホバー禁止
@media(hover: hover) {
  .btn01:hover {
    color: #f7b249!important;
    border: 1px solid #f7b249!important;
  }
  .btn01:hover .btn-arrow {
    fill: #f7b249!important;
  }
}*/
.title-head {
  margin-bottom: clamp(40px, 5vw, 60px);
  color: #544936;
  font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
  letter-spacing: .1em;
  font-weight: 700;
  text-align: center;
}
.title-head span {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-align: center;
  color: #f7b249;
  font-size: clamp(1.6rem, 1.455rem + 0.73vw, 2rem);
  margin-bottom: 15px;
}
.head-icon {
  width: clamp(50px, 5vw, 100px);
}
.head-icon img {
  width: 100%;
}
#page-top {
  right: 10px;
  bottom: 10px;
}
#page-top img {
  max-height: 80px;
}
/*下からふわっと出現*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
/*クラス指定*/
.margin-auto {
  margin-inline: auto;
}
.text-center {
  text-align: center;
}
.align-center {
  align-items: center;
}
.block {
  display: block;
}
.none {
  display: none;
}
.inline-block {
  display: inline-block;
}
.bold {
  font-weight: 500;
}
.ex-bold {
  font-weight: 700;
}
.radius20 {
  border-radius: 20px;
}
.radius50 {
  border-radius: 50px;
}
.mb-1em {
  margin-bottom: 1em;
}
.mb-2em {
  margin-bottom: 2em;
}
.mb-short {
  margin-bottom: clamp(20px, 2vw, 60px);
}
.mb-mid {
  margin-bottom: clamp(60px, 6vw, 100px);
}
.mb-large {
  margin-bottom: clamp(80px, 10vw, 120px);
}
.linear {
  background: linear-gradient(transparent 60%, #ffec51 30%);
}
.aspect3-2, img.aspect3-2 {
  aspect-ratio: 3 / 2;
}
.aspect2-1, img.aspect2-1 {
  aspect-ratio: 2 / 1;
}
/*背景バリエーション*/
.bg-dot01 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: clamp(60px, 15vw, 140px) calc(50vw - 50%);
}
.bg-st01 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: clamp(60px, 15vw, 140px) calc(50vw - 50%);
  background: repeating-linear-gradient(-45deg, #ebf9fe, #ebf9fe 5px, #fff 0, #fff 10px);
}
.bg-hogan01 {
  background-image: linear-gradient(0deg, transparent 19px, #ebf9fe 20px), linear-gradient(90deg, transparent 19px, #ccc 20px);
  background-size: 20px 20px;
}
.bg-check {
  margin: 2em auto;
  padding: 2em; /*内側余白*/
  background-image: linear-gradient(90deg, rgba(111, 111, 111, .1) 50%, transparent 50%), linear-gradient(rgba(111, 111, 111, .1) 50%, transparent 50%); /* チェック色 */
  background-size: 15px 15px; /* チェックのサイズ */
}
.bg-zurashi {
  margin: 2em auto;
  padding: 2em; /*内側の余白*/
  background: none; /*元のボックス背景色なし*/
  border: 1px solid #ccc; /*線の太さ・種類・色*/
  position: relative; /*配置（基準）*/
}
.bg-zurashi:after {
  background-color: rgba(255, 255, 255, 0.7); /*ずらしたボックスの背景色#eee*/
  border: none;
  content: '';
  position: absolute; /*配置（ここを動かす）*/
  top: 10px; /*上から7pxずらす*/
  left: 10px; /*左から7pxずらす*/
  width: 100%;
  height: 100%;
  z-index: -1;
}
/*あしらいバリエーション*/
.ye-shadow {
  box-shadow: 17px 17px 0px 0px rgba(255, 236, 81, 1);
  border-radius: 10px;
}
.slash-title {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto 2em;
  font-size: clamp(2rem, 1.855rem + 0.73vw, 2.4rem) !important;
}
.slash-title::before, .slash-title::after {
  content: '';
  border-radius: 50px;
  width: 3px;
  height: 40px;
  background-color: #f7b249;
}
.slash-title::before {
  margin-right: 30px;
  transform: rotate(-35deg)
}
.slash-title:after {
  margin-left: 30px;
  transform: rotate(35deg)
}
.under-stripe {
  position: relative;
  text-align: center;
  font-size: clamp(1.8rem, 1.582rem + 1.09vw, 2.4rem) !important;
  padding-bottom: .5em;
  margin-bottom: 2em;
}
.under-stripe:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  width: 200px;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #eac800, #eac800 2px, #fffcf5 2px, #fffcf5 4px);
  background: repeating-linear-gradient(-45deg, #f7b249, #f7b249 2px, #fffcf5 2px, #fffcf5 4px);
}
.font-or {
  color: #e89922;
}
/*ボックス幅*/
.width20 {
  width: 20%;
}
.width25 {
  width: 25%;
}
.width30 {
  width: 30%;
}
.width32 {
  width: 32%;
}
.width40 {
  width: 40%;
}
.width48 {
  width: 48%;
}
.width50 {
  width: 50%;
}
.width60 {
  width: 60%;
}
.width70 {
  width: 70%;
}
.width80 {
  width: 80%;
}
@media screen and (max-width: 600px) {
  .width20, .width30, .width32, .width40, .width48, .width50, .width60, .width70, .width80 {
    width: 100%;
  }
}
/*========<!-- ヘッダー　-->========*/
header {
  width: 100%;
}
.g-sub-nav-list li {
  width: 200px;
}
.g-sub-nav02 .g-sub-nav-list.flex {
  margin-bottom: 0px;
}
.header-menu {
  background-color: inherit !important;
}
.header-menu > li {
  padding: 15px 0 30px;
}
.header-box01 {
  margin-bottom: 10px;
}
.header-box02 .logo img {
  max-width: 500px;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .g-menu-b-list > li > a:hover {
    background-color: rgba(255, 252, 245, .7);
  }
}
/*========<!-- フッター　-->========*/
.footer {
  background: #ccec96 url(/mobile/wp-content/uploads/2024/05/ryutai-bottom@2x-8.png) no-repeat left bottom/100%;/*#fff2e6*/
  padding: 80px 0 40px !important;
}
footer .flex {
  align-items: center;
}
.footer-logo {
  width: 70%;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 5px dotted #544936;
  margin-bottom: 40px;
}
.footer-address p, .footer-address a, .footer-menu a, .sns-icon-title p, .sns-sub-nav li a, .copyright p {
  color: #544936 !important;
}
.footer-menu-title {
  background-color: #544936;
  color: #fff;
}
.footer-menu > li > a {
  border-bottom: 1px dashed #544936;
}
.sns-icon-wrap.flex .line {
  background-color: #544936 !important;
}
@media screen and (max-width: 1024px) {
  .footer-menu a {
    color: #544936 !important;
  }
}
/*========<!-- 下層共通　-->========*/
.sub-header-txt {
  line-height: 1.5em;
  background-color: inherit;
  color: #544936
}
/*========================================================================================

HOME

=========================================================================================*/
/*背景色柄余白の指定*/
section.home-section01, section.home-section02, section.home-section04, section.home-section06 {
  padding: clamp(80px, 20vw, 180px) 0;
  margin-bottom: 0px;
}
section.home-section08, section.home-section03, section.home-section05 {
  padding: clamp(20px, 7vw, 70px) 0 clamp(60px, 18vw, 140px);
  margin-bottom: 0px;
}
section.home-section07 {
  padding: clamp(20px, 7vw, 70px) 0 clamp(60px, 18vw, 140px);
  margin-bottom: 0px;
}
.home-section01 /*新着情報/OR#fff2e6*/ {
  background-color: #ccec96;
}
.home-section01 .bg-shape {
  background: url(/mobile/wp-content/uploads/2024/05/ryutai-or@2x-8.png) no-repeat left top/30%, url(/mobile/wp-content/uploads/2024/05/ryutai-pi-26@2x-8.png) no-repeat right top/30%;
}
.home-section08 /*Instagram/long*/ {
  background: url(/mobile/wp-content/uploads/2024/05/ryutai-side-piye@2x-8.png) no-repeat border-box left top/100%;
}
.home-section02 /*あずかり保育/long#fff2e6*/ {
  background-color: #ccec96;
}
.home-section02 .bg-shape /*新着情報*/ {
  background: url(/mobile/wp-content/uploads/2024/05/ryutai-side-yeor@2x-8.png) no-repeat border-box left top/100%, url(/mobile/wp-content/uploads/2024/05/ryutai-lv-gr@2x-8.png) no-repeat left bottom/100%;
}
.home-section03 /*園の特徴/OR*/ {
  background: url(/mobile/wp-content/uploads/2024/05/ryutai-side-piye@2x-8.png) no-repeat border-box left top/100%;
}
.home-section04 /*園の生活/long#fff2e6*/ {
   background-color: #ccec96;
}
.home-section04 .bg-shape/*園の生活/long*/ {
  background: url(/mobile/wp-content/uploads/2024/05/ryutai-side-piye@2x-8.png) no-repeat border-box left top/100%, url(/mobile/wp-content/uploads/2024/05/ryutai-lv-gr@2x-8.png) no-repeat left bottom/100%;
}
.home-section05 /*園の概要/OR*/ {
 background: url(/mobile/wp-content/uploads/2024/05/ryutai-side-yeor@2x-8.png) no-repeat border-box left top/100%, url(/mobile/wp-content/uploads/2024/05/ryutai-side-piye@2x-8.png) no-repeat left bottom/100%;
}
.home-section06 /*お問い合わせ/long#fff2e6*/ {
  background-color: #ccec96;
}
.home-section06 .bg-shape /*お問い合わせ/long*/ {
  background: url(/mobile/wp-content/uploads/2024/05/ryutai-lv-gr@2x-8.png) no-repeat left top/100%;
}
.home-section07 /*めいぜんな仲間たち/OR*/ {
  background: url(/mobile/wp-content/uploads/2024/05/ryutai-or@2x-8.png) no-repeat left 0%/30%, url(/mobile/wp-content/uploads/2024/05/ryutai-pi-26@2x-8.png) no-repeat right top/30%;
}
/*波下付*/
.custom-shape-divider-top-1716514693 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-top-1716514693 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}
.custom-shape-divider-top-1716514693 .shape-fill {
  fill: #ccec96;/*#FFF2E6*/
}
/*波上付*/
.custom-shape-divider-bottom-1716514455 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.custom-shape-divider-bottom-1716514455 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}
.custom-shape-divider-bottom-1716514455 .shape-fill {
  fill: #ccec96;/*#FFF2E6*/
}
svg {
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
/*========<!-- トップスライダー　-->========*/
.slider {
  background-color: #ffffff;
  position: relative;
  z-index: -1;
}
.slider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  z-index: 1;
}
.slider::after {/*mobile/wp-content/uploads/2024/05/waves-top2.png*/
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/mobile/wp-content/uploads/2024/06/wave-green.png) no-repeat left bottom/100%;
  bottom: 0%;
  left: 0%;
  z-index: 1;
}
/*========<!-- home-section01 お知らせ-->========*/
.width1300 {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
.box-hasen {
  box-shadow: 0px 0px 0px 15px rgba(255, 255, 255, 0.7);
  border: dotted 4px #f8cdd6;
}
.news-list01 li {
  border-bottom: 3px dotted #ef9797;
}
.n-news-list li {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 3px dotted #d1dee8;
}
.n-news-list li:first-of-type, .n-news-list li:last-of-type {
  border-bottom: none;
}
.news-list02 li {
  border-bottom: 3px dotted #f2af72;
}
.home-section01 .col-48 {
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-section01 .col-48 .news-list02, .home-section01 .col-48 .news-list01 {
  padding: 2em 4em;
  flex: 1
}
.home-section01 .col-48 .btn01 {
  margin-bottom: 3em;
}
.home-section01 .title02 {
  border-radius: 20px 20px 0px 0px;
}
.home-section01 .title02.pi {
  background-color: #ef9797;
}
.home-section01 .title02.or {
  background-color: #f2af72;
}
/*========<!-- home-section02 あずかり保育について　-->========*/
/*==========tablepress==========*/
/*.home-section02 .tb_col5 .tablepress tbody td.column-1, .home-section02 .tb_col5 .tablepress tbody td.column-2, .home-section02 .tb_col5 .tablepress tbody td.column-3, .home-section02 .tb_col5 .tablepress tbody td.column-4, .home-section02 .tb_col5 .tablepress tbody td.column-5 {
  width: 20%;
  background-color: #fff;
  text-align: center !important;
}
.home-section02 .tb_col4 .tablepress tbody td.column-1, .home-section02 .tb_col4 .tablepress tbody td.column-2, .home-section02 .tb_col4 .tablepress tbody td.column-3, .home-section02 .tb_col4 .tablepress tbody td.column-4, .home-section02 .tb_col4 .tablepress tbody td.column-5 {
  width: 25%;
  background-color: #fff;
  text-align: center !important;
}
.home-section02 .tb_col3 .tablepress tbody td.column-1, .home-section02 .tb_col3 .tablepress tbody td.column-2, .home-section02 .tb_col3 .tablepress tbody td.column-3, .home-section02 .tb_col3 .tablepress tbody td.column-4, .home-section02 .tb_col3 .tablepress tbody td.column-5 {
  width: 33%;
  background-color: #fff;
  text-align: center !important;
  border: 1px solid #544936;
}
.tablepress tbody td.column-1 {
  width: 30%;
  font-weight: 700;
}
table.tablepress-id-6 thead th:first-child {
	border-top: 1px solid #544936;
     border-left: 1px solid #544936;
  border-right: 1px solid #ffffff;
}
table.tablepress-id-6 thead th:nth-child(2) {
	border-top: 1px solid #544936;
  border-right: 1px solid #ffffff;
}
table.tablepress-id-6 thead th:last-child {
	border-top: 1px solid #544936;
  border-right: 1px solid #544936;
}
table.tablepress {
    border: 1px solid #544936;
}
.tablepress>*+tbody>*>*, .tablepress>tbody>*~*>*, .tablepress>tfoot>*>* {
    border-top: 1px solid #544936!important;
}
.tablepress>:where(tbody)>.even>* {
    color: #544936!important;
}*/

/*tb6*/
.tablepress>*+tbody>*>* {
  border-top: 1px solid #544936!important;
}
.tablepress.tb6 tbody td.column-1 {
  width: 20%;
  background-color: #544936!important;
  color: #ffffff!important;
}
.tablepress.tb6 tbody td.column-1 {
  border-bottom: 1px solid #ffffff!important;
}
.tablepress.tb6 tbody tr.row-3 td.column-1 {
  border-bottom: 1px solid #544936!important;	
}
.tablepress.tb6 tbody td.column-2 {
  width: 40%;
}
.tablepress.tb6 tbody td.column-3 {
  width: 40%;
}
/*tb2*/
.tablepress.tb2 tbody td, .tablepress.tb3 tbody td, .tablepress.tb4 tbody td, .tablepress.tb5 tbody td {
  text-align: center!important;
}
.tablepress.tb2 tbody td.column-1 {
  width: 15%;
  background-color: #ffcaca!important;
}
.tablepress.tb2 tbody td.column-2 {
  width: 45%;
}
.tablepress.tb2 tbody td.column-3 {
  width: 20%;
  background-color: #bdfdff!important;
}
.tablepress.tb2 tbody td.column-4 {
  width: 20%;
  background-color: #ffcaca!important;
}
/*tb3*/
.tablepress.tb3 tbody td.column-1 {
  width: 15%;
  background-color: #ffcaca!important;
}
.tablepress.tb3 tbody td.column-2 {
  width: 30%;
}
.tablepress.tb3 tbody td.column-3 {
  width: 55%;
  background-color: #ffcaca!important;
}
/*tb4*/
.tablepress.tb4 tbody td.column-1 {
  width: 15%;
  background-color: #ffcaca!important;
}
.tablepress.tb4 tbody td.column-2 {
  width: 45%;
}
.tablepress.tb4 tbody td.column-3 {
  width: 15%;
  background-color: #bdfdff!important;
}
.tablepress.tb4 tbody td.column-4 {
  width: 25%;
  background-color: #ffcaca!important;
}
/*tb5*/
.tablepress.tb5 tbody td.column-1 {
  width: 15%;
  background-color: #ffcaca!important;
}
.tablepress.tb5 tbody td.column-2 {
  width: 30%;
}
.tablepress.tb5 tbody td.column-3 {
  width: 55%;
  background-color: #ffcaca!important;
}
/*==========tablepressここまで==========*/
.bk-title {
  color: #ffffff;
  background: #f7b249;
  border-radius: 100px;
  text-align: center;
  font-size: clamp(1.8rem, 1.582rem + 1.09vw, 2.4rem) !important;
  margin-bottom: 2em;
}
.home-section02 .width80 {
  margin-inline: auto;
}

/*========<!-- home-section03 園の特徴 -->========*/
.com-box02-list {
  justify-content: center !important;
  row-gap: 80px;
  column-gap: 60px;
}
.com-box02-img img {
  border-radius: 20px;
  margin-bottom: 30px;
}
.com-box02-head {
  border-radius: 50px;
  margin-bottom: 30px !important;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  a.font-or.fancybox.image:hover {
    opacity: .5;
  }
}
/*========<!-- home-section04 園の生活 -->========*/
/* タブ */
.tab-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.tab-item {
  width: 50%;
  padding: 10px 0;
  background-color: #BDBDBD;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 20px 20px 0 0;
  border: 2px solid #BDBDBD;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .tab-item:hover {
    background-color: #ffffff;
    color: #BDBDBD;
    font-weight: 700;
  }
}
.tab-item.is-active {
  background-color: #544936;
  border-radius: 20px 20px 0 0;
  border: 2px solid #544936;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .tab-item.is-active:hover {
    color: #544936;
    background-color: #ffffff;
    border: 2px solid #544936;
    font-weight: 700;
  }
}
.com-timeline01-head {
  font-size: clamp(1.8rem, 1.727rem + 0.36vw, 2rem) !important;
}
/* パネル */
.panel-item {
  display: none;
  width: 100%;
  border-radius: 0px 0px 20px 20px;
  padding: 7rem 3rem 3rem 1.5rem;
  background-color: #ffffff;
}
.panel-item.is-active {
  display: block;
  animation: panel-show .9s ease-in-out forwards;
}
/* パネル切り替えのアニメーション */
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.com-timeline01-img-wrap img {
  border-radius: 20px;
}
.com-list03-ttl {
  border-radius: 15px;
}
/*========<!-- home-section05 園の概要 -->========*/
.outline {
  padding: 7%;
  background-color: #ccec96;/*#fff2e6*/
}
/*テーブル*/
.home-section05 .bg-or {
  background-color: #ccec96;/*#fff2e6*/
  padding: 7%;
  border-radius: 20px;
}
.home-section05 table.tablepress.tablepress-id-1 {
  border: none !important;
}
.home-section05 table.tablepress.tablepress-id-1 tbody td, .home-section05 table.tablepress.tablepress-id-1 tbody th {
  border: none !important;
}
.home-section05 table.tablepress.tablepress-id-1 tbody tr {
  border-bottom: 3px dotted #f7b249;
}
.home-section05 #tablepress-1-description, .home-section05 .tablepress-table-name {
  display: none;
}
.home-section05 .tablepress tbody td.column-2 {
  background-color: inherit;
}
.home-section05 .tablepress tbody td.column-1 {
  background-color: inherit;
}
.home-section05 table.tablepress.tablepress-id-1 tbody td.column-1 {
  color: #e89922;
  padding-left: 40px;
}
.home-section05 .tablepress > :where(tbody) > .even > * {
  color: #544936 !important;
}
.home-section05 tr p {
  margin-bottom: 0em;
}
.home-section05 .tablepress tbody td {
  vertical-align: middle;
}
.home-section05 table.tablepress thead th, .home-section05 .tablepress tbody td, .home-section05 .tablepress tbody th {
  border: 1px solid #544936;
}
.home-section05 .table_style01 {
  border-collapse: collapse;
  width: 100%;
}
.home-section05 .table_style01 th, .table_style01 td {
  padding: 1em;
}
.home-section05 .table_style01 th {
  border-right: 1px solid #ef8dad;
  font-weight: bold;
  text-align: left;
  width: 20%;
  min-width: 4em;
  color: #ef8dad;
}
.home-section05 .map iframe {
  width: 100%;
  aspect-ratio: 3/1;
  margin-top: 3vw;
}
.home-section05 .tablepress tbody td.column-1 {
  width: 30%;
  font-weight: 700;
  font-size: 1.8rem;
}
.home-section05 .tablepress tbody td, .home-section05 .tablepress tbody th {
  font-size: 1.8rem;
}
.relative {
  position: relative;
}
.dogs {
  position: absolute;
  right: 10px;
  bottom: -50px;
  width: 25%;
}
/*ループスライドショー*/
.loop-slider-wrapper {
  display: flex;
  width: 100vw;
  overflow: hidden;
  margin: 10vw calc(50% - 50vw) 0;
}
.loop-slide {
  width: calc(100vw / 5);
  margin-right: 20px;
}
.loop-slider-wrapper .loop-slider {
  display: flex;
  width: auto;
  height: 100%;
}
.loop-slider-wrapper .loop-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  border:5px solid;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.loop-slider-wrapper .loop-slider:first-child {
  animation: loop 100s -50s linear infinite;
}
.loop-slider-wrapper .loop-slider:last-child {
  animation: loop2 100s linear infinite;
}
/*========<!-- home-section06 お問い合わせ -->========*/
section.home-section06 {
  padding-bottom: clamp(80px, 20vw, 180px) !important;
  margin-bottom: 0 !important;
}
.contact-form01 {
  margin-bottom: clamp(60px, 5vw, 100px);
}
.contact-form01 tbody {
  border: none;
  box-shadow: 0px 0px 0px 24px #ffffff;
  border-radius: 20px;
}
.contact-form01 th, .contact-form01 td {
  background-color: #ffffff;
  border-bottom: 3px dotted #d1dee8;
}
.contact-form01 tr:last-child th, .contact-form01 tr:last-child td {
  border-bottom: none;
}
input[type="submit"], input[type="button"] {
  background: #544936;
  border: 1px solid #544936;
  border-radius: 30px;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  input[type="submit"]:hover, input[type="button"]:hover {
    color: #544936;
    transition-duration: .3s;
  }
}
/*========<!-- home-section07 めんせんな仲間たち（バナーリンク） -->========*/
/*========<!-- home-section09 お問い合わせ -->========*/
input[type="text"], textarea, input[type="email"], input[type="tel"], input[type="radio"] {
	background-color: #ecebeb;}
/*========<!-- home-section08 Instagram -->========*/
#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a {
  background: #544936 !important;
}
#sb_instagram .sbi_follow_btn a {
  background: #f7b249 !important;
  color: #fff;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  #sb_instagram .sbi_follow_btn a:hover, #sb_instagram .sbi_follow_btn a:focus {
    box-shadow: none;
    opacity: .5;
  }
}