@charset "UTF-8";
/* +++++++++++++++++++++++++　基本設定 */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    min-width: 1000px;
    font-family: 'Noto Sans JP', 'Roboto', 'Segoe UI', 'Helvetica Neue', 'HelveticaNeue', 'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Arial', sans-serif;
    font-size: 1.6rem;
    line-height: 1.8rem;
    letter-spacing: 0.05rem;
    color: #161616;
    text-align: left;
}
.inner {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}
.innerS {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.rel {
    position: relative;
}
.ab {
    position: absolute;
}
.anchor {
    padding-top: 75px;
    margin-top: -75px;
}
.zenmaru {
    font-family: 'Zen Maru Gothic', sans-serif;
}
a.hoverL {
    opacity: 1;
}
a.hoverL img:hover {
    transform: scale(1.1, 1.1);
    transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
    body {
        min-width: auto;
    }
}
@media screen and (max-width: 480px) {
    .anchor {
    padding-top: 50px;
    margin-top: -50px;
}
    a.hoverL img:hover {
        transform: scale(1);
    }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time01 {
    animation-delay: 0.1s;
}
.delay-time02 {
    animation-delay: 0.2s;
}
.delay-time03 {
    animation-delay: 0.3s;
}
.delay-time04 {
    animation-delay: 0.4s;
}
.delay-time05 {
    animation-delay: 0.5s;
}
.delay-time06 {
    animation-delay: 0.6s;
}
.delay-time11 {
    animation-delay: 1.1s;
}
.delay-time12 {
    animation-delay: 1.2s;
}
.delay-time13 {
    animation-delay: 1.3s;
}
.delay-time14 {
    animation-delay: 1.4s;
}
.delay-time15 {
    animation-delay: 1.5s;
}
.delay-time16 {
    animation-delay: 1.6s;
}
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box {
    opacity: 0;
}
/*==================================================
動き自体の指定：「下からふわっ」
===================================*/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeUpTrigger {
    opacity: 0;
}
/*==================================================
動き自体の指定：「フェードイン」
===================================*/
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeInTrigger {
    opacity: 0;
}
.cloud {
    position: absolute;
}
.cloud figure {}
.cloud.cloud1 {
    width: 18%;
    left: 0;
    top: 47%;
    animation: animate-cloud1 3s infinite;
}
.cloud.cloud2 {
    width: 17%;
    right: 0;
    bottom: 10%;
    animation: animate-cloud2 3s infinite;
}
@keyframes animate-cloud1 {
    0% {
        transform: translateY(-80px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-80px);
    }
}
@keyframes animate-cloud2 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
/************ header */
#top-head {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    height: 80px;
    background: #fff;
}
.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 10px;
}
#top-head a {
    color: #000;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    display: block;
}
#top-head .logo {
    width: 60%;
    max-width: 300px;
    transition: all 0.65s ease-in;
    margin-left: 3rem;
}
#drawer {
    display: flex;
    justify-content: flex-end;
}
#drawer ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 2rem;
}
#drawer ul li {
    padding: 0 3rem;
    transition: all 0.65s ease-in;
}
#drawer .btn_entry {
    background-color: #FFBC52;
    padding: 1.6rem 2rem;
    border-radius: 3rem;
}
#drawer a.btn_entry {
    color: #fff;
    margin: 1.5rem 1.5rem 1.5rem 0;
}
/* Toggle Button */
#nav-toggle {
    width: 46px;
    height: 46px;
    cursor: pointer;
    margin: 17px 0;
    position: relative;
    z-index: 1000;
    background-color: #7DC647;
    border-radius: 50%;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle h6 {
    position: absolute;
    top: 15px;
    opacity: 0;
    font-size: 2rem;
    font-weight: bold;
    right: -1200px;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 50%;
    background: #fff;
    left: 0;
    transition: .35s ease-in-out;
    left: 24%;
}
#nav-toggle span:nth-child(1) {
    top: 13px;
}
#nav-toggle span:nth-child(2) {
    top: 22px;
}
#nav-toggle span:nth-child(3) {
    top: 31px;
}
#global-nav {
    position: absolute;
    right: -1200px;
    background: #fff;
    width: 46%;
    text-align: center;
    padding: 80px 0 0;
    transition: all 0.65s ease-in-out;
    top: 0;
}
#global-nav .globalInner {
    height: calc(100vh - 80px);
    overflow-y: scroll;
}
#global-nav h2 {
    margin: 0 auto;
    border-top: 1px solid;
}
#global-nav h2 img {
    max-width: 300px;
    margin: 3rem 0;
}
#global-nav ul {
    list-style: none;
    font-size: 1.4rem;
}
#global-nav ul.internallink li {
    border-top: 1px solid #707070;
}
#global-nav ul.internallink li:last-child {
    border-bottom: 1px solid #707070;
}
#global-nav ul.internallink li a {
    width: 100%;
    display: block;
    color: #000;
    font-size: 2rem;
    padding: 1.8rem 0;
}
#global-nav ul.externallink {
    margin: 3rem 0 5rem;
}
#global-nav ul.externallink li a {
    width: 90%;
    display: block;
    color: #fff;
    font-size: 1.8rem;
    padding: 1.8rem 0;
    margin: 2rem auto;
    border-radius: 2rem;
    max-width: 40rem;
}
#global-nav ul.externallink li:first-child a {
    background-color: #d1392e;
}
#global-nav ul.externallink li:nth-child(2) a {
    background-color: #df6e30;
}
#global-nav ul.externallink li:nth-child(3) a {
    background-color: #50b156;
}
#global-nav ul.externallink li:nth-child(4) a {
    background-color: #4295e0;
}
#global-nav ul.externallink li:last-child a {
    background-color: #eccb4c;
}
#global-nav ul.externallink li span {
    font-size: 1.3rem;
    margin-left: 0.5rem;
}

#global-nav .global-foot {
    background: repeating-linear-gradient(-45deg, #ffc54e 0, #ffc54e 7px, #ffbf3a 7px, #ffbf3a 14px);
    padding: 1.5rem 0 0.5rem;
}
#global-nav .global-foot a {
    max-width: 260px;
    margin: 0 auto;
}
@media screen and (max-width: 950px) {
    #drawer ul {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    #top-head {
        height: 86px;
    }
    #top-head .logo {
        margin-left: 1rem;
        width: 47%;
    }
    #drawer .btn_entry {
        padding: 1.2rem 2rem;
    }
    #drawer a.btn_entry {
        margin: 2rem 1.5rem 2rem 0;
    }
    #global-nav {
        right: -800px;
        width: 100%;
    }
}
/* +++++++++++++++++++++++++ Fixed */
#top-head.fixed {
    margin-top: 0;
    position: fixed;
    background-color: #fff;
    transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    width: 50%;
    max-width: 200px;
}
#top-head.fixed #drawer ul li {
    padding: 1.4rem 2rem;
}
@media screen and (max-width: 768px) {
    #top-head.fixed .logo {
        margin-left: 1rem;
    }
}
@media screen and (max-width: 768px) {
    #top-head.fixed .logo {
    width: 40%;
}
}
/* +++++++++++++++++++++++++ .open #nav-toggle */
.open #nav-toggle h6 {
    transition: all 2s ease-in-out;
    opacity: 1;
    left: -70px;
}
.open #nav-toggle span:nth-child(1) {
    top: 21px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #nav-toggle span:nth-child(3) {
    top: 21px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
}
/* #global-nav スライドアニメーション */
.open #global-nav {
    /* #global-nav top + #drawer height */
    transform: translateX(-1200px);
}
@media screen and (max-width: 768px) {
    .open #nav-toggle h6 {
    transition: all 2s ease-in;
    display: block;
}
    .open #global-nav {
        transform: translateX(-800px);
    }
}
/* main
=========================================*/
#main {
    margin-top: 80px;
    background: url(../img/main_bg.png) no-repeat center top / cover;
}
.mainImg-inner {
    padding-top: 48%;
    position: relative;
}
.mainImg {}
.mainImg .balloon figure {
    position: absolute;
}
.mainImg .balloon figure.balloon01 {
    top: 13%;
    left: 21%;
    width: 19%;
}
.mainImg .balloon figure.balloon02 {
    top: 8%;
    left: 43%;
    width: 13%;
}
.mainImg .balloon figure.balloon03 {
    top: 13%;
    right: 26%;
    width: 14%;
}
.mainImg .balloon figure.balloon04 {
    bottom: 24%;
    left: 32%;
    width: 20%;
}
.mainImg .balloon figure.balloon05 {
    bottom: 24%;
    right: 33%;
    width: 12.5%;
}
@media screen and (max-width: 768px) {
    #main {
        margin-top: 86px;
        background: url(../img/main_bgsp.png) no-repeat center top / cover;
    }
    .mainImg-inner {
        padding-top: 133%;
    }
    .mainImg .balloon figure.balloon01 {
        top: 17%;
        left: 1%;
        width: 34%;
    }
    .mainImg .balloon figure.balloon02 {
        top: 15%;
        left: 41%;
        width: 25%;
    }
    .mainImg .balloon figure.balloon03 {
        top: 18%;
        right: 4%;
        width: 25%;
    }
    .mainImg .balloon figure.balloon04 {
        bottom: 32%;
        left: 17%;
        width: 36%;
    }
    .mainImg .balloon figure.balloon05 {
        bottom: 32%;
        right: 18%;
        width: 23.5%;
    }
}
section#loan {
    background-color: #F3FFE0;
    padding: 19rem 0 6rem;
}
#loan article {
    display: flex;
    flex-wrap: wrap;
    gap: 7rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
#loan article .charabox {
    width: calc((100% - (7rem * 2)) / 3);
    position: relative;
    margin-bottom: 7rem;
}
#loan article .charabox a:hover {
    opacity: 1;
}
#loan article .charabox .chara {
    position: absolute;
    width: 49%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.5s ease-in;
}
#loan article .charabox:hover .chara.chara01 {
    width: 46%;
    top: -34%;
}
#loan article .charabox:hover .chara.chara02 {
    top: -25%;
}
#loan article .charabox:hover .chara.chara03 {
    top: -21%;
}
#loan article .charabox:hover .chara.chara04 {
    top: -40%;
}
#loan article .charabox:hover .chara.chara05 {
    top: -24%;
}
@media screen and (max-width: 768px) {
    #loan article .charabox .chara.chara01 {
        width: 46%;
        top: -34%;
    }
    #loan article .charabox .chara.chara02 {
        top: -25%;
    }
    #loan article .charabox .chara.chara03 {
        top: -21%;
    }
    #loan article .charabox .chara.chara04 {
        top: -40%;
    }
    #loan article .charabox .chara.chara05 {
        top: -24%;
    }
}

@media screen and (max-width: 768px) {
#loan article {
    gap: 1rem;
}
#loan article .charabox {
    width: calc((100% - (1rem * 2)) / 3);
}
}
@media screen and (max-width: 480px) {
    #loan article {
        justify-content: space-between;
        gap: 0.5rem;
    }
    #loan article .charabox {
        width: calc((100% - (0.5rem * 2)) / 2);
    }
    #loan article .charabox .chara.chara01 {
        width: 38%;
        top: -28%;
    }
    #loan article .charabox .chara.chara02 {
        top: -20%;
        width: 40%;
    }
    #loan article .charabox .chara.chara03 {
        top: -18%;
        width: 42%;
    }
    #loan article .charabox .chara.chara04 {
        top: -24%;
        width: 31%;
    }
    #loan article .charabox .chara.chara05 {
        top: -21%;
        width: 43%;
    }
    .cloud.cloud1 {
        width: 25%;
        left: auto;
        top: auto;
        right: 5%;
        bottom: 20%;
    }
    .cloud.cloud2 {
        width: 22%;
        right: 30%;
        bottom: 10%;
    }
}
/*section#reserve {
    margin: 3rem 0;
    padding: 7rem 0;
    border-top: 3px solid #707070;
    border-bottom: 3px solid #707070;
}*/
section#reserve {
    padding: 7rem 0;
    background-color: #F3FFE0;
}
#reserve article {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
#reserve .ab1 {
    top: 5%;
    left: 0;
    width: 10rem;
}
#reserve .ab2 {
    top: 5%;
    right: 0;
    width: 10rem;
}
#reserve article h3 {
    display: inline-block;
    position: relative;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 2;
}
@media screen and (max-width: 480px) {
    section#reserve {
        margin: 0;
        padding: 0;
        border-top: none;
        border-bottom: none;
        background-color: #F3FFE0;
    }
#reserve article h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
}
#reserve .ab1 {
    top: 12%;
    width: 7rem;
}
#reserve .ab2 {
    top: 12%;
    width: 7rem;
}
}


.reserveWrap {
    padding: 6rem 5rem 4.5rem;
    background-color: #fff;
    border: 2px solid #05806E;
    border-radius: 15px;
    max-width: 730px;
    margin: 5rem auto;
}
.reserveWinner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.reserveWinner img:first-child {
    width: 40%;
    padding: 0 2rem 3.5rem;
}
.reserveWinner img:last-child {
    width: 60%;
    padding: 0 2rem 3.5rem;
}
.reserveWrap a {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    width: 90%;

}
.resAnnotation {
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
    font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
.reserveWrap {
    padding: 2.5rem 2rem 3rem;
    border: 1px solid #05806E;
    margin: 3rem auto 0;
}
.reserveWinner {
    display: block;
}
.reserveWinner img:first-child {
    width: 100%;
    padding: 0;
    max-width: 160px;
}
.reserveWinner img:last-child {
    width: 100%;
    padding: 2rem 0;
}
.reserveWrap a {
    width: 100%;
}
.resAnnotation {
    line-height: 2;
}
}


section#iineHead {
    background-color: #F3FFE0;
}
#iineHead .iinearea article {
    text-align: center;
    padding: 5rem 0;
}
#iineHead .iinearea img {
    max-width: 400px;
}
#iineHead .iinearea h3 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 3rem;
}
#iineHead .triangleBg {
    background: url(../img/iineHead_bg.png) no-repeat center top / cover;
    padding: 25rem 0 5rem;
    text-align: center;
}
#iineHead .triangleBg img {
    max-width: 45rem;
    margin: 0 auto;
}
@media screen and (max-width: 480px) {
    #iineHead .iinearea article {
    text-align: center;
    padding: 11rem 0 2rem;
}
    #iineHead .triangleBg {
        padding: 20rem 0 5rem;
    }
    #iineHead .triangleBg img {
        width: 85%;
    }
}

.iineBg {
    background-color: #FFFCF0;
    padding-bottom: 8rem;
}
.iinetopTxt {
    color: #5C4423;
    font-weight: bolder;
    font-size: 2rem;
    text-align: center;
    line-height: 2;
    max-width: 50rem;
    margin: 0 auto;
    padding: 6.5rem 4.5rem 0;
}
.iinetopTxt span {
    display: block;
    border-bottom: 2px solid #5C4423;
}

#iine .anchor .inner {
    padding-top: 9rem;
}
#iine article {
    padding: 1.3rem;
}
#iine article .iineWrap {
    position: relative;
}
#iine article .iineWrap::before {
    position: absolute;
    content: url(../img/iine_deco.png);
    transform: scale(.44);
    top: -105px;
    left: -53px;
}
.iineWrap {
    border: 3px solid;
}
.iineWrap hr {
    background-image: linear-gradient(to right, #000 5px, transparent 5px);
    background-size: 9px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
    height: 2px;
    background-color: transparent;
    width: 93%;
    border: none;
    margin: 4.5rem auto;
}
.iineBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 7.2rem 12rem 0;
}
.iineBox>* {
    width: 48%;
}
.iineBox figure:first-child {
    text-align: center;
    margin-bottom: 1rem;
}
.iineBox figure:first-child img {
    max-width: 235px;
}
.iineBox p {
    line-height: 3.5rem;
    font-size: 1.8rem;
    margin-top: 1rem;
}
.iineBox p span {
    border-bottom: 2px dotted #fff;
}
.iineBox2 {
    padding: 0 15rem 7.2rem;
}

#iine01 .inner {
    padding-top: 6.5rem;
}
#iine01 article {
    background-color: #DFE864;
}
#iine01 .iineBox figure:first-child {
    position: relative;
}
#iine01 .iineBox figure:first-child::before {
    position: absolute;
    content: url(../img/iine01_img01deco.png);
    transform: scale(.66);
    top: -60%;
    right: 0;
}
#iine01 .iineBox figure:first-child {
    margin-top: 1rem;
}
#iine01 .iineBox figure:nth-child(4) {
    text-align: center;
}
#iine01 .iineBox figure:nth-child(4) img {
    width: 85%;
}
#iine01 .iineBox2 {
    padding: 0 3rem 7.2rem;
}
#iine01 .Box-Container {
    display: flex;
}
#iine01 .iineBox2 .border-balloon {
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.8;
}
#iine01 .iineBox2 .border-balloon p {
    display: inline-block;
    border-bottom: 3px solid #000;
}
#iine01 .iineBox2 .border-balloon::before {
    content: "";
    position: absolute;
    bottom: -52%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #DFE864 transparent transparent transparent;
    z-index: 2;
}
#iine01 .iineBox2 .border-balloon::after {
    content: "";
    position: absolute;
    bottom: -75%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 12px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    z-index: 1;
}
#iine01 .iineBox2 h3 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 3rem;
}
    #iine01 .Arrow {
        display: none;
    }
#iine02 article {
    background-color: #BCE6F7;
}
#iine02 .iineBox figure:nth-child(2) {
    margin-top: 2rem;
}
#iine02 .iineBox p {
    margin-top: -2rem;
}
#iine02 .iineBox2 {
    position: relative;
}
#iine02 .iineBox2 .button-container {
    position: absolute;
    right: 26%;
    bottom: 13rem;
    width: 16rem;
}

#iine03 article {
    background-color: #FFCC43;
    position: relative;
}
#iine03 .iineBox figure:first-child {
    margin-top: 6rem;
}
#iine03 .iineBox figure:nth-child(4) {
    margin-top: -3rem;
}
#iine03 .iineBox2 {
    display: flex;
    justify-content: space-between;
}
#iine03 .iineBox2>* {
    width: 45%;
}
#iine03 .iineBox3 {
    margin-left: 3rem;
}
#iine03 .iineBox3 p span {
    font-size: 2rem;
}
#iine03 .iineBox4 {
    margin-top: 1rem;
}
#iine03 article::after {
    position: absolute;
    content: url(../img/iine03_img06.png);
    transform: scale(.7);
    bottom: 27%;
    right: 12%;
}
#iine03 .iineBox4 p {
    line-height: 2.5rem;
}
#iine03 .iineBox4 .button-container {
    width: 16rem;
    margin: 2.4rem 0;
}



@media screen and (max-width: 768px) {
    .iineBox {
        padding: 7.2rem 3rem 0;
    }

    #iine01 .iineBox figure:first-child::before {
    transform: scale(.4);
    right: -55px;
}
    .iineBox2 {
        padding: 0 6rem 7.2rem;
    }
    #iine02 .iineBox p {
    margin-top: 1rem;
}
#iine02 .iineBox figure:nth-child(2) {
    margin-top: 0;
}
#iine02 .iineBox2 .button-container {
    bottom: 8rem;
    left: 50%;
    transform: translate(-50%,-50%);
}
#iine02 .iineBox2 {
    max-width: 500px;
    margin: 0 auto;
}
    
#iine03 article::after {
    bottom: -1.3rem;
    right: auto;
    left: -3%;
    transform: scale(-.7, .7);
}
#iine03 .iineBox3 {
    margin-left: 0;
}
#iine03 .iineBox figure:first-child {
    margin-top: 0;
}
}

    @media screen and (max-width: 480px) {
    .iinetopTxt {
        font-size: 1.8rem;
        padding: 6.5rem 2.5rem 0;
    }
        .iineBox {
            display: block;
            padding: 2rem 3rem 0;
        }
        .iineBox>* {
            width: 100%;
        }
        #iine article .iineWrap::before {
            transform: scale(.35);
        }
        #iine01 {
            overflow: hidden;
        }
        #iine01 .iineBox figure:first-child::before {
            top: -70%;
            right: -14%;
            transform: scale(0.6);
        }
        #iine01 .iineBox2 {
            padding: 0 2rem 5rem;
        }
        .Container {
            position: relative;
            width: 100%;
        }
        .Box-Container {
            display: flex;
            width: fit-content;
            transition: transform 0.3s ease;
            transform: translateX(0);
        }
        

    #iine01 .Box {
        width: 28rem;
        margin-right: 1rem;
    }
    #iine01 .Box:last-child {
        margin-right: 0;
    }
    #iine01 .Box img {
        width: 100%;
        /* object-fit: cover; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #iine01 .Arrow {
        display: block;
        position: absolute;
        bottom: 50%;
        transform: translateY(50%);
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.6);
        color: #fff;
        font-size: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 50%;
        user-select: none;
        z-index: 10;
    }
    #iine01 .Arrow:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }
    #iine01 .Arrow.left {
        left: 10px;
    }
    #iine01 .Arrow.right {
        right: 10px;
    }
    #iine01 .Arrow span {
    display: block;
    height: 27px;
}
    #iine01 .Hide {
        display: none;
    }
#iine02 .iineBox2 {
    padding: 0 1rem 2.5rem;
}
    #iine02 .iineBox p {
        margin-top: 1rem;
    }

#iine02 .iineBox2 .button-container {
    right: 25%;
    bottom: 7%;
    width: 14rem;
}
#iine03 .iineBox figure:first-child {
    margin-top: 0;
}
#iine03 .iineBox figure:nth-child(4) {
    margin-top: 0;
}
#iine03 .iineBox2 {
    padding: 0 0rem 3.6rem;
}
#iine03 .iineBox2>* {
    width: 47%;
}
#iine03 .iineBox3 {
    margin-left: 1rem;
}
#iine03 .iineBox4 p {
    line-height: 2rem;
    font-size: 1.4rem;
}
#iine03 .iineBox4 .button-container {
    width: 14rem;
    margin: 2.4rem 0 6rem;
}
#iine03 .iineBox4 figure:last-child  {
    width: 200%;
    margin-left: -105%;
}
#iine03 .iineBox4 figure:last-child img  {
    margin-top: 2rem;
}
    
}

/*+++++++++++++++++++++++++ slick */

      .slider {
        display: flex;
      }  

    @media screen and (max-width: 480px) {

    }
        




/*+++++++++++++++++++++++++ popup */
/*button-container*/
.button-container {}
.button-container>* {}
/*button*/
.btn_popup {
    display: block;
    cursor: pointer;
}
.btn_popup:hover {
    transform: scale(1.3, 1.3);
    transition: all 0.3s ease-out;
}
.btn_popup:active {}
/*popup template design*/
.popup-background {
    /*position size*/
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    /*design*/
    background-color: gray;
    opacity: 0.5
}
.popup {
    /*position size*/
    --height: 700px;
    --width: 815px;
    z-index: 101;
    position: fixed;
    top: calc(50vh - calc(var(--height) / 2));
    left: calc(50vw - calc(var(--width) / 2));
    height: var(--height);
    width: var(--width);
    /*design*/
    overflow-y: scroll;
    background-color: white;
    display: block;
    transition: 0.5s;
}
.popup .close-button {
    --size: 4rem;
    position: absolute;
    top: 2%;
    right: 2%;
    height: var(--size);
    width: var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-size: var(--size);
    border-radius: 50%;
    padding: 3rem;
}
.popup .close-button:hover {
    background-color: #707070;
    opacity: .5;
    color: white;
    transition: 0.5s;
}
/*POPUP内容レイアウト*/
.popup .content {
    margin: 1.8rem;
    background-color: #FFFEF5;
}
.popup .content>div {
    padding: 5rem;
    border: 3px solid;
}
.popup .content .tojiru-button {
    display: block;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}
/* #iine02 */
#iine02 .popup .content.pc h3 {
    max-width: 430px;
    margin: 0 auto;
}
/* #iine03 */
.popup.pop2 {
    --height: 472px;
    --width: 815px;
    z-index: 101;
    position: fixed;
    top: calc(50vh - calc(var(--height) / 2));
    left: calc(50vw - calc(var(--width) / 2));
    height: var(--height);
    width: var(--width);
    overflow-y: scroll;
    background-color: white;
    display: block;
    transition: 0.5s;
}
#iine03 .popup h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.8rem;
    line-height: 1;
    text-align: center;
}
#iine03 .pup2Box {
    display: flex;
    justify-content: space-between;
}
#iine03 .building-image {
    width: 45%;
}
#iine03 .info-section {
    width: 50%;
}
#iine03 .info-item {
    display: flex;
    margin-bottom: 0.5rem;
    align-items: flex-start;
}
#iine03 .info-label {
    background-color: #f4d5b8;
    padding: 1rem 0;
    font-weight: bold;
    font-size: 1.8rem;
    color: #333;
    width: 26%;
    text-align: center;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: normal;
}
#iine03 .info-content {
    padding: .5rem 0;
    line-height: 2.25rem;
}
#iine03 .info-txt {
    font-size: 1.6rem;
}
/*POPUPチェックボックス非表示*/
.popup-flag {
    display: none;
}
.popup-flag:not(:checked)+.popup-background {
    display: none;
}
.popup-flag:not(:checked)+*+.popup {
    /*position size*/
    --height: 0px;
}
@media screen and (max-width:900px) {
    .popup {
        --width: 600px;
    }
    .popup.pop2 {
        --width: 600px;
        --height: 700px;
    }
#iine03 .pup2Box {
    display: block;
}
#iine03 .building-image {
    width: 100%;
    margin-bottom: 2rem;
}
#iine03 .info-section {
    width: 100%;
}
}

@media screen and (max-width:480px) {
.popup .content>div {
    padding: 5rem 1rem;
}
.popup {
    --width: 350px;
    --height: 472px;
}
.btn_popup:hover {
    transform: scale(1.1, 1.1);
}
.popup.pop2 {
    --width: 350px;
    --height: 472px;
}
#iine03 .info-label {
    font-size: 1.4rem;
}
#iine03 .info-txt {
    font-size: 1.4rem;
}
.popup .content .tojiru-button {
    margin-top: 2rem;
}

}




.footerBg {
    background: linear-gradient(300deg, rgba(188, 226, 129, 1) 0%, rgba(226, 245, 206, 1) 100%);
}
#consult {
    text-align: center;
    padding: 6rem 0 8rem;
}
#consult h3 {
    font-size: 2.8rem;
    line-height: 6.6rem;
    font-weight: bold;
    color: #5C4423;
}
#consult h3 span {
    background: linear-gradient(transparent 50%, #fff 0%);
}
#consult article figure:nth-child(2) {
    max-width: 365px;
    margin: 4.5rem auto 3.7rem;
}
#consult p {
    font-size: 2rem;
    line-height: 4.7rem;
    font-weight: bold;
    margin-bottom: 7.5rem;
}
#consult h4 {
    max-width: 585px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
#consult {
    padding: 4.5rem 0 5rem;
}
#consult article figure:nth-child(2) {
    max-width: 275px;
}

}
@media screen and (max-width:480px) {
#consult {
    background: url("../img/consult_bg01.png"), url("../img/consult_bg02.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left -8% top -1%,  right -8% top 73%;
    background-size: 28%;
}
#consult h3 {
    font-size: 2.2rem;
    line-height: 3.5rem;
}
#consult p {
    font-size: 1.5rem;
    line-height: 2.5rem;
}
#consult figure:last-child {
    width: 95%;
    margin: 0 auto;
}
}

/* spフッターFloat
=========================================*/

@media screen and (max-width:768px) {
#compose_btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: repeating-linear-gradient(-45deg, #ffc54e 0, #ffc54e 7px, #ffbf3a 7px, #ffbf3a 14px);
    padding: 1.5rem 0 0.5rem;
    transition: all 1s;
    z-index: 900;
}
#compose_btn img {
    margin: 0 auto;
    display: block;
    width: 300px;
}
 .hide_to_right{
   bottom:-120px!important;
 }



}


/* エントリーボタン
=========================================*/
#bnrStop.stop {
    position: relative;
}
#bnrStop.stop .entryBtn {
    position: absolute;
    top: auto;
    bottom: 0px;
}
.entryBtn {
    position: fixed;
    bottom: 2%;
    left: 5%;
    width: 15%;
    transition: all 1s ease;
    z-index: 99999;
}
.entryBtn.isSmall {
    right: 5%;
    width: 11% !important;
    bottom: 15%;
}
.entryBtn a:hover {
    animation-name: entryBtn-fade;
    animation-duration: 3s;
    animation-iteration-count: 1;
}
@keyframes entryBtn-fade {
    0% {
        opacity: 0;
        transform: scale(1, 1);
    }
    100% {
        opacity: 1;
        transform: scale(1.2, 1.2);
    }
}
@media screen and (max-width:768px) {
    .entryBtn {
        display: none;
    }
}


/* footer */
footer {
    background-color: #452810;
    border-radius: 5rem 5rem 0 0;
    color: #fff;
    padding: 8.5rem 0 0;
    text-align: center;
}
footer h4 {
    font-size: 2.2rem;
    margin-bottom: 3.2rem;
}
footer h5 {
    font-size: 2.5rem;
    background-color: #7C583C;
    padding: 1rem 0;
    border-radius: 10px;
}
.footerBox1 {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
}
.footerBox1 div {
    width: 50%;
}
.footerBox1 div:first-child {
    border-right: 1px dashed;
    padding-right: 3rem;
}
.footerBox1 div:last-child {
    padding-left: 3rem;
}
.footerBox1 h6 {
    background-color: #7C583C;
    padding: 0.5rem 3rem;
    max-width: 300px;
    border-radius: 30px;
    letter-spacing: 0;
    margin: 3rem auto;
}
.footerBox1 p {
    line-height: 2.8rem;
}
.footerBox1 p span {
    font-weight: 800;
    font-size: 1.7rem;
}
.footerBox1 img {
    width: 85%;
}
.footerBox2 {
    display: flex;
    justify-content: space-between;
    padding: 4.5rem 0 3rem;
    max-width: 620px;
    margin: 0 auto;
}
.footerBox2 a {
    color: #fff;
}
address {
    padding: 2rem 0;
    border-top: 2px solid;
    font-style: normal;
}
@media screen and ( max-width :786px){
    footer {
    font-weight: 500;
    padding: 3rem 0 0;
}
footer .inner {
    max-width: 480px;
}
    footer h4 {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
    line-height: 2.5rem;
}
footer h5 {
    font-size: 1.8rem;
}

.footerBox1 {
    display: block;
    font-size: 1.4rem;
}
.footerBox1 div {
    width: 95%;
    margin: 0 auto;
}
.footerBox1 h6 {
    max-width: 220px;
    margin: 1rem auto;
}
.footerBox1 div:first-child {
    border-right: none;
    border-bottom: 1px dashed;
    padding-right: 0;
    padding-bottom: 4rem;
}
.footerBox1 div:last-child {
    padding-left: 0;
    padding-top: 4rem;
}
.footerBox1 img {
    width: 80%;
    margin-top: 1.5rem;
}
.footerBox1 p span {
    display: inline-block;
    font-size: 1.4rem;
    margin-top: 1.5rem;
}
.footerBox2 {
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}
.footerBox2 li {
    padding: 1rem;
    font-size: 1.4rem;
}
.footerBox2 li:first-child {
    width: 100%;
}
address {
    font-size: 1.4rem;
}
}
