@charset "UTF-8";
/* CSS Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  background: transparent; }

html {
  box-sizing: border-box;
  background: #fff;
  overflow-x: hidden; }

body {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  line-height: 1.6;
  color: #2e2d2d;
  font-weight: 300;
  text-align: justify;
  word-wrap: break-word;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; }

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif; } }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul, li {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*------LINKS------*/
a:link {
  text-decoration: none; }

a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

a:active {
  text-decoration: none; }

/*------フォント関連------*/
.en {
  font-family: 'Roboto', sans-serif; }

/****************************************************
Break Point Settings
****************************************************/
@media (max-width: 1024px) {
  .example {
    background-color: red; } }

@media (max-width: 896px) {
  .example {
    background-color: blue; } }

@media (max-width: 480px) {
  .example {
    background-color: yellow; } }

/****************************************************
Break Point Fonts Settings
****************************************************/
/*

0.833：画面幅960pxのときにフォントサイズ16pxになるような係数
12px：スマホ用ブレイクポイントまでの最小フォントサイズ
*/
html {
  font-size: calc(12px + ((1vw - 480px/100)*0.833)); }
  @media screen and (min-width: 1081px) {
    html {
      font-size: 16px; } }
  @media screen and (max-width: 480px) {
    html {
      font-size: 12px; } }

.h1 {
  font-size: 2rem; }

.h2 {
  font-size: 1.5rem; }

.res {
  font-size: 1rem; }
  @media screen and (max-width: 480px) {
    .res {
      font-size: 1.166rem; } }

/*------カラー定義------*/
/* - - - - - - - - - - - - - - - - - - - -
ページ遷移
- - - - - - - - - - - - - - - - - - - - */
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(24, 74, 72, 0.8);
  z-index: 9999;
  animation: byeShutter 1.6s forwards; }

.shutter::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(5, 186, 180, 0.6);
  width: 0;
  height: 0%;
  animation: shutterOpen 1.6s cubic-bezier(0.93, 0.04, 0.22, 0.86) forwards; }

@keyframes byeShutter {
  0% {
    opacity: 0; }
  5% {
    opacity: 1; }
  95% {
    opacity: 1; }
  100% {
    opacity: 0;
    display: none;
    z-index: -1; } }

@keyframes shutterOpen {
  0% {
    width: 100%;
    height: 100%;
    top: 0; }
  50% {
    width: 0%;
    height: 100%;
    top: 0; }
  100% {
    width: 100%;
    height: 100%;
    top: 0; } }

/* - - - - - - - - - - - - - - - - - - - -
モーション
- - - - - - - - - - - - - - - - - - - - */
.motion-txt {
  display: inline-block;
  position: relative;
  overflow: hidden; }

.motion-txt:after {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #346633;
  transform: translate3d(-101%, 0, 0); }

.js-scroll.show .motion-txt:after {
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0); }

.js-scroll.done .motion-txt:after {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0); }

.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0; }

.js-scroll.done .motion-txt .motion-inner {
  opacity: 1; }

.js-scroll2.show .motion-txt:after {
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-delay: 300ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0); }

.js-scroll2.done .motion-txt:after {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-delay: 0ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0); }

.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0; }

.js-scroll2.done .motion-txt .motion-inner {
  opacity: 1; }

/* - - - - - - - - - - - - - - - - - - - -
サイドメニュー
- - - - - - - - - - - - - - - - - - - - */
.side_menu {
  width: 200px;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 2;
  background: #ffffff;
  border-top: 10px solid #346633; }
  .side_menu .c_name a {
    width: 120px;
    display: block;
    margin: 30px auto 20px auto; }
  .side_menu .c_name h1 img {
    width: 110px;
    display: block;
    margin: 0 auto; }
  .side_menu .menu {
    width: 100%;
    margin: 40px 0 30px 0; }
    .side_menu .menu nav ul li a {
      display: block;
      text-decoration: none;
      margin: 30px 0; }
      .side_menu .menu nav ul li a p {
        width: 100%;
        height: 20px;
        line-height: 20px;
        font-size: 17px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 1px;
        color: #346633; }
      .side_menu .menu nav ul li a::after {
        position: absolute;
        bottom: -5px;
        left: 0;
        display: block;
        content: "";
        width: 0%;
        height: 3px;
        background: #c6cd80;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955); }
      .side_menu .menu nav ul li a:hover::after {
        width: 100%; }
  .side_menu .safety {
    width: 80px;
    display: block;
    margin: 0px auto; }
  .side_menu .menu_tel {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: block; }
    .side_menu .menu_tel p {
      color: #000000;
      font-size: 16px;
      text-align: center;
      font-weight: 900; }
    .side_menu .menu_tel h3 {
      display: block;
      width: 100%;
      height: 40px;
      margin-top: 5px;
      background: #ff1c00;
      text-align: center;
      font-size: 26px;
      line-height: 40px;
      letter-spacing: 1px;
      color: #ffffff;
      font-weight: 700;
      font-family: 'Roboto', sans-serif; }
    .side_menu .menu_tel h2 {
      color: #ff1c00;
      font-size: 15px;
      text-align: center;
      font-weight: 600;
      margin: 5px 0; }
  @media (max-width: 896px) {
    .side_menu {
      display: none; } }

@media screen and (max-height: 720px) {
  .side_menu .safety {
    display: none; } }

@media screen and (max-height: 620px) {
  .side_menu .c_name a {
    width: 100px;
    display: block;
    margin: 20px auto 15px auto; }
  .side_menu .c_name h1 img {
    width: 90px;
    display: block;
    margin: 0 auto; }
  .side_menu .menu {
    width: 100%;
    margin: 45px 0 20px 0; }
    .side_menu .menu nav ul li a {
      margin: 20px 0; } }

main {
  margin-left: 200px;
  position: relative;
  border-top: 10px solid #346633; }
  @media (max-width: 896px) {
    main {
      margin-left: 0;
      border-top: 0; } }

/* - - - - - - - - - - - - - - - - - - - -
スマホナビ
- - - - - - - - - - - - - - - - - - - - */
.sp_header {
  width: 100%;
  height: 35px;
  background: #346633;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3%;
  position: fixed;
  z-index: 99; }
  .sp_header .logo_sp {
    width: 100px; }
    .sp_header .logo_sp a img {
      display: block;
      width: 100%; }
  .sp_header .sp_header_r {
    display: flex;
    align-items: center; }
    .sp_header .sp_header_r .telnum a {
      color: #ff4900;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.1rem;
      margin-right: 20px; }

@media screen and (min-width: 897px) {
  .sp_header {
    display: none; } }

/* body is-fixed */
body.is-fixed {
  width: 100%;
  height: 100%; }

.sp_nav {
  position: relative;
  z-index: 100; }

.inner {
  padding: 0;
  box-sizing: border-box; }

.header-inner {
  height: 40px;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
  align-items: center; }

/* click-nav */
#click-nav {
  position: relative;
  width: 25px;
  height: 17px;
  cursor: pointer; }

#click-nav span {
  display: block;
  position: absolute;
  background: #ffffff;
  width: 100%;
  height: 2px;
  right: 0;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 0px; }

#click-nav .one {
  top: 0; }

#click-nav .two {
  top: 7.5px; }

#click-nav .three {
  top: 15px; }

/* click-nav is-active */
#click-nav.is-active .one {
  transform: rotate(45deg);
  top: 7px; }

#click-nav.is-active .two {
  opacity: 0; }

#click-nav.is-active .three {
  top: 7px;
  transform: rotate(-45deg); }

/* body-wrap */
#body-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10; }

/* menu-wrap */
#menu-wrap {
  background: #ffffff;
  width: 250px;
  position: fixed;
  top: 35px;
  right: -70%;
  height: calc(100% - 50px);
  padding: 15px 20px;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  z-index: 100;
  -webkit-transition: .3s;
  transition: .3s; }
  #menu-wrap .side_menu_sp .c_name a {
    width: 80px;
    display: block;
    margin: 10px auto; }
  #menu-wrap .side_menu_sp .c_name h1 img {
    width: 160px;
    display: block;
    margin: 0 auto; }
  #menu-wrap .side_menu_sp .menu {
    width: 100%;
    margin-top: 8vh; }
    #menu-wrap .side_menu_sp .menu nav ul li a {
      display: block;
      text-decoration: none;
      margin-top: 5vh; }
      #menu-wrap .side_menu_sp .menu nav ul li a p {
        width: 100%;
        height: 20px;
        line-height: 20px;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 1px;
        color: #346633; }
  #menu-wrap .side_menu_sp .menu_tel {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    display: block; }
    #menu-wrap .side_menu_sp .menu_tel p {
      color: #000000;
      font-size: 15px;
      text-align: center;
      font-weight: 900;
      line-height: 1.4; }
    #menu-wrap .side_menu_sp .menu_tel a {
      display: block;
      width: 100%;
      height: 40px;
      margin-top: 5px;
      background: #ff1c00;
      text-align: center;
      font-size: 28px;
      line-height: 40px;
      letter-spacing: 1px;
      color: #ffffff;
      font-weight: 700;
      font-family: 'Roboto', sans-serif; }
    #menu-wrap .side_menu_sp .menu_tel h2 {
      color: #ff1c00;
      font-size: 16px;
      text-align: center;
      font-weight: 600;
      margin: 5px 0; }

#menu-wrap.is-active {
  opacity: 1;
  visibility: visible;
  right: 0;
  height: 100vh; }
