/*　Module
------------------------------------------------------------------*/
.btn{
    position: relative;
    display: inline-block;
    min-width: 250px;
    padding: 10px 30px;
    background: #ff2458;
    border: 2px solid #ff2458;
    border-radius: 30px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    transition: .2s;
}
.btn::after{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    content: "\f054";
    font-family: "Font Awesome 5 Free";
}
.btn:hover{
    background: #fff;
    color: #ff2458;
}
.btn.map{
    font-size: 12px;
    min-width: inherit;
    padding: 0 10px;
}
.btn.map::after{
    display: none;
}
/* 2024/6/26 ADD */
.btn.wide{
        padding: 10px 20px;
        word-break: keep-all;
}

@media screen and (min-width:768px){
    .btn.wide{
        padding: 10px 40px;
    }
}
/* 2024/6/26 ADD */

.list-circle li{
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 3px;
}
.list-circle li:last-of-type{
    margin-bottom: 0;
}
.list-circle li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "・";
}
.list-circle.pink li::before{
    color: #ff2458;
}

.list-decimal{
    list-style: decimal;
    padding-left: 1.2em;
}
.list-decimal li{
    position: relative;
    margin-bottom: 3px;
}
.list-decimal li:last-of-type{
    margin-bottom: 0;
}
.list-decimal.indent{
    margin-left: 1em;
}


.list-asterisk li{
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 5px;
}
.list-asterisk li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "※";
}

.list-check li{
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
}
.list-check li:last-of-type{
    margin-bottom: 0;
}
.list-check li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: #ff2458;
}

.list-indent li{
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 5px;
}


.table01{
    width: 100%;
    margin-bottom: 5px;
}
.table01 th,
.table01 td{
    padding: 10px 15px;
    text-align: center;
    vertical-align: middle;
}
.table01 th{
    background: #ffc2cf;
    border: 1px solid #fff;
}
.table01 td{
    background: #fff;
    border: 1px solid #ffc2cf;
}
.table01 td.holiday{
    font-weight: bold;
    color: #ff2458;
}
.table01 thead th:last-of-type{
    border-right: 1px solid #ffc2cf;
}
.table01 tbody tr:last-of-type th{
    border-bottom: 1px solid #ffc2cf;
}

.table02{
    width: 100%;
}
.table02 th,
.table02 td{
    padding: 15px;
    vertical-align: middle;
}
.table02 th{
    width: 28%;
    background: #ffc2cf;
    border-bottom: 1px solid #fff;
}
.table02 td{
    background: #fff;
    border-bottom: 1px solid #ddd;
}
@media screen and (max-width:767px){
    .table02 th,
    .table02 td{
        display: block;
        width: 100%;
    }
    .table02 th,
    .table02 td{
        border-bottom: none;
    }
}

.table03{
    width: 100%;
}
.table03 th,
.table03 td{
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #ddd;
}
.table03 th{
    background: #ffc2cf;
    border-top: 1px solid #ffc2cf;
    border-left: 1px solid #ffc2cf;
    border-right: 1px solid #ffc2cf;
    border-bottom: 1px solid #fff;
}
.table03 tr:last-of-type th{
    border-bottom: 1px solid #ffc2cf;
}
.table03 td{
    background: #fff;
}

.table04{
    width: 100%;
    margin-bottom: 5px;
}
.table04 th,
.table04 td{
    padding: 10px 15px;
    vertical-align: middle;
}
.table04 thead th{
    background: #ffc2cf;
    border: 1px solid #fff;
    text-align: center;
}
.table04 tbody th{
    background: #fef5f7;
    border: 1px solid #ffc2cf;
}
.table04 td{
    background: #fff;
    border: 1px solid #ffc2cf;
    text-align: center;
}
.table04 thead th:first-of-type{
    border-left: 1px solid #ffc2cf;
}
.table04 thead th:last-of-type{
    border-right: 1px solid #ffc2cf;
}



@media screen and (max-width:767px){
    .wrap-table01{
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    .wrap-table01::-webkit-scrollbar{
        height: 10px;
    }
    .wrap-table01::-webkit-scrollbar-track{
        background: #efefef;
        border-radius: 10px;
    }
    .wrap-table01::-webkit-scrollbar-thumb{
        background: #ffc2cf;
        border-radius: 10px;
    }
    .wrap-table01 .table01{
        min-width: 980px;
    }
}

@media screen and (max-width:767px){
    .wrap-table02{
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    .wrap-table02::-webkit-scrollbar{
        height: 10px;
    }
    .wrap-table02::-webkit-scrollbar-track{
        background: #efefef;
        border-radius: 10px;
    }
    .wrap-table02::-webkit-scrollbar-thumb{
        background: #ffc2cf;
        border-radius: 10px;
    }
    .wrap-table02 .table01{
        min-width: 600px;
    }
}

.text-indent{
    margin-left: 1em;
    text-indent: -1em;
}
.breadcrumb{
    padding: 10px 0;
    font-size: 13px;
}
.breadcrumb ul{
    display: flex;
}
.breadcrumb ul li + li{
    position: relative;
    padding-left: 30px;
}
.breadcrumb ul li + li::before{
    position: absolute;
    top: 0;
    left: 10px;
    display: inline-block;
    content: ">";
    font-size: 13px;
    text-align: center;
    color: #ccc;
}
.breadcrumb ul li a{
    color: #09adec;
    text-decoration: underline;
    transition: .2s;
}
.breadcrumb ul li a:hover{
    color: #f75961;
}

.photo-ofi {
    height: 0;
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 62.5%;
}
.photo-ofi.bg-on{
    background: #fef5f7;
}
.photo-ofi.horizon {
    height: 0;
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 50%;
}
.photo-ofi.square {
    height: 0;
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
}
.photo-ofi img {
    max-width: inherit;
    max-height: inherit;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    font-family: 'object-fit: contain;';
    position: absolute;
    left: 0;
    top: 0;
}
.photo-ofi.fit img{
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

.googlemap iframe {
    width: 100%;
    height: 500px;
}
@media screen and (max-width: 767px) {
    .googlemap {
      position: relative;
      padding-bottom: 62.5%;
      height: 0;
      overflow: hidden;
    }
    .googlemap iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
}

.googlemap2 {
    position: relative;
    padding-bottom: 82.5%;
    height: 0;
    overflow: hidden;
  }
.googlemap2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 991px) {
    .googlemap2 {
      position: relative;
      padding-bottom: 62.5%;
      height: 0;
      overflow: hidden;
    }
    .googlemap2 iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
}

.youtube{
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}
.youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.anchor{
    padding-top: 120px;
    margin-top: -120px;
    position: relative;
    z-index: -1;
}
@media screen and (max-width:767px){
    .anchor{
        padding-top: 70px;
        margin-top: -70px;
    }
}

@media (min-width: 767px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}

#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
}
#pagetop img:hover {
    animation: rotates 0.7s linear infinite;
}
@keyframes rotates {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}
@media screen and (max-width:767px){
    #pagetop img{
        width: 40px;
        height: auto;
    }
}

