@charset "UTF-8";
@media screen and (max-width: 767px) {
    .pc{ display: none !important; }
    .sp{ display: block !important; }


/* header */
header {
    position: absolute;
    z-index: 1;
    margin: 5.215vw;
}

header img {
    width: 33.246vw;
}

/* sec01 */
.sec01 {
    position: relative;
    width: 100%;
    height: 165vw;
    overflow: hidden;
    text-align: center;
    color: #053a68;
    background-image: url(../images/main_sp.jpg);
    background-size: cover;
    background-position: center top;
}

.sec01copy {
    width: 80vw;
    position: absolute;
    left: 50%;
    top: auto;
    transform: translateX(-50%) translateY(0);
    bottom: 45vw;
}

h1 {
    font-size: 11.5vw;
    white-space: nowrap;
    width: 100%;
    z-index: 1;
    text-align: left;
    margin: 0vw 0 3vw;
    letter-spacing: 0;
}

h1 .go {
    display: block;
    font-size: 2.8vw;
    letter-spacing: 0.2em;
    margin-bottom: 1.5vw;
}

h1 p:nth-child(2) {
    font-weight: 400;
    line-height: 1.25;
}

.sec01 .day {
    position: absolute;
    font-size: 2vw;
    z-index: 1;
    text-align: left;
}

.sec01 .day p:first-child {
    font-size: 4vw;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

.sec01 .day p span {
    font-size: 8vw;
}

.sec01 .day p:nth-child(2) {
    font-size: 2.6vw;
    letter-spacing: 0.05em;
    margin-top: 0.5vw;
}

.sec01 .day_ {
    font-size: 4vw !important;
}

/* sec02 */
.sec02 {
    display: flex;
    align-items: flex-start;
    max-width: 80vw;
    margin: 0 auto;
    padding: 18vw 0;
    justify-content: space-between;
    flex-direction: column;
}

.sec02 p:first-child {
    font-size: 4.8vw;
    line-height: 1.8;
    margin-bottom: 12vw;
}

.sec02 p:nth-child(2) {
    font-size: 3.2vw;
    line-height: 2;
}

/* sec03 */
.sec03 {
    position: relative;
    width: 100%;
    height: 70vw;
}

.sec03 .back_img {
    background-image: url(../images/sec03_bg_sp.jpg);
    background-size: cover;
    width: 100%;
    height: 70vw;
}

.sec03_copy {
    position: absolute;
    width: 80vw;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.sec03 img {
    display: block;
    width: 80vw;
    height: auto;
    margin-left: auto;
}

/* unit */
.unit01{
    width: 80vw;
    margin: 15vw auto;
}

.unit02 {
    background-color: #ddebf9;
}

.unit02 .inner {
    width: 80vw;
    padding: 10vw 0 18vw;
    margin: 0 auto;
}

.unit03 .inner {
    width: 80vw;
    margin: 15vw auto 0;
}


.unit04 {
    background-color: #043964;
}

.unit04 .inner {
    width: 80vw;
    padding: 15vw 0;
    margin: 0 auto;
}

.unit_title {
    margin-bottom: 5vw;
}

.unit_con {
    margin: 10vw auto 18vw;
}
.unit_con_ {
    margin: 10vw auto 0;
}

.unit_con2 {
    width: 84vw;
    max-width: none;
    margin: 10vw 0 0 auto;
}

.sec_divider {
    margin: 0 auto;
    border: none;
    border-top: 1px solid #053a68;
}
.sec_divider_ {
    border-top: 0 solid #053a68;
}


/* footer */
footer {
    position: relative;
    width: 100%;
    background-color: #043964;
    padding-bottom: 5vw;
}

footer .inner {
    position: relative;
    width: 90vw;
    margin: 0 auto;
    padding: 3vw 0;
}

footer img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 23vw;
}

footer p {
    color: #FFF;
    text-align: center;
    font-size: 1.8vw;
    letter-spacing: 0.1em;
}

/* fade */
.fade_block {
    position: relative;
    opacity: 0;
    overflow: hidden;
    transition: opacity 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade_block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    opacity: 1;
    pointer-events: none;
    transition: opacity 5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade_block.blockIn {
    opacity: 1;
}

.fade_block.blockIn::before {
    opacity: 0;
}

/* floating button */
.floating-button {
    position: fixed;
    bottom: 20vw;
    right: 0;
    width: 18vw;
    z-index: 1000;
    background-color: #043964;
    padding: 2vw;
    border-radius: 2vw 0 0 2vw;
}

.floating-button a {
    display: block;
}

.floating-button a + a {
    position: relative;
}

.floating-button a + a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.391vw;
    background: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 1.043vw 0.652vw;
    background-repeat: repeat-x;
}

.floating-button img {
    width: 100%;
    height: auto;
    display: block;
}


.unit03_con02_sp{
    width: 100vw;
    margin: 0 auto;
}

.scrollable{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scrollable img{
    display: block;
    width: 160vw;
    max-width: none;
    padding: 0 10vw;
    margin: 10vw auto 8vw;
}
.unit03_copy{
    width: 55vw;
    margin: 0 auto 25vw;
    text-align: center;
}

}