@charset "UTF-8";
/*======================
    top-anchor-links
======================*/
.top-anchor-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 50px;
}
.anchor-link-box {
    width: 30%;
    background: #e3ac47;
    transition: all .3s;
    border: 1px solid #e3ac47;
    position: relative;
}
.anchor-link-triangle {
    position: absolute;
    top: 23%;
    left: -32px;
    width: 30px;
    height: 30px;
}
.anchor-link-box a {
    padding: 10px;
    color: #fff;
    display: inline-block;
    transition: all .3s;
    text-align: center;
    width: 100%;
    position: relative;
    font-weight: bold;
}
.anchor-link-box a::before {
    background: url(../img/white-triangle.svg) no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    content: "";
    top: 31%;
    left: -3px;
    transition: all .3s;
}
.anchor-link-box:hover {
    background: #fff;
} 
.anchor-link-box:hover a {
    color: #e3ac47;
}
.anchor-link-box:hover a::before {
    left: 5px;
    background: url(../img/orange-triangle2.svg) no-repeat;
}
.triangle-icon {
    width: 20px; 
    height: 20px;
    margin-right: 5px;
}


/*======================
    style-box
======================*/
.style-box {
    margin: 90px auto;
}
.style-box h2 {
    color: #e3ac47;
    font-size: 2em;
    letter-spacing: 0.13em;
    /*text-indent: -1em;
    margin-left: 20px;
    line-height: 1.3em;*/
}
.style-box span {
    display: inline-block;
    font-size: 0.6em;
}
.style-box .fa-play {
    margin-right: 5px;
}
.style-box ul {
    margin: 30px 0;
}
.style-box ul li {
    margin: 0 0 20px 1.4em;
    text-indent: -1em;
    line-height: 1.7em;
}
.style-box ul li:last-child {
    margin: 0 0 0 1.4em;
}
.style-box ul li::before {
    position: relative;
    top: 2px;
    left: -5px;
    display: inline-block;
    width: 16px;
    height: 16px;
    content: '';
    background: #e3ac47;
}
.outer-link {
    margin: 40px auto 0;
}
.outer-link a {
    font-size: 1.2em;
    border-bottom: 1px solid #707070;
    color: #cb5642;
    font-weight: 700;
    transition: all .3s;
    position: relative;
    z-index: 2;
    padding: 5px;
    display: inline-block;
    letter-spacing: 0.1em;
}
.outer-link a::before {
    background: url(../img/outer-link-icon.svg) no-repeat;
    width: 25px;
    height: 25px;
    content: "";
    display: inline-block;
    margin-right: 20px;
    transition: all .3s;
}
.outer-link a::after {
    position: absolute;
    z-index: -1;
    content: "";
    bottom: 0; 
    left: 0;
    background: #cb5642;
    transition: all .3s;
    width: 0;
    height: 100%;
    opacity: 0;
}
.outer-link a:hover {
    color: #fff;
}
.outer-link a:hover::before {
    background: url(../img/outer-link-icon2.svg) no-repeat;
}
.outer-link a:hover .hover-img {
    display: block;
}
.outer-link a:hover .no-hover-img {
    display: none;
}
.outer-link a:hover::after {
    width: 100%;
    opacity: 1;
}
.outer-link p.caution {
  margin-top: 0.8em;
  font-size: 14px;
}
.style-text-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px auto 0 0;
    background: #fefbc6;
    padding: 10px 20px 10px 40px;
    width: 52%;
}
.style-box-image {
    width: 30%;
}
.style-box-image img {
    width : 100%;
}
.style-text-box ul li {
    margin: 0 auto 20px;
    text-indent: -1em;
    font-weight: 600;
}
.style-text-box ul li:last-child {
    margin: 0 auto;
}
.style-text-box-items {
    width: 60%;
} 


/*======================
    about-link
======================*/
.about-link {
    margin-left: 5px;
}
.about-link a {
    padding: 10px 10px 10px 30px;
    border-bottom: 1px solid #707070;
    color: #e3ac47;
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-size: 1.2em;
}
.about-link a::before {
    width: 30px;
    height: 30px;
    background: #e3ac47;
    border-radius: 50%;
    content: '';
    position: absolute;
    top: 20%;
    left: -4px;
}
.about-link a::after {
    content : '\f101';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right:10px;
    top: 31%;
    left: 4px;
    color: #fff;
    position: absolute;
    transition: all .3s;
}
.about-link a:hover::after {
    left: 7px;
    color: #e3ac47;
}
.about-link a:hover::before {
    background: #fff;
    border: 1px solid #e3ac47;
}
.about-link p.caution {
  margin-top: 0.8em;
  font-size: 14px;
}
.style-box-flex-img {
    width: 40%;
}
.style-box-flex-img img {
    width: 100%;
}
.style-box-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.text-li::before {
    display: none !important;
}
.text-li {
    text-indent: 0 !important;
    padding-left: 0 !important;
    margin-left: -1.2em !important;
}
.txt1 {
    margin-top: 1em;
    line-height: 1.7em;
}


/*************** レスポンシブ *************************/
@media screen and (max-width: 1006px) {
    .anchor-link-box {
        width: 40%;
        margin: 0 20px 25px;
    }
    .top-anchor-links {
        justify-content: center;
    }
}

@media screen and (max-width: 820px) {
    .style-text-box {
        width: 100%;
        justify-content: space-between;
    }
    .style-box-image {
        width: 40%;
        margin: 0 auto;
    }
    .style-box-flex-img {
        width: 50%;
        margin: 20px auto 0;
    }
}

@media screen and (max-width: 768px) {
    .anchor-link-box {
        width: 100%;
        margin: 0 auto 20px;
    }
    .top-anchor-links .anchor-link-box:last-child {
        margin: 0 auto;
    }
    .style-box h2 {
        text-indent: -0.8em;
        margin-left: 25px;
        line-height: 1.3em;
    }
    .style-box ul li {
        margin: 0 auto 20px;
        padding-left: 22px;
        text-indent: -1em;
    }
    .style-box ul li:last-child {
        margin: 0 auto;
    }
    .top-anchor-links {
        padding: 0 20px 0 50px;
    }
    .style-text-box {
        padding: 10px 20px;
    }
    .text-li {
        margin-left: 0 !important;
    }
    .style-box span {
        margin-left: 25px;
    }
    .down-road span {
        margin-left : 0 !important;
    }
}

@media screen and (max-width: 428px) {
    .style-box h2 {
        font-size: 1.5em;
        text-indent: -1.1em;
    }
    .style-box-image {
        width: 90%;
    }
    .outer-link a {
        font-size: 1em;
        letter-spacing: 0;
    }
    .outer-link, .down-road {
        text-align: center;
    }
    .style-box-flex-img {
        width: 100%;
    }
    .anchor-link-box a {
        padding: 10px 5px;
    }
    .outer-link a::before {
        margin-right: 10px;
    }
    .anchor-link-box:hover {
        background: #e3ac47;;
    } 
    .anchor-link-box:hover a {
        color: #fff;
    }
    .anchor-link-box:hover a::before {
        left: -3px;
        background: url(../img/white-triangle.svg) no-repeat;
    }
    .about-link a::after {
        top: 34%;
    }
    .about-link a {
        font-size: 1.1em;
    }
    .down-road a span {
        font-size: 0.85em;
    }
    .style-box span {
        font-size: 0.52em;
    }
}
/*************** レスポンシブ end *************************/