@charset "UTF-8";
body{font-family: uddigikyokasho-pro, sans-serif;font-style: normal;font-weight: 400;}
img{max-width: 100%; height: auto;}
h2,h3{ font-weight: bold;}
p{line-height: 1.8;}
a{transition:0.5s;word-break: break-word;}
a:hover{opacity: 0.7;}
iframe {width: 100%;}
body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }
#header {
    display: flex;
    padding: 5px 10px;
    height: 65px;
    align-items: center;
    background: #fff1e1;
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
}
#header.header-shadow {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}
.logo img {
    width: 230px;
}
nav {
    background: #fff1e1;
    color: #fff;
    transition: all 0.6s;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}
nav ul ul{
	display: block;
}
nav ul li{
	position: relative;
}

nav ul li a {
    display: block;
    text-decoration: none;
    padding: 20px 35px;
    transition: all .3s;
    font-weight: bold;
    color: #ef4d37;
}
nav ul li a:hover{
    opacity: 1;
    color: #ef4d37;
}

@media screen and (max-width:1200px){
nav {
    padding: 0;
    margin-top: 65px;
    border-top: 1px solid #ef4d37;
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    transition: all 0.6s;
}

nav.panelactive{
    right: 0;
}
/* nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 85vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
} */
nav ul{
    display: block;
}
nav ul li a{
	border-bottom:1px solid #ef4d37;
}
nav ul li a::after {
    content: "";
    content: '';
    position: absolute;
    top: 25px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #ef4d37;
    border-right: 3px solid #ef4d37;
    transform: rotate(45deg);
    right: 31px;
}
nav ul li:nth-of-type(6) a::after {
    display: none;
}
.openbtn {
    position: fixed;
    z-index: 9999;
    top: 9px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #ef4d37;
    border-radius: 6px;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 50%;
}
.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
}
#g-nav ul li a {
    padding-left: 5rem;
    font-size: 18px;
}
#g-nav ul li a::before {
    content: "";
    background-image: url(../img/nav-ico1-sp.png);
    width: 30px;
    height: 30px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 23%;
    left: 34px;
    transition: 0.5s;
}
#g-nav ul li a:hover::before {
    transform: rotate(3deg);
    transition: 0.5s;
}
#g-nav ul li:nth-of-type(2) a::before {
    background-image: url(../img/nav-ico2-sp.png);
    width: 40px;
    height: 36px;
    top: 27%;
    left: 30px;
}
#g-nav ul:nth-of-type(2) li:nth-of-type(2) a::before{
    background-image: url(../img/nav-ico4-sp.png);
}
#g-nav ul:nth-of-type(2) li:nth-of-type(1) a::before {
    background-image: url(../img/nav-ico3-sp.png);
    width: 40px;
    left: 28px;
    top: 30%;
}

}
.wrap{
    background: #fff1e1;
}
#mainvisual {
    margin-top: 65px;
    position: relative;
    padding: 1rem 0;
}
#mainvisual .slider::before {
    content: "";
    background-image: url(../img/deco-mainvisual.png);
    display: block;
    width: 65px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 2;
}
#mainvisual .slider::before,#news ul.news-list::before,img.wp-image-85, img.wp-image-86 {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
#news ul.news-list::before {
  animation: floating-y2 3s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y2 {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
#news ul.news-list::after {
  animation: floating-y3 1.5s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y3 {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
#feature .row::before,.dance img.wp-image-46{
  animation: floating 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
#mainvisual .slider::after {
    content: "";
    background-image: url(../img/mainvisual-wrap-sp.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.slider {
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0 auto;
    width: 95%;
}
.slider-item img {
    object-fit: cover;
    width: 100%;
    object-position: center;
}
/* .slider, .slider-item, .slider-item img {
    height: 30vh;
} */
.slick-dots {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: -25px 0 0 0;
    padding: 0;
}
.slick-dots li {
    display:inline-block;
	margin:0 8px;
}
.slick-dots > li:first-child:last-child {
    opacity: 0;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: #fff;
    border: none;
}
.slick-dots .slick-active button {
    background: #000;
}
.catchcopy {
    margin: 1rem auto 0;
    width: 75%;
}
.catchcopy p {
    background: #ef4d37;
    width: fit-content;
    padding: 5px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}
section {
    padding: 2rem 0;
}
h2 {
    text-align: center;
    margin-bottom: 1rem;
}
#intro{
    position: relative;
}
#intro h2 {
    color: #ef4d37;
    font-size: 28px;
    margin-bottom: 2rem;
}
#intro::after {
    content: "";
    background-image: url(../img/intro-bottom-sp.png);
    width: 95%;
    height: 110px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    background-position: center;
}
#feature {
    background-color: #fcd2a7;
    position: relative;
    padding-top: 0;
    margin-top: 3rem;
    padding-bottom: 6rem;
}
#feature::after{
    content: "";
    background-image: url(../img/bg-feature.png);
    background-size: cover;
    display: block;
    width: 100%;
    height: 140px;
    position: absolute;
    top: -7rem;
    background-repeat: no-repeat;
    background-position: top;
}
#feature .container{
    position: relative;
    z-index: 2;
}
#feature h2 {
    color: #5e2b02;
}
#feature .col-md-4 {
    background-image: url(../img/feature1.png);
    background-size: contain;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    height: 270px;
    padding: 4rem 2.5rem 4rem;
    margin-top: 2rem;
    background-position: center;
    font-weight: bold;
}
#feature .col-md-4:nth-of-type(2) img, #feature .col-md-4:nth-of-type(3) img {
    top: -40px;
}
#feature .col-md-4:nth-of-type(2) {
    background-image: url(../img/feature2.png);
    padding: 3rem 2.5rem 4rem;
}
#feature .col-md-4:nth-of-type(3){
    background-image: url(../img/feature3.png);
    padding: 3rem 2.5rem 4rem;
}
#feature .col-md-4 h3{
    text-align: center;
}
#feature .col-md-4 img {
    position: absolute;
    top: -15px;
    width: 65px;
    left: 40px;
    object-fit: contain;
    height: 80px;
}
#feature .col-md-4 p {
    margin: 0;
    font-size: 15px;
}
a.link-btn {
    display: block;
    background: #ef4d37;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 30px 0;
    margin: 2rem auto 0;
    border-radius: 60px;
    width: 310px;
    border: 2px solid #ef4d37;
    font-weight: bold;
}
a.link-btn:hover {
    opacity: 1;
    background: #fff;
    color: #ef4d37;
}
#news {
    background-color: #d3efec;
    background-image: url(../img/bg-news.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    padding-bottom: 4rem;
}
#news::before {
    content: "";
    background-image: url(../img/bg-news-top.png);
    width: 100%;
    height: 60px;
    display: block;
    position: absolute;
    top: -50px;
    background-size: cover;
    background-position: center;
}
#news h2 {
    color: #259386;
    margin-bottom: 2rem;
}
#news h2::before {
    content: "";
    background-image: url(../img/deco-news-top.png);
    width: 90%;
    height: 50px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}
ul.news-list {
    padding: 0;
    margin: 0;
}

ul.news-list li {
    list-style-type: none;
    margin-bottom: 1rem;
}

ul.news-list li a {
    background: #fff;
    padding: 1rem;
    display: block;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    padding-bottom: 2rem;
}
ul.news-list li a h3 {
    font-size: 16px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: 0.5s;
    line-height: 1.6;
}
.img-wrap {
    position: relative;
    margin-bottom: 2rem;
}
.img-wrap p.date {
    position: absolute;
    bottom: 0;
    margin: 0;
    right: 0;
    background: #eb6b6a;
    color: #fff;
    font-weight: bold;
    padding: 3px 20px;
    border-radius: 20px 0 0 0;
    letter-spacing: 1px;
}
.img-wrap figure {
    margin: 0;
    overflow: hidden;
}
.img-wrap figure img {
    object-fit: cover;
    width: 100%;
    height: 240px;
    transition: 0.5s;
}
ul.news-list li a:hover {
    opacity: 1;
}
ul.news-list li a:hover .img-wrap figure img{
    transform: scale(1.2);
    transition: 0.5s;
}
ul.news-list li a:hover h3{
    color: #ef4d37;   
    transition: 0.5s;
}
table {
    border-top: 1px solid #ef4d37;
    width: 100%;
}
table th {
    font-weight: 400;
    width: 25%;
}
table th,table td {
    padding: 10px;
}
table tr {
    border-bottom: 1px solid #ef4d37;
}
.map.col-md-6 {
    margin-top: 1rem;
}
.map iframe {
    height: 400px;
}
#footer {
    position: relative;
    background-image: url(../img/bg-footer.png);
    background-size: cover;
    background-position: top;
    padding: 5rem 0 0;
}
#page-top {
    position: absolute;
    right: 0;
    margin: 0;
    top: -20px;
}
#page-top img {
    width: 90px;
}
#contact {
    background-image: url(../img/bg-contact-sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
    font-weight: bold;
    background-position: center;
}
a.col-md-6.mail {
    background: #fff;
    padding: 20px 0;
    color: #ef4d37;
    text-decoration: none;
    margin: 1rem 0 0;
    border-radius: 6px;
    border: 4px solid #fff;
}
a.col-md-6.mail::before {
    content: "";
    background-image: url(../img/ico-mail.png);
    display: inline-block;
    width: 35px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: bottom;
    margin-right: 10px;
    transition: 0.5s;
}
a.col-md-6.mail:hover::before{
    background-image: url(../img/ico-mail2.png);
    transition: 0.5s;
}
a.col-md-6.mail:hover {
    background: #ef4d37;
    color: #fff;
    opacity: 1;
}
#f-bottom .logo {
    text-align: center;
    margin-bottom: 2rem;
}
#f-bottom{
    color: #ef4d37;
    font-weight: bold;
}

@media screen and (min-width:760px) {
#mainvisual .slider::after{
    background-image: url(../img/mainvisual-wrap.png);
}
#mainvisual .slider::before {
    top: 16px;
    left: 52px;
}
.catchcopy {
    width: auto;
    margin: 0;
    position: absolute;
    top: 25px;
    right: 15px;
    z-index: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    gap: 0 10px
}
.catchcopy p {
    writing-mode: vertical-rl;
    margin: 0;
    padding: 15px 5px;
    letter-spacing: 2px;
}
.slider {
    width: 100%;
}
#intro {
    text-align: center;
}
#feature {
    margin-top: 4rem;
    padding-bottom: 8rem;
}
#feature::after {
    top: -10rem;
    height: 200px;
}
#intro::after {
    height: 230px;
    margin: -4rem auto 0;
    background-position: center;
}
#feature .col-md-4 {
    width: 49%;
}
#feature .row {
    justify-content: center;
    gap: 0 10px;
    flex-wrap: wrap;
}
#news {
    background-size: cover;
}

#news::before {
    height: 100px;
}
#news {
    padding: 3rem 0 5rem;
}
#news h2::before{
    height: 94px;
}
ul.news-list {
    display: flex;
    gap: 0 10px;
    flex-wrap: wrap;
}
ul.news-list li {
    width: 32.3%;
    display: inline-grid;
    align-items: stretch;
}
.img-wrap figure img {
    height: 145px;
}
.map.col-md-6 {
    margin-top: 0;
}
.map iframe {
    height: 340px;
}
#contact{
    background-image: url(../img/bg-contact.png);
}
a.col-md-6.mail{
    margin: 0;
}
#contact .row {
    width: 90%;
    margin: 0 auto !important;
    align-items: center;
}
}

@media screen and (min-width:1200px) {
#header {
    height: 120px;
}
#header .logo {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto !important;
    width: fit-content;
}
#header .logo img {
    width: 180px;
}
#g-nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: transparent;
}
#mainvisual .slider::before {
    width: 115px;
    height: 95px;
    left: 4%;
}
.container {
    max-width: 1100px;
}
nav ul li a {
    padding: 70px 45px 0;
    text-align: center;
}
#g-nav ul li a::before {
    content: "";
    background-image: url(../img/nav-ico1.png);
    width: 100%;
    height: 90px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
    top: 5px;
    left: 12px;
    transition: 0.5s;
}
#g-nav ul li a:hover::before {
    transform: rotate(3deg);
    transition: 0.5s;
}
#g-nav ul:nth-of-type(2) li:nth-of-type(1) a {
    margin-left: 3.5rem;
}
#g-nav ul li:nth-of-type(2) a::before {
    background-image: url(../img/nav-ico2.png);
    top: 10px;
}
#g-nav ul:nth-of-type(2) li:nth-of-type(1) a::before {
    background-image: url(../img/nav-ico3.png);
    top: 10px;
    left: 60px;
}
#g-nav ul:nth-of-type(2) li:nth-of-type(2) a::before {
    background-image: url(../img/nav-ico4.png);
    left: 39px;
}
#g-nav ul{
    width: 50%;
}
#mainvisual {
    margin-top: 120px;
}
.catchcopy p {
    font-size: 30px;
}
.catchcopy {
    gap: 0 20px;
    right: 30px;
}
#intro h2 {
    font-size: 40px;
    margin-bottom: 3rem;
}
section {
    padding: 4rem 0;
}
#intro::after {
    background-image: url(../img/intro-bottom.png);
    height: 28rem;
    margin: -16rem auto 0;
}
#feature::after {
    top: -16rem;
    height: 330px;
}
h2 {
    font-size: 35px;
}
#feature .row::before {
    content: "";
    background-image: url(../img/deco-fe-right.png);
    width: 130px;
    height: 160px;
    display: block;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    right: 4%;
    margin: 0 auto;
    background-position: center;
    top: -18%;
}
#feature .col-md-4 {
    width: 32%;
}
#feature .col-md-4 h3 {
    font-size: 26px;
    margin-bottom: 1rem;
}
#feature .col-md-4 img {
    width: 80px;
    left: 50px;
    height: 85px;
}
#feature .d-md-flex {
    justify-content: center;
    gap: 30px;
}
#feature .d-md-flex a.link-btn {
    margin: 2rem 0 0;
}
#feature {
    padding-bottom: 10rem;
}
#feature::before {
    content: "";
    background-image: url(../img/deco-fe-bottom.png);
    width: 95%;
    height: 150px;
    display: block;
    position: absolute;
    bottom: 90px;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-position: center;
}
#feature .container {
    max-width: 1180px;
}
.fe-deco {
    background-image: url(../img/deco-fe-top.png);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    top: -20%;
}
#news::before {
    height: 140px;
    top: -80px;
}
#news {
    padding: 4rem 0 8rem;
}
#news h2::before {
    height: 130px;
    background-position: center;
}
#news h2 {
    margin-bottom: 3rem;
}
ul.news-list {
    gap: 0 17px;
}
.img-wrap figure img {
    height: 250px;
}
ul.news-list li {
    width: 32.2%;
}
ul.news-list li a {
    padding: 1rem 1rem 3rem;
}
table th, table td {
    padding: 20px 25px;
}
.map iframe {
    height: 415px;
}
#page-top img {
    width: 130px;
}
#page-top {
    top: -30px;
}
#footer {
    padding: 8rem 0 0;
}
#contact {
    padding: 6rem 2rem;
}
#contact h2 {
    margin-bottom: 2rem;
}
#contact h2 + p {
    margin-bottom: 3rem;
}
#contact .container {
    max-width: 900px;
}
#contact .row {
    width: 80%;
}
a.col-md-6.mail {
    font-size: 20px;
}
#f-bottom {
    padding: 3rem 0 2rem;
    position: relative;
}
#f-bottom::after {
    content: "";
    background-image: url(../img/deco-footer-left.png);
    display: block;
    width: 250px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 35px;
    left: 36px;
}
#f-bottom::before {
    content: "";
    background-image: url(../img/deco-footer-right.png);
    display: block;
    width: 250px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 35px;
    right: 36px;
}
ul.f-nav {
    margin: 0 0 1rem;
    padding: 0;
    display: flex!important;
    justify-content: center;
    gap: 50px;
}
ul.f-nav li {
    list-style-type: none;
}
ul.f-nav li a {
    color: #ef4d37;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 3px solid;
    padding: 0 10px;
}
}

@media screen and (min-width:1400px) {
#header .logo img {
    width: 260px;
}
#header {
    height: 170px;
}
#mainvisual {
    margin-top: 170px;
    padding: 0;
}
nav ul li a {
    font-size: 20px;
}
#g-nav ul li a::before {
    height: 100px;
    top: 3px;
}
#g-nav ul li:nth-of-type(2) a::before {
    top: 6px;
}
#g-nav ul:nth-of-type(2) li:nth-of-type(1) a {
    margin-left: 4rem;
}
#g-nav ul:nth-of-type(2) li:nth-of-type(1) a::before {
    top: 6px;
    left: 70px;
}
#g-nav ul:nth-of-type(2) li:nth-of-type(2) a::before {
    background-image: url(../img/nav-ico4.png);
    left: 40px;
    height: 110px;
    top: -2px;
}
#mainvisual .slider::before {
    width: 150px;
    height: 126px;
}
.catchcopy p {
    font-size: 36px;
}
.catchcopy {
    gap: 0 25px;
    right: 70px;
}
#intro h2 {
    font-size: 50px;
}
.container {
    max-width: 1200px;
}
#intro p {
    font-size: 20px;
}
#intro::after {
    height: 34rem;
    margin: -20rem auto 0;
}
#feature::after {
    top: -20rem;
}
h2 {
    font-size: 40px;
}
#feature .row::before {
    right: -3%;
    width: 160px;
    height: 190px;
}
#feature .container {
    max-width: 1280px;
}
#feature .col-md-4 h3 {
    font-size: 30px;
}
#feature .col-md-4 p {
    font-size: 18px;
    line-height: 1.5;
}
#feature .container {
    max-width: 1300px;
}
#feature .col-md-4 {
    width: 32.8%;
    min-height: 310px;
    padding: 4.5rem 3rem 4rem;
}
#feature .col-md-4:nth-of-type(2) {
    padding: 4.5rem 3rem 4rem;
    height: 330px;
}
#feature .col-md-4:nth-of-type(3) {
    padding: 4.5rem 3.5rem 4rem;
    height: 335px;
}
#feature .col-md-4 img {
    width: 100px;
    height: 100px;
}
#feature .d-md-flex a.link-btn {
    margin: 2rem 0 0;
    width: 350px;
}
#feature {
    padding-bottom: 13rem;
}
#feature::before {
    height: 170px;
}
#news {
    padding: 6rem 0 10rem;
}
#news h2::before {
    height: 160px;
    right: -110px;
}
ul.news-list {
    gap: 0 20px;
}
#news ul.news-list::before {
    content: "";
    background-image: url(../img/deco-news-left.png);
    width: 200px;
    height: 370px;
    display: block;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 19%;
    left: 1%;
}
#news ul.news-list::after {
    content: "";
    background-image: url(../img/deco-news-right.png);
    width: 110px;
    height: 110px;
    display: block;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 30%;
    right: 1%;
}
section {
    padding: 6rem 0;
}
#contact {
    background-size: contain;
}
#contact .container {
    max-width: 1000px;
}
#contact h2 + p {
    font-size: 18px;
}
ul.f-nav li a {
    font-size: 20px;
}
a.link-btn{
    font-size: 18px;
}
ul.news-list li {
    width: 32%;
}
}

@media screen and (min-width:1600px) {
.catchcopy p {
    font-size: 42px;
}
#intro h2 {
    font-size: 60px;
}
#intro::after {
    height: 38rem;
    margin: -23rem auto 0;
}
h2 {
    font-size: 50px;
}
#feature::after {
    top: -21rem;
    height: 380px;
}
#feature .container {
    max-width: 1400px;
}
#feature .col-md-4 h3 {
    font-size: 36px;
}
#feature .col-md-4 {
    min-height: 330px;
    padding: 4.5rem 4rem 4rem;
}
#feature .col-md-4:nth-of-type(3) {
    height: 340px;
}
a.link-btn{
    font-size: 20px;
}
#feature::before {
    height: 200px;
}
#news ul.news-list::before {
    width: 220px;
    height: 450px;
    bottom: 25%;
}
#news ul.news-list::after {
    width: 130px;
    height: 140px;
    right: 3%;
}
table td {
    padding-left: 0;
}
table th, table td {
    font-size: 18px;
}
.map iframe {
    height: 435px;
}
#contact h2{
    font-size: 40px;
}
a.col-md-6.mail::before {
    width: 45px;
    height: 31px;
}
#contact {
    padding: 8rem 0;
}
#page-top {
    top: -45px;
}
#page-top img {
    width: 150px;
}
.logo img {
    width: 260px;
}
ul.f-nav li a {
    font-size: 24px;
}
#f-bottom p {
    font-size: 18px;
}
ul.f-nav {
    margin-bottom: 2rem;
}
#f-bottom::after {
    width: 310px;
    height: 410px;
    bottom: 60px;
}
#f-bottom::before {
    width: 350px;
    height: 270px;
    bottom: 85px;
}
}
@media screen and (min-width:1700px) {
    #mainvisual .slider::before {
        width: 175px;
        height: 150px;
        top: 31px;
    }
}
@media screen and (min-width:1900px) {
#intro::after {
    height: 45rem;
    margin: -28rem auto 0;
}
#feature .row::before {
    right: -11%;
    width: 180px;
    height: 230px;
    top: -21%;
}
#feature::after {
    top: -24rem;
    height: 400px;
}
#feature {
    padding-bottom: 15rem;
}
.fe-deco {
    height: 110%;
    top: -30%;
}
#news::before {
    height: 185px;
    top: -95px;
}
#feature::before {
    bottom: 170px;
}
#news {
    padding: 6rem 0 12rem;
    background-size: cover;
}
#news ul.news-list::before {
    width: 260px;
    height: 590px;
    left: 2%;
}
#news ul.news-list::after {
    width: 150px;
    height: 165px;
    right: 5%;
}
}

/* page */
#page_header {
    margin-top: 65px;
    position: relative;
    background: #fff1e1;
}
#page-content {
    overflow: hidden;
}
.bg-header {
    height: 80px;
    width: 95%;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
h1.page-title {
    background: #ef4d37;
    width: fit-content;
    padding: 10px 45px;
    color: #fff;
    font-size: 25px;
    border-radius: 60px;
    margin: -2rem auto 0;
}
section > .wp-block-group__inner-container {
    padding: 0 1rem;
}
h2.deco-ttl,#news h2.post-ttl,.single-news #news h2.wp-block-heading {
    text-align: left;
    color: #ef4d37;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}
h2.deco-ttl::before,#news h2.post-ttl::before {
    content: "";
    background-image: url(../img/ico-ttl.png);
    display: block;
    width: 40px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: -5px;
    bottom: -9px;
}
h2.deco-ttl::after,#news h2.post-ttl::after,.single-news #news h2.wp-block-heading::after {
    content: "";
    background-image: url(../img/ttl-line.png);
    display: block;
    width: 100%;
    height: 10px;
    background-size: cover;
    background-position: left;
    position: absolute;
    left: 0;
    bottom: -16px;
}
h2.wp-block-heading {
    color: #ef4d37;
}
#about{
    position: relative;
}
#about ul {
    padding-left: 1rem;
}
#about ul li {
    list-style-type: none;
    display: flex;
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
    color: #ef4d37;
    font-weight: bold;
    font-size: 18px;
}
#about ul li::before {
    content: "・";
}
#about ul li::after {
    content: "";
    display: block;
    width: 105%;
    height: 120%;
    position: absolute;
    z-index: -1;
    background: #fff;
    border-radius: 50px;
    left: -2%;
    top: -7px;
}
:where(.wp-block-columns.is-layout-flex) {
    gap: 0em;
}
h3.wp-block-heading {
    background: #ef4d37;
    color: #fff;
    padding: 10px 15px;
    border-radius: 60px;
    font-size: 20px;
    margin: 2rem 0 1rem;
}
.wp-block-group__inner-container a {
    color: #000;
}
.wp-block-group__inner-container a:hover{
    opacity: 1;
    color: #ef4d37;
}
#about h3.wp-block-heading {
    background: transparent;
    color: #ef4d37;
    width: 180px;
    border-radius: 0;
    padding: 0;
    text-align: center;
    font-size: 23px;
    margin: 0 0 .5rem;
}
#about h3.wp-block-heading::after {
    content: "";
    background-image: url(../img/ttl-line2.png);
    display: block;
    width: 100%;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
}
.houshin {
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 30px;
    border: 3px dotted #ef4d37;
    margin: 2rem 0 0;
}
#about h3.wp-block-heading:nth-of-type(2) {
    margin-top: 2rem;
}
.houshin h4 {
    background: #ef4d37;
    color: #fff;
    border-radius: 60px;
    padding: 5px 15px;
    font-weight: bold;
    width: fit-content;
}
.wave-container{
    position: relative;
    height: auto;}
.wave {
  position: absolute;
  height: 15px;
  width: 100%;
  background: #fff1e1;
  bottom: 0;
}
.wave::before, .wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
}
.wave::before {
  width: 55%;
  height: 109%;
  background-color: #d3efec;
  right: -1.5%;
  top: 60%;
}
.wave::after {
  width: 55%;
  height: 100%;
  background-color: #fff1e1;
  left: -1.5%;
  top: 40%;
}
#gallery,#gallery h2 {
    color: #259386;
    text-align: center;
}
#gallery h2{
    letter-spacing: 3px;
}
figcaption.wp-element-caption {
    font-size: 18px;
    margin-bottom: 1.5rem;
}
.wave.g-bottom,.wave.g-bottom::after {
    background: #d3efec;
}
.wave.g-bottom::before {
    background: #fff;
}
ul.disclosure-list {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}
ul.disclosure-list li {
    width: 100%;
    list-style-type: none;
    font-size: 18px;
    line-height: 1.3;
    display: flex;
}
ul.disclosure-list li::before {
    content: "●";
    color: #ef4d37;
}
ul.disclosure-list li a {
    color: #000;
    text-decoration: none;
}
ul.disclosure-list li a:hover {
    opacity: 1;
    color: #ef4d37;
}

@media screen and (min-width:760px) {
.bg-header {
    height: 180px;
}
h1.page-title {
    padding: 15px 70px;
    font-size: 30px;
    margin: -3rem auto 0;
}
#about ul li {
    width: fit-content;
    margin-top: 1rem;
    font-size: 20px;
}
#about ul li::after {
    height: 40px;
    top: -5px;
}
section > .wp-block-group__inner-container {
    max-width: 720px;
    margin: 0 auto;
}
:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}
ul.disclosure-list li {
    width: 50%;
}
}
@media screen and (min-width:781px) {
    #about ul li::after {
        height: 70px;
    }
}
@media screen and (min-width:1200px) {
section > .wp-block-group__inner-container {
    max-width: 1100px;
}
#page_header {
    margin-top: 120px;
    padding-top: 1rem;
}
.bg-header {
    height: 250px;
    width: 90%;
}
h1.page-title {
    padding: 30px 120px;
    font-size: 35px;
    margin: -4rem auto 0;
}
img.wp-image-46 {
    width: 140px;
    position: absolute;
    top: 10%;
    left: 20%;
}
h2.wp-block-heading {
    font-size: 30px;
    margin-bottom: 2rem;
}
h2.deco-ttl:not(:first-child),#news h2.post-ttl,.single-news #news h2.wp-block-heading {
    margin-top: 4rem;
}
h2.deco-ttl,#news h2.post-ttl {
    padding-left: 4rem;
}
h2.deco-ttl::before,#news h2.post-ttl::before {
    width: 50px;
    height: 60px;
    left: 5px;
}
#page-content {
    font-size: 18px;
}
.houshin {
    background: transparent;
    border: none;
    position: relative;
    padding: 5rem 9rem;
}
.houshin .wp-block-group__inner-container {
    position: relative;
    z-index: 1;
}
.houshin::after {
    content: "";
    background-image: url(../img/waku-houshin.png);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.wave {
    height: 35px;
}
#gaiyou1 table {
    max-width: 790px;
    margin: 0 auto;
}
#gaiyou1 table tr td:nth-of-type(1) {
    padding-left: 6rem;
}
ul.disclosure-list li {
    width: 33%;
    font-size: 20px;
}
ul.disclosure-list {
    max-width: 960px;
    margin: 0 auto 1rem;
}
h3.wp-block-heading {
    font-size: 25px;
}
#about ul li{
    width: 590px;
}
#about ul li::after {
    height: 40px;
}
}
@media screen and (min-width:1400px) {
#page_header {
    margin-top: 170px;
}
.bg-header {
    height: 300px;
}
h1.page-title {
    padding: 30px 150px;
    font-size: 40px;
    margin: -4.5rem auto 0;
}
h2.deco-ttl::after,#news h2.post-ttl::after,.single-news #news h2.wp-block-heading::after{
    bottom: -25px;
}
h2.deco-ttl::before,#news h2.post-ttl::before {
    bottom: -15px;
}
h2.deco-ttl,#news h2.post-ttl,.single-news #news h2.wp-block-heading {
    margin-bottom: 3rem;
}
#about ul li + li {
    margin-top: 2rem;
}
#about ul {
    margin-bottom: 3rem;
}
#about ul li::after {
    height: 50px;
    top: -10px;
}
#about::before, #about::after {
    content: "";
    background-image: url(../img/deco-about-r.png);
    display: block;
    width: 240px;
    height: 100%;
    position: absolute;
    top: 5%;
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
}
#about::after {
    background-image: url(../img/deco-about-l.png);
    right: auto;
    left: 0;
    width: 190px;
    top: 16%;
}
#about h3.wp-block-heading {
    font-size: 30px;
}
.houshin h4 {
    font-size: 26px;
    padding: 5px 30px;
}
#about h3.wp-block-heading {
    font-size: 26px;
}
#gallery{
    position: relative;
}
#gallery .wp-block-group__inner-container {
    z-index: 2;
    position: relative;
}
#gallery::before, #gallery::after {
    content: "";
    background-image: url(../img/deco-annai-r.png);
    display: block;
    width: 275px;
    height: 100%;
    position: absolute;
    top: -3%;
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
#gallery::after {
    background-image: url(../img/deco-annai-l.png);
    right: auto;
    left: 0;
    top: 15%;
}
img.wp-image-85,img.wp-image-86 {
    position: absolute;
    top: -8%;
    right: -14%;
    width: 190px;
}
img.wp-image-86 {
    top: auto;
    bottom: -9%;
    right: auto;
    width: 160px;
    left: -12%;
}
}
@media screen and (min-width:1600px) {
.bg-header {
    height: 24rem;
}
section > .wp-block-group__inner-container {
    max-width: 1300px;
}
#page-content {
    font-size: 20px;
}
.houshin {
    padding: 6rem 16rem 10rem 9rem;
}
#about h3.wp-block-heading {
    font-size: 30px;
}
.houshin h4 {
    font-size: 30px;
}
.houshin::before {
    content: "";
    background-image: url(../img/deco-houshin.png);
    display: block;
    width: 230px;
    height: 280px;
    position: absolute;
    bottom: 15%;
    right: 6%;
    background-size: contain;
    z-index: 1;
    background-repeat: no-repeat;
}
img.wp-image-85, img.wp-image-86 {
    right: -9%;
}
img.wp-image-86 {
    bottom: 2%;
}
figcaption.wp-element-caption {
    font-size: 22px;
}
ul.disclosure-list li {
    font-size: 23px;
}
ul.disclosure-list {
    max-width: 1100px;
}
}

@media screen and (min-width:1900px) {
section > .wp-block-group__inner-container {
    max-width: 1400px;
}
#about::before {
    width: 325px;
    top: 4%;
}
#about::after {
    width: 270px;
}
#about h3.wp-block-heading:nth-of-type(2) {
    margin-top: 4rem;
}
.houshin h4:not(:nth-of-type(1)) {
    margin-top: 2rem;
}
#gallery::before {
    width: 340px;
}
img.wp-image-85{
    right: -13%;
    width: 210px;
    top: -6%;
}
#gallery::after {
    width: 335px;
}
img.wp-image-86 {
    bottom: -7%;
    width: 190px;
    left: -13%;
}
}

/* #block-88a6c7c9-d985-4538-a765-234763bee04f, #block-38bd1fd7-d397-47bf-8a33-156ce9259a69 */
 .schedule .smb-tab-panel{
    border: 2px solid #e8d8bf;
    border-radius: 15px;
    padding: 1rem;
}
.smb-tabs[data-orientation=horizontal]>.smb-tabs__tabs {
    margin-bottom: 0;
}
button.smb-tabs__tab {
    border-radius: 15px 15px 0 0 !important;
    background: #ff8f8f;
    color: #fff;
    border: none;
    padding: 10px 40px !important;
}
/* #smb-tab-for-block-38bd1fd7-d397-47bf-8a33-156ce9259a69 button.smb-tabs__tab */
.schedule .smb-tabs__tabs .smb-tabs__tab-wrapper:nth-of-type(2) button {
    background: #7ac17a;
}
.smb-tabs__tab[aria-selected=false] {
    opacity: 1;
}
.smb-tabs[data-orientation=horizontal][data-tabs-justification=center]>.smb-tabs__tabs {
    align-items: end;
}
.smb-tabs[data-orientation=horizontal]>.smb-tabs__tabs .smb-tabs__tab[aria-selected=true] {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}
#day .wp-block-columns {
    margin: 0;
    gap: 0 10px;
}
#day .wp-block-column.times {
    text-align: center;
    background: #ffdede;
    padding-bottom: 2rem;
}
.wp-block-columns.first .wp-block-column {
    padding-top: 2rem!important;
}
.wp-block-columns.bottom .wp-block-column {
    padding-bottom: 2rem!important;
}
#day .wp-block-column.times p {
    background: #fff;
    border-radius: 50px;
    font-weight: bold;
    color: #ff8f8f;
    width: 93%;
    margin: 0 auto;
    padding: 5px 0;
}
#day .wp-block-columns h3 {
    font-size: 18px;
    margin: 0 0 10px;
    background: #ff8f8f;
    text-align: center;
    color: #fff;
    padding: 5px 14px;
    border-radius: 60px;
    width: fit-content;
}
#day .wp-block-column:not(.times) {
    padding-bottom: 2rem;
}
#day .wp-block-columns p,#day .wp-block-columns figure.wp-block-image{
    margin-bottom: 0;
}
#block-38bd1fd7-d397-47bf-8a33-156ce9259a69 .wp-block-column.times {
    background: #dff4df;
}
#block-38bd1fd7-d397-47bf-8a33-156ce9259a69 .wp-block-column.times p{
    color: #7ac17a;
}
#block-38bd1fd7-d397-47bf-8a33-156ce9259a69 .wp-block-columns h3{
    background: #7ac17a;
}
.wave.day-bottom::before {
    background-color: #fff;
}
#event {
    padding-top: 4rem;
}
#event .wp-block-snow-monkey-blocks-box.smb-box {
    background: #fff0f0;
    border-radius: 13% 13% 11% 10% / 12% 10% 15% 12%;
    padding: 3rem 1rem 2rem;
    position: relative;
    margin-top: 4rem;
}
#event .wp-block-snow-monkey-blocks-box.smb-box h3 {
    margin: 0;
    background: #f774a7;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    position: absolute;
    top: -80px;
    left: 10px;
}
#event .wp-block-snow-monkey-blocks-box.smb-box p{
    font-weight: bold;
    margin-bottom: 10px;
}
#event .wp-block-snow-monkey-blocks-box.smb-box::after {
    content: "";
    background-image: url(../img/events-line-sp.png);
    display: block;
    width: 20px;
    height: 200px;
    background-size: contain;
    position: absolute;
    z-index: -1;
    bottom: -25%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#event .wp-block-snow-monkey-blocks-box.smb-box.winter::after{
    display: none;
}
#event .wp-block-snow-monkey-blocks-box.smb-box.summer {
    background: #f3feff;
}
#event .wp-block-snow-monkey-blocks-box.smb-box.summer h3{
    background: #4ad3f4;
}
#event .wp-block-snow-monkey-blocks-box.smb-box.fall {
    background: #fffcee;
}
#event .wp-block-snow-monkey-blocks-box.smb-box.fall h3{
    background: #ff927d;
}
#event .wp-block-snow-monkey-blocks-box.smb-box.winter {
    background: #faf3ff;
}
#event .wp-block-snow-monkey-blocks-box.smb-box.winter h3{
    background: #ae85b5;
}
@media screen and (min-width:760px) {
.schedule .smb-tab-panel {
    padding: 1rem 4rem 3rem;
}
#day .wp-block-columns {
    gap: 0 30px;
}
#event .wp-block-snow-monkey-blocks-box.smb-box::after {
    width: 40px;
    bottom: -19%;
} 
#event .wp-block-snow-monkey-blocks-box.smb-box {
    padding: 3rem 3rem 2rem;
}
}

@media screen and (min-width:1200px) {
button.smb-tabs__tab {
    border-radius: 30px 30px 0 0 !important;
    padding: 15px 160px !important;
    font-size: 24px;
}
.schedule .smb-tab-panel {
    padding: 1rem 7rem 5rem;
    border-radius: 30px;
}
.smb-tabs__tabs {
    gap: 4px;
    margin-top: 5rem;
}
.smb-tabs[data-orientation=horizontal]>.smb-tabs__tabs .smb-tabs__tab[aria-selected=true] {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
#day .wp-block-column.times p {
    width: 90%;
    font-size: 24px;
    padding: 10px 0;
}
#day .wp-block-columns h3 {
    font-size: 25px;
    padding: 15px 40px;
    margin-top: 5px;
}
#day .wp-block-column:not(.times) {
    padding-bottom: 3rem;
}
.wp-block-columns.first .wp-block-column {
    padding-top: 4rem!important;
}
.wp-block-columns.bottom .wp-block-column {
    padding-bottom: 4rem!important;
}
#day {
    padding-bottom: 7rem;
}
#event {
    padding: 7rem 0;
}
#event .wp-block-snow-monkey-blocks-box.smb-box {
    width: 80%;
    border-radius: 9% 6% 3% 5% / 10% 10% 16% 26%;
    padding: 4rem 4rem 3rem;
    margin-top: 6rem;
    z-index: 3;
}
#event .wp-block-snow-monkey-blocks-box.smb-box h3 {
    width: 130px;
    height: 130px;
    font-size: 50px;
    top: -132px;
}
#event .wp-block-snow-monkey-blocks-box.smb-box.summer, #event .wp-block-snow-monkey-blocks-box.smb-box.winter {
    margin-left: auto;
}
#event .wp-block-snow-monkey-blocks-box.smb-box::after{
    display: none;
}
#event > .wp-block-group__inner-container{
    position: relative;
}
#event > .wp-block-group__inner-container::after {
    content: "";
    background-image: url(../img/events-line.png);
    display: block;
    width: 92%;
    height: 90rem;
    position: absolute;
    top: 10rem;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    margin: 0 auto;
}
}
@media screen and (min-width:1400px) {
#day{
    position: relative;
}
#day::after ,#day::before {
    content: "";
    background-image: url(../img/day-l.png);
    display: block;
    width: 202px;
    height: 100%;
    position: absolute;
    top: 13%;
    background-size: contain;
    left: -3%;
    background-repeat: no-repeat;
}
#day::before {
    background-image: url(../img/day-r.png);
    left: auto;
    right: -2%;
    top: 11%;
}
#event > .wp-block-group__inner-container::after {
    height: 82%;
}
#event {
    background-image: url(../img/bg-events.png);
    background-position: 0 4rem;
    background-size: 100%;
    background-repeat: no-repeat;
}
}
@media screen and (min-width:1600px) {
button.smb-tabs__tab {
    padding: 15px 180px !important;
    font-size: 30px;
}
.schedule .smb-tab-panel {
    padding: 1rem 9rem 5rem;
}
#day .wp-block-columns {
    gap: 0 50px;
}
#event .wp-block-snow-monkey-blocks-box.smb-box {
    padding: 5rem 4rem 4rem;
    margin-top: 8rem;
}
#event .wp-block-snow-monkey-blocks-box.smb-box h3 {
    width: 160px;
    height: 160px;
    font-size: 60px;
    top: -165px;
    left: 0;
}
#event > .wp-block-group__inner-container::after {
    width: 100%;
}
}

@media screen and (min-width:1900px) {
.schedule .smb-tab-panel {
    padding: 1rem 12rem 5rem;
}
#day {
    padding-bottom: 9rem;
}
#day .wp-block-column.times p {
    font-size: 30px;
}
#day::after, #day::before {
    width: 260px;
}
#event {
    padding: 7rem 0 12rem;
}
#event .wp-block-snow-monkey-blocks-box.smb-box {
    margin-top: 9rem;
}
#event {
    background-size: cover;
}
#day::after, #day::before{
    width: 260px;
}
}


/* form */

#snow-monkey-form-180 {
    margin: 2rem 0 0;
    padding: 2rem 1rem;
    border: 3px dotted #ef4d37;
    border-radius: 20px;
    background: #fffcee;
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
    background: #ef4d37;
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
    color: #ef4d37;
}
.smf-item__col.smf-item__col--label {
    padding: 0 0 5px;
    font-size: 20px;
}
.smf-form .smf-text-control__control,.smf-form .smf-textarea-control__control {
    border: 2px solid #ef4d37;
}
.smf-item__col.smf-item__col--label strong {
    background: #ef4d37;
    color: #fff;
    font-size: 12px;
    padding: 0 5px;
    vertical-align: middle;
    margin-left: 10px;
}
.smf-action .smf-button-control__control {
    background: #ef4d37;
    border: none;
    color: #fff;
    padding: 15px 45px;
}
.smf-progress-tracker__item__number,.smf-progress-tracker__item:after, .smf-progress-tracker__item:before {
    background: #efddcb;
}
.smf-progress-tracker__item__text {
    color: #efddcb;
}
@media screen and (min-width:1200px) {
#snow-monkey-form-180 {
    padding: 3rem 6rem;
}
}
@media screen and (min-width:1400px) {
#contact-top{
    position: relative;
}
#contact-top::after,#contact-top::before {
    content: "";
    background-image: url(../img/contact-l.png);
    display: block;
    width: 130px;
    height: 80%;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 60px;
    right: 20px;
}
#contact-top::before {
    background-image: url(../img/contact-r.png);
    right: auto;
    left: -2%;
    bottom: -7px;
    z-index: 1;
}
#contact-bottom {
    background-image: url(../img/bg-events.png);
    background-size: cover;
}
}
@media screen and (min-width:1900px) {
#contact-top::after, #contact-top::before {
    height: 101%;
    width: 150px;
}
    
}

/* news */
.post-type-archive-news #page_header,.single-news #page_header {
    padding-bottom: 1rem;
}
.post-type-archive-news .wave-container,.single-news .wave-container {
    z-index: 1;
}
.post-type-archive-news #news,.single-news #news {
    margin-bottom: 3rem;
}
.pagination {
    justify-content: center;
}
.wp-pagenavi span.pages {
    display: none;
}
.wp-pagenavi a, .wp-pagenavi span {
    padding: 3px 10px;
    color: #ef4d37;
    background: #fff;
    border: none;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    background: #ef4d37;
    color: #fff;
}

@media screen and (min-width:1200px) {
.post-type-archive-news #page_header,.single-news #page_header {
    padding-bottom: 3rem;
}
.post-type-archive-news .container,.single-news .container {
        max-width: 1100px;
    }
}
@media screen and (min-width:1400px) {
    .post-type-archive-news .container,.single-news .container {
        max-width: 1140px;
    }
}


/* single */
#single-post {
    border: 3px solid #ef4d37;
    background: #fff;
    padding: 3rem 1rem;
    border-radius: 30px;
}
#news h2.post-ttl {
    text-align: left;
    font-size: 22px;
    margin-bottom: 1rem;
}
#news h2.post-ttl::before {
    margin: 0;
    top: auto;
}
.single-news #news h2.wp-block-heading::before{
    content: none;
}
.single-news #news h2.wp-block-heading {
    padding-left: 1rem;
    margin-top: 2rem;
    font-size: 20px;
}
#single-post h3.wp-block-heading {
    font-size: 18px;
}
#single-post h4.wp-block-heading {
    font-weight: bold;
    font-size: 18px;
    color: #ef4d37;
    margin: 1rem 0;
}
img.thumbnail-img {
    width: 100%;
    border-radius: 20px;
}
.entry-pager {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
.back a, .next a {
  text-decoration: none;
  border: 1px solid #ef4d37;
  padding: 10px 20px;
  border-radius: 5px;
  width: 150px;
  display: block;
  text-align: center;
  color: #000;
}
.back a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 3px solid #ef4d37;
  border-bottom: 3px solid #ef4d37;
  transform: rotate(45deg);
  margin-right: 10px;
}
.next a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 3px solid #ef4d37;
  border-bottom: 3px solid #ef4d37;
  transform: rotate(-135deg);
  margin-left: 10px;
}
p time {
    color: #ef4d37;
    display: block;
    margin-top: 2rem;
}
@media screen and (min-width:1200px) {
#single-post {
    padding: 1rem 5rem 4rem;
}
#news h2.post-ttl {
    font-size: 26px;
}
img.thumbnail-img {
    width: 90%;
    border-radius: 40px;
}
.single-news #news h2.wp-block-heading {
    font-size: 24px;
}
#single-post h3.wp-block-heading {
    font-size: 22px;
}
#single-post h4.wp-block-heading {
    font-size: 20px;
    margin: 2rem 0 1rem;
}
.back a, .next a {
    width: 190px;
    padding: 15px;
}
.single-news #news {
    background-size: contain;
}
}