/*　Module
------------------------------------------------------------------*/
.btn{
    position: relative;
    display: inline-block;
    padding: 1em 3.5em;
    min-width: 250px;
    border: 1px solid #c71919;
    background: #c71919;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .2s;
}
.btn.list{min-width: 100%;}

.btn::after{
    position: absolute;
    content: "";
    top: calc(50% - 0.5px);
    left: 0;
    width: 40px;
    height: 1px;
    background: #fff;
    transition: .2s ease;
}
.btn:hover{
    background: #fff;
    color: #c71919;
}
.btn:hover::after{
    left: calc(100% - 40px);
    background: #c71919;
}

.btn.white{
    border: 1px solid #fff;
    color: #fff;
}
.btn.white::after{
    background: #fff;
}

@media screen and (max-width:767px){
    .btn{
        font-size: 14px;
    }
}


.list-circle li{
    position: relative;
    padding-left: 1.5em;
}
.list-circle li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "・";
}
.list-decimal {
    padding-left: 1em;
}
.list-decimal li {
    line-height: 1.8;
    margin-left: 1em;
    position: relative;
    list-style: decimal;
}
.list-asterisk li{
    position: relative;
    padding-left: 1.5em;
    line-height: 2;
}
.list-asterisk li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "※";
}
.list-point li{
    position: relative;
    padding-left: 1.5em;
    font-family: "KiwiMaru";
    font-size: 120%;
}
.list-point li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "●";
    color: #09adec;
}
.list_indent li{
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 5px;
}


.table01{
    width: 100%;
}
.table01 th,
.table01 td{
    padding: 10px 15px;
    vertical-align: middle;
}
.table01 th{
    width: 32%;
    background: #fff2f2;
    border-bottom: 1px solid #c71919;
}
.table01 td{
    background: #fff;
    border-bottom: 1px solid #1c1c1c;
}

.table02{
    width: 100%;
}
.table02 th,
.table02 td{
    padding: 15px;
    vertical-align: middle;
}
.table02 th{
    width: 32%;
    background: #fff2f2;
    border-bottom: 1px solid #c71919;
}
.table02 td{
    background: #fff;
    border-bottom: 1px solid #1c1c1c;
}
@media screen and (max-width:767px){
    .table02 th,
    .table02 td{
        display: block;
        width: 100%;
        font-size: 12px;
    }
}


.text-indent{
    margin-left: 1em;
    text-indent: -1em;
}
.breadcrumb{
    font-size: 13px;
}
.breadcrumb ul{
    display: flex;
    flex-wrap: wrap;
}
.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: #c71919;
}

.photo-ofi {
    height: 0;
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 62.5%;
}
.photo-ofi.narrow{
    padding-bottom: 75%;
}
.photo-ofi.square {
    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%;
}

.googlecal {
    position: relative;
    padding-bottom: 100%; /* 縦横比 */
    height: 0;
}
.googlecal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

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

.fw-bold{font-weight: bold !important;}
