/*　Module
------------------------------------------------------------------*/
.btn{
    position: relative;
    display: inline-block;
    min-width: 320px;
    padding: 20px 30px;
    background: #ffde24;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .2s;
}
.btn::after{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    content: "\f0a9";
    font-family: "Font Awesome 5 Free";
    transition: .2s;
}
.btn:hover{
    background: #fcbc0e;
}
.btn:hover::after{
    right: 5px;
}

@media screen and (max-width:1499px){
    .btn{
        min-width: 300px;
        padding: 15px 30px;
        font-size: 18px;
    }
}
@media screen and (max-width:991px){
    .btn{
        min-width: 250px;
        font-size: 16px;
    }
}


.list-circle li{
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 5px;
}
.list-circle li:last-of-type{
    margin-bottom: 0;
}
.list-circle li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "・";
}
.list-asterisk li{
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
}
.list-asterisk li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "※";
}
.list-asterisk.small li{
    font-size: 12px;
    margin-bottom: 3px;
}
.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: #1d2087;
}

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


.table01{
    width: 100%;
}
.table01 th,
.table01 td{
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
}
.table01 th{
    width: 28%;
    color: #fe7e01;
}

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


.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: 75%;
    background: #f4f4f4;
}
.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: 400px;
  }
  @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%;
    }
}

.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;
    }
}

