@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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
.container {
    overflow-x: hidden;
}
section{
}

@media all and (min-width: 835px) {
	body {
	}
	.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: 53px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    transition: all 0.5s ease;
}
.head .logo {
    width: 43.6%;
    max-width: 300px;
    margin: 5px auto 0 0;
    padding: 0 0 0 73px;
    transition: all 0.5s ease;
}
.head-logo-aloha-txt {
    position: absolute;
    top: 77px;
    left: calc(50% - 17%);
    width: 53%;
    transform: translateX(-50%);
}

/* MENU */
.head .menuBtn {
    position: absolute;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 53px;
    height: 53px;
    background: #fff;
}
.head .menuBtn .menu_line {
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 2px);
    display: block;
    z-index: 999999;
    width: 22px;
    height: 1px;
    transition: transform .3s;
    background: #5b9ef0;
    transform: translate(-50%, -50%);
}
.head .menuBtn .menu_line-bottom {
    width: 16px;
    top: calc(50% - 4px);
    left: calc(50% - 5px);
}
.head .menuBtn p {
    color: #5b9ef0;
	font-family: 'Advent Pro', sans-serif;
    font-size: 13px;
	letter-spacing: 1px;
	line-height: 1;
	margin-top: 33px;
    text-align: center;
}
.head .menuBtn.active .menu_line {
    top: calc(50% - 9px);
    left: calc(50% - 26%);
    width: 22px;
	transform: rotate(45deg);
}
.head .menuBtn.active .menu_line-bottom {
    top: calc(50% - 9px);
    left: calc(50% - 26%);
    width: 22px;
	transform: rotate(-45deg);
}
.head .menuBtn.active .menu {
	display: none!important;
}
.head .menuBtn.active .close {
	display: block!important;
	margin-left: -2px;
}


/* 購入 */
.head .h_icon {
    position: absolute;
    top: 10px;
    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;
}

/* デフォルト（上にいる時） */
header .logo img.pc {
  content: url("img/logo-aloha.svg");
}
header .logo img.sp {
  content: url("img/sp-logo-aloha.svg");
}

/* スクロール後 */
header.is-scrolled {
  background: #fff;
}

header.is-scrolled .logo {
    width: 33.2%;
}
header.is-scrolled .logo img.pc {
  content: url("img/head-logo-aloha-colorful.svg");
}

header.is-scrolled .logo img.sp {
  content: url("img/sp-head-logo-aloha-colorful.svg");
}


@media all and (min-width: 835px) {
	
	.head {
		height: 88px;
	}
	.head .logo {
		width: 490px;
		max-width: none;
        padding: 0 0 0 105px;
	}
	
	/* MENU */
	.head .menuBtn {
		width: 88px;
        height: 88px;
		cursor: pointer;
	}
	.head .menuBtn .menu_line-bottom {
		bottom: 31px;
	}
	.head .menuBtn p {
		font-size: 1.8rem;
		letter-spacing: 1px;
		margin-top: 55px;
	}
	.head .menuBtn .menu_line {
        top: calc(50% - 18px);
        left: calc(50% - 4px);
        width: 38px;
	}
	.head .menuBtn .menu_line-bottom {
        top: calc(50% - 4px);
        left: calc(50% - 9px);
        width: 26px;
	}
	.head .menuBtn.active .menu_line {
        width: 38px;
        top: calc(50% - 10px);
        left: calc(50% - 22%);
	}
	.head .menuBtn.active .menu_line-bottom {
        width: 38px;
        top: calc(50% - 10px);
        left: calc(50% - 22%);
	}
	
	/* 購入 */
	.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 {
    padding-top: 48px;
}
footer .f01 {
}
footer .f01 .box01 {
	padding-bottom: 20px;
	width: 90%;
	margin: 0 auto;
}
footer .f01 .box01 .logo {
    width: 56%;
    margin: 0 auto 26px 0;
}
footer .f01 .box01 ul li {
    display: inline-block;
	font-weight: 300;
    margin-right: 15px;
	margin-bottom: 20px;
}
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;
}

.returnBtn {
    position: fixed;
    top: auto;
    left: auto;
    bottom: 8px;
    right: 5px;
    z-index: 98;
}
.returnBtn a {
    display: block;
    width: 64px;
}


@media all and (min-width: 835px) {
	footer {
		padding: 47px 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: 233px;
        margin: 0 auto 60px 0;
	}
	footer .f01 .box02 .logo {
		width: 260px;
		margin: 0 auto 18px;
	}
	footer .f01 .box02 p {
		font-size: 1.4rem;
	}
	
	
}






/* 共通 */
.flexBox {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.pTxt {
	text-align: justify;
    line-height: 2.3;
}
.pTxt.center {
	text-align: center;
}

.headline01 {
    font-size:  2.2rem;
    font-weight: 400;
    text-align: justify;
    line-height: 1.6;
    letter-spacing: 0.15rem;
}
.headline01.center {
    text-align: center;
}

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

@media all and (min-width: 835px) {
    .flexBox {
        flex-flow: row;
        justify-content: center;
        align-items: center;
    }

    .headline01 {
        font-size:  2.5rem;
    }

    .pTxt {
        font-size: 1.7rem;
    }
    .btn a {
        width: 327px;
        padding: 15px 0;
    }
}






.topBox {
    position: relative;
}
.topBox .imgWrap {
    position: relative;
}
.topBox .aloha-logo {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 87%;
    transform: translate(-50%,-50%);
}
.topBox .mainTxt {
    position: absolute;
    top: 58.5%;
    left: calc(50% - 16.4%);
    width: 55%;
    transform: translate(-50%, -50%);
}

.topBox .imgWrap.wrap02 {
    margin-top: -17.5%;
}
.topBox .good_design {
    position: absolute;
    bottom: -4px;
    left: 5%;
    width: 16%;
}


.sec01 {
    position: relative;
    margin: 33px 0 97px;
}
.sec01:before {
    content: "";
    position: absolute;
    bottom: -8%;
    right: -24%;
    width: 83%;
    height: 100%;
    background: url("img/bg-deco-01.svg")no-repeat bottom right;
    z-index: -1;
}
.sec01 .headline01 {
    margin-bottom: 34px;
}
.sec01 .imgBox {
    margin-bottom: 42px;
}
.sec01 .imgBox .img {
    width: 110%;
    max-width: 110%;
    margin-left: -7%;
}
.sec01 .imgBox .credit {
    display: block;
    width: 44%;
    margin: 10px 4% 0 auto;
}

.sec02 {
    position: relative;
    margin-bottom: 70px;
}
.sec02:before {
    content: "";
    position: absolute;
    top: 1%;
    left: -1%;
    width: 39%;
    height: 100%;
    background: url("img/bg-deco-02.svg")no-repeat top left;
    z-index: -1;
}
.sec02:after {
    content: "";
    position: absolute;
    bottom: 3.8%;
    right: -80.5%;
    width: 100%;
    height: 100%;
    background: url(img/bg-deco-03.svg) no-repeat bottom right;
    z-index: -1;
    transform: rotate(19deg);
}
.sec02 .inBox {
}
.sec02 .flexBox {
    width: 100%;
}
.sec02 .flexBox .txtWrap {
    width: 90%;
    margin: 0 auto 33px;
}
.sec02 .flexBox .txtWrap .headline01 {
    margin-bottom: 30px;
}
.sec02 .flexBox .txtWrap .pTxt {
}
.sec02 .flexBox .imgWrap {
    margin-bottom: 17px;
}
.sec02 .imgBox {
    position: relative;
}
.sec02 .imgBox img {
    display: block;
}
.sec02 .imgBox .img01 {
    width: 100%;
    margin-bottom: 18px;
}
.sec02 .imgBox .img02 {
    width: 53%;
    margin: 0 0 0 auto;
}
.sec02 .imgBox .img03 {
    width: 43%;
    margin: -18% auto 15px 0;
}
.sec02 .imgBox .img04 {
    width: 53%;
    margin: 0 14% 0 auto;
}


.sec03 {
    position: relative;
    background: url("img/sp-img-with_aloha-bg.png")no-repeat bottom left / 100%;
}
.sec03 .aloha-logo {
    display: block;
    width: 68.7%;
    margin: 0 auto 52px;
}
.sec03 .rwaBox .flexBox {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.sec03 .rwaBox .flexBox .kick-img {
    margin-bottom: 23px;
}
.sec03 .rwaBox .flexBox .sports-img {
    margin-bottom: 38px;
}
.sec03 .rwaBox .flexBox .arrow {
    position: absolute;
    top: 50.7%;
    left: 4.5%;
    width: 4.3%;
    height: 17.5%;
    transform: translateY(-50%);
}

/*
.with_alohaImg {
    width: 83%;
    margin: 0 auto;
}
.with_alohaImg img {
    display: block;
    width: 100%;
}
*/

.sec04 {
    position: relative;
    padding: 114px 0 0;
}
.sec04:before {
    content: "";
    position: absolute;
    top: 4.7%;
    left: -154%;
    width: 250%;
    height: 100%;
    background: url("img/bg-deco-04.svg")no-repeat top left;
    z-index: -1;
}
.sec04:after {
    content: "";
    position: absolute;
    top: 35.7%;
    right: 4%;
    width: 24.7%;
    height: 50%;
    background: url("img/bg-deco-05.svg")no-repeat top right;
    z-index: -1;
}
.sec04 .inBox:before {
    content: "";
    position: absolute;
    bottom: 27.6%;
    left: 42.5%;
    width: 110%;
    height: 100%;
    background: url(img/bg-deco-06.svg) no-repeat bottom left;
    transform: rotate(18deg);
    z-index: -1;
}
.sec04 .decoBox {
    margin-bottom: 28px;
}
.sec04 .decoBox .headline01 {
    margin-bottom: 40px;
    line-height: 2;
}
.sec04 .decoBox .imgBox.zoom {
    width: 92%;
    margin: 0 auto 45px;
}
.sec04 .decoBox .imgBox.zoom img {
}
.sec04 .decoBox .imgBox.deco {
    position: relative;
    padding-bottom: 103px;
}
.sec04 .decoBox .imgBox.deco img {
    display: block;
}
.sec04 .decoBox .imgBox.deco .decoImg01 {
    width: 81.5%;
    margin: 0 auto 40px 3%;
}
.sec04 .decoBox .imgBox.deco .decoImg02 {
    width: 77.5%;
    margin: 0 -8% 0 auto;
}
.sec04 .decoBox .imgBox.deco .decoImg03 {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
}

.sec04 .imglistBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.sec04 .imglistBox img {
    width: 50%;
}
.sec04 .imglistBox .list01 {
}


.sec05 {
}
.sec05 .inBox {
    position: relative;
    width: 94%;
    margin: 73px auto 52px;
    padding: 15px 7% 36px;
    box-sizing: border-box;
}
.sec05 .inBox .artist-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.sec05 .artist {
    display: block;
    width: 32%;
    margin: -21px auto 30px;
}
.sec05 .flexBox {
}
.sec05 .flexBox .txtWrap {
}
.sec05 .flexBox .txtWrap img {
    display: block;
}
.sec05 .flexBox .txtWrap .ttlImg {
    width: 59.5%;
    margin: 0 auto 26px;
}
.sec05 .flexBox .txtWrap .suzanneImg {
    width: 78%;
    margin: 0 auto 22px;
}
.sec05 .flexBox .txtWrap .name {
    margin-bottom: 18px;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    line-height: 2;
}
.sec05 .flexBox .txtWrap .name .min {
    display: block;
    font-size: 1.4rem;
}
.sec05 .flexBox .txtWrap .aTxt {
    display: block;
    text-align: center;
}
.sec05 .flexBox .txtWrap a {
    text-decoration: underline;
}

.sec06 {
    margin-bottom: 62px;
}
.sec06 .banner {
    display: block;
    width: 90%;
    margin: 0 auto 35px;
}
.sec06 .pTxt {
    line-height: 1.6;
}
.sec06 .pTxt .min {
    line-height: 3;
}


.sec07 {
    position: relative;
    margin-bottom: 62px;
    padding: 72px 0 0;
    background: url("img/sp-bg-colorful.png")no-repeat top left / 100% 100%;
    z-index: 1;
}
.sec07:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    width: 89.7%;
    height: 100%;
    background: url("img/henshin.svg")no-repeat top left / 100%;
    transform: translateX(-50%);
    z-index: -1;
}
.sec07 .img01 {
    display: block;
    margin: 0 auto 20px;
    width: 82%;
}
.sec07 .img02 {
    display: block;
    margin: 0 auto 39px;
    width: 82%;
}
.sec07 .arrow {
    display: block;
    width: 8%;
    margin: 0 auto -23px;
}
.sec07 .aTxt {
    margin: 24px 0 30px;
    text-align: center;
}
.sec07 .aTxt a {
    text-decoration: underline;
}
.sec07 .good_design {
    display: block;
    width: 27%;
    margin: 0 auto;
}

.sec08 {
    padding: 0 0 91px;
}
.sec08 .headline01 {
    margin-bottom: 26px;
    font-size: 2.4rem;
    text-align: center;
}
.sec08 .headline01 .min {
    margin-right: 7px;
    padding: 2px 3px;
    border: 1px solid #000;
    font-size: 1.4rem;
}
.sec08 .price {
    margin-bottom: 28px;
    font-size: 2.4rem;
    text-align: center;
}
.sec08 .price .min {
    font-size: 1.8rem;
}


.eventBox {
    padding: 66px 0 49px;
    background: url("img/sp-bg-gw.jpg")no-repeat top left / 100% 100%;
}
.eventBox .headline01 {
    position: relative;
    margin-bottom: 19px;
    font-size: 2.6rem;
    font-weight: 700;
    color: #eb7cac;
    line-height: 1.3;
    letter-spacing: 0;
}
.eventBox .headline01 .ballon {
    position: absolute;
    top: -106%;
    left: 5%;
    width: 49%;
    background: url("img/balloon.svg")no-repeat top left / 100%;
}
.eventBox .days {
    margin-bottom: 3px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.7;
}
.eventBox .days .year {
    padding-right: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}
.eventBox .leftTxt {
    text-align: center;
    margin-bottom: 26px;
}
.eventBox .conBox {
    width: 90%;
    margin: 0 auto;
}
.eventBox .conBox .suzanneImg {
    display: block;
    margin-bottom: 24px;
    width: 100%;
    border-radius: 29px;
}
.eventBox .conBox .flexBox {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
}
.eventBox .conBox .imgWrap {
    position: relative;
    display: block;
    width: 47.5%;
}
.eventBox .conBox .imgWrap .serif {
    position: absolute;
}
.eventBox .conBox .imgWrap .img {
    border-radius: 29px;
}
.eventBox .conBox .imgWrap.wrap01 {
}
.eventBox .conBox .imgWrap.wrap01 .serif {
    bottom: -49px;
    right: -2px;
    width: 75%;
}
.eventBox .conBox .imgWrap.wrap02 {
    padding-top: 87px;
}
.eventBox .conBox .imgWrap.wrap02 .serif {
    top: 28px;
    left: 6px;
    width: 91%;
}
.eventBox .conBox .pTxt {
    margin-top: 41px;
}
.eventBox .conBox .right {
    margin-top: 25px;
    text-align: right;
}
.eventBox .conBox .right a {
    text-decoration: underline;
}


.product-speBox {
    position: relative;
	padding: 47px 0 80px;
	background: #ebebeb;
}
.product-speBox:before {
    content: "";
    position: absolute;
    top: -46px;
    right: 5%;
    background: url(img/deco-Illust-01.svg) no-repeat top left / 100%;
    width: 33%;
    height: 20%;
}
.product-speBox .headline01 {
	text-align: center;
	font-size: 1.4rem;
    font-weight: 500;
	letter-spacing: 2px;
    color: #231815;
}
.product-speBox .tableBox {
	width: 90%;
	margin: 13px auto 0;
	border-top: 1px solid #898989;
    color: #231815;
}
.product-speBox .tableBox table tr {
    display: block;
    padding: 4px 0;
	border-bottom: 1px solid #898989;
}
.product-speBox .tableBox table tr th {
	width: 82px;
	text-align: center;
    font-size: 1.3rem;
	font-weight: 400;
	border-right: 1px solid #898989;
	padding: 12px 0;
}
.product-speBox .tableBox table tr td {
	padding: 12px 5px 12px 18px;
    font-size: 1.3rem;
	line-height: 1.5;
}


@media all and (min-width: 835px) {

    .topBox .aloha-logo {
        top: 43.7%;
        left: 68.1%;
        width: 49%;
        transform: translate(-50%, -50%);
    }
    .topBox .mainTxt {
        top: auto;
        bottom: 12%;
        left: calc(50% + 27.9%);
        width: 28.2%;
        transform: translate(-50%, -50%);
    }
    .topBox .imgWrap.wrap02 {
        margin-top: -5.6%;
    }
    .topBox .good_design {
        left: 2.7%;
        bottom: -8px;
        width: 9.5%;
    }

    .sec01 {
        margin: 110px 0 168px;
    }
    .sec01:before {
        bottom: -2%;
        right: 5.1%;
        width: 41%;
    }
    .sec01 .headline01 {
        margin-bottom: 64px;
        font-size: 3.5rem;
    }
    .sec01 .imgBox {
        width: 100%;
        max-width: 631px;
        margin: 0 auto 42px;
    }
    .sec01 .imgBox .img {
        width: 100%;
        margin: 0 auto;
    }
    .sec01 .imgBox .credit {
        width: 36.7%;
        margin: 16px 2% 0 auto;
    }

    .sec02 {
        margin-bottom: 126px;
    }
    .sec02:before {
        top: -3%;
        left: 3.5%;
        width: 21.4%;
    }
    .sec02:after {
        bottom: 33%;
        right: 0.7%;
        width: 50.8%;
        transform: rotate(0);
    }
    .sec02 .flexBox {
        width: 100%;
        max-width: 1200px;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .sec02 .flexBox .txtWrap {
        width: auto;
        margin: 40px 44px 0 30px;
    }
    .sec02 .flexBox .txtWrap .headline01 {
        margin-bottom: 33px;
    }
    .sec02 .flexBox .imgWrap {
        max-width: 665px;
        width: 100%;
        margin: 0 0 69px;
    }
    .sec02 .imgWrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
    }
    .sec02 .imgWrap.flex01 {
    }
    .sec02 .imgWrap.flex02 {
        justify-content: center;
        align-items: flex-end;
    }
    .sec02 .imgBox img {
        display: block;
    }
    .sec02 .imgBox .img01 {
        width: 100%;
        max-width: 536px;
        margin: 46px 0 0;
    }
    .sec02 .imgBox .img02 {
        width: 100%;
        max-width: 355px;
        margin: 0 6.5% 0 auto;
    }
    .sec02 .imgBox .img03 {
        width: 100%;
        max-width: 326px;
        margin: -5% 0 122px 0;
        
    }
    .sec02 .imgBox .img04 {
        width: 100%;
        max-width: 355px;
        margin: 0 67px 0 -9%;
    }

    .sec03 {
        background: url("img/img-with_aloha-bg.png")no-repeat bottom left / 100%;
    }
    .sec03 .aloha-logo {
        width: 82%;
        max-width: 366px;
        margin: 0 auto 89px;
    }
    .sec03 .rwaBox .flexBox {
        width: 100%;
        margin: 0 auto 97px;
    }
    .sec03 .rwaBox .flexBox img {
        width: 100%;
        max-width: 445px;
        margin: 0 16px;
    }
    .sec03 .rwaBox .flexBox .kick-img {
        margin-bottom: 0;
    }
    .sec03 .rwaBox .flexBox .sports-img {
        margin-bottom: 0;
    }
    .sec03 .rwaBox .flexBox .arrow {
        top: auto;
        bottom: 105px;
        left: 47.7%;
        width: 230px;
        height: 12px;
        transform: translate(-50%,0);
    }
/*
    .with_alohaImg {
        width: 83%;
        max-width: 1024px;
    }
*/

    .sec04 {
        padding: 173px 0 0;
    }
    .sec04:before {
        top: 7.3%;
        left: 50.4%;
        width: 95.4%;
        transform: translateX(-50%);
    }
    .sec04:after {
        top: 45.7%;
        right: 11.3%;
        width: 9.2%;
    }
    .sec04 .inBox:before {
        bottom: 11.2%;
        left: 55%;
        width: 43.6%;
        transform: rotate(0)translateX(-50%);
    }
    .sec04 .decoBox {
        position: relative;
        max-width: 1200px;
        margin: 0 auto 28px;
    }
    .sec04 .decoBox .headline01 {
        position: absolute;
        top: 79px;
        left: calc(50% - 259px);
        margin-bottom: 0;
        text-align: justify;
        transform: translateX(-50%);
    }
    .sec04 .decoBox .imgBox.zoom {
        width: 41.7%;
        margin: 0 6.9% 0 auto;
    }
    .sec04 .decoBox .imgBox.deco {
        margin-bottom: 99px;
        padding-bottom: 89px;
    }
    .sec04 .decoBox .imgBox.deco img {
        display: block;
    }
    .sec04 .decoBox .imgBox.deco .decoImg01 {
        width: 40%;
        margin: -13.5% auto 0 7.7%;
    }
    .sec04 .decoBox .imgBox.deco .decoImg02 {
        width: 31.1%;
        margin: -16.4% 13.2% 0 auto;
    }
    .sec04 .decoBox .imgBox.deco .decoImg03 {
        width: 49.5%;
        left: 46.6%;
    }
    .sec04 .imglistBox {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }
    .sec04 .imglistBox img {
        width: 100%;
        max-width: 258px;
        margin: 0 19px;
    }

    .sec05 .inBox {
        width: auto;
        max-width: 999px;
        margin: 202px auto 74px;
        padding: 34px 4% 56px;
    }
    .sec05 .artist {
        width: 20%;
        margin: -52px auto 69px;
    }
    .sec05 .flexBox {
        justify-content: center;
        align-items: flex-start;
    }
    .sec05 .flexBox .txtWrap {
        width: 100%;
        max-width: 491px;
        margin-right: 52px
    }
    .sec05 .flexBox .txtWrap .ttlImg {
        width: 49.9%;
        margin: 0 auto 25px 0;
    }
    .sec05 .flexBox .txtWrap .name {
        margin-bottom: 35px;
        font-size: 2.4rem;
        text-align: justify;
    }
    .sec05 .flexBox .txtWrap .name .min {
        display: inline-block;
        font-size: 1.8rem;
    }
    .sec05 .flexBox .txtWrap .aTxt {
        display: block;
        text-align: right;
    }
    .sec05 .flexBox .txtWrap a {
        font-size: 1.7rem;
        text-decoration: underline;
    }
    .sec05 .flexBox .imgWrap {
        text-align: center;
    }
    .sec05 .flexBox .suzanneImg {
        width: 100%;
        max-width: 331px;
        margin: 0 auto;
    }
    .sec05 .flexBox .imgWrap .ttlImg {
        width: 44.8%;
        margin: 19px auto 0;
    }

    .sec06 {
        margin-bottom: 80px;
    }
    .sec06 .banner {
        display: block;
        width: 90%;
        margin: 0 auto 35px;
    }
    .sec06 .pTxt {
        font-size: 2.4rem;
    }
    .sec06 .pTxt .min {
        font-size: 2.4rem;
        line-height: 2.6;
    }


    .sec07 {
        position: relative;
        margin-bottom: 87px;
        padding: 126px 0 0;
        background: url("img/bg-colorful.png")no-repeat top left / 100% 100%;
    }
    .sec07:before {
        top: 0;
        width: 60%;
        height: 100%;
    }
    .sec07 .inBox {
        padding-bottom: 48px;
    }
    .sec07 .flexBox {
        justify-content: space-between;
        max-width: 1038px;
        margin: 0 auto 50px;
        padding: 0 5%;
    }
    .sec07 .itemBox {
        width: 45%;
    }
    .sec07 .img01 {
        margin: 0 auto;
        width: 100%;
    }
    .sec07 .img02 {
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    .sec07 .arrow {
        position: absolute;
        top: 14.8%;
        left: 50%;
        width: 11.7%;
        max-width: 140px;
        margin: 0 auto;
        transform: translate(-50%, -50%);
    }
    .sec07 .pTxt {
        font-size: 2.2rem;
    }
    .sec07 .aTxt {
        margin: 24px 0 30px;
    }
    .sec07 .good_design {
        position: absolute;
        bottom: 0;
        right: 5%;
        width: 12%;
    }

    .sec08 {
        padding: 0 0 87px;
    }
    .sec08 .headline01 {
        margin-bottom: 15px;
        font-size: 3.5rem;
        letter-spacing: 0.2rem;
    }
    .sec08 .headline01 .min {
        margin-right: 11px;
        padding: 2px 3px;
        font-size: 1.9rem;
        letter-spacing: 0.2rem;
    }
    .sec08 .price {
        margin-bottom: 36px;
        font-size: 3.5rem;
    }
    .sec08 .price .min {
        font-size: 2.5rem;
    }


    .eventBox {
        padding: 57px 0 97px;
        background: url("img/bg-gw.jpg")no-repeat top left / 100% 100%;
    }
    .eventBox .headline01 {
        margin-bottom: 19px;
        font-size: 4rem;
        letter-spacing: 0.2rem;
    }
    .eventBox .headline01 .ballon {
        top: -61.4%;
        left: 31.8%;
        width: 19%;
        transform: translateX(-50%);
    }
    .eventBox .days {
        margin-bottom: 9px;
        font-size: 3.1rem;
        line-height: 1.5;
    }
    .eventBox .days .year {
        font-size: 1.8rem;
    }
    .eventBox .leftTxt {
        max-width: 533px;
        text-align: left;
        margin: 0 auto 23px;
    }
    .eventBox .conBox {
        position: relative;
        width: 100%;
        max-width: 577px;
        margin: 0 auto;
    }
    .eventBox .conBox .suzanneImg {
        width: 100%;
        margin: 0 auto;
        border-radius: 44px;
    }
    .eventBox .conBox .imgWrap {
        position: absolute;
        top: 0;
        left: 50%;
        display: block;
        width: 47.5%;
        transform: translateX(-50%);
    }
    .eventBox .conBox .imgWrap .serif {
        position: absolute;
    }
    .eventBox .conBox .imgWrap .img {
        border-radius: 44px;
    }
    .eventBox .conBox .imgWrap.wrap01 {
        max-width: 305px;
        top: 155px;
        left: calc(50% - 469px);
    }
    .eventBox .imgWrap.wrap01 .serif {
        top: -65px;
        bottom: 0;
        right: -13px;
        width: 181px;
    }
    .eventBox .conBox .imgWrap.wrap02 {
        max-width: 304px;
        padding-top: 0;
        top: auto;
        bottom: 32px;
        left: calc(50% + 403px);
    }
    .eventBox .conBox .imgWrap.wrap02 .serif {
        top: -109px;
        left: auto;
        right: 10px;
        width: 208px;
    }
    .eventBox .conBox .pTxt {
        width: 90%;
        margin: 37px auto 0 0;
    }
    .eventBox .conBox .right {
        width: 90%;
        margin: 25px auto 0 0;
        font-size: 1.7rem;
    }


    .product-speBox {
        padding: 74px 0 196px;
    }
    .product-speBox:before {
        top: -46px;
        right: calc(50% - 405px);
        background: url(img/deco-Illust-01.svg) no-repeat top left / 100%;
        width: 16.4%;
        height: 58%;
        transform: translateX(50%);
    }
    .product-speBox .headline01 {
        font-size: 2.2rem;
        font-weight: 400;
    }
    .product-speBox .tableBox {
        width: 762px;
        margin: 25px auto 0;
    }
    .product-speBox .tableBox table tr {
        padding: 4px 0;
    }
    .product-speBox .tableBox table tr th {
        width: 208px;
        font-size: 1.9rem;
        font-weight: 400;
        padding: 12px 0;
    }
    .product-speBox .tableBox table tr td {
        padding: 12px 5px 12px 18px;
        font-size: 1.9rem;
        font-weight: 400;
    }
}



/*------------------------------------------------------------
    フェードイン
------------------------------------------------------------*/
.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;
    }
}

