@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/*
$serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$sansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$sansSerifBold: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$msSerif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$msSansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
*/
* {
  box-sizing: border-box;
}

:root,
html {
  font-size: 100px;
}
@media screen and (max-width: 1110px) and (min-width: 769px) {
  :root,
  html {
    font-size: 9.009009009vw;
  }
}
@media screen and (max-width: 768px) {
  :root,
  html {
    font-size: 26.0416666667vw;
  }
}

body {
  color: #000000;
  font-weight: 500;
  line-height: 1.5;
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.14rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
}
img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
  display: none;
}
@media screen and (max-width: 768px) {
  img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
    display: inline-block;
  }
  img[src$="_sp.jpg"] + img, img[src$="_sp.png"] + img, img[src$="_sp.svg"] + img {
    display: none;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

em {
  font-style: normal;
}

/*//////////////////////////////////////////
//  共通設定
//////////////////////////////////////////*/
.inner {
  max-width: 10rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 0.1rem;
  }
}

.picture {
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
/*セレクトボックスの設定(全ブラウザ共通にするため)
//設定やアイコンは用途に合わせて書き換え*/
select::-ms-expand {
  display: none;
}

label {
  font-size: 0.15rem;
}

.select-box {
  position: relative;
  display: block;
  padding: 0;
  max-width: 0.7rem;
  width: 100%;
  height: 0.38rem;
}
.select-box:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  z-index: 2;
  background: url("../images/arrow-select.svg") 0 0 no-repeat;
  pointer-events: none;
}
.select-box select {
  display: block;
  width: 100%;
  height: 0.38rem;
  padding-left: 1.5em;
  margin: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0.05rem;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}

.sec-header {
  text-align: center;
  margin-bottom: 0.45rem;
}
@media screen and (max-width: 768px) {
  .sec-header {
    margin-bottom: 0.2rem;
  }
}
.sec-header span {
  color: #009900;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 768px) {
  .sec-header span {
    font-size: 0.3rem;
  }
}
.sec-header h1, .sec-header h2 {
  font-size: 0.15rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec-header h1, .sec-header h2 {
    font-size: 0.12rem;
  }
}

.contents {
  padding: 0.78rem 0 1rem;
}
@media screen and (max-width: 768px) {
  .contents {
    padding: 0.4rem 0;
  }
}
.contents p {
  text-align: center;
  font-size: 0.15rem;
}
@media screen and (max-width: 768px) {
  .contents p {
    font-size: 0.12rem;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 3.37rem;
  width: 100%;
  height: 0.77rem;
  border-radius: 0.05rem;
  color: #fff;
  font-size: 0.18rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #4fea59 0, #1f8a26 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn {
    max-width: 3rem;
    width: 100%;
    margin: 0 auto;
    height: 0.5rem;
    font-size: 0.16205rem;
  }
}
.btn:after {
  content: "";
  display: inline-block;
  width: 0.2rem;
  height: 0.21rem;
  position: absolute;
  right: 0.26rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-image: url("../images/common/arrow-double.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .btn:after {
    width: 0.11rem;
    height: 0.1rem;
    right: 0.15rem;
  }
}
.btn span {
  display: inline-block;
  margin-left: -2em;
}
@media screen and (max-width: 768px) {
  .btn span {
    margin-left: -1em;
  }
}
.btn.center {
  margin: 0.8rem auto 0;
}

/*//////////////////////////////////////////
//  header
//////////////////////////////////////////*/
#mainHeader {
  background: #009900;
  width: 100%;
  position: fixed;
  z-index: 99;
}
#mainHeader .h-inner {
  max-width: 10rem;
  width: 100%;
  height: 0.9rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  #mainHeader .h-inner {
    height: 0.41rem;
    padding: 0 0.1rem;
  }
}
#mainHeader .h-inner .logo {
  width: 2.85rem;
}
#mainHeader .h-inner .logo img {
  height: auto;
}
@media screen and (max-width: 768px) {
  #mainHeader .h-inner .logo {
    width: 1.445rem;
  }
}
#mainHeader .h-inner nav {
  margin-top: 0.1rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .h-inner nav {
    width: 100%;
    background: #fff;
    position: absolute;
    bottom: -0.41rem;
    left: 0;
    padding: 0 0.1rem;
    margin-top: 0;
  }
}
#mainHeader .h-inner nav ul {
  display: flex;
  align-items: center;
  gap: 0.44rem;
  height: 0.41rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .h-inner nav ul {
    position: relative;
    gap: 0.2rem;
  }
}
#mainHeader .h-inner nav ul li {
  font-size: 0.15rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #mainHeader .h-inner nav ul li {
    font-size: 0.11rem;
    color: #000;
  }
  #mainHeader .h-inner nav ul li.header-contact {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    right: 0;
    top: -0.35rem;
    font-size: 0.09rem;
    color: #fff;
  }
  #mainHeader .h-inner nav ul li.header-contact:before {
    content: "";
    display: inline-block;
    width: 0.215rem;
    height: 0.165rem;
    background-image: url("../images/common/icon-mail.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}
#mainHeader .h-inner .to-official {
  position: absolute;
  right: 0;
  top: 9px;
  color: #fff;
  font-size: 0.13rem;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.05rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .h-inner .to-official {
    display: none;
  }
}
#mainHeader .h-inner .to-official:before {
  content: "";
  display: inline-block;
  width: 0.07rem;
  height: 0.12rem;
  background-image: url("../images/common/arrow-single.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

main {
  padding-top: 0.9rem;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 0.82rem;
  }
}

/*/////////////////////////////////////////
//  footer Contact
/////////////////////////////////////////*/
#footer-contact {
  height: 3.68rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  background-image: url("../images/common/img-contact.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#footer-contact .sec-header {
  color: #fff;
}
#footer-contact .sec-header span {
  color: #fff;
}
#footer-contact .btn {
  margin: 0 auto;
}

/*/////////////////////////////////////////
//  footer
/////////////////////////////////////////*/
#mainFooter {
  background: #009900;
  padding: 0.75rem 0 0.3rem;
}
@media screen and (max-width: 768px) {
  #mainFooter {
    padding: 0.35rem 0 0.5rem;
  }
}
#mainFooter .footer-nav {
  max-width: 10rem;
  width: 100%;
  height: 0.9rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-nav {
    flex-direction: column;
    justify-content: initial;
    align-items: center;
    gap: 0.8rem;
  }
}
#mainFooter .footer-nav .footer-logo {
  width: 2.85rem;
}
#mainFooter .footer-nav .footer-logo img {
  height: auto;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-nav .footer-logo {
    width: 2.5rem;
    margin: 0 auto;
  }
}
#mainFooter .footer-nav ul {
  display: flex;
  align-items: center;
  gap: 0.44rem;
  height: 0.41rem;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-nav ul {
    display: none;
  }
}
#mainFooter .footer-nav ul li {
  font-size: 0.15rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-nav ul li {
    font-size: 0.11rem;
    color: #000;
  }
  #mainFooter .footer-nav ul li.header-contact {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    right: 0;
    top: -0.35rem;
    font-size: 0.09rem;
    color: #fff;
  }
  #mainFooter .footer-nav ul li.header-contact:before {
    content: "";
    display: inline-block;
    width: 0.215rem;
    height: 0.165rem;
    background-image: url("../images/common/icon-mail.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}
#mainFooter .footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-menu {
    display: block;
    margin-top: 0;
  }
}
#mainFooter .footer-menu ul {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-menu ul {
    border-top: 1px solid #fff;
  }
}
#mainFooter .footer-menu ul li {
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-menu ul li {
    display: block;
    border-bottom: 1px solid #fff;
  }
}
#mainFooter .footer-menu ul li:not(:last-child) {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-menu ul li:not(:last-child) {
    border-right: none;
  }
}
#mainFooter .footer-menu ul li a {
  padding: 0 0.1rem;
  font-size: 0.13rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-menu ul li a {
    display: block;
    padding: 0.3rem 0.2rem;
    position: relative;
    font-size: 0.16rem;
    font-weight: 400;
  }
  #mainFooter .footer-menu ul li a:after {
    content: "";
    display: inline-block;
    width: 0.06rem;
    height: 0.095rem;
    position: absolute;
    right: 0.3rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-image: url("../images/common/arrow-single.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}
#mainFooter .footer-menu ul li:nth-child(1) {
  padding-left: 0;
}
#mainFooter .footer-menu small {
  font-size: 0.13rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #mainFooter .footer-menu small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.12rem;
    text-align: center;
  }
}

/*/////////////////////////////////////////
//  page top
/////////////////////////////////////////*/
#page_top {
  width: 0.63rem;
  position: fixed;
  right: 0.2rem;
  bottom: 2.2rem;
}
@media screen and (max-width: 768px) {
  #page_top {
    width: 0.5rem;
    height: 0.5rem;
    bottom: 0.1rem;
    right: 0.1rem;
  }
}

/*//////////////////////////////////////////
//  drawer
//////////////////////////////////////////*/
.drawer.drawer--right .drawer-hamburger {
  width: 0.18rem;
  height: 0.15rem;
  left: 0.2rem;
  top: 0.2rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .drawer.drawer--right .drawer-hamburger {
    display: flex;
  }
}
.drawer.drawer--right .drawer-open .drawer-hamburger {
  top: 5%;
}
.drawer.drawer--right .drawer-nav {
  right: -100vw;
  z-index: 99;
  width: 84.5vw;
  height: 100vh;
  background: #fff;
  overflow: scroll;
  top: 0;
}
.drawer.drawer--right .drawer-nav .sp-logo {
  padding: 0.3rem 0.5rem;
  display: block;
  border-bottom: 1px solid #c2c2c2;
}
.drawer.drawer--right .drawer-nav .drawer-menu {
  margin-top: 0;
  padding: 0.2rem 0.5rem;
}
.drawer.drawer--right .drawer-nav .drawer-menu li {
  font-size: 0.15rem;
  margin: 0.2rem 0;
  width: 100%;
}
.drawer.drawer--right .drawer-nav .drawer-menu li span {
  display: block;
  font-size: 0.12rem;
}
.drawer.drawer--right .drawer-overlay {
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.5);
}
.drawer.drawer--right .drawer-hamburger-icon {
  background-color: #474747;
  margin-top: 0;
  width: 100%;
}
.drawer.drawer--right .drawer-hamburger-icon,
.drawer.drawer--right .drawer-hamburger-icon:after,
.drawer.drawer--right .drawer-hamburger-icon:before {
  height: 0.02rem;
  background-color: black;
}
.drawer.drawer--right .drawer-hamburger-icon:before {
  width: 100%;
  top: -0.065rem;
}
.drawer.drawer--right .drawer-hamburger-icon:after {
  top: 0.065rem;
  width: 100%;
}
.drawer.drawer--right.drawer-open .drawer-nav {
  right: 0;
}
.drawer.drawer--right.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer.drawer--right.drawer-open .drawer-hamburger-icon:before {
  top: 0;
  background: #fff;
}
.drawer.drawer--right.drawer-open .drawer-hamburger-icon:after {
  top: 0;
  background: #fff;
}
.drawer.drawer--right .drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: none;
  border-right: none;
  border-left: none;
  float: right;
}
.drawer.drawer--right .drawer-dropdown.open .drawer-caret {
  transform: rotate(90deg);
}
.drawer.drawer--right ion-icon {
  --ionicon-stroke-width: 16px;
  color: #474747;
}
.drawer.drawer--right .dr-link,
.drawer.drawer--right .drawer-dropdown-menu-item {
  background: #eeeeee;
}
.drawer.drawer--right .dr-link {
  font-size: 0.18rem;
  padding: 0.8em 0 0.8em 0.75rem;
}
.drawer.drawer--right .drawer-dropdown-menu-item {
  font-size: 0.18rem;
  margin: 0.1em 0;
  padding-left: 1.5em;
  font-weight: normal;
  color: #474747;
}
.drawer.drawer--right .drawer-dropdown-menu li a {
  padding-top: 0.3em !important;
  padding-bottom: 0.3em !important;
}

/*//////////////////////////////////////////
//  アニメーション設定
//////////////////////////////////////////*/
.fu {
  transition: 1s;
  opacity: 0;
  transform: translate3d(0, 10%, 0);
}

.fu.fadeup {
  opacity: 1;
  transform: translateZ(0);
}

.fadeIn {
  transition: all 0.9s linear;
  opacity: 1 !important;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
  }
}
.faderight {
  animation-name: faderight;
}

@keyframes faderight {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*//////////////////////////////////////////
//  slick上書き
//////////////////////////////////////////*/
/* Arrows */
.slick-prev,
.slick-next {
  height: 0.6rem;
  width: 0.6rem;
  line-height: 0;
  font-size: 0;
  background: #fff;
  border-radius: 50%;
  z-index: 10;
  border: 0.03rem solid #000;
}
@media screen and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 0.3rem;
    height: 0.3rem;
    border: 0.015rem solid #000;
  }
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: #fff;
  color: transparent;
}
.slick-prev:before,
.slick-next:before {
  content: "";
}

.slick-prev {
  left: 22%;
}
@media screen and (max-width: 768px) {
  .slick-prev {
    left: 1.5%;
  }
}
.slick-prev:before {
  display: inline-block;
  width: 0.15rem;
  height: 0.15rem;
  border-bottom: 0.03rem solid #000;
  border-right: 0.03rem solid #000;
  transform: rotate(135deg);
  margin-left: 0.08rem;
}
@media screen and (max-width: 768px) {
  .slick-prev:before {
    width: 0.075rem;
    height: 0.075rem;
    border-bottom: 0.015rem solid #000;
    border-right: 0.015rem solid #000;
    margin-left: 0.04rem;
  }
}

.slick-next {
  right: 22%;
}
@media screen and (max-width: 768px) {
  .slick-next {
    right: 1.5%;
  }
}
.slick-next:before {
  display: inline-block;
  width: 0.15rem;
  height: 0.15rem;
  border-bottom: 0.03rem solid #000;
  border-right: 0.03rem solid #000;
  transform: rotate(-45deg);
  margin-right: 0.08rem;
}
@media screen and (max-width: 768px) {
  .slick-next:before {
    width: 0.075rem;
    height: 0.075rem;
    border-bottom: 0.015rem solid #000;
    border-right: 0.015rem solid #000;
    margin-right: 0.04rem;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0rem;
}

.slick-dots {
  position: absolute;
  bottom: -0.3rem;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: -0.25rem;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 0.15rem;
  width: 0.15rem;
  margin: 0 0.05rem;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li {
    height: 0.075rem;
    width: 0.075rem;
  }
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 0.15rem;
  width: 0.15rem;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    height: 0.075rem;
    width: 0.075rem;
  }
}
.slick-dots li button:before {
  content: "";
  background: #9a9a9a;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 0.15rem;
  height: 0.15rem;
  line-height: 0.15rem;
  text-align: center;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    height: 0.075rem;
    width: 0.075rem;
  }
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li.slick-active button:before {
  background: #000;
}/*# sourceMappingURL=common.css.map */