@charset "utf-8";
/* CSS Document */

/*******************************
profile
*******************************/
#profileBox01 {
    border-top: 1px solid #ccc;
    font-size: 0.875rem;
}

#profileBox01 dl {
    padding: 1.5em 0;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

#profileBox01 dl:nth-child(odd) {
    background: #f8f8f8;
}

#profileBox01 dl dt {
    width: 23%;
    padding-left: 2%;
    font-family: "gothic02";
}

#profileBox01 dl dd {
    width: 75%;
}

#profileBox01 dl dd .list01 {
    margin: 1.2em 0 0 1.5em;
}

#profileBox01 dl dd .list01 li {
    list-style-type: disc;
}

#profileBox01 dl dd .txt01 {
    margin-top: 1em;
}

#profileBox01 dl dd img {
    max-width: 100%;
}

/*******************************
idea
*******************************/
#ideaBox01 {
    display: flex;
    justify-content: space-between;
}

#ideaBox01 h2 {
    color: #b09540;
    font-family: "gothic02";
    font-size: 3.6rem;
    white-space: nowrap;
    line-height: 1.5;
}

#ideaBox01 div.titleArea {
    position: relative;
}

#bridge01 {
    position: absolute;
    bottom: -9rem;
    left: -5%;
    z-index: -2;
    width: 130%;
    height: auto;
    stroke:#b09540;
    stroke-width:2px;
    fill:transparent;
    stroke-dasharray:2000px;
    stroke-dashoffset:2000px;
    animation:idea01 2s ease-in 0s forwards;
}

@keyframes idea01 {
    0%{stroke-dashoffset:2000px;}
    30%{fill:transparent;}
    60%{stroke-dashoffset:0;}
    100%{stroke-dashoffset:0;}
}

#bridge02 {
    position: absolute;
    bottom: -9rem;
    left: -5%;
    z-index: -1;
    width: 130%;
    height: auto;
    animation-name: idea02;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
}

@keyframes idea02 {
    0% {opacity: 0}
    100% {opacity: 1}
}

#ideaBox01 div.txtArea {
    margin-left: -2%;
    width: 50%;
    padding: 1rem 1.3rem 1.3rem;
    background: rgba(255,255,255,0.4);
}

#ideaBox01 div.txtArea p:not(:last-child) {
    margin-bottom: 1em;
}

#ideaBox02 {
    padding: 2rem 2rem 2rem 5%;
    background: rgba(255,255,255,0.7);
    width: 50%;
}

#ideaBox02 dt {
    font-family: "gothic02";
    font-size: 120%;
    margin-bottom: 1.2rem;
}

#ideaBox02 dd ol li {
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
}

#ideaBox02 dd ol li div {
    font-family: "gothic02";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-right: 0.4em;
    border-radius: 100%;
    padding: 2px;
    background: -webkit-linear-gradient(right, #6fc5ff, #f24662 50%, #b09540);
    background: -o-linear-gradient(right, #6fc5ff, #f24662 50%, #b09540);
    background: linear-gradient(to left, #6fc5ff, #f24662 50%, #b09540);
}

#ideaBox02 dd ol li div span {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 100%;
}

/*******************************
info
*******************************/
#infoBox01 dl {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ccc;
}

#infoBox01 dl dt {
    width: 40%;
}

#contents #infoBox01 dl dt a {
    border: none;
    height: 10rem;
    overflow: hidden;
    font-family: "gothic02";
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    transition: all 0.5s ease 0s;
    position: relative;
}

#contents #infoBox01 dl dt a:hover {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
    opacity: 1.0!important;
}

#infoBox01 dl dd {
    width: 56%;
    font-size: 0.875rem;
}

#infoBox01 dl dd p:not(:last-child) {
    margin-bottom: 0.8rem;
}

#contents #infoBox01 dl.each01 dt a {
    border: 2px solid #ee7f90;
    background: url("/common/images/bnrBgKango.png") no-repeat -4rem 0;
    background-size: auto 100%;
    padding-left: 28%;
    color: #ee7f90;
}

#infoBox01 dl.each01 dt a img {
    display: block;
    margin: 1rem 0 -0.5rem;
    height: 4rem;
    width: auto;
}

#infoBox01 dl.each01 dt a .line {
    height: 2px;
    background: #ee7f90;
    width: 4rem;
    position: absolute;
    bottom: 50%;
    right: 0;
    animation-name: info01;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes info01 {
    from {
        opacity: 0.4;
        transform: translateX(20%);
    }
    to {
        opacity: 1;
        transform: translateX(100%);
    }
}

#contents #infoBox01 dl.each02 dt a {
    border: 2px solid #48acf0;
    background: url("/common/images/bnrBgKaigo.png") no-repeat -4rem 0;
    background-size: auto 100%;
    padding-left: 20%;
    color: #48acf0;
}

#infoBox01 dl.each02 dt a img {
    display: block;
    margin: 1rem 0 -1rem;
    height: 3.7rem;
    width: auto;
}

#infoBox01 dl.each02 dt a .line {
    height: 2px;
    background: #48acf0;
    width: 4rem;
    position: absolute;
    bottom: 50%;
    right: 0;
    animation-name: info01;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes info02 {
    from {
        opacity: 0.4;
        transform: translateX(20%);
    }
    to {
        opacity: 1;
        transform: translateX(100%);
    }
}

/*******************************
director
*******************************/
#directorBox01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#directorBox01 section {
    width: 48%;
    margin-bottom: 2.5rem;
}

#directorBox01 section:nth-child(odd) {
    margin-right: 4%;
}

#directorBox01 section {
    width: 48%;
    margin-bottom: 2.5rem;
}

#directorBox01 section h2 {
    font-family: "gothic02";
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

#directorBox01 section .directorBox02 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 0.875rem;
}

#directorBox01 section .directorBox02 img.photo01 {
    width: 20%;
    max-width: 95px;
}

#directorBox01 section .directorBox02 div.history {
    width: 78%;
    border-top: 1px solid #ccc;
}

#directorBox01 section .directorBox02 dl {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #ccc;
    padding: 0.8rem 0;
}

#directorBox01 section .directorBox02 dl dt {
    width: 17%;
}

#directorBox01 section .directorBox02 dl dd {
    width: 83%;
}

#directorBox01 section .directorBox02 dl dd p {
    margin-top: 0.8rem;
}