﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 *   1.4  Lists
 *   1.5 Table
 *   1.6 Other Elements
 *        1.6.1 page top
 *        1.6.2 btn
 *        1.6.3 sns
 * 2. HEADER
 * 3. MAIN VISUAL
 * 4. NAV
 *    4.1. Main Nav (pc)
 *    4.2. Main Nav (sp)
 * 5. CONTENTS
 *    5.1 Cate Main
 *    5.2 About Us
 *    5.3 Monthly Coffee
 *    5.4 ONline Shop
 *    5.5 Shop (TOP)
 *    5.6 Contact
 *    5.7 Privacy policy
 *    5.8 Instagram (TOP)
 * 6. FOOTER
 * 7. INTERACTIONS
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html {
    font-size: 62.5%;
}
html,
body {
	overflow-x: hidden;
}
body {
    font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    background: #f7f7f7;
	color: #000;
	line-height: 2.2;
	font-weight: 400;
	overflow: hidden;
}
@media (max-width: 1024px) {
    body {
        font-size: calc(13px + 3 * (100vw - 320px) / 704);
        line-height: 2;
    }
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #000;
    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;
    }
}
@media (max-width: 480px) {
    .sp-48-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
 * ------------------------------*/
.mt-10 { margin-top: -1rem !important; }
.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; }

.mb-10 { margin-bottom: -1rem !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; }

.mr00 { margin-right: 0 !important; }
.mr10 { margin-right: 1rem !important; }
.mr20 { margin-right: 2rem !important; }
.mr30 { margin-right: 3rem !important; }

.ml00 { margin-left: 0 !important; }
.ml10 { margin-left: 1rem !important; }
.ml20 { margin-left: 2rem !important; }
.ml30 { margin-left: 3rem !important; }

@media (max-width: 960px) {
    .mt10-md {
        margin-top: 1rem !important;
    }
    .mt20-md {
        margin-top: 2rem !important;
    }
    .mt30-md {
        margin-top: 3rem !important;
    }
    .mt40-md {
        margin-top: 4rem !important;
    }
    .mt50-md {
        margin-top: 5rem !important;
    }
    .mt60-md {
        margin-top: 6rem !important;
    }
    .mt70-md {
        margin-top: 7rem !important;
    }
    .mt80-md {
        margin-top: 8rem !important;
    }
    .mb10-md {
        margin-bottom: 1rem !important;
    }
    .mb20-md {
        margin-bottom: 2rem !important;
    }
    .mb30-md {
        margin-bottom: 3rem !important;
    }
    .mb40-md {
        margin-bottom: 4rem !important;
    }
    .mb50-md {
        margin-bottom: 5rem !important;
    }
    .mb60-md {
        margin-bottom: 6rem !important;
    }
    .mb70-md {
        margin-bottom: 7rem !important;
    }
    .mb80-md {
        margin-bottom: 8rem !important;
    }
}
@media (max-width: 767px) {
    .mt-10-xs {
        margin-top: -1rem !important;
    }
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt05-xs {
        margin-top: 0.5rem !important;
    }
    .mt10-xs {
        margin-top: 1rem !important;
    }
    .mt15-xs {
        margin-top: 1.5rem !important;
    }
    .mt20-xs {
        margin-top: 2rem !important;
    }
    .mt25-xs {
        margin-top: 2.5rem !important;
    }
    .mt30-xs {
        margin-top: 3rem !important;
    }
    .mt40-xs {
        margin-top: 4rem !important;
    }
    .mt50-xs {
        margin-top: 5rem !important;
    }
    .mb-10-xs {
        margin-bottom: -1rem !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb05-xs {
        margin-bottom: 0.5rem !important;
    }
    .mb10-xs {
        margin-bottom: 1rem !important;
    }
    .mb15-xs {
        margin-bottom: 1.5rem !important;
    }
    .mb20-xs {
        margin-bottom: 2rem !important;
    }
    .mb25-xs {
        margin-bottom: 2.5rem !important;
    }
    .mb30-xs {
        margin-bottom: 3rem !important;
    }
    .mb40-xs {
        margin-bottom: 4rem !important;
    }
    .mb50-xs {
        margin-bottom: 5rem !important;
    }
    .mr00-xs {
        margin-right: 0 !important;
    }
    .ml00-xs {
        margin-left: 0 !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
p {
    margin: 1rem 0;
    text-align: justify;
    text-justify: inter-ideograph;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.line-height18 {
    line-height: 1.8 !important;
}
@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;
    }
    .line-height16-xs {
        line-height: 1.6 !important;
    }
}

.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #dd0000 !important;
}

.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;
}

.en {
	display: inline-block;
    font-family: "Sen", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 400 !important;
    font-style: normal !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; }
.f50 { font-size: 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;
    }
    .f50 {
        font-size: 3rem !important;
    }
    .f25-xs {
        font-size: 2.5rem !important;
    }
    .f24-xs {
        font-size: 2.4rem !important;
    }
    .f23-xs {
        font-size: 2.3rem !important;
    }
    .f22-xs {
        font-size: 2.2rem !important;
    }
    .f21-xs {
        font-size: 2.1rem !important;
    }
    .f20-xs {
        font-size: 2rem !important;
    }
    .f19-xs {
        font-size: 1.9rem !important;
    }
    .f18-xs {
        font-size: 1.8rem !important;
    }
    .f17-xs {
        font-size: 1.7rem !important;
    }
    .f16-xs {
        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: 500;
    line-height: 1.8;
}
@media (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 1.5;
    }
}

.section-ttl {
    font-size: 5rem;
    font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}
.section-sub {
	font-size: 1.8rem;
	text-align: center;
}
.section-line {
	width: 120px;
	height: 1px;
	margin: 3rem auto 5rem;
	background: #000;
}
@media (max-width: 1024px) {
    .section-ttl {
        font-size: calc(25px + 25 * (100vw - 320px) / 704);
    }
    .section-sub {
    	font-size: calc(14px + 4 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
	.section-ttl {
		margin-bottom: 1rem;
	}
	.section-line {
		width: 100px;
		margin: 2.5rem auto 2rem;
	}
}

.sub-line {
	position: relative;
	padding-left: 9rem;
	margin: 0 0 3rem;
	font-size: 2.2rem;
}
.sub-line .en {
	display: inline-block;
	font-size: 3rem;
	font-weight: 500 !important;
}
.sub-line .ja {
	display: inline-block;
	vertical-align: 7%;
	margin: 0 1rem;
}
.sub-line::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: inline-block;
	width: 80px;
	height: 1px;
	background-color: #000;
}
@media (max-width: 1024px) {
	.sub-line {
		font-size: calc(16px + 6 * (100vw - 320px) / 704);
	}
    .sub-line .en {
        font-size: calc(19px + 9 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
	.sub-line {
		padding-left: 6rem;
	}
    .sub-line::before {
        width: 50px;
    }
}
@media (max-width: 767px) {
	.sub-line {
		margin-bottom: 2rem;
	}
}
@media (max-width: 480px) {
	.sub-line {
		padding-left: 4.5rem;
	}
	.sub-line::before {
		left: -15px;
	}
}

.sub-center-line {
	position: relative;
	margin: 2rem 0 0.8rem;
	text-align: center;
	font-size: 2rem;
}
.sub-center-line::before,
.sub-center-line::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	display: inline-block;
	width: 100%;
	height: 1px;
	background-color: #000;
}
.sub-center-line::before {
	left: 0;
}
.sub-center-line::after {
	right: 0;
}
.sub-center-line span {
	display: inline-block;
	background: #f7f7f7;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}
@media (max-width: 1024px) {
    .sub-center-line {
        font-size: calc(15px + 5 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
	.sub-center-line {
		margin: 0 0 1.5rem;
	}
}

.txt-catch {
	font-size: 1.8rem;
	text-align: center;
}
.txt-catch .en {
	font-size: 2.1rem;
	vertical-align: -2%;
	line-height: 1.6;
}
@media (max-width: 1024px) {
	.txt-catch {
		font-size: calc(13px + 4 * (100vw - 320px) / 704);
	}
	.txt-catch .en {
		font-size: calc(16px + 5 * (100vw - 320px) / 704);
	}
}

/* 1.4 Lists
 * ------------------------------*/
ul.disc-list {
    list-style: disc;
    margin: 0 0 0 2.5rem;
    padding: 0;
    line-height: 2;
}
ul.disc-list li {
    list-style: disc;
}
@media (max-width: 767px) {
    ul.disc-list {
        margin-left: 2.2rem;
        line-height: 1.8;
    }
}

ol.ol-list {
    padding: 0;
    margin: 0 0 0 2.2rem;
    line-height: 2;
}
@media (max-width: 767px) {
    ol.ol-list {
        margin-left: 2rem;
        line-height: 1.8;
    }
}

/* 1.5 Table
 * ------------------------------*/
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
}
table a {
	text-decoration: underline;
}
table a:hover {
	text-decoration: none;
}
table th {
    background: #72797c;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #c9c9c9;
    padding: 1rem 1rem 1.1rem;
    font-weight: 400;
    text-align: center;
    color: #fff;
}
table th a {
	color: #fff;
}
table th a:hover {
	color: #fff;
}
table td {
    vertical-align: middle;
    border: 1px solid #c9c9c9;
    padding: 1rem 2rem 1.1rem;
}
table td p,
table td ul,
table td ol {
    margin: 0;
}
table .vtop {
    vertical-align: top;
}
@media (max-width: 1024px) {
	table th,
	table td {
		padding: 0.8rem 1rem 0.9rem;
	}
}
@media (max-width: 767px) {
    table th {
        white-space: nowrap;
    }
    table th,
    table td {
        padding: 0.8rem 0.5rem 0.9rem;
        line-height: 1.8;
    }
    table td {
        padding: 0.8rem 1rem 0.9rem;
    }
}

.table-design {
    margin: 3rem 0 0;
}
.table-design th,
.table-design td {
    background: #fff;
    padding: 1.2rem 1rem 1.2rem 4rem;
}
.table-design th {
    background: #72797c;
    text-align: center;
    width: 20%;
    min-width: 4em;
    position: relative;
    padding: 1.2rem 1rem;
}
.table-design th::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left: 10px solid #72797c;
    z-index: 2;
}
.table-design th::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 2px);
    transform: translateY(-50%);
    border: 12px solid transparent;
    border-left: 12px solid #fff;
    z-index: 1;
}
@media (max-width: 1024px) {
    .table-design td {
        padding-left: 2.5rem;
    }
}
@media (max-width: 767px) {
    table.table-design {
        margin-top: 2rem;
    }
    .table-design th,
    .table-design td {
        padding: 1rem 1rem 1rem 1.5rem;
    }
    .table-design th {
        padding: 1rem;
    }
    .table-design th::before {
        border-width: 8px;
    }
    .table-design th::after {
        border-width: 10px;
    }
}

/* 1.6 Other Elements
 * ------------------------------*/
/* 1.6.1 page top ------------*/
#pagetop {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 44px;
    height: 44px;
    z-index: 1;
    transition: background-color 400ms;
    background: url(../image/pagetop.svg) center center no-repeat;
    background-size: contain;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
#pagetop:hover {
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 767px) {
    #pagetop {
        width: 40px;
        height: 40px;
        right: 10px;
    }
}

/* 1.6.2 btn ------------*/
.btn {
    width: 390px;
    height: 64px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    padding-left: 3.5rem;
}
.btn.fix {
	position: absolute;
	bottom: -32px;
	left: 0;
	right: 0;
	margin: auto;
}
.btn a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 350px;
    height: 64px;
    padding: 0;
    font-size: 2.4rem;
    text-align: center;
    font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #fff;
    background: #000;
    border: 2px solid #000;
    box-sizing: border-box;
    position: relative;
    outline: none;
    overflow: hidden;
}
.btn a:hover {
  color: #000;
  background: #fff;
  text-decoration: none;
  transition: 0.5s;
}
.btn a::before {
	position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fbfbfb;
    animation: btn_animation 3s ease-in-out infinite;
}
.btn a:hover::before {
	display: none;
}
.btn i {
	display: block;
	width: 80px;
	height: 12px;
    position: absolute;
    top: -8px;
    bottom: 0;
    margin: auto;
    right: 0;
    background: url(../image/btn-arrow.svg) center center no-repeat;
    background-size: contain;
}
@media (max-width: 1024px) {
    .btn a {
        font-size: calc(21px + 3 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    .btn {
        width: 350px;
        padding-left: 3.1rem;
    }
    .btn a {
    	width: 310px;
    }
}
@media (max-width: 767px) {
	.btn {
    	width: 305px;
    	height: 50px;
    	padding-left: 2.4rem;
    }
    .btn.fix {
    	position: relative;
    	top: 0;
    	margin: 3rem auto 0;
    }
    .btn a {
        width: 280px;
        height: 50px;
    }
    .btn i {
    	width: 50px;
		height: 8px;
		top: -6px;
    }
}

@keyframes btn_animation {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes btn_animation {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/* 1.6.3 sns ------------*/
.icon-instagram .fa-instagram {
	display: inline-block;
	font-size: 35px;
	color: #fff;
}
.icon-instagram.black .fa-instagram {
	color: #000;
}
.icon-instagram:hover .fa-instagram {
	opacity: 0.75;
	transition: 0.5s;
}
@media (max-width: 1024px) {
	.icon-instagram .fa-instagram {
		font-size: 30px;
	}
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100vw;
    height: 70px;
    padding: 0;
    margin: 0;
    position: fixed;
    z-index: 10;
    background: #000;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
}
header .logo {
    width: 130px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 12px;
    left: 20px;
    z-index: 10;
    -webkit-animation: slideIn 0.6s ease both;
    animation: slideIn 0.6s ease both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
header .sns {
	position: absolute;
	top: 16px;
	right: 35px;
	-webkit-animation: slideIn 0.6s ease both;
    animation: slideIn 0.6s ease both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
@media (max-width: 1280px) {
	header .sns {
		right: 30px;
	}
}
@media (max-width: 1024px) {
	header .sns {
		top: 20px;
		right: 25px;
	}
}
@media (max-width: 960px) {
	header .sns {
		right: 90px;
	}
}
@media (max-width: 767px) {
    header {
        height: 55px;
    }
    header .logo {
        left: 10px;
        top: 8px;
        width: 110px;
    }
    header .sns {
		top: 13px;
		right: 70px;
	}
}

/*-------------------------------
 * 3. MAIN VISUAL
 * ----------------------------*/
#main-visual {
    width: 100vw;
    height: 100vh;
    margin: 0;
    position: relative;
}
@media screen and (orientation:portrait) and (max-width: 1024px) {
    #main-visual {
        height: 700px;
    }
}
@media screen and (orientation:landscape) and (max-width: 932px) {
    #main-visual {
        height: 370px;
    }
}
@media (max-width: 767px) {
	#main-visual {
		height: 350px;
	}
}
@media (max-width: 480px) {
	#main-visual {
		height: 450px;
	}
}
@media (max-width: 390px) {
	#main-visual {
		height: 420px;
	}
}
@media (max-width: 380px) {
	#main-visual {
		height: 400px;
	}
}
@media (max-width: 320px) {
	#main-visual {
		height: 350px;
	}
}

/*----- Swiperl ---*/
.swiper {
    z-index: 0 !important;
}
.swiper-slide {
    box-sizing: border-box;
    position: relative;
}

/*----- Swiper TOP main visual ---*/
.swiper-main {
    width: 100vw;
    height: calc(100vh - 70px);
    position: relative;
    z-index: 0;
    top: 70px;
    background: #fff;
    overflow: hidden;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.swiper-main .slide-img img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: calc(100vh - 70px);
}
.swiper-main .swiper-slide-active .slide-img,
.swiper-main .swiper-slide-duplicate-active .slide-img,
.swiper-main .swiper-slide-prev .slide-img {
    -webkit-animation: zoom-in 10s linear 0s 1 normal both;
    animation: zoom-in 10s linear 0s 1 normal both;
}
@media screen and (orientation:portrait) and (max-width: 1024px) {
	.swiper-main,
	.swiper-main .slide-img img {
		height: 700px;
	}
}
@media screen and (orientation:landscape) and (max-width: 932px) {
	.swiper-main,
	.swiper-main .slide-img img {
		height: 370px;
	}
}
@media (max-width: 767px) {
	.swiper-main {
		top: 55px;
		height: 350px;
	}
	.swiper-main .slide-img img {
		height: 350px;
	}
}
@media (max-width: 480px) {
	.swiper-main,
	.swiper-main .slide-img img {
		height: 450px;
	}
}
@media (max-width: 390px) {
	.swiper-main,
	.swiper-main .slide-img img {
		height: 420px;
	}
}
@media (max-width: 380px) {
	.swiper-main,
	.swiper-main .slide-img img {
		height: 400px;
	}
}
@media (max-width: 320px) {
	.swiper-main,
	.swiper-main .slide-img img {
		height: 350px;
	}
}

@-webkit-keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

/*-------------------------------
 * 4. NAV
 * ----------------------------*/
/* 4.1. Main Nav (pc)
 * ------------------------------*/
#main-nav {
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 17px;
    right: 100px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
    -webkit-animation: slideIn 0.6s ease both;
    animation: slideIn 0.6s ease both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
#main-nav ul.nav-menu {
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
}
#main-nav ul.nav-menu li {
    text-align: center;
    font-size: 1.7rem;
    box-sizing: border-box;
    font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}
#main-nav ul.nav-menu li::after {
	display: inline-block;
	content: "/";
	margin-left: calc(10 / 1280 * 100vw);
    margin-right: calc(10 / 1280 * 100vw);
    position: relative;
    top: -1em;
}
#main-nav ul.nav-menu li:last-of-type::after {
	display: none;
}
#main-nav ul.nav-menu li a {
    display: inline-block;
    overflow: hidden;
    /*color: #fff;*/
    color: transparent;
    text-shadow: 0 -2em 0 #fff, 0 0 0 #fff;
  	transition: text-shadow 0.3s;
    height: 40px;
    line-height: 37px;
    padding-left: calc(15 / 1280 * 100vw);
    padding-right: calc(15 / 1280 * 100vw);
    position: relative;
    box-sizing: border-box;
    z-index: 10030 !important;
}
#main-nav ul.nav-menu li a:hover {
	/*color: #fff;*/
    text-decoration: none;
    text-shadow: 0 0 0 #fff, 0 2em 0 #fff;
}
@media (max-width: 1280px) {
	#main-nav {
		right: 80px;
	}
	#main-nav ul.nav-menu li {
        font-size: 1.6rem;
    }
    #main-nav ul.nav-menu li a {
        padding-left: calc(10 / 1280 * 100vw);
        padding-right: calc(10 / 1280 * 100vw);
    }
}
@media (max-width: 1024px) {
	#main-nav {
		right: 60px;
	}
	#main-nav ul.nav-menu li::after {
		margin-left: 0.5rem;
		margin-right: 0.5rem;
	}
	#main-nav ul.nav-menu li a {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
}
@media (max-width: 960px) {
    #main-nav {
        display: none !important;
    }
}

/* 4.2. Main Nav (sp)
 * ------------------------------*/
#main-nav-sp {
    display: none;
}
@media (max-width: 960px) {
    #main-nav-sp {
        display: block;
    }
}

#nav-container {
    margin-left: auto;
    position: relative;
}

#nav-toggle {
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: absolute;
    top: 23px;
    right: 30px;
    z-index: 30;
    -webkit-animation: slideIn 0.6s ease both;
    animation: slideIn 0.6s ease both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
#nav-toggle span {
    width: 100%;
    height: 3px;
    border-radius: 1px;
    display: block;
    background-color: #fff;
    position: absolute;
    right: 0;
    content: '';
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
#nav-toggle span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
#nav-toggle span:nth-child(2) {
    top: 9px;
    width: 80%;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
#nav-toggle span:nth-child(3) {
    top: 18px;
    width: 60%;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
#nav-toggle:hover span {
    background-color: #fff;
}
#nav-toggle.open {
    background: transparent;
    border-radius: 0;
    border: none;
}
#nav-toggle.open span {
    background-color: #fff;
}
#nav-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    right: -3px;
}
#nav-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
#nav-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 24px;
    right: -3px;
    width: 100%;
}
@media (max-width: 767px) {
    #nav-toggle {
        top: 16px;
        right: 15px;
    }
}

#nav-overlay {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 1);
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    z-index: 10;
}
#nav-overlay.open {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

#nav-fullscreen {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transition: ease-in-out 0.25s;
    transition: ease-in-out 0.25s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 20;
}
#nav-fullscreen.open {
    visibility: visible;
    opacity: 1;
    -webkit-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#nav-fullscreen .nav-menu-cont {
    width: 100%;
    margin: -5vh 0 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
}
#nav-fullscreen ul.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 2.4rem;
    font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}
#nav-fullscreen ul.nav-menu li {
    margin: 0;
    padding: 1rem 0;
}
#nav-fullscreen ul.nav-menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
}
@media (max-width: 767px) {
	#nav-fullscreen .nav-menu-cont {
		margin-top: 0;
	}
    #nav-fullscreen ul.nav-menu {
        font-size: 1.7rem;
    }
    #nav-fullscreen ul.nav-menu li {
        padding: 0;
    }
}
@media (max-width: 480px) {
	#nav-fullscreen .nav-menu-cont {
		margin-top: -1vh;
	}
	#nav-fullscreen ul.nav-menu {
        font-size: 2.1rem;
    }
    #nav-fullscreen ul.nav-menu li a {
        padding: 1rem 0;
    }
}

#nav-fullscreen ul.nav-menu .js-menu,
#nav-fullscreen ul.nav-menu .nav-sub-menu li a {
    display: block;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
}
#nav-fullscreen ul.nav-menu .nav-sub-menu li a {
    padding: 0.3rem 0;
}
#nav-fullscreen ul.nav-menu .js-menu:hover,
#nav-fullscreen ul.nav-menu  a:hover {
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 480px) {
    #nav-fullscreen ul.nav-menu .js-menu,
    #nav-fullscreen ul.nav-menu .nav-sub-menu li a {
        padding: 1rem 0;
    }
    #nav-fullscreen ul.nav-menu .nav-sub-menu li a {
        padding: 0.5rem 0;
    }
}
@media (max-width: 360px) {
    #nav-fullscreen ul.nav-menu .js-menu,
    #nav-fullscreen ul.nav-menu .nav-sub-menu li a {
        padding: 0.5rem 0;
    }
    #nav-fullscreen ul.nav-menu .nav-sub-menu li a {
        padding: 0.3rem 0;
    }
}

/*-------------------------------
 * 5. CONTENTS
 * ----------------------------*/
main {
    margin: 10rem 0 0;
    padding: 0;
}
#top-page main {
	margin: 0;
}
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 0;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
@media screen and (orientation:portrait) and (max-width: 1024px) {
	#top-page main {
		margin-top: 15rem;
	}
}
@media (max-width: 1300px) {
    .wrap {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (max-width: 960px) {
	main {
    	margin-top: -3rem;
    }
    .wrap {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
@media screen and (orientation:landscape) and (max-width: 932px) {
	#top-page main {
		margin-top: 15rem;
	}
}
@media (max-width: 767px) {
	main {
    	margin-top: 4rem;
    }
	#top-page main {
		margin-top: 10rem;
	}
    .wrap {
        max-width: 100% !important;
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (max-width: 480px) {
	main {
    	margin-top: 2rem;
    }
	#top-page main {
		margin-top: 8rem;
	}
    .wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

section {
    margin: 10rem 0 14rem;
    padding: 1rem 0 0;
}
@media (max-width: 960px) {
    section {
        margin: 10rem 0;
    }
}
@media (max-width: 767px) {
    section {
        margin: 3rem 0 6rem;
    }
}

.flex-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0;
    padding: 0;
}
.flex-box .col {
    box-sizing: border-box;
    position: relative;
}
.flex-box .col p:first-of-type {
    margin-top: 0;
}

.order1 {
	order: 1;
}
.order2 {
	order: 2;
}
.order3 {
	order: 3;
}
@media (max-width: 767px) {
    .order1-xs {
        order: 1;
    }
    .order2-xs {
        order: 2;
    }
    .order3-xs {
        order: 3;
    }
}

.img-wide {
	position: relative;
	margin: 6rem auto 0;
}
.img-wide img {
	width: 100vw;
	height: auto;
}
@media (max-width: 960px) {
    .img-wide {
        margin-top: 4rem;
    }
}
@media (max-width: 767px) {
    .img-wide {
        margin-top: 2rem;
    }
}
@media (max-width: 480px) {
    .img-wide-sp {
        max-width: 110%;
        margin: 0 -1.5rem;
    }
}

i.fa-angle-right {
	display: inline-block;
	margin-left: 1rem;
	vertical-align: -4%;
}

/*----- photo mask -----*/
.photo-mask figure {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}
.photo-mask figure::before {
    content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #000;
}
.photo-mask.circle figure::before {
    border-radius: 50%;
}
/*.photo-mask.move figure::before {
    animation: barAnime forwards 1s 1 ease 0.1s normal;
}*/
.photo-mask figure img {
    opacity: 0;
    transform: scale(1.2);
}
.photo-mask.move figure img {
    /*animation: photoAnime forwards 0.9s 1 ease 0.4s normal;*/
    animation: photoAnime forwards 1s 1 ease 0.1s normal;
}
@-webkit-keyframes barAnime {
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	68% {
		left: 0;
		width: 100%;
	}
  100% {
		left: 100%;
		width: 0;
	}
}
@keyframes barAnime {
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	68% {
		left: 0;
		width: 100%;
	}
  100% {
		left: 100%;
		width: 0;
	}
}

@-webkit-keyframes photoAnime {
	0% {
    opacity: 0;
    transform: scale(1.2);
  }
	50% {
    opacity: 0;
    transform: scale(1.2);
  }
	100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes photoAnime {
	0% {
    opacity: 0;
    transform: scale(1.2);
  }
	50% {
    opacity: 0;
    transform: scale(1.2);
  }
	100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 5.1 Cate Main
 * ------------------------------*/
#cate-main {
    width: 100vw;
    margin: 7rem 0 0;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
#cate-main .cate-ttl {
	font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 3.5rem;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1;
    background: #72797c;
	color: #fff;
	padding: 3rem 1.5rem;
}
@media (max-width: 1024px) {
	#cate-main .cate-ttl {
		font-size: calc(22px + 13 * (100vw - 320px) / 704);
		padding: 2rem 1.5rem;
	}
}
@media (max-width: 767px) {
    #cate-main {
    	margin-top: 5.5rem;
    }
    #cate-main .cate-ttl {
		padding: 1.5rem;
	}
}

/* 5.2 About Us
 * ------------------------------*/
.about-box-1 {
	justify-content: center;
}
.about-box-1 .col.left {
	width: 30%;
	padding-top: 1rem;
}
#top-page .about-box-1 .col.left {
	padding-top: 9rem;
}
.about-box-1 .col.center {
	width: 40%;
	padding: 0 2rem;
}
.about-box-1 .col.right {
	width: 30%;
	padding-top: 1rem;
}
#top-page .about-box-1 .col.right {
	padding-top: 0;
}
@media (max-width: 960px) {
	.about-box-1 .col.center {
		padding: 0 1rem;
	}
}
@media (max-width: 767px) {
	.about-box-1 .col.left,
	#top-page .about-box-1 .col.left {
		width: 50%;
		padding-top: 1.5rem;
		padding-right: 0.5rem;
	}
	.about-box-1 .col.center {
		width: 100%;
		padding: 0;
	}
	.about-box-1 .col.right,
	#top-page .about-box-1 .col.right {
		width: 50%;
		padding-top: 8rem;
		position: relative;
		right: -20px;
	}
}

.about-box-2 {
	justify-content: center;
	margin-top: 1rem;
}
.about-box-2 .col.left {
	width: 22%;
	padding: 25rem 6rem 0 0;
}
.about-box-2 .col.center {
	width: 35%;
	padding: 10rem 10rem 0 0;
}
.about-box-2 .col.right {
	width: 43%;
	padding-right: 7rem;
}
@media (max-width: 1024px) {
	.about-box-2 {
		margin-top: 3rem;
	}
	.about-box-2 .col.left {
		padding-right: 4rem;
	}
	.about-box-2 .col.center {
		padding-right: 6rem;
	}
	.about-box-2 .col.right {
		padding-right: 4rem;
	}
}
@media (max-width: 960px) {
	.about-box-2 .col.left {
		padding: 15rem 3rem 0 0;
	}
	.about-box-2 .col.center {
		padding: 5rem 5rem 0 0;
	}
	.about-box-2 .col.right {
		padding-right: 0;
	}
}
@media (max-width: 767px) {
	.about-box-2 .col.left {
		padding: 2.5rem 0 0 0;
		width: 30%;
	}
	.about-box-2 .col.center {
		width: 100%;
		padding: 0;
		margin-top: -7.6rem;
		position: relative;
		left: -15px;
	}
	.about-box-2 .col.center img {
		width: 40%;
		margin: 0;
	}
	.about-box-2 .col.right {
		width: 70%;
		padding-right: 0;
		margin-top: -4rem;
		position: relative;
		right: -15px;
	}
	.about-box-2 .col.right img {
		width: 88%;
		margin: 0;
		float: right;
	}
}

.about-box-3 {
	justify-content: center;
	margin-top: 8rem;
}
.about-box-3 .col.left {
	width: 40%;
	padding-right: 4rem;
}
.about-box-3 .col.right {
	width: 40%;
	padding-left: 4rem;
}
@media (max-width: 1024px) {
	.about-box-3 {
		margin-top: 4rem;
	}
	.about-box-3 .col.left {
		width: 43%;
		padding-right: 3rem;
	}
	.about-box-3 .col.right {
		width: 43%;
		padding-left: 3rem;
	}
}
@media (max-width: 960px) {
	.about-box-3 {
		margin-top: 3rem;
	}
	.about-box-3 .col.left {
		padding-right: 2.5rem;
	}
	.about-box-3 .col.right {
		padding-left: 2.5rem;
	}
}
@media (max-width: 767px) {
	.about-box-3 .col.left {
		width: 50%;
		padding-right: 0;
		margin-top: -7.5rem;
		position: relative;
		left: -15px;
	}
	.about-box-3 .col.right {
		width: 50%;
		padding-left: 0;
		margin-top: -0.5rem;
		position: relative;
	}
	.about-box-3 .col.right img {
		width: 95%;
		margin: 0;
		float: right;
	}
}

.about-wrap .img-wide {
	margin-top: 14rem;
}
@media (max-width: 960px) {
	.about-wrap .img-wide {
		margin-top: 7rem;
	}
}
@media (max-width: 767px) {
	.about-wrap .img-wide {
		margin-top: 8rem;
	}
}
@media (max-width: 480px) {
	.about-wrap .img-wide {
		margin-top: 4rem;
	}
	#top-page .about-wrap .img-wide {
		margin-top: 3rem;
	}
}

#top-page .about-wrap .section-ttl {
	margin-bottom: 4rem;
}
.about-wrap .sub {
	font-size: 2.3rem;
	text-align: center;
	margin: 0 0 4rem;
}
.about-wrap .btn {
	float: right;
	margin-right: 7rem;
}
@media (max-width: 1024px) {
	.about-wrap .sub {
		font-size: calc(15px + 5 * (100vw - 320px) / 704);
		margin-bottom: 2.5rem;
	}
	.about-wrap .btn {
		margin-right: 4rem;
	}
}
@media (max-width: 960px) {
	.about-wrap .btn {
		margin: 2rem 0 0;
	}
}
@media (max-width: 767px) {
	#top-page .about-wrap .section-ttl {
		margin-bottom: 1.5rem;
	}
	.about-wrap .sub {
		margin-bottom: 1.5rem;
		line-height: 1.8;
	}
	.about-wrap .btn {
		float: none;
		margin: 3rem auto 0;
	}
}

.img-about {
	margin-top: 6rem;
}
@media (max-width: 960px) {
    .img-about {
        margin-top: 4rem;
    }
}
@media (max-width: 767px) {
    .img-about {
        margin-top: 2rem;
    }
}

.about-box-coffee {
	gap: 0 70px;
	margin: 7rem 0 0;
}
.about-box-coffee .col {
	width: calc(100% / 3 - 47px );
}
@media (max-width: 1024px) {
	.about-box-coffee {
		gap: 0 50px;
		margin-top: 5rem;
	}
	.about-box-coffee .col {
		width: calc(100% / 3 - 34px );
	}
}
@media (max-width: 960px) {
	.about-box-coffee {
		gap: 0 30px;
		margin-top: 3rem;
	}
	.about-box-coffee .col {
		width: calc(100% / 3 - 20px );
	}
}
@media (max-width: 767px) {
	.about-box-coffee {
		margin-top: 3rem;
		gap: 0;
	}
	.about-box-coffee .col {
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
		align-items: flex-start;
		align-content: flex-start;
		width: 100%;
		margin-bottom: 3rem;
	}
	.about-box-coffee .col:last-of-type {
		margin-bottom: 0;
	}
	.about-box-coffee .img-area {
		width: 50%;
		padding-right: 1rem;
		box-sizing: border-box;
	}
	.about-box-coffee .txt-area {
		width: 50%;
		padding-left: 1rem;
		box-sizing: border-box;
	}
	.about-box-coffee .sub-center-line {
		width: 100%;
	}
}

.about-box-team {
	justify-content: center;
	gap: 0 70px;
	margin: 7rem 0 0;
}
.about-box-team .col {
	width: calc(100% / 2 - 35px );
}
.about-box-team .sub-line {
	margin-bottom: 1.5rem;
}
.about-box-team p {
	margin: 1.5rem 0;
}
@media (max-width: 1024px) {
	.about-box-team {
		margin-top: 5rem;
		gap: 0 50px;
	}
	.about-box-team .col {
		width: calc(100% / 2 - 25px );
	}
}
@media (max-width: 960px) {
	.about-box-team {
		gap: 0 30px;
	}
	.about-box-team .col {
		width: calc(100% / 2 - 15px );
	}
}
@media (max-width: 767px) {
	.about-box-team {
		margin-top: 2rem;
		gap: 5px 0;
	}
	.about-box-team .col {
		width: 100%;
	}
}

/* 5.3 Monthly Coffee
 * ------------------------------*/
.monthly-box-map {
	align-items: center;
    align-content: center;
    margin-bottom: 4rem;
}
.monthly-box-map .col.left {
	width: 60%;
}
.monthly-box-map .col.right {
	width: 40%;
	padding-left: 3rem;
}
@media (max-width: 1024px) {
	.monthly-box-map .col.left {
		width: 55%;
	}
	.monthly-box-map .col.right {
		width: 45%;
		padding-left: 2rem;
	}
}
@media (max-width: 960px) {
	.monthly-box-map .col.left {
		width: 66%;
	}
	.monthly-box-map .col.right {
		width: 34%;
		padding-left: 1rem;
	}
}
@media (max-width: 767px) {
	.monthly-box-map {
		margin-bottom: 2rem;
	}
	.monthly-box-map .col.left {
		width: 100%;
	}
	.monthly-box-map .col.right {
		width: 100%;
		padding-left: 0;
	}
}

.monthly-box-map table th {
	width: 35%;
}
.monthly-box-map table td {
	width: 65%;
}
@media (max-width: 1024px) {
	.monthly-box-map table th,
	.monthly-box-map table td {
		font-size: calc(13px + 2 * (100vw - 320px) / 704);
	}
}
@media (max-width: 767px) {
	.monthly-box-map table {
		margin-top: 2rem;
	}
}

.monthly-box {
	padding-top: 6rem;
}
.monthly-box .flex-box {
	gap: 40px 30px;
}
.monthly-box .flex-box .col {
	width: calc(100% / 5 - 24px );
}
.monthly-box .sub-line {
	width: 100%;
	font-size: 2.4rem;
}
.monthly-box .sub-line span {
	display: inline-block;
	font-size: 1.8rem;
	margin-left: 1rem;
}
.monthly-box .sub {
	font-size: 2rem;
	text-align: center;
	margin: 1.5rem 0 0;
	line-height: 1.5;
}
.monthly-box .sub .en {
	font-weight: 500 !important;
}
.monthly-box .sub .ja {
	font-size: 1.8rem;
}
.monthly-box .sub .cap {
	display: block;
	font-size: 1.6rem;
	margin-top: 0.3rem;
	font-weight: 400;
}
@media (max-width: 1024px) {
	.monthly-box .flex-box {
		gap: 40px 20px;
	}
	.monthly-box .flex-box .col {
		width: calc(100% / 5 - 16px );
	}
	.monthly-box .sub-line {
		font-size: calc(16px + 6 * (100vw - 320px) / 704);
	}
    .monthly-box .sub-line span {
        font-size: calc(14px + 4 * (100vw - 320px) / 704);
    }
    .monthly-box .sub {
    	font-size: calc(15px + 5 * (100vw - 320px) / 704);
    }
    .monthly-box .sub .ja {
    	font-size: calc(14px + 4 * (100vw - 320px) / 704);
    }
    .monthly-box .sub .cap {
    	font-size: calc(13px + 3 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
	.monthly-box .flex-box {
		gap: 40px 20px;
	}
	.monthly-box .flex-box .col {
		width: calc(100% / 4 - 15px );
	}
}
@media (max-width: 767px) {
	.monthly-box {
		padding-top: 3rem;
		padding-bottom: 1rem;
	}
	.monthly-box .flex-box {
		gap: 30px 14px;
	}
	.monthly-box .flex-box .col {
		width: calc(100% / 2 - 7px );
	}
	.monthly-box .sub-line {
		width: auto;
		line-height: 1.8;
	}
	.monthly-box .sub-line span {
		margin-left: 0.5rem;
	}
}

/* 5.4 ONline Shop
 * ------------------------------*/
.online-wrap .txt-box {
	position: absolute;
	top: 3vw;
	left: 50px;
	z-index: 10;
}
.online-wrap .section-ttl {
	text-align: left;
	color: #fff;
	font-size: 6.5rem;
}
.online-wrap .txt-catch {
	font-size: 2.1rem;
	text-align: left;
}
.online-wrap .txt-catch .en {
	font-size: 2.5rem;
	vertical-align: -3%;
}
@media (max-width: 1200px) {
	.online-wrap .txt-box {
		top: 2vw;
		left: 40px;
	}
	.online-wrap .section-ttl {
		font-size: 6rem;
		margin-bottom: 1rem;
	}
}
@media (max-width: 1024px) {
	.online-wrap .txt-box {
		top: 3vw;
		left: 35px;
	}
	.online-wrap .section-ttl {
		font-size: calc(27px + 23 * (100vw - 320px) / 704);
		margin-bottom: 1rem;
	}
	.online-wrap .txt-catch {
		font-size: calc(13px + 4 * (100vw - 320px) / 704);
	}
	.online-wrap .txt-catch .en {
		font-size: calc(16px + 5 * (100vw - 320px) / 704);
	}
}
@media (max-width: 960px) {
	.online-wrap .img-wide {
        margin-top: 4rem;
    }
	.online-wrap .txt-box {
		position: relative;
		top: 0;
		left: 0;
	}
	.online-wrap .section-ttl {
		color: #000;
		margin: 0 0 1.5rem;
		text-align: center;
	}
	.online-wrap .txt-catch {
		line-height: 2;
		text-align: center;
	}
}
@media (max-width: 767px) {
	.online-wrap .img-wide {
		margin-top: 2rem;
	}
}
 
/* 5.5 Shop (TOP)
 * ------------------------------*/
.shop-wrap {
	margin-bottom: -5rem;
}
.shop-wrap .shop-box {
	margin: 5rem 0 13rem;
	position: relative;
	z-index: 0;
}
.shop-wrap .flex-box {
	gap: 0 60px;
}
.shop-wrap .flex-box .col {
	width: calc(100% / 2 - 30px );
}
.shop-wrap .img-area img {
	margin: 0 0 3rem 3rem;
}
.shop-wrap .img-area .bg {
	position: absolute;
	background: #fff;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	bottom: 0;
}
@media (max-width: 1024px) {
	.shop-wrap {
		margin-bottom: 13rem;
	}
	.shop-wrap .shop-box {
		margin-bottom: 0;
	}
    .shop-wrap .flex-box {
        gap: 0 50px;
    }
    .shop-wrap .flex-box .col {
    	width: calc(100% / 2 - 25px );
    }
}
@media (max-width: 960px) {
	.shop-wrap {
		margin-bottom: 10rem;
	}
	.shop-wrap .shop-box {
		margin-bottom: 1rem;
	}
    .shop-wrap .flex-box {
        gap: 0 36px;
    }
    .shop-wrap .flex-box .col {
    	width: calc(100% / 2 - 18px );
    }
}
@media (max-width: 767px) {
	.shop-wrap {
		margin-bottom: 6rem;
	}
	.shop-wrap .shop-box {
		margin: 5rem 0 1rem;
	}
	.shop-wrap .flex-box {
        gap: 20px 0;
    }
    .shop-wrap .flex-box .col {
    	width: 100%;
    }
}
@media (max-width: 480px) {
	.shop-wrap .img-area .bg {
		display: none;
	}
	.shop-wrap .img-area img {
		margin: 0;
	}
}

.shop-wrap .shop-box .sub {
	font-size: 2rem;
	margin: 0 0 2rem;
}
.shop-wrap .shop-box .sns {
	position: absolute;
	top: 0;
	right: 40px;
}
@media (max-width: 1024px) {
    .shop-wrap .shop-box .sub {
        font-size: calc(15px + 5 * (100vw - 320px) / 704);
    }
    .shop-wrap .shop-box .sns {
    	right: 0;
    }
}
@media (max-width: 960px) {
    .shop-wrap .shop-box .sub {
        margin-bottom: 1rem;
    }
}
@media (max-width: 480px) {
    .shop-wrap .shop-box .sub {
        line-height: 1.8;
    }
}

.shop-wrap .bg-gray {
	display: block
	width: 100vw;
	min-height: 250px;
	background: #72797c;
	position: relative;
	top: -300px;
	left: 0;
	z-index: -1;
	margin-bottom: -27rem;
	color: #fff;
	box-sizing: border-box;
	padding: 2.5rem 0;
	animation: bg-left 0.6s ease both;
	-webkit-animation: bg-left 0.6s ease both;
	transform-origin: top left;
}
.shop-wrap .bg-gray .flex-box {
    justify-content: flex-end;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.shop-wrap .bg-gray .flex-box.right {
	justify-content: flex-end;
}
.shop-wrap .bg-gray .flex-box.left {
	justify-content: flex-start;
}
@media (max-width: 1300px) {
	.shop-wrap .bg-gray {
		top: calc(-270 / 1300 * 100vw);
		margin-bottom: calc(-240 / 1300 * 100vw);
	}
}
@media (max-width: 1200px) {
	.shop-wrap .bg-gray {
		top: calc(-230 / 1200 * 100vw);
		margin-bottom: calc(-200 / 1200 * 100vw);
	}
}
@media (max-width: 1024px) {
	.shop-wrap .bg-gray {
		top: 0;
		margin-bottom: 0;
		min-height: 150px;
		text-align: justify;
		text-justify: inter-ideograph;
	}
	.shop-wrap .bg-gray .flex-box .col {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.shop-wrap .bg-gray {
		min-height: auto;
		padding: 1.8rem 0;
	}
} 

/* 5.6 Contact
 * ------------------------------*/
.contact-wrap {
	margin-bottom: 10rem;
}
.contact-box {
	justify-content: center;
	align-items: stretch;
    align-content: stretch;
	gap: 0 60px;
	margin: 5rem 0 0;
}
.contact-box .col {
	text-align: center;
	width: calc(100% / 2 - 30px );
	background: #72797c;
	padding: 2.5rem 3rem 3rem;
}
.contact-box .wbox {
	background: #fff;
	padding: 1.7rem 2rem 2rem;
	margin-top: 2.5rem;
}
@media (max-width: 1199px) {
	.contact-box {
		gap: 0 40px;
	}
	.contact-box .col {
		width: calc(100% / 2 - 20px );
	}
	.contact-box .wbox {
		padding: 1.7rem 1rem 3rem;
	}
}
@media (max-width: 960px) {
	.contact-box {
		gap: 30px 0;
		margin-top: 3rem;
	}
	.contact-box .col {
		width: 100%;
		padding: 2rem 2rem 2rem;
	}
	.contact-box .wbox {
		margin-top: 2rem;
		padding: 1.5rem 1rem 2.5rem;
	}
}
@media (max-width: 767px) {
	.contact-wrap {
		margin-bottom: 6rem;
	}
	.contact-box {
		gap: 25px 0;
		margin-top: 2.5rem;
	}
	.contact-box .col {
		padding: 1.5rem 1rem 1rem;
	}
	.contact-box .wbox {
		margin-top: 1.5rem;
		padding: 1.5rem 1rem 2rem;
	}
}

.contact-box .sub {
	font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 3.4rem;
    letter-spacing: 0.03em;
    line-height: 1;
}
.contact-box .subsub {
	font-size: 2.2rem;
	margin-bottom: 2rem;
}
.contact-box .txt-mail {
	display: block;
	font-size: 3rem;
    line-height: 1;
}
.contact-box .txt-mail a:hover {
	text-decoration: none;
	color: #666;
	transition: 0.5s;
}
.contact-box .txt-tel {
	display: block;
	font-size: 3.3rem;
    line-height: 1;
    margin-top: 1.5rem;
}
.contact-box .btn {
	margin-bottom: 1rem;
}
@media (max-width: 1199px) {
	.contact-box .sub {
        font-size: calc(21px + 11 * (100vw - 320px) / 704);
    }
    .contact-box .subsub {
    	font-size: calc(15px + 5 * (100vw - 320px) / 704);
    }
    .contact-box .txt-mail {
    	font-size: calc(19px + 7 * (100vw - 320px) / 704);
    }
    .contact-box .txt-tel {
    	font-size: calc(22px + 9 * (100vw - 320px) / 704);
    	margin-top: 1rem;
    }
    .contact-box .btn {
		width: 330px;
		padding-left: 2.9rem;
		margin-bottom: 0;
	}
	.contact-box .btn a {
		width: 290px;
	}
}
@media (max-width: 960px) {
	.contact-box .subsub {
		margin-bottom: 1.5rem;
	}
}
@media (max-width: 480px) {
    .contact-box .btn {
		width: 300px;
		padding-left: calc(35 / 480 * 100vw);
	}
	.contact-box .btn a {
		width: 260px;
	}
	.contact-box .btn i {
		right: 15px;
	}
}
@media (max-width: 380px) {
    .contact-box .btn {
		padding-left: 2.3rem;
	}
}
@media (max-width: 360px) {
    .contact-box .btn {
		padding-left: 1.5rem;
	}
}
@media (max-width: 320px) {
    .contact-box .btn {
    	width: 270px;
		padding-left: 1rem;
	}
	.contact-box .btn a {
		width: 230px;
	}
}

/* 5.7 Privacy policy
 * ------------------------------*/
.policy-wrap {
	margin-top: -2rem;
}
.policy-wrap .wrap {
    max-width: 1000px;
}
.policy-wrap .sub-center-line {
	margin: 0;
	text-align: left;
}
.policy-wrap .sub-center-line span {
	padding: 0 2rem 0 0;
}
.policy-wrap p + .sub-center-line,
.policy-wrap ul + .sub-center-line,
.policy-wrap ol + .sub-center-line {
	margin-top: 5rem;
}
@media (max-width: 960px) {
	.policy-wrap {
		margin-top: 8rem;
	}
}
@media (max-width: 767px) {
	.policy-wrap {
		margin-top: 2.5rem;
	}
	.policy-wrap p + .sub-center-line,
	.policy-wrap ul + .sub-center-line,
	.policy-wrap ol + .sub-center-line {
		margin-top: 3rem;
	}
}


/* 5.8 Instagram (TOP)
 * ------------------------------*/
.instagram-wrap ul.list {
	margin: 4rem auto 0;
	font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 0 40px;
}
.instagram-wrap ul.list .icon-instagram .fa-instagram {
	margin-right: 0.8rem;
	vertical-align: -20%;
}
@media (max-width: 1024px) {
	.instagram-wrap ul.list {
		gap: 20px 40px;
	}
}
@media (max-width: 767px) {
	.instagram-wrap ul.list {
		display: block;
		margin-top: 2rem;
	}
	.instagram-wrap ul.list li {
		margin-bottom: 1rem;
	}
}
@media (max-width: 480px) {
	.instagram-wrap ul.list {
		font-size: calc(11px + 4 * (100vw - 320px) / 160);
	}		
}

.insta_list {
	display: flex;
	flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
	list-style: none;
	margin: 0 auto;
	position: relative;
	gap: 5px 5px;
}
.insta_list li {
	width: calc(100% / 6 - 5px );
	box-sizing: border-box;
}
.insta_list img {
 	width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
}
.insta_list a:hover {
 	opacity: 0.8;
 	transition: 0.5s;
}
@media (max-width: 1024px) {
	.insta_list img {
		height: 160px;
	}
}
@media (max-width: 960px) {
    .insta_list li {
        width: calc(100% / 3 - 4px );
    }
	.insta_list img {
		height: 180px;
	}
}
@media (max-width: 767px) {
	.insta_list img {
		height: 160px;
	}
}
@media (max-width: 480px) {
	.insta_list img {
		height: 100px;
	}
}

/*-------------------------------
 * 6. FOOTER
 * ----------------------------*/
footer {
    margin: 21rem 0 0;
    padding: 6rem 0 2rem;
    font-size: 1.5rem;
    background: #000;
    color: #fff;
}
#top-page footer {
	margin-top: 15rem;
}
footer a {
    color: #fff;
}
footer a:hover {
    color: #dddddd;
    text-decoration: none;
}
@media (max-width: 1024px) {
    footer {
        font-size: calc(12px + 3 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    #top-page footer {
        margin-top: 0;
    }
}
@media (max-width: 767px) {
    footer {
    	margin-top: 8rem;
        padding: 3rem 0 2rem;
    }
}

footer .logo {
	width: 160px;
	margin: 0 auto;
}
footer .sns {
	margin: 3rem auto;
	text-align: center;
}
footer .txt {
	margin: 0 auto;
	text-align: center;
}
footer .copy {
	display: block;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
}
@media (max-width: 767px) {
	footer .logo {
		width: 140px;
	}
    footer .copy {
    	font-size: 1rem;
    }
}

footer ul.f-list {
	max-width: 170px;
    margin: 4rem auto 3rem;
    font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
footer ul.f-list li {
	position: relative;
	padding-left: 4rem;
}
footer ul.f-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 767px) {
	footer ul.f-list {
		margin: 3rem auto 2rem;
	}
}
@media (max-width: 480px) {
	footer ul.f-list {
		max-width: 150px;
		font-size: 1.3rem;
	}
}

/*-------------------------------
 * 7. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.8;
  transition: 0.5s;
}

/*--------- 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);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  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);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  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;
}

@-webkit-keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes bg-left {
	0% {
		opacity: 0;
		transform: scaleX(0);
	}
	100% {
		opacity: 1;
		transform: scaleX(1);
	}
}
@keyframes bg-left {
	0% {
		opacity: 0;
		transform: scaleX(0);
	}
	100% {
		opacity: 1;
		transform: scaleX(1);
	}
}
