@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 95%;
  max-width: 1136px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.head {
  top: 0;
  width: 100%;
  z-index: 11;
  position: fixed;
}

.nav-unshown {
  display: none;
}

.smenuw {
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  transition: all 0.3s ease;
}

.smenuw.chh {
  background: white;
}

.smenu {
  display: block;
  width: calc(100% - 60px);
  border-radius: 100px;
  background: white;
  margin: 30px;
  padding: 12.5px 30px 12.5px 40px;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-shadow: 0 5px 11px 1px rgb(0 0 0 / 6%);
}
.smenu img {
  height: 50px;
  width: auto;
}
.smenu .logo {
  text-decoration: none;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
}
.smenu .logo h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 20px;
}
.smenu .btn_ser {
  display: block;
  color: white;
  padding: 8.5px 30px;
  box-sizing: border-box;
  border-radius: 100px;
  background: #008B46;
  text-decoration: none;
  width: 190px;
  min-width: 190px;
  text-align: center;
  margin-right: 20px;
  transition: all 0.3s ease;
  z-index: 10000;
}
.smenu .btn_ser:hover {
  background: #002C83;
}

.btn_cm {
  display: block;
  color: white !important;
  padding: 8.5px 30px;
  box-sizing: border-box;
  border-radius: 100px;
  background: #008B46;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.btn_cm:hover {
  background: #002C83;
}

#nav-drawer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

/*チェックボックス等は非表示に*/
.nav-unshown,
.header_input:before {
  display: none !important;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 57px;
  height: 57px;
  vertical-align: middle;
  padding: 16px 11.5px;
  box-sizing: border-box;
  z-index: 10000;
  position: relative;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px; /*線の太さ*/
  width: 36px; /*長さ*/
  border-radius: 10px;
  background: #008B46;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open span:before {
  bottom: -12px;
}
#nav-open span:after {
  bottom: -24px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none; /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 142px;
  right: 0;
  padding-bottom: 100px;
  z-index: 9999; /*最前面に*/
  width: 100%; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 100%; /*最大幅（調整してください）*/
  height: 100%;
  background: white;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
#nav-content .last {
  margin-bottom: 100px;
}
#nav-content .spl {
  display: block;
  color: #002C83;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  padding: 10px 0 18px 25px;
  box-sizing: border-box;
}
#nav-content .spl:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #002C83;
  top: 12px;
  left: 0;
  position: absolute;
}
#nav-content .spl2 {
  display: block;
  text-decoration: none;
  font-size: 1.8rem;
  color: #002C83;
  padding: 2px 0;
  box-sizing: border-box;
}
#nav-content .lef2 {
  padding-left: 60px;
  box-sizing: border-box;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block; /*カバーを表示*/
  opacity: 0.5;
}

.navi {
  max-width: 530px;
  margin: 0 auto;
}

#nav-input:checked ~ #nav-content {
  opacity: 1;
  visibility: visible;
}

#nav-input:checked ~ #nav-open span {
  transform: rotate(45deg);
  top: 27px;
  background: white;
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(90deg);
}
#nav-input:checked ~ #nav-open span:after {
  bottom: 0;
}

.ttl_bx {
  text-align: center;
}
.ttl_bx h2 {
  font-size: 3rem;
  line-height: 1;
}
.ttl_bx .sub {
  margin-bottom: 15px;
  line-height: 1;
}
.ttl_bx .sub img {
  height: 22px;
  width: auto;
  display: inline-block;
}

footer {
  overflow-x: hidden;  
}
.bnrs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  gap: 0 30px;
  margin: 130px auto 0 auto;
  max-width: 1136px;
}
.bnrs a {
  display: grid;
  transition: all 0.3s ease;
}
.bnrs a:hover {
  opacity: 0.8;
}

.ft_logo {
  margin-top: 70px;
  text-align: center;
}
.ft_logo a {
  display: inline-block;
}
.ft_logo img {
  height: 65px;
  width: auto;
  display: inline-block;
}

.ft_nav {
  margin: 40px auto 0 auto;
  max-width: 910px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ft_nav a {
  display: block;
  text-decoration: none;
  color: #333;
  position: relative;
  font-size: 12px;
}
.ft_nav a:before {
  content: "";
  height: 80%;
  width: 1px;
  background: #A9A9A9;
  position: absolute;
  right: -18px;
  top: 10%;
}
.ft_nav a:last-of-type:before {
  content: none;
}

.land {
  max-width: 1150px;
  margin: 50px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.land img {
  height: 110px;
  width: auto;
}

.copys {
  text-align: center;
  background: #008B46;
  font-size: 1.1rem;
  color: white;
  padding: 8px 0;
  box-sizing: border-box;
  position: relative;
  margin-top: -5px;
  z-index: -1;
}
.copys:before {
  content: "";
  width: 100%;
  height: 25px;
  position: absolute;
  background: #95D1CA;
  left: 0;
  top: -25px;
  z-index: -1;
}

.gtp {
  position: fixed;
  width: 53px;
  height: 53px;
  border-radius: 100%;
  color: white;
  background: #008B46;
  right: 20px;
  bottom: 30px;
  font-size: 1.2rem;
  text-align: center;
  padding: 13px 0;
  box-sizing: border-box;
  line-height: 1.3;
  display: block;
  text-decoration: none;
}

.brsp, .imgsp {
  display: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.trigger {
  opacity: 0;
}
.trigger .up {
  animation: up 1s ease 0.1s 1 normal forwards;
}
.trigger .delay0 {
  animation-delay: 0ms;
}
.trigger .delay1 {
  animation-delay: 100ms;
}
.trigger .delay2 {
  animation-delay: 200ms;
}
.trigger .delay3 {
  animation-delay: 300ms;
}
.trigger .delay4 {
  animation-delay: 400ms;
}
.trigger .delay5 {
  animation-delay: 500ms;
}
.trigger .delay6 {
  animation-delay: 600ms;
}
.trigger .delay7 {
  animation-delay: 700ms;
}
.trigger .delay8 {
  animation-delay: 800ms;
}
.trigger .delay9 {
  animation-delay: 900ms;
}
.trigger .delay10 {
  animation-delay: 1000ms;
}

@keyframes up {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*------------------------------------------------------------
media
------------------------------------------------------------*/
@media screen and (max-width: 1100px) {
  .smenu .logo h1 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .inner {
    width: 90%;
  }
  .bnrs,
  .ft_nav {
      max-width: 940px;
    width: 90%;
  }  
}
@media all and (max-width: 695px) {
  body {
    line-height: 1.6;
  }
  .inner {
    width: 90%;
  }
  #wrapper {
    width: 100%;
    overflow: hidden;
  }
  .gtp {
    bottom: 20px;
    right: 20px;
    z-index: 10;
  }
  .gtp img {
    width: 40px;
    height: auto;
  }
  .smenu {
    margin: 10px;
    width: calc(100% - 20px);
    padding: 0 9px 0 20px;
  }
  .smenu img {
    height: 33px;
  }
  .smenu .btn_ser {
    padding: 8.5px 10px;
    width: 110px;
    min-width: 110px;
    margin-right: 5px;
    font-size: 1.3rem;
  }
  #nav-open {
    padding: 18px 14.5px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    width: 28px;
  }
  #nav-open span:before {
    bottom: -10px;
  }
  #nav-open span:after {
    bottom: -20px;
  }
  .ttl_bx h2 {
    font-size: 2.6rem;
    line-height: 1;
  }
  .brpc {
    display: none;
  }
  .brsp {
    display: block;
  }
  .imgpc {
    display: none;
  }
  .imgsp {
    display: block;
  }
  .land {
    margin: 10px auto 0 auto;
  }
  .land .im1 {
    left: -30px;
    position: relative;
  }
  .land .im2 {
    right: -70px;
    position: relative;
  }
  #nav-content {
    top: 77px;
  }
  .navi {
    margin: 20px auto 0 auto;
    width: 85%;
  }
  #nav-content .spl {
    font-size: 2rem;
    padding: 8px 0 8px 25px;
  }
  #nav-content .spl2 {
    font-size: 1.6rem;
    padding: 5px 0;
  }
  #nav-content .lef2 {
    padding-left: 20px;
  }
  .ft_logo {
    margin-top: 40px;
  }
  .ft_nav {
    display: block;
    text-align: center;
  }
  .ft_nav a {
    padding: 10px 0;
    box-sizing: border-box;
  }
  .ft_nav:before {
    content: none;
  }
  .bnrs {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 90%;
    margin: 80px auto 0 auto;
  }
  .copys {
    font-size: 1rem;
  }
  .ft_nav a {
    font-size: 1.4rem;
  }
}
/*--media_end--*/

/*# sourceMappingURL=base.css.map */
