@charset "UTF-8";
/*=======================
 基本設定               
=======================*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.8;
  text-align: left;
  font-family: "Meiryo", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}

a {
  color: #000000;
  text-decoration: none;
}

a[target="_blank"]::after {
  content: "open_in_new";
  display: inline-block;
  vertical-align: middle;
  font-family: "Material Icons";
  font-size: 0.875rem;
  margin-left: 3px;
}

img {
  max-width: 100%;
}

img[src$=".svg"] {
  width: auto;
  height: auto;
}

ul li {
  list-style: none;
}

/*=======================
   Header
=======================*/
#header {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

#header.is-fixed {
  box-shadow: 0 0 4px -2px #000000;
}

#header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0 30px;
}

#header .header__inner--right {
  display: flex;
  align-items: center;
}

#header .header__inner--right .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #99b53f;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

#header .header__inner--right .tel::before {
  content: "\e0cd";
  font-family: "Material Icons";
  color: #ffffff;
}

#header .header__inner--right .tel span {
  display: none;
  font-family: Futura, "Century Gothic", "Questrial", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}

#header .header__inner--right .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #99b53f;
  width: 40px;
  height: 40px;
}

#header .header__inner--right .contact::before {
  content: "\e0be";
  font-family: "Material Icons";
  color: #ffffff;
}

#header .header__inner--right .contact span {
  display: none;
  font-family: "新ゴ B";
  color: #ffffff;
}

#header .header__logo {
  margin-right: 15px;
}

#header .header__logo a {
  display: block;
}

/*---ハンバーガーメニュー---*/
#menu__btn {
  height: 24px;
  position: absolute;
  right: 30px;
  top: 40px;
  width: 30px;
  z-index: 1100;
}

#menu__btn .menu__trigger {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}

#menu__btn .menu__trigger span {
  background-color: #ffffff;
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: all 0.35s ease-in-out;
}

#menu__btn .menu__trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .35s ease-in-out;
}

#menu__btn .menu__trigger span:nth-of-type(1) {
  top: 0px;
  width: 100%;
}

#menu__btn .menu__trigger span:nth-of-type(2) {
  top: 10px;
  width: 100%;
}

#menu__btn .menu__trigger span:nth-of-type(3) {
  top: 20px;
  width: 100%;
}

/*---グローバルナビ---*/
.global-menu {
  background-color: #fff06d;
  height: 100%;
  left: 0;
  padding-top: 70;
  position: fixed;
  top: 0;
  width: 100%;
  overflow: auto;
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}

.global-menu ul {
  list-style: none;
}

.global-menu ul li a {
  display: block;
  padding: 30px 0;
  font-family: Futura, "Century Gothic", "Questrial", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
  transition: all .35s ease-in-out;
}

.global-menu .material-icons {
  display: none;
}

/*---アニメーション---*/
.is-fixed #menu__btn .menu__trigger span {
  background-color: #000000;
}

.is-fixed #menu__btn .menu__trigger span::after {
  background-color: #000000;
}

.is-menuOpen #menu__btn .menu__trigger span {
  background-color: #ffffff;
}

.is-menuOpen #menu__btn .menu__trigger span:nth-of-type(1) {
  transform: translate(50%) scale(0);
}

.is-menuOpen #menu__btn .menu__trigger span:nth-of-type(2) {
  transform: rotate(45deg);
}

.is-menuOpen #menu__btn .menu__trigger span:nth-of-type(2)::after {
  transform: rotate(90deg);
  background-color: #ffffff;
}

.is-menuOpen #menu__btn .menu__trigger span:nth-of-type(3) {
  transform: translate(-50%) scale(0);
}

.is-menuOpen .global-menu {
  opacity: 1;
  visibility: visible;
}

/*=======================
   Contents
=======================*/
main {
  display: block;
  overflow: hidden;
  margin-top: 70px;
}

.marker {
  background: linear-gradient(transparent 70%, #fff06d 70%);
}

/*=======================
   Footer
=======================*/
#footer {
  width: 100%;
}

#footer .footer__inner {
  background-color: #333333;
  color: #ffffff;
  position: relative;
  text-align: center;
  padding: 50px 0;
  z-index: -1;
}

/*=======================
   Page Top
=======================*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 30px;
  z-index: 1;
  transition: opacity 0.35s ease-in-out;
  opacity: 0;
}

#page-top img {
  width: 60px;
}

#page-top.is-show {
  opacity: 1;
}

/*=======================
   Margin
=======================*/
.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

/*=======================
   Align
=======================*/
.ta-C {
  text-align: center !important;
}

.ta-L {
  text-align: left !important;
}

.ta-R {
  text-align: right !important;
}

/*=======================
   Visible Hidden
=======================*/
.hidden-small {
  display: none;
}

.hidden-large {
  display: block;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  #header .header__inner {
    height: 85px;
    padding: 0 50px;
  }
  #header .header__inner--right .tel {
    background-color: transparent;
    height: auto;
    width: auto;
    margin-right: 25px;
  }
  #header .header__inner--right .tel::before {
    color: #99b53f;
    font-size: 1.5rem;
  }
  #header .header__inner--right .tel span {
    display: block;
    margin-left: 5px;
    font-size: 1.625rem;
  }
  #header .header__inner--right .contact {
    transition: background-color .35s ease-in-out;
    height: 50px;
    width: auto;
    padding: 0 15px;
  }
  #header .header__inner--right .contact:hover {
    background-color: #647e15;
  }
  #header .header__inner--right .contact span {
    font-size: 0.875rem;
    display: block;
    margin-left: 5px;
  }
  #menu__btn {
    display: none;
  }
  .global-menu {
    position: relative;
    flex-grow: 1;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    padding: 0;
    width: auto;
    left: auto;
    top: auto;
  }
  .global-menu ul {
    display: flex;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .global-menu ul li a {
    color: #ffffff;
    font-size: 1.125rem;
    padding: 0 30px 0;
  }
  .global-menu ul li:last-of-type a {
    padding: 0 0 0 30px;
  }
  main {
    margin-top: 85px;
  }
  .hidden-small {
    display: block;
  }
  .hidden-large {
    display: none;
  }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {
  #header .header__logo img {
    height: 35px;
  }
  .mbPc0 {
    margin-bottom: 0px !important;
  }
  .mbPc10 {
    margin-bottom: 10px !important;
  }
  .mbPc20 {
    margin-bottom: 20px !important;
  }
  .mbPc30 {
    margin-bottom: 30px !important;
  }
  .mbPc40 {
    margin-bottom: 40px !important;
  }
  .hidden-small {
    display: block;
  }
  .hidden-medium {
    display: none;
  }
}
