@charset "utf-8";
/* ========================================
index.css
------------------------------------------

======================================== */

/** -webkit-transform-style: preserve-3d;*/

/* ---------------------------------------- 

 - body

---------------------------------------- */
h2.profileTtl {
    position: relative;
}
h2.profileTtl::after {
    content: '';
    background: #5a5250;
    position: absolute;
        top: 50%;
        right: 0;
    height: 2px;
    width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
h2.profileTtl::after {
    width: calc(100% - 150px);
}
}

/* ---------------------------------------- 

 - #container

---------------------------------------- */

/* ---------------------------------------- 

 - #Contents

---------------------------------------- */

/* ---------------------------------------- 

 - #Main

---------------------------------------- */
#Contents #Main {
    width: 100%;
    height: auto;
    margin: 110px auto 0;
    overflow: hidden;
    position: relative;
}
#Contents #Main .wrapper {
    width: 1000px;
    height: 720px;
    height: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
}
#Contents #Main .wrapper #MainImg {
    animation: sectionFadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: sectionFadeIn 1.5s ease 0s 1 normal;
}
#Contents #Main .wrapper #MainImg img {
    width: 100%;
}
#Contents #Main .wrapper a.linkBtn {
    display: block;
    position: absolute;
        left: 50px;
        bottom: 10px;
    animation: fadeIn2 2s ease 0s 1 normal;
    -webkit-animation: fadeIn2 2s ease 0s 1 normal;
}
@keyframes fadeIn2 {
    0% {opacity: 0}
    50% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn2 {
    0% {opacity: 0}
    50% {opacity: 0}
    100% {opacity: 1}
}
@media screen and (max-width: 768px) {
#Contents #Main {
    width: 100%;
    height: auto;
    /*background: #005aa0;*/
    margin: 70px auto 0;
    overflow: hidden;
    position: relative;
}
#Contents #Main .wrapper {
    width: 100%;
}
#Contents #Main .wrapper a.linkBtn {
    background: #000;
    border-radius: 20px;
    display: block;
    margin: 30px auto 0;
    padding: 10px 20px;
    position: relative;
        left: inherit;
        bottom: inherit;
    max-width: 350px;
    width: 70%;
}
#Contents #Main .wrapper a.linkBtn img {
    width: 100%;
}
}
/* ---------------------------------------- 

 - .section共通

---------------------------------------- */
#Contents .section {
    width: 100%;
    margin-top: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
#Contents .section img {
    width: 100%;
    height: auto;
}
@keyframes sectionFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes sectionAnimeDown {
    0% {
        -webkit-transform: translate(0, -60px);
        transform: translate(0, -60px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
@keyframes sectionAnimeUp {
    0% {
        -webkit-transform: translate(0, 60px);
        transform: translate(0, 60px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
@keyframes sectionAnimeLeftIn {
    0% {
        -webkit-transform: translate(-80px, 0);
        transform: translate(-80px, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
@keyframes sectionAnimeRightIn {
    0% {
        -webkit-transform: translate(80px, 0);
        transform: translate(80px, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}
@keyframes scaleX {
    0% {
        transform: scaleX(0.01);
    }
    100% {
        transform: scaleX(1);
    }
}
@keyframes swipeLeft {
    0% {
        transform: translate(0);
    }
    50%, 60% {
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes swipeRight {
    0% {
        transform: translate(0);
    }
    50%, 60% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: translate3d(100%, 0, 0);
    }
}
/* ---------------------------------------- 

 - #leadBox

---------------------------------------- */
#leadBox {
    margin-bottom: 67px;
    padding-top: 45px;
}
#leadBox p {
    color: #0085CE;
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 45px;
    text-align: center;
    opacity: 0;
	transform : translate(0, 100px);
	transition : all 500ms;
}
#leadBox p.scrollin:nth-of-type(1) {
    animation: sectionAnimeUp 1.5s ease 0s 1 forwards;
    -webkit-animation: sectionAnimeUp 1.5s ease 0s 1 forwards;
}
#leadBox p.scrollin:nth-of-type(2) {
    animation: sectionAnimeUp 1.5s ease 0.2s 1 forwards;
    -webkit-animation: sectionAnimeUp 1.5s ease 0.2s 1 forwards;
}
#leadBox p span {
    display: block;
    font-size: 65px;
    margin-bottom: 10px;
}
#leadBox dl {
    text-align: center;
    opacity: 0;
	transform : translate(0, 100px);
	transition : all 500ms;
}
#leadBox dl.scrollin {
    animation: sectionAnimeUp 1.5s ease 0.4s 1 forwards;
    -webkit-animation: sectionAnimeUp 1.5s ease 0.4s 1 forwards;
}
#leadBox dl dt {
    font-size: 28px;
    font-weight: bold;
}
#leadBox dl dd {
    font-size: 21px;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
#leadBox p {
    font-size: 21px;
    margin-bottom: 25px;
    text-align: center;
    opacity: 0;
	transform : translate(0, 100px);
	transition : all 500ms;
}
#leadBox p span {
    font-size: 30px;
    margin-bottom: 10px;
}
#leadBox dl dt {
    font-size: 21px;
    font-weight: bold;
    text-align: center;
}
#leadBox dl dd {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
}
}
/* ---------------------------------------- 

 - #Info_area

---------------------------------------- */
#Contents .wrapper {
    overflow: visible;
}
#Contents #Info_area {
    margin-bottom: 60px;
}
#Contents #Info_area dl {
    position: relative;
}
#Contents #Info_area dl dt {
    background: #f08300;
    border-radius: 7px;
    color: #fff;
    display: inline-block;
    font-size: 23px;
    line-height: 1;
    padding: 6px 12px 8px;
    position: absolute;
        top: -18px;
        left: -13px;
}
#Contents #Info_area dl dd {
    border: solid 1px #000;
    font-size: 18px;
    padding: 20px 12px 10px;
    width: 100%;
}
#Contents #Info_area dl dd .info_content {
    width: 100%;
    height: 135px;
    overflow-y: scroll;
}
#Contents #Info_area dl dd .info_content span,
#Contents #Info_area dl dd .info_content span a {
    color: #F80000;
}
#Contents #Info_area dd .info_content a {
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    #Contents #Info_area {
        margin-top: 10px;
        max-width: inherit;
        width: 100%;
    }
    #Contents #Info_area dl dt {
        position: absolute;
            top: -18px;
            left: 0;
    }
    #Contents #Info_area dt {
        margin-bottom: 5px;
        font-size: 1.8rem;
    }
    #Contents #Info_area dd .info_content {
        width: 100%;
        height: 130px;
        overflow-y: scroll;
    }
}
/* ---------------------------------------- 

 - #linkBox

---------------------------------------- */
#linkBox {
    margin-bottom: 50px;
}
#linkBox ul {
    display: flex;
        justify-content: space-between;
}
#linkBox ul li {
    opacity: 0;
    max-width: 280px;
    width: 31.47%;
}
#linkBox ul li.fadein:nth-of-type(1) {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 forwards;
}
#linkBox ul li.fadein:nth-of-type(2) {
    animation: fadeIn 2s ease 0.3s 1 normal;
    -webkit-animation: fadeIn 2s ease 0.3s 1 forwards;
}
#linkBox ul li.fadein:nth-of-type(3) {
    animation: fadeIn 2s ease 0.6s 1 normal;
    -webkit-animation: fadeIn 2s ease 0.6s 1 forwards;
}
#linkBox ul li img {
    width: 100%;
}
@media screen and (max-width: 768px) {
#linkBox ul {
    display: block;
}
#linkBox ul li {
    opacity: 0;
    margin: 0 auto 30px;
    max-width: inherit;
    width: 70%;
}
}
/* ---------------------------------------- 

 - #groupBox

---------------------------------------- */
/*#groupBox .box {
    display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
}
#groupBox dl {
    margin-bottom: 25px;
    max-width: 385px;
    width: 43.26%;
}
#groupBox dl dt {
    font-size: 20px;
    font-weight: bold;
}
#groupBox dl dd {
    font-size: 18px;
    line-height: 1.4;
}
#groupBox dl dd.icon {
    padding-left: 10px;
    width: 80px;
}
@media screen and (max-width: 768px) {
#groupBox .box {
    display: block;
}
#groupBox dl {
    margin-bottom: 25px;
    max-width: inherit;
    width: 100%;
}
}*/
/* ---------------------------------------- 

 - #accessBox

---------------------------------------- */
#accessBox {
    font-size: 26px;
    margin-top: -100px !important;
    padding-top: 100px;
}
#accessBox iframe {
    font-size: 26px;
    height: 340px;
    width: 100%;
}
#accessBox .box {
    display: flex;
        justify-content: space-between;
}
@media screen and (max-width: 768px) {
#accessBox {
    font-size: 21px;
}
#accessBox .box {
    display: block;
}
}





