@font-face {
  font-family: 'ShipporiMincho';
  font-weight: normal;
  font-display: swap;
  src: local('ShipporiMincho'),
       url(../font/ShipporiMincho-Medium.woff2) format('woff2'),
       url(../font/ShipporiMincho-Medium.woff) format('woff');
}
@font-face {
  font-family: 'ShipporiMincho';
  font-weight: bold;
  font-display: swap;
  src: local('ShipporiMincho'),
       url(../font/ShipporiMincho-SemiBold.woff2) format('woff2'),
       url(../font/ShipporiMincho-SemiBold.woff) format('woff');
}
:root {
  --c-green: #69821b;
}
body {
  color: #000;
  font: 1.5rem/2.66 'ShipporiMincho','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-weight: normal;
}
.f-serif {
  font-family: 'ShipporiMincho','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.column ~ .column {
  margin-top: 45px;
}
.body {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width:768px) {
  html { font-size:9px }
  .column ~ .column {
    margin-top: 30px;
  }
}
@media (max-width:320px) {
  html { font-size:8.5px }
}
@media print {
  body { width:1200px }
}

.js-tel a {
  color: inherit;
}
a.link {
  color: #ccc;
}
a.link img {
  transition: .2s;
}
a.link:hover img {
  opacity: .9;
}

svg {
  fill: currentColor;
}

.js-scrollable {
  overflow: hidden;
}

/* ****************************************************************************************************
   * header
**************************************************************************************************** */

@media (max-width:960px) {
  .header-pc {
    display: none !important;
  }
}
@media (min-width:961px) {
  .header-sp {
    display: none !important;
  }
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 120px;
  background: #fff;
}
#header .body {
  max-width: 1200px;
  height: 100%;
}
@media (max-width:960px) {
  #header {
    height: 50px;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
  }
  #header .logo img {
    width: auto !important;
    height: 40px;
    margin-top: 5px;
  }
}

#global-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#global-nav ul.sf-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#global-nav ul li a {
  display: block;
  text-align: center;
  padding: .5em;
  padding-top: .6em;
  transition: .2s;
}
#global-nav ul li a:not(.btn-1):hover {
  color: var(--c-green);
}
#global-nav .btn-1 {
  font-size: 1.8rem;
}

@media (max-width:960px) {
  #global-nav {
    display: block;
    position: fixed;
    top: 50px;
    right: -100%;
    bottom: 0;
    z-index: 9998;
    width: 100%;
    height: auto;
    overflow-y: auto;
    background: #fff;
    transition: .5s right;
  }
  .nav-active #global-nav {
    right: 0;
  }
  #global-nav ul.sf-menu {
    display: block;
  }
  #global-nav ul.sf-menu > li {
    border-bottom: 1px solid #f2f2f2;
  }
  #global-nav ul.sf-menu > li .btn-1 {
    display: flex;
    align-items: center;
    margin: .5em auto;
  }
  #global-nav ul.sf-menu > li > a {
    padding: .5em;
  }
}

/* ****************************************************************************************************
   * main
**************************************************************************************************** */

.page-lower #visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f2f2f2;
}
.page-lower #visual .title img {
  width: 50px;
}
@media (max-width:768px) {
  .page-lower #visual {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .page-lower #visual .title img {
    width: 45px;
  }
}

#main {
  line-height: 2;
}

/* ****************************************************************************************************
   * footer
**************************************************************************************************** */

#footer .reserve {
  color: #fff;
  padding: 100px 10px;
  background: url("../images/common/reserve-bg.jpg") center center /cover no-repeat #000;
  margin: 100px 0;
}
#footer .reserve .section-title img {
  width: 160px;
}
@media (max-width:768px) {
  #footer .reserve .section-title img {
    width: calc(160px * 0.8);
  }
}
#footer .reserve ul {
  max-width: 540px;
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
}
#footer .reserve ul li {
  width: 48%;
}
#footer .reserve .btn-1 {
  width: 100%;
  background: transparent;
  border-color: #fff;
}
#footer .reserve .btn-1:hover {
  color: #69821b;
  background: #fff;
  opacity: 1;
}
@media (max-width:768px) {
  #footer .reserve {
    padding: 45px 20px;
    margin: 45px 0;
  }
  #footer .reserve ul {
    display: block;
  }
  #footer .reserve ul li {
    width: 100%;
  }
  #footer .reserve ul li ~ li {
    margin-top: 20px;
  }
}

#footer .footer {
  display: flex;
  padding-top: 50px;
  border-top: 1px solid var(--c-green);
}
#footer .footer .info {
  width: 50%;
  display: flex;
}
#footer .footer .info .title {
  margin-right: 2em;
}
#footer .footer .info a {
  transition: .2s;
}
#footer .footer .info a:hover {
  color: var(--c-green);
}
#footer .footer .nav {
  width: 50%;
}
#footer .footer .nav ul {
  display: flex;
  justify-content: space-between;
}
#footer .footer .nav ul a {
  transition: .2s;
}
#footer .footer .nav ul a:hover {
  color: var(--c-green);
}
@media (max-width:768px) {
  #footer .footer {
    display: block;
    padding-top: 30px;
  }
  #footer .footer .info {
    width: 100%;
    justify-content: center;
  }
  #footer .footer .nav {
    width: 100%;
    margin-top: 20px;
  }
  #footer .footer .nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  #footer .footer .nav ul li {
    margin: 0 1em;
  }
}
@media (max-width:540px) {
  #footer .footer .info {
    display: block;
    text-align: center;
  }
  #footer .footer .info address {
    margin-top: .5em;
  }
}
#footer .copyright {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 50px;
}
#footer .copyright ul.sns li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}
@media (max-width:540px) {
  #footer .copyright {
    display: block;
    text-align: center;
  }
  #footer .copyright ul.sns {
    margin-bottom: 20px;
  }
  #footer .copyright ul.sns li {
    margin-left: 1em;
  }
}

#pagetop {
  position: fixed;
  right: 90px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--c-green);
  visibility: hidden;
  opacity: 0;
  z-index: 9998;
  transition: .2s;
}
.js-scroll #pagetop {
  opacity: .8;
  visibility: visible;
}
#pagetop:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: -5px;
  margin-left: -10px;
}
#pagetop:hover {
  opacity: 1;
}
@media (max-width:768px) {
  #pagetop {
    right: 73px;
    bottom: 8px;
  }
}

@media (max-width:768px) {
  #footer .footer {
    padding-top: 30px;
  }
  #sp-footer-nav {
    position: webkit-sticky;
    position: sticky;
    left: 0;
    bottom: 0;
    z-index: 9998;
    width: 100%;
  }
  #sp-footer-nav ul {
    width: 100%;
    display: table;
  }
  #sp-footer-nav ul li {
    display: table-cell;
  }
  #sp-footer-nav ul li a {
    display: block;
    text-align: center;
  }
  #sp-footer-nav ul li a img {
    max-height: 60px;
  }
}
