@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');

html {
    font-size: 62.5% !important;
}
body {
    font-family: 'Noto Sans JP', sans-serif !important;
    letter-spacing: .1em;
    color: #0f0f0f;
}
.in {
    width: 1100px;
    margin: 0 auto;
}
.sp {
    display: none;
}
img {
    height: auto;
    max-width: 100%;
}

.blur{
    -ms-filter: blur(15px);
    filter: blur(15px);
}

@media screen and (max-width:640px) {
    body {
        margin: 0;
    }
    .in {
        width: 100%;
        padding: 0 5%;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

.flex {
    display: flex;
}

header {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    background-color: #fff;
    height: 80px;
}
header .in {
    height: 100%;
}
header .header_cont {
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}
header .header_cont .logo {
    display: block;
}
header .header_cont .hum {
	position: absolute;
    top: 50%;
    right: 50px;
	cursor: pointer;
    width: 35px;
    height: 30px;
    transform: translateY(-50%);
}
.hum span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 4px;
    border-radius: 2px;
	background: #6cbacd;
  	width: 100%;
}

.hum span:nth-of-type(1) {
	top: 0;	
}
.hum span:nth-of-type(2) {
	top: 13px;
}
.hum span:nth-of-type(3) {
	top: 26px;
}
.hum.active span:nth-of-type(1) {
    top: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 80%;
}
.hum.active span:nth-of-type(2) {
	opacity: 0;
}
.hum.active span:nth-of-type(3){
    top: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 80%;
}
header .header_cont .nav_cont {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -9999;
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    display: flex;
}
header .header_cont .nav_cont.active {
    opacity: 1;
    z-index: 9999;
    transform: translateY(0);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}
header .header_cont .nav_cont .imagearea {
    width: 50%;
    height: 100%;
    background-color: #6cbacd;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .header_cont .nav_cont .navarea {
    width: 50%;
    height: 100%;
    background-color: #6cbacd;
    display: flex;
    align-items: center;
}
header .header_cont .nav_cont .navarea nav {
    background-color: #fff;
    padding: 30px 260px;
    border-radius: 10px;
}
header .header_cont .nav_cont .navarea nav ul li {
    margin: 40px 0;
}
header .header_cont .nav_cont .navarea nav ul li a {
    font-size: 2rem;
    color: #6cbacd;
    font-weight: 700;
    position: relative;
}
header .header_cont .nav_cont .navarea nav ul li a:hover::before {
    content: "●";
    font-size: 1.2rem;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width:640px) {
    header .header_cont .hum {
        right: 5%;
    }
    header .header_cont .nav_cont .imagearea {
        display: none;
    }
    header .header_cont .nav_cont .navarea {
        width: 100%;
        height: 100%;
        background-color: #6cbacd;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header .header_cont .nav_cont .navarea nav {
        background-color: #fff;
        padding: 30px 40px;
        border-radius: 10px;
    }
}


#sns {
    background-color: #f7f7f7;
    padding-bottom: 40px;
}
#sns .cont {
    align-items: center;
}
#sns .cont .textarea {
    background: url(../images/x2/sns_bg.png) no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    margin-right: 40px;
}
#sns .cont .textarea .txts {
    text-align: center;
}
#sns .cont .textarea .txts h2 {
    font-size: 2.4rem;
    color: #6cbacd;
}
#sns .cont .textarea .txts p {
    font-size: 2rem;
    line-height: 1.6;
    margin: 20px 0;
}
#sns .cont .textarea .txts a {
    font-size: 2rem;
    color: #fff;
    background-color: #6cbacd;
    border-radius: 5px;
    display: block;
    width: 300px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

@media screen and (max-width:640px) {
    #sns .cont {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    #sns .cont .textarea {
        background: url(../images/x2/sns_bg.png) no-repeat;
        background-size: contain;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: unset;
        padding-top: 100%;
        margin-right: 0;
        position: relative;
    }
    #sns .cont .textarea .txts {
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    #sns .cont .textarea .txts h2 {
        font-size: 2.4rem;
        color: #6cbacd;
    }
    #sns .cont .textarea .txts p {
        font-size: 2rem;
        line-height: 1.6;
        margin: 20px 0;
    }
    #sns .cont .textarea .txts a {
        font-size: 2rem;
        color: #fff;
        background-color: #6cbacd;
        border-radius: 5px;
        display: block;
        width: 300px;
        height: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
}

#cta {
    padding-bottom: 40px;
    background: url(../images/x2/cta_bg.jpg) no-repeat;
    background-size: cover;
}
#cta .in {
    text-align: center;
}
#cta .in h2 {
    position: relative;
    padding-top: 35px;
}
#cta .in p {
    margin: 35px 0;
}
#cta .in .btns {
    display: flex;
    justify-content: center;
}
#cta .in .btns a {
    margin: 0 20px;
}

@media screen and (max-width:640px) {
    #cta {
        padding: 40px 0;
    }
    #cta .in h2 {
        top: unset;
    }
    #cta .in p {
        margin: 30px 0;
    }
    #cta .in .btns a {
        margin: 0 5px;
    }
}
footer {
    background-color: #6cbacd;
}
footer .upper {
    padding: 60px 0;
    text-align: center;
}
footer .upper .ft_nav {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
footer .upper .ft_nav li {
    margin: 0 20px;
}
footer .upper .ft_nav li a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
footer .upper .ft_nav.u_l li a {
    font-size: 1.4rem;
}
footer .lower {
    padding: 20px 0;
    text-align: center;
}
footer .lower p {
    font-size: 1.4rem;
}

@media screen and (max-width:640px) {
    footer .upper .ft_nav {
        flex-direction: column;
    }
    footer .upper .ft_nav li {
        margin: 0 0 20px;
    }
}

.up_fv {
    background: rgb(184,229,240);
    background: linear-gradient(103deg, rgba(184,229,240,1) 0%, rgba(43,213,255,1) 100%);
    padding: 80px 0;
    margin-top: 80px;
}
.up_fv h1 {
    font-size: 2.6rem;
    color: #fff;
    line-height: 1.5;
}

@media screen and (max-width:640px) {
    .up_fv {
        padding: 40px 0;
        margin-top: 80px;
    }
    .up_fv h1 {
        font-size: 2rem;
    }
}

.bread {
    margin: 20px 0 80px;
}
.bread a {
    color: #6cbacd;
}
.bread span,
.bread a {
    font-size: 1.4rem;
    margin-right: 10px;
}
.main_cont .row {
    justify-content: space-between;
    margin-bottom: 60px;
}
.main_cont .row main {
    width: 750px;
}
.main_cont .row aside {
    width: 300px;
}

@media screen and (max-width:640px) {
    .main_cont .row {
        flex-wrap: wrap;
    }
    .main_cont .row main {
        width: 100%;
    }
    .main_cont .row aside {
        width: 100%;
    }
}

aside .ttlarea {
    margin-bottom: 30px;
    text-align: center;
}
aside .ttlarea .secttl {
    font-size: 2.4rem;
    font-weight: 700;
    color: #6cbacd;
}
aside .ttlarea p {
    font-size: 1.6rem;
    margin-top: 20px;
}

aside .fa {
    margin-bottom: 60px;
}
aside .fa .card {
    padding-bottom: 20px;
    border-bottom: solid 1px #6cbacd;
    margin-bottom: 30px;
    display: block;
}
aside .fa .card .imagearea {
    height: 180px;
}
aside .fa .card .imagearea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
aside .fa .card .textarea .date {
    font-size: 1.4rem;
    color: #878787;
    display: block;
    margin: 10px 0;
}
aside .fa .card .textarea .cat {
    display: inline-block;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 20px;
    background-color: #6cbacd;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
}
aside .fa .card .textarea h3 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #0f0f0f;
}

aside .cats .categories a {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #6cbacd;
    width: 100%;
    text-align: center;
    padding: 25px 0;
    border: solid 1px #6cbacd;
    margin-bottom: 20px;
    position: relative;
}
aside .cats .categories a::after {
    content: "";
    width: 12px;
    height: 20px;
    background: url(../images/x2/next.png) no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

#sns {
    padding-top: 40px;
}