@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	box-shadow: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::before,
::after {
	box-sizing: border-box;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, cite, em, small, img, picture, dl, dt, dd, ol, ul, li, label, fieldset, legend, table, tr, th, td, hr, input, textarea,
main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, time { 
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-style: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

iframe, cite, main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, picture, audio, video { 
	display: block;
}

body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

svg {
	overflow: hidden;
	max-width: 100%;
	vertical-align: middle;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

table {
	border-spacing: 0;
}

input, textarea, select, button {
	border: 0;
	border-radius: inherit;
	background: none;
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

textarea {
	overflow: auto;
}

input:not([type="checkbox"]):not([type="radio"]), textarea, button {
	-webkit-appearance: none;
}

time {
	display: inline-block;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ベース
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
:root {
	--color-black:      #030303;
	--color-white:      #fcfcfc;
	--color-beige:      #ad996f;
	--color-gray:       #a0a0a0;
	--color-gray-light: #f2f2f2;

	--font-main:        "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "BIZ UDPMincho", "Noto Serif CJK JP", "MS PMincho", serif;
	--font-english:     "Libre Baskerville", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "BIZ UDPMincho", "Noto Serif CJK JP", "MS PMincho", serif;
}

html {
	font-size: 62.5%;
}

body {
	overflow: hidden scroll;
	background: var(--color-white);
	color: var(--color-black);
	font-weight: 500;
	font-size: 1.4em;
	font-family: var(--font-main);
	line-height: 1.85;
}

main {
	overflow: hidden;
}

section,
.section {
	padding: 80px 0;
}

.inner {
	max-width: 1244px;
	margin: 0 auto;
	padding: 0 6.4%;
}

span:not([class]) {
	display: inline-block;
}

h1,
h2,
h3 {
	font-weight: 800;
}

p:not([class]) + p:not([class]) {
	margin-top: 1.5em;
}

a,
a::before,
a::after {
	transition: 0.3s ease-in-out;
}

a[href^="http"] {
	color: var(--color-gray);
	word-break: break-all;
}

a[href^="http"]:hover {
	color: var(--color-beige);
}

iframe {
	max-width: 100%;
}

table {
	width: 100%;
}

th {
	font-weight: inherit;
	text-align: left;
	vertical-align: top;
}

td {
	text-align: left;
	vertical-align: top;
}

tr:not(:first-child) th,
tr:not(:first-child) td {
	border-top: none;
}

button,
input[type="button"],
input[type="submit"] {
	cursor: pointer;
	transition: 0.3s ease-in-out;
}

button::before,
button::after {
	transition: 0.3s ease-in-out;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
	width: 100%;
	height: 32px;
	padding: 0 1em;
	background: #f5f5f5;
}

input[type="checkbox"],
input[type="radio"] {
	margin-right: 0.5em;
}

textarea {
	width: 100%;
	padding: 1em;
	background: #f5f5f5;
}

@media (min-width: 768px) {
body {
	line-height: 2;
	font-size: 1.6em;
}

section,
.section {
	padding: 140px 0;
}

.inner {
	padding: 0 30px;
}

a[href^="tel:"] {
	pointer-events: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@keyframes fade-up {
0% {
	opacity: 0;
	transform: translateY(30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-down {
0% {
	opacity: 0;
	transform: translateY(-30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-zoom-in {
0% {
	opacity: 0;
	transform: scale(0.9);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes fade-zoom-out {
0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes show-bottom {
0% {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

@keyframes show-left {
0% {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

.animation {
	animation-duration: 0.6s;
	animation-timing-function: ease-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.fade,
.fade-up,
.fade-down,
.fade-right,
.fade-left,
.fade-zoom-in,
.fade-zoom-out {
	opacity: 0;
}

.show-bottom {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

.show-left {
	animation-timing-function: cubic-bezier(0.5, 0.1, 0.5, 1);
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

.load .animation.fade {
	animation-name: fade;
}

.load .animation.fade-up {
	animation-name: fade-up;
}

.load .animation.fade-down {
	animation-name: fade-down;
}

.load .animation.fade-right {
	animation-name: fade-right;
}

.load .animation.fade-left {
	animation-name: fade-left;
}

.load .animation.fade-zoom-in {
	animation-name: fade-zoom-in;
}

.load .animation.fade-zoom-out {
	animation-name: fade-zoom-out;
}

.load .animation.show-bottom {
	animation-name: show-bottom;
}

.load .animation.show-left {
	animation-name: show-left;
}

.delay05 {
	animation-delay: 0.5s;
}

.delay06 {
	animation-delay: 0.6s;
}

.delay07 {
	animation-delay: 0.7s;
}

.delay09 {
	animation-delay: 0.9s;
}

.delay12 {
	animation-delay: 1.2s;
}

@media (min-width: 768px) {
@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-header {
	height: 284px;
	background: url("../img/common/header.jpg") center center no-repeat;
	background-size: cover;
}

.page-header .inner {
	display: flex;
	height: 100%;
	align-items: center;
}

.page-heading {
	color: var(--color-white);
	font-size: 3.2rem;
}

.page-heading-english {
	display: block;
	margin-bottom: 0.3em;
	font-weight: 400;
	font-size: 1.1rem;
	font-family: var(--font-english);
}

.page-heading-japanese {
	display: block;
	line-height: 1.3;
}

.section-heading {
	margin-bottom: 0.5em;
	line-height: 1.3;
}

.heading_border {
	position: relative;
	margin-bottom: 20px;
	padding-left: 20px;
	letter-spacing: 0.12em;
}

.heading_border::before {
	position: absolute;
	top: 1em;
	left: 0;
	width: 12px;
	border-top: 1.5px solid;
	content: "";
}

@media (min-width: 768px) {
.page-header {
	height: 512px;
}

.page-heading {
	font-size: 5.6rem;
}

.page-heading-english {
	font-size: 1.9rem;
}

.heading_border {
	margin-bottom: 38px;
	padding-left: 35px;
	font-size: 1.8rem;
}

.heading_border::before {
	width: 23px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.button {
	display: table;
	min-width: 136px;
	max-width: 100%;
	margin: 2.8em auto 0;
	padding: 5px 1em;
	border: 1.5px solid var(--color-black);
	background: var(--color-black);
	color: var(--color-white);
	text-align: center;
}

.button:hover {
	background: var(--color-white);
	color: var(--color-black);
}

@media (min-width: 768px) {
.button {
	min-width: 144px;
	padding: 3px 1em;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
テーブル
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.table_border th {
	padding: 9px 15px;
	border-top: 1.5px solid;
	border-bottom: 1.5px solid;
}

.table_border td {
	padding: 9px 15px;
	border-top: 1.5px solid var(--color-gray-light);
	border-bottom: 1.5px solid var(--color-gray-light);
}

@media (min-width: 768px) {
.table_border th {
	padding: 15px;
}

.table_border td {
	padding: 15px;
}
}

@media (max-width: 767.9px) {
.table_block th {
	display: block;
}

.table_block td {
	display: block;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.align-center {
	text-align: center;
}

.block-center {
	display: table;
	margin-right: auto;
	margin-left: auto;
}

li.spacer {
	margin-bottom: 0;
}

.hover-effect {
	position: relative;
	z-index: 0;
}

.hover-effect::before {
	opacity: 0.1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: var(--color-black);
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s ease-in-out;
}

.hover-effect:hover::before {
	transform: scaleX(1);
	transform-origin: left center;
}

@media (min-width: 768px) {
.hover-effect::before {
	transition-duration: 0.4s;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: var(--color-black);
	transition: 0.8s ease-in-out;
	justify-content: center;
	align-items: center;
}

.loader.hide {
	visibility: hidden;
	opacity: 0;
}

.loader-bar {
	position: relative;
	width: 60px;
	height: 60px;
}

@keyframes loader {
0%,
100% { 
	transform: scale(0);
} 50% { 
	transform: scale(1);
}
}

.loader-bar::before,
.loader-bar::after {
	opacity: 0.6;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	background: var(--color-white);
	content: "";
	animation: loader 2s ease-in-out infinite;
}

.loader-bar::after {
	animation-delay: -1s;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	position: relative;
	z-index: 4;
}

header.change:not(.open) {
	mix-blend-mode: difference;
}

.header-inner {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	max-width: none;
	height: 70px;
	color: var(--color-white);
	justify-content: space-between;
	align-items: center;
}

.header-logo {
	margin-right: 30px;
	flex: none;
}

.header-logo:hover {
	opacity: 0.7;
}

.header-heading {
	font-size: 0.8rem;
}

.header-menu-link:hover {
	opacity: 0.7;
}

.header-submenu-link {
	display: flex;
	padding: 2px 0 2px 8px;
	align-items: center;
}

.header-submenu-link:hover {
	opacity: 0.7;
}

.header-overlay {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: var(--color-black);
	transition: 0.3s ease-in-out;
}

.header-overlay.show {
	visibility: visible;
	opacity: 0.6;
}

@media (min-width: 768px) {
.header-inner {
	height: 110px;
}

.header-heading {
	font-size: 1.2rem;
}

.header-nav {
	width: 530px;
}

.header-menu-ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-menu-li {
	position: relative;
}

.header-menu-contact a {
	padding: 3px 23px;
	border: 1px solid var(--color-white);
}

.header-menu-toggle {
	padding: 10px 0;
}

.header-menu-toggle::after {
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	margin-left: 0.5em;
	border-right: 1px solid;
	border-bottom: 1px solid;
	content: "";
	transform: translateY(-3px) rotate(45deg);
}

.header-menu-li:hover .header-menu-toggle::after {
	transform: translateY(1px) scaleY(-1) rotate(45deg);
}

.header-submenu-ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 168px;
	border: 1px solid;
	transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header-menu-li:hover .header-submenu-ul {
	visibility: visible;
	opacity: 1;
}

.header-submenu-li:not(:last-child) {
	border-bottom: 1px solid;
}

.header-submenu-link {
	display: block;
	padding: 3px 11px;
}

.header-toggle {
	display: none;
}
}

@media (max-width: 767.9px) {
.header-inner {
	padding: 0 11px 0 16px;
}

.header-logo img {
	width: 92px;
}

.header-nav {
	position: fixed;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	z-index: 3;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40%;
	min-width: 250px;
	padding: 58px 40px 50px;
	background: var(--color-black);
	transform: translateX(100%);
}

header.open .header-nav {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

.header-menu-li {
	border-bottom: 1.5px solid #464646;
}

.header-menu-link {
	display: block;
	padding: 16px 0;
}

.header-submenu-ul {
	margin-bottom: 15px;
}

.header-submenu-link::before {
	width: 12px;
	margin-right: 8px;
	border-top: 1px solid;
	content: "";
	flex: none;
}

.header-toggle {
	position: relative;
	z-index: 3;
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}

.header-toggle:hover {
	opacity: 0.7;
}

.header-toggle-bar {
	position: absolute;
	right: 5px;
	border-top: 1.5px solid;
	transition: 0.3s ease-in-out;
}

.header-toggle-bar:nth-child(1) {
	top: 15px;
	width: 40px;
}

.header-toggle-bar:nth-child(2) {
	top: 24px;
	width: 24px;
}

.header-toggle-bar:nth-child(3) {
	top: 33px;
	width: 8px;
}

header.open .header-toggle-bar:nth-child(1) {
	top: 24px;
	width: 30px;
	transform: rotate(-45deg);
}

header.open .header-toggle-bar:nth-child(2) {
	transform: scale(0, 1);
}

header.open .header-toggle-bar:nth-child(3) {
	top: 24px;
	width: 30px;
	transform: rotate(45deg);
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.footer-shop {
	display: block;
	background: url("../img/common/shop-background.jpg") center center no-repeat;
	background-size: cover;
	color: var(--color-white);
	text-align: center;
}

.footer-shop .section-heading {
	display: inline-block;
	border-bottom: 1px solid;
	font-size: 3.6rem;
}

.footer-shop .section-description {
	margin-bottom: 1.9em;
}

.footer-contact {
	display: block;
	background: var(--color-white);
	text-align: center;
}

.footer-contact .section-heading {
	display: inline-block;
	border-bottom: 1px solid;
	color: var(--color-beige);
	font-weight: 400;
	font-size: 3.7rem;
	font-family: var(--font-english);
}

.footer-contact .section-description {
	margin-bottom: 1.9em;
}

.footer-menu {
	padding: 33px 0;
	background: var(--color-black);
	color: var(--color-white);
}

.footer-menu .inner {
	display: flex;
	max-width: none;
	align-items: center;
}

.footer-logo:hover {
	opacity: 0.7;
}

.footer-menu-link {
	padding: 5px 0;
}

.footer-menu-link:hover {
	opacity: 0.7;
}

.footer-submenu-link {
	display: inline-flex;
	padding: 2px 0 2px 8px;
	align-items: center;
}

.footer-submenu-link:hover {
	opacity: 0.7;
}

.footer-copyright {
	font-weight: 400;
	font-size: 1rem;
	font-family: var(--font-english);
}

@media (min-width: 768px) {
.footer-shop .section-heading {
	font-size: 5.6rem;
}

.footer-contact .section-heading {
	font-size: 7rem;
}

.footer-menu {
	padding: 45px 0;
}

.footer-menu-ul {
	display: flex;
	margin-right: -40px;
	flex-flow: wrap;
	justify-content: center;
}

.footer-menu-li {
	position: relative;
	margin-right: 40px;
}

.footer-menu-link {
	padding: 10px 0;
}

.footer-menu-toggle::after {
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	margin-left: 0.5em;
	border-right: 1px solid;
	border-bottom: 1px solid;
	content: "";
	transform: translateY(-3px) rotate(45deg);
}

.footer-menu-li:hover .footer-menu-toggle::after {
	transform: translateY(1px) scaleY(-1) rotate(45deg);
}

.footer-submenu-ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;
	min-width: 168px;
	border: 1px solid;
	background: var(--color-black);
	transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.footer-menu-li:hover .footer-submenu-ul {
	visibility: visible;
	opacity: 1;
}

.footer-submenu-li:not(:last-child) {
	border-bottom: 1px solid;
}

.footer-submenu-link {
	display: block;
	padding: 3px 11px;
}

.footer-copyright {
	font-size: 1.4rem;
}
}

@media (min-width: 1024px) {
.footer-menu {
	padding-bottom: 120px;
}

.footer-menu .inner {
	justify-content: space-between;
}

.footer-logo {
	margin-right: auto;
}

.footer-menu-ul {
	margin-right: 0;
}
}

@media (max-width: 1023.9px) {
.footer-menu .inner {
	flex-flow: column;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-menu-ul {
	margin-bottom: 35px;
}
}

@media (max-width: 767.9px) {
.footer-logo img {
	width: 92px;
}

.footer-submenu-ul {
	margin-bottom: 10px;
}

.footer-submenu-link::before {
	width: 12px;
	margin-right: 8px;
	border-top: 1px solid;
	content: "";
	flex: none;
f}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
パンくずリスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.breadcrumb {
	overflow: auto;
	padding: 1em 0;
	border-bottom: 1.5px solid var(--color-gray-light);
	background: var(--color-white);
	white-space: nowrap;
}

.breadcrumb ul {
	display: flex;
}

.breadcrumb li {
	display: flex;
	align-items: center;
}

.breadcrumb li:nth-last-child(n+2)::after {
	width: 0.5em;
	height: 0.5em;
	margin: 0 0.6em 0 0.4em;
	border-top: 1px solid;
	border-right: 1px solid;
	content: "";
	transform: rotate(45deg);
}

.breadcrumb li a:hover {
	color: var(--color-beige);
}

@media (max-width: 767.9px) {
.breadcrumb {
	font-size: 1.2rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- バナーリンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.banner-link {
	display: block;
	position: relative;
	z-index: 0;
	height: 230px;
	padding: 38px 24px 24px 32px;
	background: center center no-repeat;
	background-size: cover;
}

.banner-link::before {
	opacity: 0.2;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: var(--color-black);
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s ease-in-out;
}

.banner-link:hover::before {
	transform: scaleX(1);
	transform-origin: left center;
}

.banner-link::after {
	position: absolute;
	right: 24px;
	bottom: 24px;
	width: 40px;
	height: 40px;
	background: url("../img/common/arrow-white.svg") center center no-repeat;
	background-size: contain;
	content: "";
}

.banner-heading-english {
	display: block;
	font-weight: 400;
	font-size: 1.2rem;
	font-family: var(--font-english);
}

.banner-heading-japanese {
	display: block;
	font-size: 2rem;
	line-height: 1.7;
}

@media (min-width: 768px) {
.banner-link {
	height: 400px;
	padding: 93px 40px 40px 64px;
}

.banner-link::after {
	right: 40px;
	bottom: 40px;
	width: 56px;
	height: 56px;
}

.banner-heading-english {
	font-size: 1.5rem;
}

.banner-heading-japanese {
	font-size: 3.2rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- 動画
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.video-ul {
	overflow-y: auto;
	max-height: 560px;
}

.video-li:not(:last-child) {
	margin-bottom: 16px;
}

.video-inner {
	position: relative;
	padding-top: 56.25%;
}

.video-li iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-description {
	display: table;
	margin: 1em auto 0;
	line-height: 1.6;
}

@media (min-width: 768px) {
.video-li:not(:last-child) {
	margin-bottom: 25px;
}
}
