@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

@media (max-width: 767px) {
    html {
        font-size: 50%;
    }
}

body {
    color: #333333;
    line-height: 1.6;
    word-spacing: 0;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 500;
    line-height: 1.3;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a.links:hover {
    text-decoration: underline;
    color: #425c49;
}

a:focus {
    outline: 0;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }

    .sp {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .pc {
        display: none !important;
    }
}

@media print {
    body {
        color-adjust: exact;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Animate */
.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.fade-in.is-view {
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-up.is-view {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.fade-down {
    opacity: 0;
    transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-down.is-view {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    -webkit-transform: translateX(-40px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-left.is-view {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    -webkit-transform: translateX(40px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-right.is-view {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    overflow: hidden;
    transform: scale(0.7, 0.7);
    -webkit-transform: scale(0.7, 0.7);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.zoom-in.is-view {
    opacity: 1;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}

.zoom-out {
    opacity: 0;
    overflow: hidden;
    transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.zoom-out.is-view {
    opacity: 1;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}

@media (min-width: 768px) {
    .delay1 {
        transition-delay: .4s;
    }

    .delay2 {
        transition-delay: .6s;
    }

    .delay3 {
        transition-delay: .8s;
    }

    .delay4 {
        transition-delay: 1s;
    }
}

/* header */
header {
    padding: 13px 20px;
}

@media (max-width: 767px) {

}


/* main */
main {
    padding: 0 0 12rem;
}

.lh2 {
    line-height: 2;
}
.mvChild {
    height: 160px;
    background: url(../img/common/mv_bg_left.jpg) top left no-repeat, url(../img/common/mv_bg_right.jpg) top right no-repeat;
    background-color: #8fc31f;
    color: #fff;
    align-items: center;
    justify-content: center !important;
}

.mvChild h2 {
    font-size: min(6rem, 6vw);
    text-align: center;
    font-weight: bold;
}

.container {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 0 auto;
}

.flexBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pink {
    color: #ea616f;
}

.green {
    color: #22ac38;
}

.btnArr {
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    color: #ffffff;
    background: #22ac38;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1;
    padding: 2rem 0;
    margin-top: 3rem;
    border-radius: 100px;
    box-shadow: 5px 5px 0px 0px #247e32;
    text-align: center;
    position: relative;
    transition: 0.2s;
}

.btnArr span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    top: calc(50% - 10px);
    right: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.btnArr span::after {
    content: '';
    border: solid #22ac38;
    border-width: 0 1px 1px 0;     
    padding: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: -2px;
}

.btnArr:hover {
    animation: rippleGreen 1.5s infinite; 
    -webkit-animation: rippleGreen 2s infinite;
}

.btnArr.pink {
    background: #ea616f;
    box-shadow: 5px 5px 0px 0px #b53542;
}

.btnArr.pink:hover {
    animation: ripplePink 1.5s infinite; 
    -webkit-animation: ripplePink 2s infinite;
}

.btnArr.pink span::after {
    border-color: #ea616f;
}

.btnBack {
    display: block;
    max-width: 200px;
    width: 100%;
    margin: 8rem auto 0;
    color: #ffffff;
    background: #22ac38;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 2rem 0;
    border-radius: 100px;
    box-shadow: 5px 5px 0px 0px #247e32;
    text-align: center;
    position: relative;
}

.btnBack span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    top: calc(50% - 10px);
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.btnBack span::after {
    content: '';
    border: solid #22ac38;
    border-width: 1px 0 0 1px;     
    padding: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: -2px;
}

.btnBack:hover {
    animation: rippleGreen 1.5s infinite; 
    -webkit-animation: rippleGreen 2s infinite;
}

.photo {
    position: relative;
    overflow: hidden;
}

.photo figcaption {
    font-size: 1.2rem;
}

.photo__capInLeft {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}

.photo__capInRight {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.photo__capOutLeft {
    text-align: left;
}

.photo__capOutright {
    text-align: right;
}

.caption {
    font-size: 1.2rem;
}

.right {
    text-align: right;
}

.tit30 {
    font-size: min(4rem, 4vw);
    font-weight: bold;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.tit30::after {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -15px;
    content: '';
    width: 50px;
    border-top: 5px dotted #90d59b;
}

.tit30 span {
    display: block;
    font-size: min(2.5rem, 2.5vw);
}

@media (max-width: 767px) {
    main {
        padding-bottom: 8rem;
    }
    
    .spLeft {
        text-align: left !important;
    }

    .btnArr {
        font-size: 2rem;
    }

    .btnArr span {
        right: 20px;
    }
    
    .mvChild h2 {
        font-size: 5rem;
    }

    .tit30 {
        font-size: 4rem;
    }

    .tit30 span {
        font-size: 2.4rem;
    }
}



/* footer */
footer .fListLogo {
    justify-content: center;
    gap: 20px;
}

footer .fListLogo li a {
    transition: 0.2s;
}

footer .fListLogo li a:hover {
    opacity: 0.8;
}

footer .fContact {
    margin-top: 7rem;
}

footer .fContact .colL {
    width: 35%;
    align-items: center;
}

footer .fContact .colL p {
    font-size: 1.4rem;
}

footer .fContact .colL img {
    width: calc(100% - 60px);
}

footer .fContact .colR {
    width: 60%;
}

footer .fContact .colR p span {
    font-size: 1.2rem;
}

footer .fContact .colR .tit {
    font-size: 1.8rem;
    font-weight: bold;
}

footer .copyR {
    margin-top: 5rem;
    background: #ea616f;
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
    padding: 1.2rem 0;
}

@media (max-width: 767px) {

    footer .copyR {
        margin-top: 6rem;
    }

    footer .fContact .colL {
        width: 100%;
        margin-bottom: 2rem;
    }

    footer .fContact .colR {
        width: 100%;
    }

}


/* pageTop */
#pageTop {
    position: fixed;
    z-index: 9;
    bottom: 65px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #8fc31f;
    border-radius: 50%;    
    cursor: pointer;
    display: none;
}

#pageTop div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pageTop div::after {
    content: '';
    border: solid #fff;    
    border-width: 3px 3px 0 0;
    padding: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 5px;
}

#pageTop:hover {
    animation: rippleGreenPageTop 1.5s infinite; 
    -webkit-animation: rippleGreenPageTop 2s infinite;
}

@media (max-width: 767px) {
    #pageTop {
        width: 40px;
        height: 40px;
        bottom: 85px;
        right: 1rem;
    }
}

/* Hover effect */
@keyframes rippleGreen {
    0% {box-shadow: 0 0 0 0 #009944;}
    70% {box-shadow: 0 0 0 10px rgb(0 153 68 / 0%);}
    100% {box-shadow: 0 0 0 0 rgb(0 153 68 / 0%);}
}

@keyframes rippleGreenPageTop {
    0% {box-shadow: 0 0 0 0 #8fc31f;}
    70% {box-shadow: 0 0 0 10px rgb(143 195 31 / 0%);}
    100% {box-shadow: 0 0 0 0 rgb(143 195 31 / 0%);}
}

@keyframes ripplePink {
    0% {box-shadow: 0 0 0 0 #ea616f;}
    70% {box-shadow: 0 0 0 10px rgb(235 142 151 / 0%);}
    100% {box-shadow: 0 0 0 0 rgb(235 142 151 / 0%);}
}

/* btnOutlineFix */
.btnOutlineFix {
    display: none;
    position: fixed;
    right: 0;
    bottom: 40px;
    color: #ffffff;
    line-height: 1;
    background: #22ac38;
    width: 180px;
    text-align: center;
    padding: 1.5rem 0;
    font-weight: bold;
    z-index: 8;
    font-size: 1.8rem;
    border: 1px solid #fff;
}

.btnOutlineFix span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    top: calc(50% - 7.5px);
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.btnOutlineFix span::after {
    content: '';
    border: solid #22ac38;
    border-width: 0 1px 1px 0;     
    padding: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: -2px;
}

@media (max-width: 767px) {
    .btnOutlineFix {
        display: block;
    }
}