@charset "UTF-8";
/*--------------------    デフォルトスタイル    --------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:1.4rem;
    vertical-align:baseline;
    background:transparent;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;/*-------------------- フォントファミリー--*/
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    color: #1B1B1B;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
	outline: none;
}
ins {
    text-decoration:none;
}
del {
    text-decoration: line-through;
}
mark {
    background-color:#ff9;
    color:#494949;
    font-weight:bold;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}

/*------------------------------------------------------------
    レイアウト
------------------------------------------------------------*/
body {
    position: relative;
	color: #231815;/*-------------------- デフォルト フォントカラー--*/
	font-weight: 400;/*-------------------- デフォルト フォントウェイト--*/
	font-size: 1.4rem;/*-------------------- デフォルト フォントサイズ--*/
	line-height: 1;/*-------------------- デフォルト 行間--*/
    letter-spacing: 0.05rem;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
    padding-top: 67px;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
section{
	overflow: hidden;
}

@media all and (min-width: 835px) {
	body {
        padding-top: 90px;
	}
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 834px) {
	body {
		min-width: inherit;
	}
	body.open {
		overflow: hidden;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}


/*------------------------------------------------------------
    レイアウト
------------------------------------------------------------*/

.head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 67px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    background: rgba(255,255,255,1);
}
.head .logo {
    width: 61.5%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 2.5% 0 0;
}

/* MENU */
.head .menuBtn {
    position: fixed;
    z-index: 999999;
    left: 5%;
    top: 20px;
    width: 33px;
}
.head .menuBtn .menu_line {
    position: absolute;
    display: block;
    z-index: 999999;
    width: 100%;
    height: 2px;
    transition: transform .3s;
    background: #00214b;
}
.head .menuBtn .menu_line-bottom {
    width: 60%;
    bottom: 23px;
}
.head .menuBtn p {
    color: #00214b;
	font-family: 'Advent Pro', sans-serif;
    font-size: 13px;
	letter-spacing: 2.4px;
	line-height: 1;
	margin-top: 20px;
}
.head .menuBtn.active .menu_line {
	transform: rotate(45deg);
	bottom: 26px;
}
.head .menuBtn.active .menu_line-bottom {
	width: 100%;
	transform: rotate(-45deg);
	bottom: 26px;
}
.head .menuBtn.active .menu {
	display: none!important;
}
.head .menuBtn.active .close {
	display: block!important;
	margin-left: -2px;
}


/* 購入 */
.head .h_icon {
    position: absolute;
    top: 18px;
    right: 2.5%;
    margin: 0;
    padding: 0;
}
.head .h_icon .cart_btn {
	background: #e60012;
	color: #fff;
    border: 2px solid #e60012;
	font-size: 1.3rem;
	font-weight: 400;
	display: flex;
	justify-content: center;
    align-items: center;
	width: 58px;
	height: 30px;
	text-align: center;
	border-radius: 30px;
	padding-bottom: 2px;
    transition: all .3s;
}
.head .h_icon .cart_btn:hover {
	background: #fff;
	color: #e60012;
}

/* ハンバーガーメニュー */
.gnav {
    position: fixed;
    z-index: 1000;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    align-items: center;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.gnav_wrap {
    position: absolute;
    display: flex;
    top: 80px;
    left: 10%;
    width: 80%;
    padding: 0 0 20px;
}
.gnav_menu {
    clear: both;
    width: 100%;
    height: auto;
    list-style: none;
}
.gnav_menu_item {
    position: relative;
    margin: 0 0 15px;
    padding: 0 0 13px;
    opacity: 1;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
.gnav_menu_item a {
    color: #000000;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 1.5s;
}


@media all and (min-width: 835px) {
	
	.head {
		height: 90px;
	}
	.head .logo {
		width: 490px;
		max-width: none;
		padding-right: 0;
	}
	
	/* MENU */
	.head .menuBtn {
		left: 3%;
		top: 27px;
		width: 50px;
		cursor: pointer;
	}
	.head .menuBtn .menu_line-bottom {
		bottom: 31px;
	}
	.head .menuBtn p {
		font-size: 2rem;
		letter-spacing: 2.4px;
		margin-top: 24px;
	}
	.head .menuBtn.active .menu_line {
		bottom: 40px;
	}
	.head .menuBtn.active .menu_line-bottom {
		bottom: 40px;
	}
	
	/* 購入 */
	.head .h_icon {
		top: 20px;
		right: 3%;
	}
	.head .h_icon .cart_btn {
		font-size: 2rem;
		letter-spacing: 1.5px;
		width: 95px;
		height: 52px;
		box-sizing: border-box;
	}
	
	/* ハンバーガーメニュー */
	.gnav {
	}
	.gnav_wrap {
		top: 50%;
		left: 15%;
		transform: translateY(-48%);
		padding: 0;
		width: 70%;
	}
	.gnav_menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.gnav_menu_item {
		width: 44%;
		margin: 0 3% 28px;
		border-bottom: none;
		padding: 0;
	}
	.gnav_menu_item a {
		display: block;
		font-size: 15px;
		padding: 0 0 26px 15px;
		border-bottom: 1px solid #cdcdcd;
	}

	
}

footer {
    background: #00214b;
    color: #fff;
}
footer .f01 {
    color: #fff;
}
footer .f01 .box01 {
	padding-bottom: 20px;
	width: 90%;
	margin: 0 auto;
}
footer .f01 .box01 .logo {
	width: 100%;
	margin: 0 auto 49px;
}
footer .f01 .box01 ul li {
    display: inline-block;
	font-weight: 300;
    margin-right: 15px;
	margin-bottom: 20px;
}
footer .f01 .box01 ul li a {
    color: #fff;
}
footer .f01 .box02 .logo {
	width: 60%;
	margin: 0 auto 10px;
}
footer .f01 .box02 p {
	font-size: 1.2rem;
	line-height: 1.6;
}
footer .f01 .box02 p a {
    text-decoration: underline;
}
footer .f02 {
	padding: 30px 0 40px;
	background: #F2F4F5;
}
footer .f02 .inBox {
	margin: 0 5%;
}
footer .f02 .inBox ul li {
	width: 45%;
}
footer .f02 .inBox ul li:nth-child(2n) {
	width: 55%;
}
.copy {
	display:block;
	font-size: 1rem;
	padding: 12px 5% 18px;
}


@media all and (min-width: 835px) {
	footer {
		padding: 0 0 21px;
	}
	footer .f01 {
		padding: 0;
	}
	footer .f01 .box01 {
		max-width: 1200px;
        margin-bottom: 19px;
        padding-bottom: 0;
	}
	footer .f01 .box01 ul {
		display: flex;
	}
	footer .f01 .box01 ul li {
		margin: 0 62px 0 0;
        font-weight: 300;
	}
	footer .f01 .box01 .logo {
		width: 489px;
		margin: 0 auto 67px 0;
	}
	footer .f01 .box02 .logo {
		width: 260px;
		margin: 0 auto 18px;
	}
	footer .f01 .box02 p {
		font-size: 1.4rem;
	}
	
	
}






/* 共通 */

.pTxt {
	text-align: justify;
    line-height: 2.3;
}
.btn {
}
.btn a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 15px 42px;
    background: #e60012;
    color: #fff;
    border: 2px solid #e60012;
    border-radius: 100px;
    font-size: 2.2rem;
    font-weight: 300;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.4rem;
    transition: all .3s;
}
.btn a:hover {
    background: #fff;
    color: #e60012;
}

@media all and (min-width: 835px) {
    .pTxt {
        font-size: 1.7rem;
    }
    .btn a {
        width: 327px;
        padding: 15px 0;
    }
}


.topBox {
    position: relative;
    background: #00214b;
    z-index: 2;
    overflow: visible;
}
/*.topBox:before {
    content: "";
    position: absolute;
    bottom: -134px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, transparent, #000016, #000016, transparent);
    z-index: -1;
}*/
.topBox .inBox {
}
.topBox .mainImg {
}


.sec01 {
    position: relative;
    background: linear-gradient(0deg, #00214b 42%, #0071be 77%, #000016 100%);
    z-index: 1;
}
.sec01:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: url("img/sp-bg-w.svg")no-repeat top left;
    background-size: 100%;
    z-index: -1;
}
/*.sec01:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64%;
    background-image: linear-gradient(0deg, #00214b, #00214b 50%, #0071be);
    z-index: -2;
}*/
.sec01 .inBox {
}
.sec01 .priceBox {
    margin-bottom: 63px;
    color: #fff;
    text-align: center;
}
.sec01 .priceBox .ttl {
    margin-bottom: 17px;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.7;
}
.sec01 .priceBox .ttl .border {
    margin-right: 6px;
    padding: 1px 6px;
    border:1px solid #fff;
    font-size: 1.4rem;
}
.sec01 .priceBox .price {
    margin-bottom: 34px;
    font-size: 1.8rem;
    font-weight: 300;
}
.sec01 .priceBox .price .big {
    margin-right: 5px;
    font-size: 2.4rem;
}
.sec01 .flexBox {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 69px;
}
.sec01 .flexBox .textBox {
    width: 90%;
    margin: 0 auto;
    color: #fff;
}
.sec01 .flexBox .textBox .ttl {
    margin-bottom: 15px;
    font-size: 2.9rem;
    font-weight: 300;
    line-height: 1.9;
}
.sec01 .flexBox .textBox .pTxt {
    margin-bottom: 20px;
    font-weight: 300;
}
.sec01 .flexBox .imgBox {
}
.sec01 .flexBox .imgBox img {
}

.sec01 .bgBox {
}

.sec01 .flexBox.flex03 .imgBox {
    width: 91%;
}


.sec02 {
    position: relative;
    padding: 70px 0 63px;
}
.sec02:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("img/sp-bg-g.svg")no-repeat top left;
    background-size: 100%;
    z-index: -1;
}
.sec02 .inBox {
}
.sec02 .flexBox {
}
.sec02 .pointBox {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.sec02 .pointBox .textBox {
    text-align: center;
}
.sec02 .pointBox .textBox .point {
    width: 73px;
    margin-bottom: 26px;
}
.sec02 .pointBox .textBox .ttl {
    font-size: 2.9rem;
    font-weight: 400;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1.5;
    text-align: left;
}

.sec02 .pointBox.point01 {
    margin-bottom: 66px;
}
.sec02 .pointBox.point01 .textBox .ttl {
    margin: 0 auto;
}
.sec02 .pointBox.point01 .textBox {
    width: 41%;
}
.sec02 .pointBox.point01 .imgBox {
    width: 61%;
    padding: 107px 0 0 9px;
}
.sec02 .pointBox.point01 .imgBox img {
    margin-bottom: 10px;
}

.sec02 .pointBox.point02 {
    flex-flow: column;
    margin-bottom: 59px;
}
.sec02 .pointBox.point02 .textBox {
    width: 90%;
    margin: 0 auto;
    padding-left: 10%;
}
.sec02 .pointBox.point02 .textBox .ttlBox {
    display: flex;
    justify-content: flex-start;
    margin-top: 21px;
}
.sec02 .pointBox.point02 .textBox .point {
    margin: 0 20px 25px 0;
}
.sec02 .pointBox.point02 .textBox .ttlBox .ttl {
    writing-mode: horizontal-tb;
    line-height: 1.2;
    margin-bottom: 17px;
}
.sec02 .pointBox.point02 .imgBox {
    width: 81%;
    margin-right: auto;
}
.sec02 .pointBox.point03 .imgBox {
    width: 85%;
    margin-bottom: 22px;
}
.sec02 .pointBox.point03-02 {
    padding: 0 5%;
}
.sec02 .pointBox.point03-02 .textBox {
    width: 27%;
}
.sec02 .pointBox.point03-02 .textBox p {
    margin: 0 auto;
}
.sec02 .pointBox.point03-02 .textWrap {
    width: 64%;
    margin-bottom: 16px;
    padding-left: 28px;
}
.sec02 .pointBox.point03-02 .textWrap .color {
    width: fit-content;
    margin-bottom: 19px;
    padding: 6px 8px;
    background: #0071be;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
}
.sec02 .pointBox.point03-02 .textWrap .pTxt {
    margin-bottom: 32px;
}

.sec02 .flexBox.imgList {
    display: flex;
    margin-bottom: 72px;
}
.sec02 .flexBox.imgList .img {
    width: 50%;
}

.sec02 .flexBox.bottomBox {
}
.sec02 .flexBox.bottomBox .imgWrap {
    width: 78%;
}

.sec02 .flexBox.bottomBox .imgWrap.img02 {
    display: flex;
    flex-flow: column;
    width: 90%;
    margin: 16px auto 0;
}
.sec02 .flexBox.bottomBox .imgWrap.img02 img {
    order: 1;
    margin-bottom: 22px;
}
.sec02 .flexBox.bottomBox .imgWrap.img02 .pTxt {
    order: 2;
    line-height: 2.2;
}


.sec03 {
    position: relative;
    padding: 35px 0 0;
    background: #dcdddd;
    z-index: 1;
}
.sec03 .inBox {
}
.sec03 .txt-henshin {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    z-index: -1;
}
.sec03 .flexBox {
    margin-bottom: 50px;
}
.sec03 .flexBox .bikeBox {
    width: 80%;
    margin: 0 auto;
}
.sec03 .flexBox .bikeBox.bike01 {
    margin-bottom: 21px;
}
.sec03 .flexBox .bikeBox.bike02 {
    margin-top: -28px;
}
.sec03 .flexBox .arrow {
    display: block;
    height: 81px;
    width: 81px;
    margin: 0 auto;
}
.sec03 .pTxt {
    margin-bottom: 23px;
    text-align: center;
}
.sec03 .aTxt {
    text-align: center;
    text-decoration: underline;
}
.sec03 .good_design {
    display: block;
    width: 24.5%;
    margin: 31px auto 0;
}

.sec04 {
    padding: 51px 0 47px;
}
.sec04 .inBox {
    text-align: center;
}
.sec04 .ttl {
    margin-bottom: 17px;
    font-size: 2.4rem;
    line-height: 1.7;
}
.sec04 .ttl .border {
    margin-right: 6px;
    padding: 1px 6px;
    border:1px solid #000;
    font-size: 1.4rem;
}
.sec04 .price {
    margin-bottom: 28px;
    font-size: 1.8rem;
}
.sec04 .price .big {
    font-size: 2.4rem;
}



.sec05 {
	padding: 47px 0 80px;
	background: #00214b;
}
.sec05 .headline01 {
	text-align: center;
	font-size: 1.4rem;
    font-weight: 500;
	letter-spacing: 2px;
    color: #fff;
}
.sec05 .tableBox {
	width: 90%;
	margin: 25px auto 0;
	border-top: 1px solid #898989;
    color: #fff;
}
.sec05 .tableBox table tr {
    display: block;
    padding: 4px 0;
	border-bottom: 1px solid #898989;
}
.sec05 .tableBox table tr th {
	width: 82px;
	text-align: center;
    font-size: 1.3rem;
	font-weight: 400;
	border-right: 1px solid #898989;
	padding: 12px 0;
}
.sec05 .tableBox table tr td {
	padding: 12px 5px 12px 18px;
    font-size: 1.3rem;
	line-height: 1.5;
}


@media all and (min-width: 835px) {
    .sec01 {
        background: linear-gradient(0deg, #00214b 54%, #0071be 77%, #000016 100%);
    }
    .sec01:before {
        top: 50%;
        left: 50%;
        width: 1048px;
        height: 100%;
        background: url("img/pc-bg-w.svg")no-repeat top left;
        background-size: 100%;
        transform: translate(-50%, -50%);
    }
    .sec01 .priceBox {
        margin-bottom: 127px;
    }
    .sec01 .priceBox .ttl {
        margin-bottom: 17px;
        font-size: 3.6rem;
        letter-spacing: 0.2rem;
    }
    .sec01 .priceBox .ttl .border {
        margin-right: 6px;
        margin-bottom: 7px;
        padding: 1px 6px;
        font-size: 2rem;
    }
    .sec01 .priceBox .price {
        margin-bottom: 34px;
        font-size: 2.6rem;
    }
    .sec01 .priceBox .price .big {
        font-size: 3.6rem;
    }

    .sec01 .flexBox {
        display: flex;
        flex-flow: row;
        justify-content: center;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto 131px;
    }
    .sec01 .flexBox .textBox {
        width: auto;
        margin: 0;
    }
    .sec01 .flexBox .textBox .ttl {
        margin-bottom: 44px;
        font-size: 3.7rem;
    }
    .sec01 .flexBox .textBox .pTxt {
        margin-bottom: 0;
    }

/* flex01 */
    .sec01 .flexBox.flex01 {
        justify-content: flex-end;
    }
    .sec01 .flexBox.flex01 .textBox {
        margin-right: 39px;
    }
    .sec01 .flexBox.flex01 .imgBox {
        width: 511px;
    }
/* flex02 */
    .sec01 .flexBox.flex02 {
    }
    .sec01 .flexBox.flex02 .textBox {
        order: 2;
        margin: 0 -94px 0 88px;
    }
    .sec01 .flexBox.flex02 .imgBox {
        order: 1;
        width: 524px;
    }
/* flex03 */
    .sec01 .flexBox.flex03 {
        margin-bottom: 0;
    }
    .sec01 .flexBox.flex03 .textBox {
        order: 2;
        margin: 0 0 0 64px;
    }
    .sec01 .flexBox.flex03 .imgBox {
        order: 1;
        width: 395px;
        margin-left: -134px;
    }


    .sec02 {
        padding: 128px 0 120px;
    }
    .sec02:before {
        top: 50%;
        left: 50%;
        width: 1048px;
        height: 100%;
        background: url("img/pc-bg-g.svg")no-repeat top left;
        background-size: 100%;
        transform: translate(-50%, -50%);
    }
    .sec02 .flexBox {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
    }
    .sec02 .flexBox.flex02 {
        justify-content: flex-end;
        align-items: flex-end;
        margin-top: -99px;
    }
    .sec02 .flrexBox.flex03 {
    }
    .sec02 .pointBox {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .sec02 .pointBox .textBox .point {
        width: 104px;
        margin: 0 auto 52px;
    }
    .sec02 .pointBox .textBox .ttl {
        font-size: 3.6rem;
    }

/* point01 */
    .sec02 .pointBox.point01 {
        order: 2;
        margin-bottom: 66px;
    }
    .sec02 .pointBox.point01 .textBox {
        width: 130px;
    }
    .sec02 .pointBox.point01 .imgBox {
        width: 348px;
        padding: 3px 35px 0 25px;
    }
    .sec02 .pointBox.point01 .imgBox img {
        margin-bottom: 35px;
    }

/* point02 */
    .sec02 .pointBox.point02 {
        order: 1;
        flex-flow: column;
        margin: 130px 0 59px;
    }
    .sec02 .pointBox.point02 .textBox {
        width: auto;
        margin: 0 0 0 auto;
        padding-left: 0;
    }
    .sec02 .pointBox.point02 .textBox .ttlBox {
        display: flex;
        justify-content: flex-start;
        margin-top: 21px;
    }
    .sec02 .pointBox.point02 .textBox .point {
        margin-right: 20px;
    }
    .sec02 .pointBox.point02 .textBox .ttlBox .ttl {
        writing-mode: horizontal-tb;
        line-height: 1.2;
        margin-bottom: 17px;
    }
    .sec02 .pointBox.point02 .imgBox {
        width: 441px;
        margin: 0 auto 0 42px;
    }

/* point03 */
    .sec02 .pointBox.point03 {
        order: 2;
        margin-bottom: 66px;
    }
    .sec02 .pointBox.point03 .textBox {
        order: 1;
    }
    .sec02 .pointBox.point03 .imgBox {
        order: 2;
        width: 477px;
        margin: 0 36px 0 32px;
    }
/* point03-2 */
    .sec02 .pointBox.point03-02 {
        order: 1;
        padding: 0;
    }
    .sec02 .pointBox.point03-02 .textWrap {
        width: auto;
        margin: 0 58px 16px 0;
        padding-left: 28px;
    }
    .sec02 .pointBox.point03-02 .textWrap .color {
        margin-bottom: 18px;
        padding: 7px 10px;
    }
    .sec02 .pointBox.point03-02 .textWrap .pTxt {
        margin-bottom: 32px;
    }

/* 画像リスト */
    .sec02 .flexBox.imgList {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 172px;
    }
    .sec02 .flexBox.imgList .img {
        width: 273px;
        margin: 0 19px;
    }

/* 下 */
    .sec02 .flexBox.bottomBox {
        justify-content: center;
        align-items: flex-start;
    }
    .sec02 .flexBox.bottomBox .imgWrap {
        width: 441px;
    }
    .sec02 .flexBox.bottomBox .imgWrap.img02 {
        display: flex;
        flex-flow: column;
        width: 395px;
        margin: 0 0 0 114px;
    }
    .sec02 .flexBox.bottomBox .imgWrap.img02 img {
        order: 2;
        margin-bottom: 0;
    }
    .sec02 .flexBox.bottomBox .imgWrap.img02 .pTxt {
        order: 1;
        width: 105%;
        margin-bottom: 114px;
    }

    .sec03 {
        position: relative;
        padding: 121px 0  56px;
    }
    .sec03 .txt-henshin {
        top: 0;
        left: 50%;
        width: 812px;
        transform: translateX(-50%);
    }
    .sec03 .flexBox {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 59px;
    }
    .sec03 .flexBox .bikeBox {
        width: 471px;
        margin: 0;
    }
    .sec03 .flexBox .bikeBox.bike01 {
        margin-bottom: 0;
    }
    .sec03 .flexBox .bikeBox.bike02 {
        margin-top: 0;
    }
    .sec03 .flexBox .arrow {
        height: 37px;
        width: 140px;
        margin: 75px -3px 0;
    }
    .sec03 .pTxt {
        margin-bottom: 62px;
        font-size: 2.2rem;
    }
    .sec03 .good_design {
        position: absolute;
        bottom: 0;
        left: calc(50% + 500px);
        width: 166px;
        transform: translateX(-50%);
    }

    .sec04 {
        padding: 76px 0 70px;
    }
    .sec04 .inBox {
        text-align: center;
    }
    .sec04 .ttl {
        margin-bottom: 17px;
        font-size: 3.6rem;
    }
    .sec04 .ttl .border {
        font-size: 2rem;
    }
    .sec04 .price {
        margin-bottom: 36px;
        font-size: 2.6rem;
    }
    .sec04 .price .big {
        font-size: 3.6rem;
    }


    .sec05 {
        padding: 74px 0 196px;
    }
    .sec05 .headline01 {
        font-size: 2.2rem;
        font-weight: 400;
    }
    .sec05 .tableBox {
        width: 762px;
        margin: 25px auto 0;
    }
    .sec05 .tableBox table tr {
        padding: 4px 0;
    }
    .sec05 .tableBox table tr th {
        width: 208px;
        font-size: 1.9rem;
        font-weight: 300;
        padding: 12px 0;
    }
    .sec05 .tableBox table tr td {
        padding: 12px 5px 12px 18px;
        font-size: 1.9rem;
        font-weight: 300;
    }
}






/*------------------------------------------------------------
    フェードイン
------------------------------------------------------------*/
.show {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in {
  opacity: 0;
}
.fade-in-bottom {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(10px);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-10px);
}



.first-fade {
    opacity: 0; /* 初期状態（見えない） */
    animation: fadeIn 2s ease-in-out forwards; /* 2秒かけてフェードイン */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

