@charset "UTF-8";
/* CSS Document */

/*------------------------------------------------------

	common css

------------------------------------------------------*/
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
html { width: 100%; overflow: scroll; font-size: 10px; }
body { font-family: "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; color: #333; line-height: 1.5; background-color: #fff; overflow: hidden;}
.container { width: 100%; margin-left: auto; margin-right: auto; position: relative;}
ul { list-style: none; }
ol { list-style: decimal; }
img { vertical-align: bottom; width: auto; max-width: 100%; height: auto; }
/*a:link { color: #000; text-decoration: none; }
a:visited { color: #000; }*/

/*a.fade:hover { text-decoration: none; background-color: #fff; color: #333; -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); }*/
a.fade:hover ,
a.fade:hover * { text-decoration: none; -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); }

.pc { display:block; }
.sp { display:none; }

.text { font-size: 1.6rem; line-height: 1.5; }
.mincho { font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, HG 明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }
main { display: block; }

@media (min-width: 768px) {
	body{ min-width: 1100px; }
	.container { max-width: 1100px; }
    main { margin-bottom: 150px;}
	
	a:hover { text-decoration: underline; }
	a img:hover { opacity: 0.8; -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); }
}

@media screen and (min-width:768px) and ( max-width:1100px) {
    .container { width: -webkit-calc(100% - 40px); width: calc(100% - 40px);}
}

@media (max-width: 767px) {
	.container { margin-left: 20px; margin-right: 20px; width: auto; }
    main { margin-bottom: 60px;}
	.pc { display: none; }
	.sp { display: block; }
    
    .text { font-size: 1.6rem; line-height: 1.5; }
}

@media (max-width: 480px) {
	.container { margin-left: 10px; margin-right: 10px; }
}


/*------------------------------------------------------

	flexbox

------------------------------------------------------*/
.colWrap { display: flex; display: -webkit-flex; flex-direction: row; -webkit-flex-direction: row; flex-wrap: wrap; -webkit-flex-wrap: wrap; justify-content: space-between; -webkit-justify-content: space-between; align-items: stretch; -webkit-align-items: stretch; align-content: stretch; -webkit-align-content: stretch; }

.col2-1 { width: 50%; width: -webkit-calc(50% - 10px); width: calc(50% - 10px); }
.col3-1 { width: 33.3%; width: -webkit-calc(99.9% / 3 - 10px); width: calc(99.9% / 3 - 10px); }
.col4-1 { width: -webkit-calc( 25% - 10px ); width: calc( 25% - 10px ); }

.colWrap .img { text-align: center;}
.colWrap .img img { width: auto; max-width: 100%; }

.col3L1 ,
.col3R1 { width: 33.3%; width: -webkit-calc(99.9% / 3 - 10px); width: calc(99.9% / 3 - 10px); }
.col3L2 ,
.col3R2 { width: 66.6%; width: -webkit-calc( 99.9% * 0.666 - 10px ); width: calc( 99.9% * 0.666 - 10px ); }

.flex-left { justify-content: flex-start; -webkit-justify-content: flex-start; }
.flex-right { justify-content: flex-end; -webkit-justify-content: flex-end; }
.flex-align-center { align-items: center; -webkit-align-items: center; }
.flex-center { justify-content: center; -webkit-justify-content: center; }


@media (max-width: 767px) {
	
	.col2-1 { width: 100%; }
	.col3-1 { width: 50%; width: -webkit-calc(50% - 10px); width: calc(50% - 10px);}
	.col4-1 { width: 50%; width: -webkit-calc(50% - 10px); width: calc(50% - 10px); }

	.col3L1 ,
	.col3R1 ,
	.col3L2 ,
	.col3R2 { width: 100%; margin-bottom: 15px; }
	
	.col2-1:first-child { margin-bottom: 15px; }
}



/*------------------------------------------------------

	return top

------------------------------------------------------*/
#pageTop { position: fixed; z-index: 10; right: 0; bottom: 200px; width: 80px; height: 80px; font-size: 1.8rem; letter-spacing: 4px; text-align: center; background-color: rgba(237,133,132,0.8);}
#pageTop a { padding-top: 25px; display: block; color: #fff; height: 100%; }
#pageTop span { display: inline-block; padding: 0 5px 10px; border-bottom: 1px solid #fff; }

@media(max-width: 480px){
    #pageTop { bottom: 100px; width: 60px; height: 60px; font-size: 1.6rem; }
    #pageTop a { padding-top: 15px;}
    #pageTop a span { padding: 0;}
}


/*------------------------------------------------------

    header

------------------------------------------------------*/
header {}

#headVisual { position: relative; }
#headVisual h1 { position: absolute; background: url("../images/title_main.png") no-repeat left top; background-size: 100% auto; text-indent: 100%; white-space: nowrap; overflow: hidden;}
header .lead { text-align: center; padding-top: 215px; position: relative; top: -50px; }
header .lead img {}




@media (min-width: 768px) {

    #headVisual { height: 580px; margin-top: 80px; max-width: 1100px; margin-left: auto; margin-right: auto; background: url("../images/mainVisual.jpg") no-repeat center bottom; background-size: cover;}
    #headVisual h1 { width: 400px; height: 340px; left: 65px; top: -30px;}
    header .lead { padding-bottom: 20px; }

}

@media (max-width: 767px) {

    #headVisual { height: 480px; background: url("../images/mainVisual_sp.jpg") no-repeat center center; background-size: cover; }
    #headVisual h1 { width: 50%; height: 100%; max-width: 400px; max-height: 340px; left: 25px; top: 10px;}
    header .lead { background-size: 115px auto; padding-top: 120px; }
}

@media (max-width: 480px) {
    #headVisual { height: 300px; }
}




/*------------------------------------------------------

    followme

------------------------------------------------------*/
#followme { text-align: center;}
#followme img { width: 100%;}


@media (min-width: 768px) {
    #followme { margin-bottom: 85px;}
}

@media (max-width: 767px) {
    #followme { margin-bottom: 50px;}
}


/*------------------------------------------------------

    contentsInner

------------------------------------------------------*/
.contentsInner { background: url("../images/bg_line.png") repeat-x left bottom; background-size: auto 17px;}
.contentsInner > .title { text-align: center;}
.contentsInner > .title img { width: 100%; max-width: 265px;}
.contentsInner > .title + .text { text-align: center;}

.contentsInner .cute { padding-top: 10px; position: relative;}
.contentsInner .cute::before { content: ''; position: absolute; width: 150%; height: 640px; background-color: #f9d5d7; -webkit-transform: rotate(-14deg); transform: rotate(-14deg); left: -25%; right: 0; margin: auto; top: 16%; bottom: auto; z-index: -1; }
.contentsInner .cute::after { content: ''; position: absolute; background: url(../images/img_cute.svg) no-repeat left top; width: 100%; height: 100%; max-width: 1100px; background-size: 242px auto; left: 0; top: -20px; right: 0; bottom: auto; margin: auto; z-index: -1; }
.contentsInner .cute dl { position: relative; margin-left: auto; margin-right: auto;}
.contentsInner .cute dl dt { position: absolute; background: url("../images/bg_insta.png") no-repeat left top; width: 244px; height: 38px; background-size: 100% auto; text-align: center; line-height: 38px;}
.contentsInner .cute dl dd {}
.contentsInner .cute dl dd img { width: 100%; max-width: 428px;}
.contentsInner .cute .colWrap {}
.contentsInner .cute .colWrap > div {}
.contentsInner .cute .img {}
.contentsInner .cute .img img {}
.contentsInner .cute .img p { text-align: right;}
.contentsInner .cute .comment { background: url("../images/icon_heart.png") no-repeat center top; background-size: 55px auto;}
.contentsInner .cute .comment .text {}

.contentsInner .classical { padding-top: 10px; position: relative;}
.contentsInner .classical::before { content: ''; position: absolute; width: 150%; height: 640px; background-color: #fae5c0; -webkit-transform: rotate(14deg); transform: rotate(14deg); left: -25%; right: 0; margin: auto; top: 16%; bottom: auto; z-index: -1; }
.contentsInner .classical::after { content: ''; position: absolute; background: url("../images/img_classical.svg") no-repeat right top; width: 100%; height: 100%; max-width: 1100px; background-size: 274px auto; left: 0; top: -35px; right: 0; bottom: auto; margin: auto; z-index: -1; }
.contentsInner .classical dl { position: relative; margin-left: auto; margin-right: auto;}
.contentsInner .classical dl dt { position: absolute; background: url("../images/bg_insta.png") no-repeat left top; width: 244px; height: 38px; background-size: 100% auto; text-align: center; font-size: 2.1rem; line-height: 38px;}
.contentsInner .classical dl dd {}
.contentsInner .classical dl dd img { width: 100%; max-width: 428px;}
.contentsInner .classical .colWrap {}
.contentsInner .classical .colWrap > div {}
.contentsInner .classical .img {}
.contentsInner .classical .img img {}
.contentsInner .classical .img p { text-align: right;}
.contentsInner .classical .comment { background: url("../images/icon_heart.png") no-repeat center top; background-size: 55px auto;}
.contentsInner .classical .comment .text {}

/* machinaka */
#machinaka .cute .comment ,
#machinaka .classical .comment { background: url("../images/icon_wifi.png") no-repeat center top; background-size: 56px auto; }

/* sea */
#sea .cute .comment ,
#sea .classical .comment { background: url("../images/icon_house.png") no-repeat center top; background-size: 42px auto; }

/* powerSpot */
#powerSpot { background: none; margin-bottom: 0;}
#powerSpot .cute .comment ,
#powerSpot .classical .comment { background: url("../images/icon_spot.png") no-repeat center top; background-size: 30px auto; }

/* type2 */
.contentsInner .classical.type2::before { -webkit-transform: rotate(-14deg); transform: rotate(-14deg); }
.contentsInner .classical.type2::after { background: url("../images/img_classical-02.svg") no-repeat right top; background-size: 274px auto; }

/* type4 */
.contentsInner .classical.type4 {}
.contentsInner .classical.type4 .colWrap {}
.contentsInner .classical.type4 .left {}
.contentsInner .classical.type4 dl {}
.contentsInner .classical.type4 dl dt { left: 0; right: 0; top: auto; bottom: -60px; margin: auto; }
.contentsInner .classical.type4 dl dd {}
.contentsInner .classical.type4 .right {}
.contentsInner .classical.type4 .comment {}
.contentsInner .classical.type4 .comment .text {}




@media (min-width: 768px) {
    .contentsInner { padding-bottom: 95px; margin-bottom: 120px;}
    .contentsInner > .title { margin-bottom: 40px;}
    .contentsInner > .title + .text { font-size: 2.2rem; margin-bottom: 110px;}

    .contentsInner .cute { margin-bottom: 210px;}
    .contentsInner .cute dl { width: 428px; margin-bottom: 110px; }
    .contentsInner .cute dl dt { bottom: 50px; right: -300px; font-size: 2.1rem; }
    .contentsInner .cute .colWrap { max-width: 1100px; margin-left: auto; margin-right: auto;}
    .contentsInner .cute .colWrap > div { width: calc(99.9% / 3 - 15px);}
    .contentsInner .cute .img img { width: 340px; height: 344px; border-radius: 30px; margin-bottom: 10px;}
    .contentsInner .cute .img p { font-size: 2.1rem;}
    .contentsInner .cute .comment { padding-top: 170px; background-position: center top+68px;}
    .contentsInner .cute .comment .text { font-size: 2.1rem; padding: 0 35px;}
    
    .contentsInner .classical dl { width: 428px; margin-bottom: 110px; }
    .contentsInner .classical dl dt { bottom: 50px; left: -285px;  font-size: 2.1rem;}
    .contentsInner .classical .colWrap { max-width: 1100px; margin-left: auto; margin-right: auto;}
    .contentsInner .classical .colWrap > div { width: calc(99.9% / 3 - 15px);}
    .contentsInner .classical .img img { width: 340px; height: 344px; border-radius: 30px; margin-bottom: 10px;}
    .contentsInner .classical .img p { font-size: 2.1rem;}
    .contentsInner .classical .comment { padding-top: 170px; background-position: center top+68px;}
    .contentsInner .classical .comment .text { font-size: 2.1rem; padding: 0 35px;}
    
    /* machinaka */
    #machinaka .cute .comment ,
    #machinaka .classical .comment { background-position: center top+68px; }
    
    /* sea */
    #sea .cute .comment ,
    #sea .classical .comment { background-position: center top+68px; }
    
    /* powerSpot */
    #powerSpot .cute .comment ,
    #powerSpot .classical .comment { background-position: center top+68px; }
    
    
    /* type1 */
    .contentsInner .classical.type1 .colWrap { position: relative;}
    .contentsInner .classical.type1 .colWrap div:nth-of-type(2) { position: absolute; right: 0;}
    .contentsInner .classical.type1 .colWrap .comment { position: absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; }

    
    /* type2 */
    .contentsInner .classical.type2 { margin-top: 150px;}
    .contentsInner .classical.type2::after { background-position: left top+90px;}
    .contentsInner .classical.type2 dl dt { right: -300px; left: auto;}
    .contentsInner .classical.type2 .colWrap { position: relative; justify-content: flex-end; -webkit-justify-content: flex-end;}
    .contentsInner .classical.type2 .colWrap div:nth-of-type(1) { margin-right: 20px;}
    .contentsInner .classical.type2 .colWrap .comment { position: absolute; left: 0; }

    /* type3 */
    .contentsInner .classical.type3 .colWrap { position: relative; justify-content: flex-end; -webkit-justify-content: flex-end;}
    .contentsInner .classical.type3 .colWrap div:nth-of-type(1) { margin-right: 20px;}
    .contentsInner .classical.type3 .colWrap .comment { position: absolute; left: 0; }
    
    /* type4 */
    .contentsInner .classical.type4 .left { width: 50%;}
    .contentsInner .classical.type4 .right { width: 50%;}
    .contentsInner .classical.type4 .comment { margin-top: 180px;}
    .contentsInner .classical.type4 .comment .text { padding: 0; width: 13em; margin: auto;}
}

@media (max-width: 767px) {
    .contentsInner { padding-bottom: 70px; margin-bottom: 60px;}
    .contentsInner > .title { margin-bottom: 20px;}
    .contentsInner > .title + .text { font-size: 1.6rem; margin-bottom: 130px; margin-left: 10px; margin-right: 10px;}

    .contentsInner .cute { margin-bottom: 150px;}
    .contentsInner .cute::before { height: 320px; top: -6%;}
    .contentsInner .cute::after { background-size: 120px auto; top: -110px; background-position: left+20px top; }
    .contentsInner .cute dl { margin-bottom: 80px; width: 70%;}
    .contentsInner .cute dl dt { left: 0; right: 0; top: auto; bottom: -40px; margin: auto; font-size: 1.5rem; height: 25px; width: 162px; line-height: 25px; }
    .contentsInner .cute dl dd { text-align: center;}
    .contentsInner .cute .colWrap { margin-left: 10px; margin-right: 10px;}
    .contentsInner .cute .img { width: calc(50% - 5px);}
    .contentsInner .cute .img img { border-radius: 15px; margin-bottom: 8px;}
    .contentsInner .cute .img p { font-size: 1.5rem;}
    .contentsInner .cute .comment { padding-top: 120px; background-position: center top+45px; background-size: 32px auto; width: 100%;}
    .contentsInner .cute .comment .text { font-size: 1.6rem; padding: 0 20px;}

    
    .contentsInner .classical::before { height: 320px; top: -6%;}
    .contentsInner .classical::after { background-size: 120px auto; top: -110px; background-position: right+20px top; }
    .contentsInner .classical dl { margin-bottom: 80px; width: 70%;}
    .contentsInner .classical dl dt { left: 0; right: 0; top: auto; bottom: -40px; margin: auto; font-size: 1.5rem; height: 25px; width: 162px; line-height: 25px; }
    .contentsInner .classical dl dd { text-align: center;}
    .contentsInner .classical .colWrap { margin-left: 10px; margin-right: 10px; }
    .contentsInner .classical .img { width: calc(50% - 5px); }
    .contentsInner .classical .img img { border-radius: 15px; margin-bottom: 8px;}
    .contentsInner .classical .img p { font-size: 1.5rem;}
    .contentsInner .classical .comment { padding-top: 120px; background-position: center top+45px; background-size: 32px auto; width: 100%;}
    .contentsInner .classical .comment .text { font-size: 1.6rem; padding: 0 20px;}
    
    /* machinaka */
    #machinaka .cute .comment ,
    #machinaka .classical .comment { background-position: center top+45px; background-size: 32px auto; }
    
    /* sea */
    #sea .cute .comment ,
    #sea .classical .comment { background-position: center top+45px; background-size: 32px auto; }
    
    /* powerSpot */
    #powerSpot .cute .comment ,
    #powerSpot .classical .comment { background-position: center top+15px; background-size: 32px auto; padding-top: 100px; }
    
    /* type2 */
    .contentsInner .classical.type2 { margin-top: 150px;}
    .contentsInner .classical.type2::after { background-size: 120px auto; background-position: left+20px top+20px;}

    
    /* type4 */
    .contentsInner .classical.type4 .left { width: 100%;}
    .contentsInner .classical.type4 dl { margin-bottom: 50px;}
    .contentsInner .classical.type4 dl dt { bottom: -40px;}
    .contentsInner .classical.type4 .right { width: 100%;}
    
    .contentsInner .classical.type4 .colWrap:first-of-type { margin-bottom: 40px;}
    .contentsInner .classical.type4 .colWrap:last-of-type { flex-direction: column-reverse; -webkit-flex-direction: column-reverse; }

}



/*------------------------------------------------------

    vacation

------------------------------------------------------*/
#vacation { background-color: #f9d5d7;}
#vacation .container {}
#vacation .logo { text-align: center;}
#vacation .logo img { max-width: 192px;}
#vacation .title { text-align: center; font-weight: normal;}
#vacation ul { position: relative;}
#vacation ul li { text-align: center;}
#vacation ul li img { max-width: 267px; width: 100%;}
#vacation ul li p { text-align: left;}

#vacation ul::before { content: ''; position: absolute; background: url(../images/img_cute.svg) no-repeat left top; width: 195px;  height: 171px; background-size: 100% auto; left: 50px; top: -190px; z-index: 0; }



@media (min-width: 768px) {
    #vacation { padding-top: 60px; }
    #vacation .logo { margin-bottom: 55px;}
    #vacation .title { font-size: 2.2rem; margin-bottom: 140px;}
    #vacation ul li { width: calc(99.9% / 3); margin-bottom: 70px;}
    #vacation ul li img { margin-bottom: 10px;}
    #vacation ul li p { font-size: 2.1rem; max-width: 267px; margin-left: auto; margin-right: auto;}
}

@media (max-width: 767px) {
    #vacation { padding-top: 30px; padding-bottom: 20px;}
    #vacation .logo { margin-bottom: 30px;}
    #vacation .logo img { max-width: 140px; }
    #vacation .title { font-size: 1.8rem; margin-bottom: 130px;}
    #vacation ul li { margin-bottom: 25px; width: calc(50% - 5px);}
    #vacation ul li img { margin-bottom: 8px;}
    #vacation ul li p { font-size: 1.6rem;}
    
    #vacation ul::before { width: 121px; height: 105px; left: 20px; top: -115px;}
}


/*------------------------------------------------------

    footer

------------------------------------------------------*/
footer { text-align: center;}
footer .container {}
footer .logo {}
footer .logo img { max-width: 146px;}
footer .lead {}
footer .lead img { max-width: 882px; width: 100%;}
footer .insta {}
footer .insta img { max-width: 360px; width: 100%;}
#copy { font-size: 1.1rem; padding: 10px 0;}


@media (min-width: 768px) {

    footer .logo { margin-bottom: 50px;}
    footer .lead { margin-bottom: 70px;}
    footer .insta { margin-bottom: 10px;}

}

@media (max-width: 767px) {

    footer .logo { margin-bottom: 40px;}
    footer .lead { margin-bottom: 35px;}
    footer .insta { margin-bottom: 15px;}
}


/*------------------------------------------------------



------------------------------------------------------*/
.instalink {}

#headVisual .instalink { position: relative; max-width: 400px; }
header .lead .instalink { position: absolute; left: 0; right: 0; top: 0; bottom: auto; margin: auto; }


@media (min-width: 768px) {
    #headVisual .instalink { left: 65px; top: -30px; width: 50%; }
    header .lead .instalink {}
}

@media (max-width: 767px) {
    #headVisual .instalink { left: 20px; width: 55%; }
    header .lead .instalink { width: 115px;}
}



