@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Noto+Sans+TC:wght@200;400;600;700;900&family=Lato:wght@300;400;600&display=swap');
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */ :root {
  --default-font: 'Lato', 'Noto Sans TC', "微軟正黑體", 'Microsoft JhengHei', sans-serif;
  --heading-font: 'Lato', 'Noto Sans TC', "微軟正黑體", 'Microsoft JhengHei', sans-serif;
  --nav-font: 'Lato', 'Noto Sans TC', "微軟正黑體", 'Microsoft JhengHei', sans-serif;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */ :root {
  --background-color: #2C98C7; /* Background color for the entire website, including individual sections */
  --default-color: #333333; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ec6941; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FFE60E; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */ :root {
  --nav-color: #76593a; /* The default color of the main navmenu links */
  --nav-hover-color: #A56520; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #f5ce2f; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #76593a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #A56520; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #d4c6bc;
  --surface-color: #333333;
}
.dark-background {
  --background-color: #7d6255;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #9e9e9e;
  --contrast-color: #ffffff;
}
/* Smooth scroll */ :root {
  scroll-behavior: smooth;
}
::selection {
  background: #f09845;
  color: #fff;
}
::-moz-selection {
  background: #f09845;
  color: #fff;
}
:root {
  scroll-padding-top: 70px;
}
@media (max-width: 465px) {
  :root {
    scroll-padding-top: 60px;
  }
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  background-position: center top;
  background-repeat: repeat-y;
  font-size: 20px;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  body {
    font-size: 18px;
  }
}
@media (max-width: 567px) {
  body {
    font-size: 18px;
  }
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f5ce2f;
  --default-color: #76593a;
  --heading-color: #76593a;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
	margin:30px 0 0 0 ;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  padding-right: 10px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 4700;
  color: var(--heading-color);
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: hsla(48, 91%, 57%, 0.90);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu ul li img {
    max-height: 50px;
    margin-right: 10px;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 4px 15px;
    font-size: 20px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 15px;
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu ul img {
    margin-right: 16px;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
@media (max-width: 576px) {
  .navmenu ul li img {
    max-height: 50px;
    margin-right: 10px;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #333;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  position: relative;
}
.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}
.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}
.footer .social-links {
  margin: 0 0 30px 0;
}
.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}
.footer .social {
  font-size: 13px;
  line-height: 160%;
}
.footer .social a {
  color: var(--contrast-color);
}
.footer .social a:hover {
  text-decoration: none;
  color: var(--accent-color);
}
.footer .copyright {
  padding-top: 10px;
  font-size: 11px;
  line-height: 160%;
}
.footer .copyright a {
  color: var(--contrast-color);
}
.footer .copyright a:hover {
  text-decoration: none;
  color: var(--accent-color);
}
.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--heading-color);
  color: var(--accent-color);
  font-size: 20px;
  width: 60px;
  height: 60px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 50px;
  color: var(--accent-color);
  line-height: 0;
}
.scroll-top:hover {
  /*background-color: color-mix(in srgb, var(--heading-color), transparent 0%);*/
  color: var(--accent-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 576px) {
  .scroll-top {
    right: 20px;
    bottom: 40px;
    width: 50px;
    height: 50px;
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.main {
  background-image: url("../img/main.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 1020px;
}
.page-title {
  color: var(--default-color);
  padding: 100px 0 80px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 1024px) {
  .main {}
}
@media (max-width: 576px) {
  .main {
    background-image: url("../img/main_s.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 880px;
  }
  .page-title {
    padding: 100px 0 0 0;
  }
}
/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
.section {
  background-image: url("../img/texture.jpg");
  background-color: #ffe163;
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}
.portfolio .portfolio-content img {
  transition: 0.3s;
}
.portfolio .portfolio-content .portfolio-info {
  opacity: 1;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}
.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}
.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.portfolio .portfolio-content .portfolio-info .preview-link, .portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 30px);
  font-size: 56px;
  top: calc(50% - 36px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}
.portfolio .portfolio-content .portfolio-info .preview-link:hover, .portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}
.portfolio .portfolio-content:hover .portfolio-info {
  opacity: .8;
}
.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .portfolio .portfolio-content .portfolio-info {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
  }
  .portfolio .portfolio-content .portfolio-info .preview-link, .portfolio .portfolio-content .portfolio-info .details-link {
    position: absolute;
    left: calc(50% - 20px);
    font-size: 40px;
    top: calc(50% - 24px);
    color: #fff;
    transition: 0.3s;
    line-height: 1.2;
  }
}
/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
#news {
  background-image: url("../img/bgpic01.png");
  background-position: center;
  background-repeat: no-repeat;
}
#news ul li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 10px;
  list-style: none;
}
#news ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}
#news ul li:nth-child(1)::before {
  background-image: url("../img/num01.png");
}
#news ul li:nth-child(2)::before {
  background-image: url("../img/num02.png");
}
#news ul li:nth-child(3)::before {
  background-image: url("../img/num03.png");
}
#news ul li .title {
  font-size: 1em;
  line-height: 1.5;
  color: #279acc;
}
#news ul li .description {
  font-size: 0.8em;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#news ul li a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}
#news ul li:last-child .description {
  border-bottom: none;
}
@media (max-width: 768px) {
  #news ul {
    padding-left: 0;
  }
}
/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
#feature {
  background-image: url("../img/bgpic02.png");
  background-position: center 60%;
  background-repeat: no-repeat;
}
#feature .pointer01 {
  position: absolute;
  bottom: 1%;
  right: 1%;
}
#feature .pointer02 {
  position: absolute;
  bottom: -1%;
  right: 42%;
}
@media (max-width: 768px) {
  #feature .pointer02 {
    position: absolute;
    bottom: -10%;
    right: 40%;
  }
}
@media (max-width: 576px) {
  #feature .pointer02 {
    position: absolute;
    bottom: 1%;
    left: 20%;
  }
}
/*--------------------------------------------------------------
# Read Section
--------------------------------------------------------------*/
#read {
  background-image: url("../img/bg02.jpg");
}
#read .card {
  position: relative;
  margin-top: -40px;
  border: 0px;
  border-radius: 35px;
  padding: 45px 0 0 0;
  z-index: 1;
}
#read .title {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  #read .title {
    width: 65%;
    margin: 0 auto;
  }
  #read .card {
    margin-top: -30px;
    padding: 35px 0 0 0;
  }
}
@media (max-width: 576px) {
  #read .title {
    width: 60%;
    margin: 0 auto;
  }
  #read .card {
    margin-top: -30px;
    padding: 35px 0 0 0;
  }
}
.readtitle {
  font-size: 1.05em;
  font-weight: 600;
}
.info {
  font-size: 0.85em;
  line-height: 1.5;
  font-weight: 400;
}
.read {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.read img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.read .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.read:hover .overlay {
  opacity: 0;
}
.read:hover img {
  transform: scale(1.1);
}
.read .eye-icon {
  width: 86px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.read .eye-icon:hover {
  transform: scale(1.2);
}
/*--------------------------------------------------------------
# Books Section
--------------------------------------------------------------*/
.bookname {
  font-size: 1.2em;
  color: #3faf81;
}
.bookinfo {
  font-size: 0.9em;
  text-align: start;
}
.chapter {
  width: 150px;
  height: 150px;
  background-color: #fbb171;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.3em;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .chapter {
    width: 180px;
    height: 180px;
    font-size: 1.7em;
  }
}
.chapter span {
  color: #000000;
  font-size: 0.5em;
  font-weight: 400;
  margin-top: 6px;
}
.chapter02 {
  background-color: #6fcac1;
}
.chapter03 {
  background-color: #7891be;
}
.chapter04 {
  background-color: #e699b4;
}
.chapter05 {
  background-color: #60bdcd;
}
.buy {
  background-color: #f5f3ea;
  font-size: 36px;
  line-height: 1.6;
  color: #000;
}
.buymark {
  background-color: #ffde56;
  padding: 2px;
}
.price {
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.2;
}
.price .btn {
  padding: 6px 30px;
  font-size: 18px;
}
.price a {
  background-color: #d84624;
}
.price02 {
  font-size: 0.4em;
  color: #737373;
  font-weight: 400;
}
.price03 {
  font-size: 1.2em;
  color: #d84624;
}
@media (max-width: 992px) {
  .buy {
    font-size: 27px;
  }
}
@media (max-width: 576px) {
  .buy {
    font-size: 21px;
  }
  .discount {
    width: 80px;
    height: auto;
  }
}
.bookcase {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
}
@media (max-width: 576px) {
  .bookcase {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
  }
  .bookcase p {
    margin-bottom: 10px;
  }
}
.bookcasename {
  font-size: 1.4em;
}
.bookcaseinfo {
  font-weight: 400;
}
.bookcaseprice {
  font-size: 1.1em;
}
.bookcaseprice02 {
  font-size: 1.25em;
  color: #d84624;
}
.tag01 {
  width: 100px;
  height: 100px;
  background-color: #d84624;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.6em;
  line-height: 1.3;
  font-weight: 600;
  position: absolute;
  bottom: -14%;
  left: 2%;
}
.tag02 {
  width: 80px;
  height: 80px;
  background-color: #d84624;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.5em;
  line-height: 1.3;
  font-weight: 600;
  position: absolute;
	padding-bottom: 0.6em;
  top: -12%;
  left: 3%;
}
@media (max-width: 992px) {
  .tag01 {
    width: 84px;
    height: 84px;
    bottom: -16%;
    left: 3%;
  }
}
@media (max-width: 576px) {
  .tag01 {
    width: 50px;
    height: 50px;
    bottom: -30px;
    left: 10px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400px;
  }
  .tag02 {
    width: 50px;
    height: 50px;
    top: auto;
    bottom: -30px;
    left: 10px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400px;
  }
}
.btn {
  letter-spacing: 2px;
}
@media (max-width: 576px) {
  .btn {
    letter-spacing: 0;
    font-size: 15px;
  }
}
.btn-brown {
  color: #fff;
  background-color: #76593a;
  min-width: 120px;
  margin: 4px 6px;
}
.btn-brown:hover {
  color: #fff;
  background-color: #654726;
}
/*--------------------------------------------------------------
# More Section
--------------------------------------------------------------*/
#more {
  background-image: url("../img/bg.jpg");
  background-color: #007161;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.content {
  background-image: url("../img/content_02.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: 100%;
  position: relative;
}
.content::before {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  background-image: url("../img/content_01.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -50px;
  left: 0;
}
.content::after {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  background-image: url("../img/content_03.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.content-re::before {
  content: "";
  display: none;
}
@media (max-width: 768px) {
  .content::before {
    top: -40px;
    left: 0;
  }
  .content::after {
    bottom: -40px;
    left: 0;
  }
}
@keyframes pointer-move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pointer-move-left-up {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.pointer-animation {
  animation: pointer-move 2s infinite ease-in-out;
}
.pointer-move-left-up {
  animation: pointer-move-left-up 2s infinite ease-in-out;
}
.div-hover {
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.div-hover:hover {
  cursor: pointer;
  transform: translateY(-20px);
}
.div-hover:active {
  transform: translateY(20px);
}

 /* share url */          
 #share{display: inline-block;background-color: #000;opacity:0.4;width: 40px;height: 40px;text-align: center;border-radius: 100%;position: fixed;bottom: 50px;right: 0px;transition: background-color .3s, opacity .5s, visibility .5s;z-index: 1000;margin: 30px;}
 #share::after{position: absolute;display: block;font-family: FontAwesome;content: '　';font-weight: normal;font-style: normal;font-size: 2em; line-height: 50px;color: #fff;opacity: 0.5;background: url("../img/share.png") center no-repeat;background-size: 50%;background-position: 50% 35%;}
 #share:hover{cursor: pointer;background-color: #666;}
 #share:active{background-color: #666;}
 @media screen and ( max-width: 991px ){
 #share{bottom:80px;right: 0;margin: 5vw;}
 }                    
 @media screen and ( max-width: 991px ){          
 html{padding-bottom: 80px;}          
 } 