@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;800&display=swap');
@import url('https://use.typekit.net/glv0sbx.css');

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 *   1.4  Buttons
 *   1.5 Other Elements
 *        1.5.1 sns icon
 * 2. MAIN VISUAL
 * 3. CONTENTS
 * 4. FOOTER
 * 5. INTERACTIONS
 * 6. 共通header 修正
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html {
    font-size: 62.5%;
}
html,
body {
	overflow-x: hidden;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
	background: #041D2B;
	background-size: 100%;
	color: #fff;
	line-height: 2;
	font-weight: 400;
	overflow: hidden;
}
@media (max-width: 1024px) {
    body {
        font-size: calc(14px + 4 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    body {
        line-height: 1.8;
    }
}

a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #fff;
    text-decoration: underline;
}
a:focus {
  outline: none !important;
  overflow: hidden;
  text-decoration: none;
}
*:focus {
    outline: none;
}

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	text-decoration: none;
}
@media (max-width: 767px) {
	a[href^="tel:"] {
		cursor: pointer;
	}
}

small {
    display: inline-block;
    font-size: 1.4rem;
}
@media (max-width: 1024px) {
	small {
		font-size: calc(12px + 2 * (100vw - 320px) / 704);
	}
}

ul,
ul li
ol,
ol li {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 600;
}

img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sp,
.md,
.sp-md,
.sp-md-lg,
.md-lg,
.lg {
	display: none !important;
}
.md-lg-pc,
.lg-pc,
.pc {
    display: block !important;
}
@media (max-width: 1024px) {
    .lg,
    .md-lg,
    .sp-md-lg {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media (max-width: 960px) {
    .lg-pc,
    .lg,
    .sp-md-none {
        display: none !important;
    }
    .md,
    .sp-md {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .sp {
        display: block !important;
    }
    .md-lg-pc,
    .md-lg,
    .lg,
    .md,
    .pc,
    .sp-none {
        display: none !important;
    }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 1.1  Margin
 * ------------------------------*/
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 0.5rem !important; }
.mt10 { margin-top: 1rem !important; }
.mt15 { margin-top: 1.5rem !important; }
.mt20 { margin-top: 2rem !important; }
.mt30 { margin-top: 3rem !important; }
.mt40 { margin-top: 4rem !important; }
.mt50 { margin-top: 5rem !important; }
.mt60 { margin-top: 6rem !important; }
.mt70 { margin-top: 7rem !important; }
.mt80 { margin-top: 8rem !important; }
.mt90 { margin-top: 9rem !important; }
.mt100 { margin-top: 10rem !important; }

.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 0.5rem !important; }
.mb10 { margin-bottom: 1rem !important; }
.mb15 { margin-bottom: 1.5rem !important; }
.mb20 { margin-bottom: 2rem !important; }
.mb30 { margin-bottom: 3rem !important; }
.mb40 { margin-bottom: 4rem !important; }
.mb50 { margin-bottom: 5rem !important; }
.mb60 { margin-bottom: 6rem !important; }
.mb70 { margin-bottom: 7rem !important; }
.mb80 { margin-bottom: 8rem !important; }
.mb90 { margin-bottom: 9rem !important; }
.mb100 { margin-bottom: 10rem !important; }

@media (max-width: 767px) {
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt10-xs {
        margin-top: 1rem !important;
    }
    .mt15-xs {
        margin-top: 1.5rem !important;
    }
    .mt20-xs {
        margin-top: 2rem !important;
    }
    .mt30-xs {
        margin-top: 3rem !important;
    }
    .mt40-xs {
        margin-top: 4rem !important;
    }
    .mt50-xs {
        margin-top: 5rem !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb10-xs {
        margin-bottom: 1rem !important;
    }
    .mb15-xs {
        margin-bottom: 1.5rem !important;
    }
    .mb20-xs {
        margin-bottom: 2rem !important;
    }
    .mb30-xs {
        margin-bottom: 3rem !important;
    }
    .mb40-xs {
        margin-bottom: 4rem !important;
    }
    .mb50-xs {
        margin-bottom: 5rem !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
p {
    margin: 1rem 0;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.text-justify {
    text-align: justify;
    text-justify: inter-ideograph;
}
@media (max-width: 960px) {
     .text-left-md {
        text-align: left !important;
    }
    .text-center-md {
        text-align: center !important;
    }
    .text-right-md {
        text-align: right !important;
    }
}
@media (max-width: 767px) {
     .text-left-xs {
        text-align: left !important;
    }
    .text-center-xs {
        text-align: center !important;
    }
    .text-right-xs {
        text-align: right !important;
    }
    .text-justify-xs {
        text-align: justify;
        text-justify: inter-ideograph;
    }
}

.txt-indent {
    margin: 0;
    text-indent: -1em;
    padding-left: 1em;
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.f10 { font-size: 1rem !important; }
.f11 { font-size: 1.1rem !important; }
.f12 { font-size: 1.2rem !important; }
.f13 { font-size: 1.3rem !important; }
.f14 { font-size: 1.4rem !important; }
.f15 { font-size: 1.5rem !important; }
.f16 { font-size: 1.6rem !important; }
.f17 { font-size: 1.7rem !important; }
.f18 { font-size: 1.8rem !important; }
.f19 { font-size: 1.9rem !important; }
.f20 { font-size: 2rem !important; }
.f21 { font-size: 2.1rem !important; }
.f22 { font-size: 2.2rem !important; }
.f23 { font-size: 2.3rem !important; }
.f24 { font-size: 2.4rem !important; }
.f25 { font-size: 2.5rem !important; }
@media (max-width: 960px) {
    .f18, .f19 {
        font-size: 1.6rem !important;
    }
    .f20, .f21 {
        font-size: 1.7rem !important;
    }
    .f22, .f23 {
        font-size: 1.8rem !important;
    }
    .f24, .f25 {
        font-size: 2rem !important;
    }
}
@media (max-width: 767px) {
    .f13, .f14 {
        font-size: 1.2rem !important;
    }
    .f15, .f16 {
        font-size: 1.3rem !important;
    }
    .f17, .f18 {
        font-size: 1.4rem !important;
    }
    .f19, .f20, .f21 {
        font-size: 1.5rem !important;
    }
    .f22, .f23, .f24, .f25 {
        font-size: 1.6rem !important;
    }
    .f15-xs {
        font-size: 1.5rem !important;
    }
    .f14-xs {
        font-size: 1.4rem !important;
    }
    .f13-xs {
        font-size: 1.3rem !important;
    }
    .f12-xs {
        font-size: 1.2rem !important;
    }
    .f11-xs {
        font-size: 1.1rem !important;
    }
    .f10-xs {
        font-size: 1rem !important;
    }
}

/* 1.3 Titles and Subtitles
 * ------------------------------*/
h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.8;
}
@media (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 1.6;
    }
}

/* 1.4 Buttons
 * ------------------------------*/

/* 1.5 Other Elements
 * ------------------------------*/
/* 1.5.1 sns Icon ------------*/
.knt_general-set .icon_social {
    padding: 0;
    text-align: right;
}
.knt_general-set .icon_social .line {
    display: inline-block;
    line-height: 23px;
}
.knt_general-set .icon_social .line img {
    vertical-align: top;
}
.knt_general-set .icon_social iframe {
    max-width: 150px !important;
}
.knt_general-set .icon_social .twitter-share-button {
    height: 25px !important;
}

.social {
    margin: 5rem auto 0;
    max-width: 400px;
    text-align: center;
}
.social .icon_social {
    position: relative;
    right: 0;
    top: 0;
    z-index: 3;
}
@media (max-width: 767px) {
	.social {
		margin-top: 4rem;
	}
}

.knt_general-set,
.knt_general-set .icon_social .socialBoxON {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.knt_general-set .icon_social .socialBoxON {
	margin-bottom:30px;
}
.knt_general-set .icon_social .socialBoxON > iframe {
	margin:0 5px;
}

/*-------------------------------
 * 2. MAIN VISUAL
 * ----------------------------*/
#main-visual {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    -webkit-animation: fadeIn 0.7s linear both;
    animation: fadeIn 0.7s linear both;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    background-color: #020308;
}
#main-visual .col {
	width: calc(100% / 2);
	display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    box-sizing: border-box;
}
#main-visual .txt-area {
	background: #0F3E54 url(../img/bg-main.png) top center no-repeat;
	background-size: cover;
	padding: 1rem 3rem 4rem;
}
@media (max-width: 1024px) {
	#main-visual .col {
		width: 100%;
	}
	#main-visual .txt-area {
		padding: 1rem 3rem 5rem;
	}
}
@media (max-width: 767px) {
	#main-visual .txt-area {
		padding: 1rem 1rem 3rem;
	}
}

#main-visual .ttl {
	margin: 0 auto 1rem;
}
#main-visual .txt-box {
	padding: 0 2rem;
}
#main-visual .txt-box .txt {
	text-align: justify;
    text-justify: inter-ideograph;
    margin: 2rem 0 0;
}
#main-visual .sub {
	background: #DCD07F;
	font-size: 1.8rem;
	color: #4d4627;
	text-align: center;
	line-height: 1;
	padding: 0.7rem 1rem 0.9rem;
	margin: 3rem 0 0;
}
#main-visual .day {
	font-weight: 600;
	font-size: 3rem;
	text-align: center;
}
@media (max-width: 1366px) {
	#main-visual .day {
		font-size: 2.8rem;
	}
}
@media (max-width: 1200px) {
	#main-visual .day {
		font-size: 2.4rem;
	}
}
@media (max-width: 1024px) {
	#main-visual .sub {
		font-size: calc(14px + 4 * (100vw - 320px) / 704);
	}
	#main-visual .day {
		font-size: calc(16px + 14 * (100vw - 320px) / 704);
	}
}
@media (max-width: 767px) {
	#main-visual .ttl {
		margin-bottom: 0;
	}
	#main-visual .txt-box {
		padding: 0 1rem;
	}
	#main-visual .txt-box .txt {
		margin-top: 1.5rem;
	}
	#main-visual .sub {
		margin-top: 2rem;
		margin-bottom: 0.5rem;
		padding: 0.5rem 1rem 0.7rem;
	}
}

/*-------------------------------
 * 3. CONTENTS
 * ----------------------------*/
main {
    margin: 0;
    padding: 0;
}
.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 7rem;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
section {
    margin: 0 0 0.5rem;
    padding: 0;
    position: relative;
}
@media (max-width: 1024px) {
	.wrap {
		padding: 0 5rem;
	}
}
@media (max-width: 960px) {
	.wrap {
		padding: 0 3rem;
	}
}
@media (max-width: 767px) {
	section {
		margin-bottom: 0;
	}
}
@media (max-width: 480px) {
    .wrap {
        padding: 0 1.5rem;
    }
}

/*----- btn -----*/
.btn {
	display: block;
	overflow: hidden;
	background-image: linear-gradient(180deg, rgba(0, 110, 135, 1), rgba(1, 93, 119, 1) 50%);
	color: #fff;
	font-size: 2.4rem;
	font-weight: 500;
	text-decoration: none;
	padding: 1.7rem 1rem 2rem;
	text-align: center;
	border: 1px solid #289299;
	line-height: 1.5;
}
.btn.red {
	border-color: #FF2322;
	background-image: linear-gradient(180deg, rgba(212, 0, 0, 1), rgba(189, 0, 0, 1) 50%);
}
.btn:hover {
	text-decoration: none;
	opacity: 0.75;
	transition: 0.5s;
}
@media (max-width: 1024px) {
	.btn {
		font-size: calc(16px + 6 * (100vw - 320px) / 704);
	}
}
@media (max-width: 767px) {
	.btn {
		padding: 1.1rem 1rem 1.3rem;
	}
}

/* btn entry */
.btn-entry {
	display: block;
	overflow: hidden;
	background-image: linear-gradient(180deg, rgba(181, 147, 0, 1), rgba(163, 136, 0, 1) 50%);
	color: #000;
	font-size: 3rem;
	font-weight: 800;
	text-decoration: none;
	padding: 2.2rem 1rem 2.8rem;
	text-align: center;
	border: 4px solid #DED07F;
	line-height: 1.5;
}
.btn-entry:hover {
	text-decoration: none;
	opacity: 0.75;
	transition: 0.5s;
	color: #000;
}
.btn-entry span {
	color: #fff;
	font-size: 3.6rem;
	display: inline-block;
	margin: 0 3rem;
	vertical-align: -2%;
}
.btn-entry span:hover {
	color: #fff;
}
@media (max-width: 1199px) {
	.btn-entry {
		font-size: calc(17px + 11 * (100vw - 320px) / 879);
	}
	.btn-entry span {
		font-size: calc(18px + 14 * (100vw - 320px) / 879);
		margin: 0 2rem;
	}
}
@media (max-width: 960px) {
	.btn-entry span {
		margin: 0 1rem;
	}
}
@media (max-width: 767px) {
	.btn-entry {
		padding: 1rem 1rem 1.3rem;
	}
	.btn-entry span {
		margin: 0 0.5rem 0 0;
		vertical-align: 0%;
	}
}

/* btn goods */
.btn-goods {
	background-image: linear-gradient(180deg, rgba(229, 203, 3, 1), rgba(243, 181, 1, 1));
	padding: 1rem;
	text-align: center;
	line-height: 1.2;
	margin: 2rem auto 0;
}
.btn-goods a {
	display: block;
	overflow: hidden;
	background: #fff;
	color: #cc0000;
	font-size: 2.2rem;
	font-weight: 600;
	text-decoration: none;
	padding: 0.8rem 1rem 1rem;
}
.btn-goods a span {
	font-size: 1.5rem;
	font-weight: 400;
}
.btn-goods a:hover {
	text-decoration: none;
	color: #cc0000;
	opacity: 0.8;
	transition: 0.5s;
}
@media (max-width: 1024px) {
	.btn-goods a {
		font-size: calc(16px + 4 * (100vw - 320px) / 704);
	}
	.btn-goods a span {
		font-size: calc(13px + 2 * (100vw - 320px) / 704);
	}
}
@media (max-width: 767px) {
	.btn-goods {
		padding: 0.7rem;
		line-height: 1.4;
		margin-top: 1.5rem;
	}
	.btn-goods a {
		padding: 0.6rem 1rem 0.8rem;
	}
}

/*----- btn wrap -----*/
.btn-wrap .wrap {
	background: url(../img/bg01.png) top center no-repeat;
	background-size: cover;
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.btn-box {
	display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0 170px;
    margin: 4rem auto 0;
}
.btn-box .col {
	width: calc(100% / 2 - 85px);
}
@media (max-width: 1199px) {
	.btn-box {
		gap: 0 30px;
	}
	.btn-box .col {
		width: calc(100% / 2 - 15px);
	}
}
@media (max-width: 767px) {
	.btn-wrap .wrap {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	.btn-box {
		margin-top: 3rem;
		gap: 20px 0;
	}
	.btn-box .col {
		width: 100%;
	}
}

/*----- flow wrap -----*/
.flow-wrap .wrap {
	background: #fff url(../img/bg02.png) top center no-repeat;
	background-size: cover;
	padding-top: 3rem;
	padding-bottom: 9rem;
	color: #000;
}
.flow-wrap .ttl {
	text-align: center;
	font-size: 3rem;
	color: #006b85;
	text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff,
           -2px 2px 0px #fff,  2px -2px 0px #fff,
            2px 0px 0px #fff, -2px -0px 0px #fff,
            0px 2px 0px #fff,  0px -2px 0px #fff;
}
@media (max-width: 1024px) {
	.flow-wrap .ttl {
		font-size: calc(20px + 10 * (100vw - 320px) / 704);
	}
}
@media (max-width: 767px) {
	.flow-wrap .wrap {
		padding-top: 2rem;
		padding-bottom: 3.5rem;
	}
}
@media (max-width: 480px) {
	.flow-wrap .wrap {
		background-image: url(../img/bg02-sp.png);
		background-size: 100% auto;
	}
}

.flow-box {
	display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
    margin: 5rem auto 0;
}
.flow-box .col {
	width: calc(100% / 3 - 27px);
	border: 8px solid #BADEDF;
    box-sizing: border-box;
    padding: 1rem 1rem 0.5rem;
}
.flow-box .arrow {
	width: 40px;
	display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.flow-box .step {
	width: 100%;
	font-weight: 600;
	font-size: 2rem;
	text-align: center;
	color: #006882;
}
.flow-box .sub {
	width: 100%;
	font-weight: 400;
	font-size: 1.8rem;
	text-align: center;
	margin: 0.5rem 0;
	line-height: 1.6;
}
.flow-box .img.step01 {
	margin-top: 5rem;
}
@media (max-width: 1024px) {
	.flow-box .sub {
		font-size: calc(14px + 4 * (100vw - 320px) / 704);
	}
}
@media (max-width: 960px) {
	.flow-box {
		margin-top: 2rem;
	}
	.flow-box .col {
		width: 100%;
		display: flex;
    	flex-flow: row wrap;
    	justify-content: space-between;
    	align-items: center;
    	align-content: center;
	}
	.flow-box .sub {
		width: 50%;
		margin: 0;
		text-align: left;
	}
	.flow-box .img {
		width: 48%;
	}
	.flow-box .img.step01 {
		margin-top: 0;
	}
	.flow-box .img.step02 {
		margin-top: -1rem;
		margin-bottom: 1rem;
	}
	.flow-box .img.step03 {
		width: 35%;
		margin-top: -3rem;
		margin-bottom: 0.5rem;
	}
	.flow-box .arrow {
		transform: rotate(90deg);
		width: 100%;
	}
	.flow-box .arrow img {
		margin: 0.5rem auto;
	}
}
@media (max-width: 767px) {
	.flow-box .col {
		border-width: 6px;
    	align-items: flex-start;
    	align-content: flex-start;
    	padding-top: 0.5rem;
	}
	.flow-box .arrow img {
		width: 18px;
		height: auto;
	}
}
@media (max-width: 380px) {
	.flow-box .sub {
		font-size: calc(12px + 2 * (100vw - 320px) / 60);
	}
}

/*----- goods wrap -----*/
.goods-wrap .wrap {
	background: #fff url(../img/bg03.png) top center no-repeat;
	background-size: 100% 100%;
	padding-top: 2rem;
	padding-bottom: 2rem;
	color: #000;
}
.goods-wrap .ttl {
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	font-size: 4rem;
	color: #da0000;
	text-shadow: 2px 2px 0px #FFEB98, -2px -2px 0px #FFEB98,
           -2px 2px 0px #FFEB98,  2px -2px 0px #FFEB98,
            2px 0px 0px #FFEB98, -2px -0px 0px #FFEB98,
            0px 2px 0px #FFEB98,  0px -2px 0px #FFEB98;
}
@media (max-width: 1024px) {
	.goods-wrap .ttl {
		font-size: calc(25px + 15 * (100vw - 320px) / 704);
	}
}
@media (max-width: 767px) {
	.goods-wrap .wrap {
		padding-bottom: 1rem;
	}
}
@media (max-width: 480px) {
	.goods-wrap .wrap {
		background-image: url(../img/bg03-sp.png);
		background-size: cover;
	}
}

.goods-box {
	display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 3rem auto 0;
}
.goods-box.lg-pc {
	display: flex !important;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    margin: 2rem auto 0;
}
.goods-box .col {
	box-sizing: border-box;
	padding-left: 1.5%;
}
.goods-box .goods01 {
	width: 25%;
	padding-left: 0;
}
.goods-box .goods02 {
	width: 40%;
}
.goods-box .goods03 {
	width: 19%;
}
.goods-box .goods04 {
	width: 16%;
}
@media (max-width: 960px) {
	.goods-box {
		justify-content: space-between;
    	align-items: flex-start;
    	align-content: flex-start;
    	gap: 40px 0;
    	padding: 0 6rem;
	}
	.goods-box.lg-pc {
		display: none !important;
	}
	.goods-box .col {
		padding-left: 0;
	}
	.goods-box .goods01 {
		width: 100%;
	}
	.goods-box .goods01 img {
		width: 70%;
	}
	.goods-box .goods02 {
		width: 100%;
	}
	.goods-box .goods03,
	.goods-box .goods04 {
		width: 48%;
	}
	.goods-box .goods03 img {
		width: 90%;
	}
	.goods-box .goods04 img {
		width: 80%;
	}
}
@media (max-width: 767px) {
	.goods-box {
		margin-top: 2rem;
    	padding: 0 1rem;
    	gap: 25px 0;
	}
}
@media (max-width: 380px) {
	.goods-box {
    	padding: 0;
	}
}

.goods-box .sub {
	text-align: center;
	font-size: 2rem;
	color: #8d6b23;
	line-height: 1.5;
}
.goods-box .sub span {
	font-size: 1.6rem;
	font-weight: 400;
}
@media (max-width: 1366px) {
	.goods-box .sub {
		font-size: 1.9rem;
	}
}
@media (max-width: 1024px) {
	.goods-box .sub {
		font-size: calc(15px + 5 * (100vw - 320px) / 704);
	}
	.goods-box .sub span {
		font-size: calc(13px + 3 * (100vw - 320px) / 704);
	}
}
@media (max-width: 960px) {
	.goods-box .sub {
		margin-top: 1.2rem;
	}
}
@media (max-width: 767px) {
	.goods-box .sub {
		margin-top: 0.8rem;
	}
}

.goods-wrap .copy {
	text-align: right;
	font-size: 1.3rem;
}
@media (max-width: 767px) {
	.goods-wrap .copy {
		font-size: 1.1rem;
		text-align: center;
	}
}

/*-------------------------------
 * 5. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
	opacity: 0.75;
	transition: 0.5s;
}

.fade {
	opacity: 0;
}
.fade.move {
	-webkit-animation: fadeIn 0.6s linear both;
    animation: fadeIn 0.6s linear both;
}

/*--------- keyframes --------- */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*-------------------------------
 * 6. 共通header 修正
 * ----------------------------*/
.cmn-header {
     position: relative;
}
.cmn-header__logo img {
     position: absolute;
     top: 10px;
}
@media screen and (max-width: 656px) {
    .cmn-header__logo img {
        top: 1.4444444vw;
    }
}
