@charset “utf-8”;
html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
}
@media(max-width: 1300px) {
    html {
        font-size: 60%;
    }
}
@media(max-width: 750px) {
    html {
        font-size: 55%;
    }
}
@media(max-width: 550px) {
    html {
        font-size: 50%;
    }
}
body {
    background: #ffffff;
    margin: 0;
    color: #262626;
    font-family: 'M PLUS 1p', sans-serif ,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
		transform: rotate(0.03deg);
    line-height: 1.5;
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: 1px;
}
/*body *:not(img){
	transform: rotate(0.03deg);
}*/
/*a,p,span,strong,li,h2,dt,dd{
	transform: rotate(0.03deg);
}*/
a.menubar{
    display: block;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
a.menubar::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #4FA2D9;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;  /*変形の時間*/
}
    
a.menubar:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top; /*左から右に向かう*/
}
a.menubar:hover {
    transform: translateY(-5px);
}

a.product-btn,
a.link-btn {
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
a.product-btn::after,
a.link-btn::after {
    background: #fbc900;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
a.product-btn:hover,
a.link-btn:hover {
    color: #fff;
}
a.product-btn:hover::after,
a.link-btn:hover::after {
    transform: scale(1, 1);
}
/********
状態
*********/
.is-pc{
    display: block;
}
@media(max-width: 750px) {
    .is-pc{
        display: none;
    }
}
.is-sp{
    display: none;
}
@media(max-width: 750px) {
    .is-sp{
        display: block;
    }
}

/********
SP-menu
*********/
.sp-menu{
    display: none;
}
.sp-menu-trigger {
    position: fixed;
    top: 17px; right: 27px;
    display: block;
    width: 28px;
    height: 50px;
    cursor: pointer;
    z-index: 30;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    transition-delay: 600ms;
}
.sp-menu-trigger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    margin-top: -2px;
    background-color: #4fa2d9;
    font-size: 0px;
    user-select: none;
    transition: background-color 0.5s;
}
.sp-menu-open .sp-menu-trigger span {
    background-color: transparent;
}
.sp-menu-open .sp-menu-trigger {
    left:88%; 
    transition: all 0.4s cubic-bezier(0.7, 0, 0.36, 0.63);
}
.sp-menu-trigger span:before,
.sp-menu-trigger span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4fa2d9;
    content: '';
    transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
}
.sp-menu-trigger span:before {
    transform: translateY(-250%);
}
.sp-menu-trigger span:after {
    transform: translateY(250%);
}

/*Just bust a move*/
.sp-menu-open .sp-menu-trigger span:before {
    transform: translateY(0) rotate(45deg);
}
.sp-menu-open .sp-menu-trigger span:after {
    transform: translateY(0) rotate(-45deg);
}
.sp-menu-close .sp-menu-trigger:before {
    animation: plusVertical 0.3s ease forwards;
}
.sp-menu-close .sp-menu-trigger:after {
    animation: plusHorizontal 0.3s ease forwards;
}
.menu-overlay {
    top: 0px;
    width: 100%;
    height: 100%;
    background: none;
}
.menu-overlay.open {
    z-index: 12;
    position: fixed;
    background: #f2f9ff;
    height: 100vh;
    top: 0;
}
.menu-overlay ul {
    position: absolute;
    visibility: hidden;
    list-style-type:none;
    top: -40%;
    left: 0;
    width: 100%;
    padding: 0;
    opacity: 0;
    display: table-cell;
    vertical-align: middle;
    transition: all 0.6s cubic-bezier(0.7, 0, 0.36, 0.63);
    transform: perspective(600px) rotateX(20deg) rotateY(-20deg);
}
.menu-overlay ul li{
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 30px 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #262626;
    padding-bottom: 20px;
}
.menu-overlay ul li:after {
    content:"";
    display:block;
    width:30px;
    height:1px;
    background:#262626;
    margin:10px auto 0 auto;
}
.menu-overlay ul li:hover {
    color:#4fa2d9;
    cursor:pointer;
}
.menu-overlay.open ul {
    top: 40px;
    left:0;
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transform: perspective(600px) rotateX(0deg) rotateY(0deg);
    transition: all 0.6s cubic-bezier(0.7, 0, 0.36, 0.63);
    transition-delay: 400ms;
}
@media(max-width: 750px) {
    .sp-menu{
        display: block;
    }
}

/********
footer
*********/
.footer_bnr_area{
	background: #f2f9ff;
	padding-bottom: 3em;
}
.footer_bnr_area .inner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
}
.footer_bnr_area .box{
	width: 47%;
	max-width: 400px;
}
.footer_bnr_area span{
	font-size: 1.7rem;
  margin-bottom: .8em;
  display: block;
  text-align: center;
	color: #4ba0d9;
}
.footer_bnr_area img{
	border-radius: 2em;
}
.footer_bnr_area p{
	margin-top: .5em;
	font-size: 1.1rem;
}
footer{
    padding: 45px 20px 35px 20px;
    width: 100%;
    background: #4BA0D9;
    color: #ffffff;
}
footer .menu{
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
    font-size: 1.6rem;
}
footer .menu li{
    margin-right: 15px;
}
footer .menu li:last-child{
    margin-right: 0px;
}
footer small{
    display: block;
    text-align: center;
    font-size: 1.2rem;
}
@media(max-width: 750px) {
	.footer_bnr_area .inner{
		display: block;
		width: 89%;
	}
	.footer_bnr_area .box{
		width: 100%;
		max-width: 330px;
		margin: 0 auto 3em;
	}
	.footer_bnr_area .box:last-of-type{
		margin-bottom: 0;
	}
	.footer_bnr_area img{
		display: block;
		margin: 0 auto;
	}
	footer {
			padding: 25px 20px 25px 20px;
	}
	footer .menu{
			display: none;
	}
}

.other{
    padding-top: 17px;
    background: #F2F9FF;
}
.other .block{
    position: relative;
    width: 100%;
    max-width: calc(1300px + 620 * (100vw - 750px)/1170);
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}
.other header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: fixed;
    top: 17px;
    left: 0;
    width: 100%;
    padding: 0 40px;
}
.other header .logo{
    max-width: 211px;
    height: 100%;
}
.other header .menu{
    display: flex;
    font-size: 1.6rem;
}
.other header .menu li{
    position: relative;
    margin-right: 50px;
}
.other header .menu li:last-child{
    margin-right: 0px;
}
.other header .menu li a{
    color: #4FA2D9;
}
.other .page-title-box{
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between;
}
.other .page-title{
    font-size: 4.3rem;
    font-weight: bold;
}
.other .breadcrumb{
    writing-mode: vertical-rl;
    font-weight: bold;
}
.other .breadcrumb span{
    padding-top: 5px;
}
.other .breadcrumb .current{
    background: linear-gradient(to right, #C4E4FF 0%, transparent 100%);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 100%;
    padding: 5px 0;
}
@media(max-width: 750px) {
    .other .block{
        padding: 0 20px;
    }
    .other header{
        top: 5px;
        padding: 0 20px;
    }
    .other header .menu{
        display: none;
    }
    .other header .logo{
        max-width: 184px;
    }
    .other .page-title-box{
        padding-top: 150px;
        padding-bottom: 70px;
    }
}

/********
TOP
*********/
.top{
    overflow: hidden;
    position: relative;
}
.top .bg-main{
    position: relative;
    overflow: hidden;
}
.top .bg-main:before{
    content: "";
    position: absolute;
    left: 0; top: 0;
    background: #F2F9FF;
    width: 100%; height: calc(526px + 400 * (100vw - 750px)/1170);
    max-width: calc(823px + 800 * (100vw - 750px)/1170);
}
.top .bg-main:after{
    content: "";
    position: absolute;
    left: -20%;
    top: 0;
    background: #F2F9FF;
    height: calc(1000px + 600 * (100vw - 750px)/1170);
    width: calc(1000px + 600 * (100vw - 750px)/1170);
    transform: skewY(-60deg);
    z-index: -1;
}
.top header{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.top .logo{
    width: 100%;
    max-width: calc(199px + 100 * (100vw - 750px)/1170);
    max-height: 234px;
    border-radius: 0px 60px 60px 0px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    text-align: center;
    box-sizing: border-box;
    padding: calc(35px + 30 * (100vw - 750px)/1170);
}
.top .logo img{
    width: 100%;
    max-width: calc(140px + 100 * (100vw - 750px)/1170);
}
.top header .menu{
    display: flex;
    font-size: 1.6rem;
    position: absolute;
    top: 0; right: 10vw;
    z-index: 1;
}
.top header .menu li{
    position: relative;
    margin-right: 50px;
}
.top header .menu li:last-child{
    margin-right: 0px;
}
.top header .menu li a{
    color: #262626;
}
.top .main .block{
    aspect-ratio: 16/9;
    width: 100vw;
    overflow: hidden;
}
.top .main .visual{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    object-fit: cover;
    padding: 0 3vw;
    box-sizing: border-box;
    z-index: 0;
}
.top .main .page-title-box {
    position: absolute;
    right: 8vw;
    z-index: 1;
}
.top .main .page-title-box .page-title{
    font-size: calc(30px + 30 * (100vw - 750px)/1170);
    font-weight: 500;
    letter-spacing: 3px;
    margin-top: 10%;
    margin-bottom: 5px;
    font-family: 'Kosugi Maru', sans-serif;
}
.top .main .page-title-box .catch-lead{
    font-size: calc(16px + 11 * (100vw - 750px)/1170);
    font-family: 'Kosugi Maru', sans-serif;
}

.top .message-content{
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: calc(80px + 70 * (100vw - 750px)/1170);
    padding-bottom: calc(100px + 120 * (100vw - 750px)/1170);
    padding-left: calc(40px + 100 * (100vw - 750px)/1170);
    padding-right: calc(40px + 100 * (100vw - 750px)/1170);
    box-sizing: border-box;
}
.top .message-img{
    width: 48%;
    max-width: 1232px;
}
.top .message-content .text{
    width: 48%;
    max-width: 688px;
}
.top .message-content .text .content-title-h3{
    color: #2E87C2;
    margin-bottom: 35px;
    font-size: calc(40px + 20 * (100vw - 750px)/1170);
    font-weight: 500;
}
.top .message-content .text .lead{
    font-size: 1.6rem;
    line-height: 2;
}
.top .corraborarion-area{
    background: #DEF2FF;   
}
.top .corraborarion-area .content{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: calc(80px + 70 * (100vw - 750px)/1170);
    padding-bottom: calc(80px + 70 * (100vw - 750px)/1170);
    padding-left: calc(40px + 100 * (100vw - 750px)/1170);
    padding-right: calc(40px + 100 * (100vw - 750px)/1170);
    box-sizing: border-box;
}
.top .corraborarion-area .content-title-h3{
    text-align: center;
    color: #2E87C2;
    margin-bottom: 25px;
    font-size: calc(40px + 20 * (100vw - 750px)/1170);
    font-weight: 500;
}
.top .corraborarion-area .content-title-h3 span{
    display: block;
    margin: 0 auto;
    line-height: 1.3;
}
.top .corraborarion-area .lead{
    text-align: center;
    font-size: 1.6rem;
    line-height: 2;
}
.top .corraborarion-area .link-btn{
    display: block;
    margin: 50px auto 0;
    width: 100%;
    max-width: 428px;
    border-radius: 37px;
    background: #4ba0d9;
    color: #FFFFFF;
    padding: 22px 0;
    font-size: calc(1.6rem + 0.4 * (100vw - 750px)/1170);
    text-align: center;
}

.top .corrabo-slider {
    width: 100%;
    max-width: 1884px;
    margin: 92px auto 118px;
}
.top .corrabo-slider .slick-slide {
    margin: 0px 0px;
}
.top .corrabo-slider .slick-slide img {
    width: 100%;
}
.top .corrabo-slider .slick-slide .text{
    transition: .3s;
    opacity: 0;
    color: #4FA2D9;
    padding: 5px 10px;
    margin-top: 20px;
    text-align: center;
    transform: rotate(0.03deg);
}
.top .corrabo-slider .slick-current .text{
    opacity: 1;
}
.top .corrabo-slider .prev{
    position: absolute;
    top: 7vw;
    right: 45.3vw;
    left: 0;
	margin: auto;
	width: calc(22px + 22 * (100vw - 750px)/1170);
	height: calc(22px + 22 * (100vw - 750px)/1170);
	background-image: url(../img/top_corrabo_arrow_left@x2.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
    text-indent: -9999px;
}
.top .corrabo-slider .next{
    position: absolute;
    top: 7vw;
    left: 45.3vw;
    right: 0;
	margin: auto;
	width: calc(22px + 22 * (100vw - 750px)/1170);
	height: calc(22px + 22 * (100vw - 750px)/1170);
	background-image: url(../img/top_corrabo_arrow_right@x2.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
    text-indent: -9999px;
}
.top .corrabo-slider .slick-slide {
    max-width: 288px;
    transition: all ease-in-out .3s;
    opacity: .2;
    transform: scale(0.8);
}
.top .corrabo-slider .slick-active {
    opacity: .5;
}
.top .corrabo-slider .slick-current {
    max-width: 390px;
    opacity: 1;
    transform: scale(1);
}

.top .brand-area{
    position: relative;
    background: #ffffff;
}
.top .brand-area:before{
    content: "";
    position: absolute;
    right: 0; bottom: 100px;
    z-index: -0;
    background: #F2F9FF;
    width: 100%; height: calc(708px + 200 * (100vw - 750px)/1170);
    max-width: calc(963px + 500 * (100vw - 750px)/1170);
    border-radius: 0px 0px 98px 48px;
}
.top .brand-area .content{
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding-top: calc(80px + 70 * (100vw - 750px)/1170);
    padding-bottom: calc(150px + 100 * (100vw - 750px)/1170);
    padding-left: calc(40px + 100 * (100vw - 750px)/1170);
    padding-right: calc(40px + 100 * (100vw - 750px)/1170);
    box-sizing: border-box;
}
.top .brand-area .content-title-h3{
    text-align: center;
    color: #2E87C2;
    margin-bottom: 25px;
    font-size: calc(40px + 20 * (100vw - 750px)/1170);
    font-weight: 500;
}
.top .brand-area .content-title-h3 span{
    display: block;
    margin: 0 auto;
}
.top .brand-area .lead{
    text-align: center;
    font-size: 1.6rem;
    line-height: 2;
}
.top .brand-area .brand-list{
    display: flex;
    justify-content: space-between;
    margin: 90px auto 110px;
}
.top .brand-area .brand-list li{
    overflow: hidden;
    position: relative;
    width: 18%;
    max-width: calc(1000px + 497 * (100vw - 750px)/1497);
}
.top .brand-area .brand-list li:nth-child(2n){
    top: 108px;
}
.top .brand-area .brand-list li .brand-logo{
    position: absolute;
    max-width: 205px;
    background: rgba(255, 255, 255, 0.95);
	top: 20px;
    left: 0;
    bottom: auto;
    padding: 8px 20px;
}
.top .brand-area .brand-list li:nth-child(1) .brand-logo img{
    max-width: 142px;
}
.top .brand-area .brand-list li:nth-child(2) .brand-logo img{
    max-width: 96px;
}
.top .brand-area .brand-list li:nth-child(3) .brand-logo img{
    max-width: 125px;
}
.top .brand-area .brand-list li:nth-child(4) .brand-logo img{
    max-width: 110px;
}
.top .brand-area .brand-list li:nth-child(5) .brand-logo img{
    max-width: 90px;
}
.top .brand-area .brand-list li .brand-text{
    position: absolute;
    background: rgba(15, 137, 217, 0.85);
    color: #ffffff;
    padding: 7px 20px;
    font-size: 1.2rem;
    letter-spacing: 0px;
    left: 0;
    bottom: 36px;
}
.top .brand-area .brand-list a{
	display: block;
}
.top .brand-area .brand-list a > img{
	border-radius: 2em;
}
.top .brand-area .link-btn{
    display: block;
    margin: 225px auto 0;
    width: 100%;
    max-width: 428px;
    border-radius: 37px;
    background: #4ba0d9;
    color: #FFFFFF;
    padding: 22px 0;
    font-size: calc(1.6rem + 0.4 * (100vw - 750px)/1170);
    text-align: center;
}


.top .news-area{
    background: #F2F9FF;
    padding-top: calc(80px + 70 * (100vw - 750px)/1170);
    padding-bottom: calc(80px + 70 * (100vw - 750px)/1170);
    padding-left: calc(40px + 100 * (100vw - 750px)/1170);
    padding-right: calc(40px + 100 * (100vw - 750px)/1170);
    box-sizing: border-box;
}
.top .news-area .content{
    width: 100%;
    max-width: 1085px;
    margin: 0 auto;
}
.top .news-area .content-title-h3{
    text-align: center;
    color: #2E87C2;
    margin-bottom: 25px;
    font-size: calc(40px + 20 * (100vw - 750px)/1170);
    font-weight: 500;
}
.top .news-area .content-title-h3 span{
    display: block;
    margin: 0 auto;
}
.top .news-area .content .news{
    background: #ffffff;
    border-radius: 40px;
    padding: 50px 40px;
}
.top .news-area .content .news dl{
    display: flex;
    align-items: center;
    border-bottom: 2px solid #D9D9D9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.top .news-area .content .news dl:last-child{
    margin-bottom: 0px;
}
.top .news-area .content .news dt{
    padding-left: 10px;
    margin-right: 40px;
    color: #2E87C2;
}
.top .news-area .content .news dd{
    line-height: 2;
    
}
.top .news-area .content .news dd .more{
    position: relative;
    font-size: 1.4rem;
    display: table;
    margin-left: 20px;
    margin-top: 15px;
}
.top .news-area .content .news dd .more::after {
    border-right: solid 2px #262626;
    border-top: solid 2px #262626;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    left: -20px;
    top: 28%;
    transform: rotate(45deg);
    width: 8px;
}
.top .news_btn{
    position: relative;
    font-size: 1.4rem;
    float: right;
}
.top .news_btn::after {
    border-right: solid 2px #262626;
    border-top: solid 2px #262626;
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    left: -20px;
    top: 7%;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 10px;
}
.top .news_btn.open::after {
    top: 45%;
    transform: rotate(-45deg);
}
@media(max-width: 1100px) {
    .top header{
        margin-top: 30px;
    }
    .top .main .page-title-box .page-title{
        margin: 0;
    }
}
@media(max-width: 750px) {
    .top header .menu{
        display: none;
    }
    .top header{
        margin-top: 0px;
        position: fixed;
        z-index: 9;
    }
    .top .main .page-title-box{
        position: absolute;
        top: 28vw;
        right: 7vw;
    }
    .top .bg-main:after{
        right: 0; left: auto;
    }
    .top .bg-main:before{
        height: 20%;
        margin: auto;
        right: 0;
        max-width: 100%;
    }
    .top .logo{
        padding: calc(30px + 30 * (100vw - 750px)/1170);
    }
    .top .main .block{
        height: 105vw;
        position: relative;
    }
    
    .top .message-content{
        display: block;
        width: 96%;
    }
    .top .message-img{
        width: 100%;
        margin-bottom: 30px;
    }
    .top .message-content .text{
        width: 100%;
    }
    .top .message-content .text .content-title-h3{
        display: block;
        margin-bottom: 20px;
    }

    .top .corraborarion-area .content{
        width: 96%;
    }
    .top .corrabo-slider{
        margin: 60px auto 60px;
    }
    .top .corraborarion-area .link-btn{
        width: 90%;
    }

    .top .brand-area .content{
        width: 96%;
        padding-bottom: 100px;
    }
    .top .brand-area .content-title-h3{
        margin-bottom: 20px;
    }
    .top .brand-area .brand-list{
        display: block;
        margin: 45px auto 55px;
    }
    .top .brand-area .brand-list li:last-child{
        margin-bottom: 0px;
    }
    .top .brand-area .brand-list li{
        width: 100%;
        margin-bottom: 30px;
    }
    .top .brand-area .brand-list li:nth-child(1) .brand-logo img {
        max-width: 172px;
    }
    .top .brand-area .brand-list li:nth-child(2) .brand-logo img {
        max-width: 126px;
    }
    .top .brand-area .brand-list li:nth-child(3) .brand-logo img {
        max-width: 155px;
    }
    .top .brand-area .brand-list li:nth-child(4) .brand-logo img {
        max-width: 140px;
    }
    .top .brand-area .brand-list li .brand-text{
        font-size: 1.6rem;
    }
    .top .brand-area .brand-list li:nth-child(2n) {
        top: 0;
    }
    .top .brand-area .link-btn{
        margin: 65px auto 0;
        width: 90%;
    }
    .top .brand-area:before{
        bottom: 140px;
    }

    .top .news-area .content{
        width: 96%;
    }
    .top .news-area .content-title-h3{
        margin-bottom: 20px;
    }
    .top .news-area .content .news{
        padding: 30px 30px;
    }
		.top .news-area .content .news dl{
			display: block;
		}
    .top .news-area .content .news dt{
      margin: 0 0 .5em;
			padding: 0;
    }
}


/********
BRAND LINEUP
*********/
.brand .content {
    margin-bottom: 200px;
}
.brand .content img{
    width: 100%;
}
.brand .content:first-child{
    margin-top: 90px;
}
.brand .brand-block{
    position: relative;    
}
.brand .brand-cover{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    padding: 0 40px;
    box-sizing: border-box;
    max-width: 1680px;
    margin: 0 auto;
}
.brand .brand-name{
    background: #ffffff;
    border: 2px solid #CCCCCC;
    border-radius: 50%;
    position: relative;
    min-width: 273px;
    min-height: 273px;
    box-sizing: border-box;
    left: -90px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.brand .brand-name .sodatu{
    width: 100%;
    max-width: 158px;
    margin: auto;
}
.brand .brand-name .jmsolution{
    width: 100%;
    max-width: 242px;
    margin: auto;
}
.brand .brand-name .troistouch{
	width: 100%;
  max-width: 200px;
  margin: auto;
}
.brand .brand-name .ebisu{
    width: 100%;
    max-width: 242px;
    margin: auto;
}
.brand .brand-name .ui2{
    width: 100%;
    max-width: 120px;
    margin: auto;
}
.brand .brand-img{
    max-width: 1398px;
    width: 90%;
    position: relative;
    z-index: 1;
}
.brand .brand-img img{
	border-radius: 6.5em;
}
.brand .brand-back{
    position: absolute;
    right: 0; top: 160px;
    z-index: 0;
    width: 90%;
    max-width: 1564px;
    max-height: 652px;
    border-radius: 0px 51px 131px 50px;
    background: #f2f9ff;
    height: 100%;
}
.brand .brand-list{
    margin-top: 268px;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
}
.brand .brand-list .brand-single{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1073px;
    margin: 0 auto 130px;
}
.brand .brand-list .brand-single{
    margin-bottom: 130px;
}
.brand .brand-list .brand-single:last-child{
    margin-bottom: 0px;
}
.brand .brand-list .brand-single:nth-child(even){
    flex-direction: unset;
}
.brand .brand-list .brand-single:nth-child(odd){
    flex-direction: row-reverse;
}
.brand .brand-list .brand-single .brand-single-img{
    max-width: 614px;
    width: 50%;
		border-radius: 3em;
}
.brand .brand-list .brand-single .brand-single-name{
    max-width: 412px;
    width: 48%;
    letter-spacing: 0px;
}
.brand .brand-list .brand-single .brand-single-name .animation-scroll{
	font-size: 3.2em;
	font-weight: bold;
}
.brand .brand-list .brand-single .brand-single-logo{
    width: 100%;
    max-width: 275px;
}
.brand .brand-list .brand-single .brand-single-text{
    margin-top: 40px;
}
.brand .brand-list .brand-single .brand-single-text .concept{
    font-size: 2.2rem;
    color: #4BA0D9;
    margin-bottom: 10px;
}
.brand .brand-list .brand-single .brand-single-text .lead{
    line-height: 2;
}
.brand .brand-list .brand-single .brand-single-text .product-btn{
    display: block;
    margin-top: 50px;
    width: 100%;
    max-width: 338px;
    border-radius: 37px;
    background: #4ba0d9;
    color: #FFFFFF;
    padding: 22px 0;
    font-size: 2rem;
    text-align: center;
}

@media(max-width: 1100px) {
    .brand .brand-name{
        min-width: 203px;
        min-height: 203px;
    }
    /*.brand .brand-name .sodatu{
        max-width: 118px;
    }*/
    .brand .brand-list .brand-single .brand-single-img{
        width: 48%;
    }
}
@media(max-width: 750px) {
    .brand{
        position: relative;
        overflow: hidden;
    }
    .brand .content {
        margin-bottom: 100px;
    }
    .brand .content:first-child{
        margin-top: 60px;
    }
    .brand .brand-cover{
      padding: 0 15px;
			display: block;
      /*justify-content: space-between;
      flex-direction: inherit;*/
    }
    .brand .brand-name{
        background: none;
        border: none;
        border-radius: 0%;
        min-width: auto;
        min-height: 100%;
        left: 0;
        /*width: 27%;*/
				width: 100%;
				position: static;
				margin-bottom: 1em;
    }
    .brand .brand-img{
        width: 100%;
    }
		.brand .brand-img img{
			border-radius: 2.5em;
		}
    .brand .brand-back{
        /*top: 70px;
        width: 86%;
        border-radius: 0px 50px 50px 50px;
        height: 100%;*/
			top: auto;
			width: 76%;
			border-radius: 0px 2.5em 2.5em 2.5em;
			height: min(14em,68%);
			bottom: -5em;
			min-height: auto;
			max-height: none;
			height: 68%;
			right: 0;
    }
    .brand .brand-list{
        margin-top: 108px;
    }
    .brand .brand-list .brand-single{
        display: block;
        margin-bottom: 80px;
    }
    .brand .brand-list .brand-single .brand-single-img{
      width: 85%;
			display: block;
			margin: 0 auto;
			max-width: 350px;
    }
    .brand .brand-list .brand-single .brand-single-name{
        width: 100%;
				max-width: none;
        margin-top: 20px;
    }
		.brand .brand-list .brand-single .brand-single-name .animation-scroll{
			font-size: 2.2em;
		}
    .brand .brand-list .brand-single .brand-single-logo{
        max-width: 150px;
    }
    .brand .brand-list .brand-single .brand-single-text{
        margin-top: 10px;
    }
    .brand .brand-list .brand-single .brand-single-text .product-btn{
        margin: 20px auto 0;
        padding: 18px 0;
        width: 90%;
    }
}

/********
corraborarion
*********/
.corraborarion{
    position: relative;
    overflow: hidden;
}
.corraborarion .other{
    background: #FFFFFF;
}
.corraborarion .other .page-title{
    font-size: 3.9rem;
    overflow: unset;
}
.corraborarion .other .page-title-box{
    padding-top: 110px;
    padding-bottom: 0px;
    overflow: hidden;
}
.corraborarion .other .page-title-box .text-box{
    margin-right: 44px;
    width: 30%;
    padding-top: 4vw;
}
.corraborarion .page-lead{
    padding-top: 70px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.8;
}
.corraborarion .other .page-title-box .cover{
    width: 60%;
    height: max-content;
}
.corraborarion .other .breadcrumb{
    padding-top: 3.5vw;
}
.corraborarion .area{
    background: #FFFFFF;
}
.corraborarion .area:nth-child(3){
    background: #FFFFFF;
}
.corraborarion .area:nth-child(4){
    background: #DEF2FF;
}
.corraborarion .content{
    padding: 150px 40px 0;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    box-sizing: border-box;
}
.corraborarion .content .block{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 2px solid #D9D9D9;
    padding-bottom: 100px;
    margin-bottom: 100px;
}
.corraborarion .content .block:last-child{
    border-bottom: none;
    padding-bottom: 100px;
    margin-bottom: 0px;
}
.corraborarion .content .content-title{
    width: 25%;
}
.corraborarion .content .content-title-h3{
    color: #4BA0D9;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
}
.corraborarion .content .example-list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 70%;
    max-width: 1006px;
    margin-top: 10px;
}
.corraborarion .content .example{
    width: 49%;
    max-width: 490px;
}
.corraborarion .content .example:nth-child(n + 3){
    margin-top: 38px;
}
.corraborarion .content .example img{
	border-radius: 1em;
	margin-bottom: .5em;
}
.corraborarion .content .example p{
	min-height: 20px;
}
.corraborarion .content .example .name{
    display: block;
		margin-bottom: .5em;
    font-size: 1.7rem;
}
.corraborarion .content .example .name span{
    /* background: linear-gradient(transparent 50%, #C4E4FF 50%); */
    transform: rotate(0.03deg);
    font-weight: bold;
}
.corraborarion .content .example .logo{
    /*width: 50%;
    max-width: 160px;*/
		width: auto;
		max-height: 50px;
    margin-bottom: 10px;
		border-radius: 0;
}
.corraborarion .content .example .text{
    /*margin-top: 5px;*/
    font-size: 1.4rem;
}
.corraborarion .content .example .link-btn{
	display: block;
  margin: 1em auto 0;
  width: 100%;
  max-width: 250px;
  border-radius: 37px;
  background: #4ba0d9;
  color: #FFFFFF;
  padding: 12px 0;
  font-size: calc(1.6rem + 0.4 * (100vw - 750px)/1170);
  text-align: center;
}
.corraborarion .content .tv-list{
    margin-top: 60px;
}
.corraborarion .content .tv-list dl{
    margin-bottom: 50px;
}
.corraborarion .content .tv-list dl:last-child{
    margin-bottom: 0px;
}
.corraborarion .content .tv-list dt{
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 2px solid #818B92;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.corraborarion .content .tv-list dd{
    line-height: 2;
}
.corraborarion .example-list-tv{
    width: 70%;
    max-width: 1006px;
}
.corraborarion .example-list-tv .example{
    width: 100%;
    max-width: 1005px;
    height: 100%;
}
.corraborarion .example-list-tv .example iframe{
    width: 100%;
    height: 100%;
    min-height: 490px;
    border-radius: 20px;
}
.corraborarion .example-list-tv .two{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
    width: 100%;
    max-width: 1005px;
    height: 100%;
}
.corraborarion .example-list-tv .two .example{
    width: 49%;
    max-width: 490px;
    height: 100%;
}
.corraborarion .example-list-tv .two .example iframe{
    min-height: 304px;
}
@media(max-width: 1100px) {
    .corraborarion .other .page-title{
        font-size: 3.3rem;
    }
    .corraborarion .page-lead{
        padding-top: 50px;
    }
    .corraborarion .content{
        padding: 120px 40px;
    }
    .corraborarion .content .block{
        padding-bottom: 80px;
        margin-bottom: 80px;
    }
    .corraborarion .content .block:last-child{
        padding-bottom: 0px;
    }
    .corraborarion .example-list-tv .example iframe{
        min-height: 288px;
    }
    .corraborarion .example-list-tv .two .example iframe{
        min-height: 288px;
    }
}
@media(max-width: 900px) {
    .corraborarion .other .page-title{
        font-size: 2.4rem;
    }
}
@media(max-width: 750px) {
    .corraborarion .other .cover{
        width: 100%;
        margin-top: 30px;
    }
    .corraborarion .other .page-title-box .text-box{
        width: 100%;
        padding-top: 0;
        margin-right: 30px;
    }
    .corraborarion .other .page-title{
        font-size: 3.4rem;
    }
    .corraborarion .page-lead{
        padding-top: 40px;
        font-size: 1.4rem;
        line-height: 1.7;
    }
    .corraborarion .content{
        padding: 80px 40px;
    }
    .corraborarion .content .block{
        display: block;
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    .corraborarion .content .content-title{
        width: 100%;
    }
    .corraborarion .content .example-list{
        width: 100%;
        margin-top: 25px;
    }
    .corraborarion .content .example {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .corraborarion .content .example:last-child {
        margin-bottom: 0px;
    }
    .corraborarion .content .example:last-child{
        margin-top: 0px;
    }
    .corraborarion .content .example .name{
        margin-bottom: 8px;
    }
    .corraborarion .content .block:last-child{
        padding-bottom: 0px;
    }
    .corraborarion .example-list-tv{
        width: 100%;
    }
    .corraborarion .example-list-tv .example iframe{
        min-height: 188px;
    }
    .corraborarion .example-list-tv .two{
        display: block;
    }
    .corraborarion .example-list-tv .two .example{
        width: 100%;
        max-width: 100%;
    }
    .corraborarion .example-list-tv .two .example iframe{
        min-height: 188px;
    }
    .corraborarion .content .tv-list{
        margin-top: 40px;
    }
}

/********
PRIVACY POLICY
*********/
.privacy{
    position: relative;
    overflow: hidden;
}
.privacy .text{
    background: #ffffff;
    width: 100%;
    max-width: 1050px;
    padding: 0 40px 200px 40px;
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 150px;
    line-height: 2.4;
}
.privacy .text .sub-ttl{
    display: block;
    font-size: 2rem;
    padding-bottom: 10px;
}
@media(max-width: 750px) {
    .privacy .text{
        padding: 0 40px 100px 40px;
        padding-top: 80px;
    }
}

/********
COMPANY POLICY
*********/
.company{
    position: relative;
    overflow: hidden;
}
.company .area{
    width: 100%;
    box-sizing: border-box;
    padding: 150px 40px;
    background: #ffffff;
}
.company .area:nth-child(3){
    background: #FFFFFF;
}
.company .area:nth-child(4){
    background: #DEF2FF;
}
.company .area:nth-child(5){
    background: #F8F8F8;
}
.company .content{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.company .content .content-title{
    color: #2E87C2;
    font-size: 5rem;
    text-align: center;
}
.company .content .content-sub-title{
    font-size: 2.4rem;
    text-align: center;
}
.company .content .outline{
    margin: 60px auto 0;
}
.company .content .outline dl{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px 0;
    border-top: 2px solid #D9D9D9;
}
.company .content .outline dl:last-child{
    border-bottom: 2px solid #D9D9D9;
}
.company .content .outline dl dt{
    width: 40%;
    max-width: 280px;
    font-size: 2rem;
}
.company .content .outline dl dd{
    width: 60%;
    font-size: 1.6rem;
}
.company .content .text{
    margin-top: 60px;
    background: #ffffff;
    padding: 60px 50px;
    line-height: 2;
}
.company .content .contact{
    margin: 60px auto 0;
}
.company .content .contact dl{
    display: flex;
    align-items: flex-start;
    padding: 40px 50px;
    background: #ffffff;
    margin-bottom: 30px;
}
.company .content .contact dl:first-child{
    align-items: center;
}
.company .content .contact dl:last-child{
    margin-bottom: 0px;
}
.company .content .contact dl dt{
    width: 40%;
    max-width: 304px;
    font-size: 1.8rem;
}
.company .content .contact dl dd{
    width: 60%;
    font-size: 1.5rem;
}
.company .content .contact dl dd .tel-corp{
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.company .content .contact dl dd .hosoku{
    font-size: 1.2rem;
}
.company .content .contact dl dd .shop-list{
    margin-bottom: 30px;
}
.company .content .contact dl dd .shop-list:last-child{
    margin-bottom: 0px;
}
.company .content .contact dl dd .custom-shop{
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    font-size: 1.8rem;
}
.company .content .contact dl dd .custom-shop::before {
    border-top: 2px solid #262626;
    content: "";
    width: 20px;
    margin-right: 10px;
}
.company .content .contact dl dd .tel-custom{
    padding-left: 30px;
    font-size: 1.5rem;
}
@media(max-width: 750px) {
    .company .area{
        padding: 80px 40px;
    }
    .company .content .text{
        margin-top: 40px;
    }
    .company .content .outline{
        margin: 40px auto 0;
    }
    .company .content .contact{
        margin: 40px auto 0;
    }
    .company .content .contact dl{
        display: block;
        padding: 25px 30px;
        margin-bottom: 20px;
    }
    .company .content .contact dl dt {
        width: 100%;
        margin-bottom: 15px;
    }
    .company .content .contact dl dd{
        width: 100%;
    }
}

/********
アニメーション
*********/
.animation-onetext,
.animation-scroll,
.animation-top-visual,
.animation-top-catch{
	display: flex;
	overflow: hidden;
}
.animation-onetext span{
	opacity: 0;
	animation: onetextanime 0.5s forwards;
}
.animation-top-catch span{
	opacity: 0;
	animation: animation-top-catch 0.5s forwards;
}
.animation-top-visual img{
	opacity: 0;
	animation: animation-top-catch 0.5s forwards;
}
.animation-scroll span{
    transform: translateY(110%);
    display: block;
}
/*** スクロールで画面に入った場合 ***/
.animation-scroll.active span{
    animation: 0.35s animation-scroll linear forwards;
}
.animation-scroll span{animation-delay: 0.2s}
.animation-top-visual img{animation-delay: 0s}
.animation-top-catch span{animation-delay: 1.5s}
.animation-onetext span:nth-child(1){animation-delay: 0.2s}
.animation-onetext span:nth-child(2){animation-delay: 0.3s}
.animation-onetext span:nth-child(3){animation-delay: 0.4s}
.animation-onetext span:nth-child(4){animation-delay: 0.5s}
.animation-onetext span:nth-child(5){animation-delay: 0.6s}
.animation-onetext span:nth-child(6){animation-delay: 0.7s}
.animation-onetext span:nth-child(7){animation-delay: 0.8s}
.animation-onetext span:nth-child(8){animation-delay: 0.9s}
.animation-onetext span:nth-child(9){animation-delay: 1.1s}
.animation-onetext span:nth-child(10){animation-delay: 1.2s}
.animation-onetext span:nth-child(11){animation-delay: 1.3s}
.animation-onetext span:nth-child(12){animation-delay: 1.4s}
.animation-onetext span:nth-child(13){animation-delay: 1.5s}
.animation-onetext span:nth-child(14){animation-delay: 1.6s}
.animation-onetext span:nth-child(15){animation-delay: 1.7s}
.animation-onetext span:nth-child(16){animation-delay: 1.8s}
.animation-onetext span:nth-child(17){animation-delay: 1.9s}
.animation-onetext span:nth-child(18){animation-delay: 2.0s}
.animation-onetext span:nth-child(19){animation-delay: 2.1s}
.animation-onetext span:nth-child(20){animation-delay: 2.2s}
.animation-onetext span:nth-child(21){animation-delay: 2.3s}
.animation-onetext span:nth-child(22){animation-delay: 2.4s}
.animation-onetext span:nth-child(23){animation-delay: 2.5s}
.animation-onetext span:nth-child(24){animation-delay: 2.6s}
.animation-onetext span:nth-child(25){animation-delay: 2.7s}
@keyframes onetextanime{
	from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes animation-scroll{
	from{
        transform: translateY(110%);
    }
    to{
        transform: translateY(0);
    }
}
@keyframes animation-top-catch{
	from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes animation-top-visual{
	from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********
NEWS詳細
*********/
.news{
    position: relative;
    overflow: hidden;
}
.news .text{
    background: #ffffff;
    width: 100%;
    max-width: 1050px;
    padding: 0 40px 200px 40px;
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 150px;
    line-height: 2.4;
}
.news .title{
    font-size: 2rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #262626;
    margin-bottom: 40px;
    line-height: 2;
}
.news .title span{
    display: block;
    font-size: 1.4rem;
}
.news img{
    margin: 40px auto;
    display: block;
    width: 100%;
}
.news h3{
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 15px;
}
@media(max-width: 750px) {
    .news .text{
        padding: 0 40px 100px 40px;
        padding-top: 80px;
    }
}