@charset "UTF-8";
/* ---------- setting ---------- ---------- */
:root {
  --body-bg:#DAECD7;
  --main-color:#188B03;
  --menu-bg:#BBDCB4;
  --grad: linear-gradient(90deg, #018734 0%, #64B02D 50%, #018734 100%);
}

body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--body-bg);
}

main {
  display: block;
}
@media screen and (min-width: 768px) {
  main {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main {
    font-size: 14px;
  }
  main img {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
.area-modal
---------------------------------------------------------- */
.area-modal {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.2s;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
}
.area-modal.js-show {
  visibility: visible;
  opacity: 1;
}
.area-modal ._modal-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.85);
}
.area-modal ._modal-btn-close {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition-duration: 0.2s;
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-btn-close {
    top: -50px;
    right: 0px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-btn-close {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}
.area-modal ._modal-btn-close:hover {
  opacity: 0.8;
}
.area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 25px;
  height: 4px;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #000;
  }
}
.area-modal ._modal-btn-close:before {
  transform: rotate(45deg);
}
.area-modal ._modal-box {
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-box {
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-box {
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    width: auto;
    height: auto;
    margin: 0;
  }
}
.area-modal ._modal-box ._modal-head {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 15px 0 0 20px;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-body {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0px;
  right: 0px;
  padding: 20px;
  background: #ccc;
  box-sizing: border-box;
  overflow-y: scroll;
}
.area-modal ._modal-box ._modal-body ._t1 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
}
.area-modal ._modal-box ._modal-body ._t2 {
  font-size: 14px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-body ._t3 {
  font-size: 12px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-foot {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 7px 0 0 0;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-foot ._btn-do {
  display: block;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 14px;
  background: #666;
  color: #fff;
}
.area-modal ._modal-box ._modal-foot ._btn-do:hover {
  background: #333;
}

/* リセットCSS */
html, body {
  width: 100%;
  height: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote, pre, a, div {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

th, td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

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

a {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  /* ----------------------------------------------------------
  .area-footer
  ---------------------------------------------------------- */
  .area-copy {
    margin-top: 60px;
    background: var(--main-color);
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  .area-copy small {
    font-size: 10px;
  }
  /* ----------------------------------------------------------
  .btn-pagetop
  ---------------------------------------------------------- */
  .btn-pagetop {
    position: fixed;
    bottom: 60px;
    right: 20px;
    color: #fff;
    text-align: center;
    background-color: var(--main-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition-duration: 0.2s;
    transition-property: opacity;
    visibility: hidden;
  }
  .btn-pagetop span {
    display: block;
    padding-bottom: 20px;
    font-size: 20px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    line-height: 15px;
  }
  .btn-pagetop span:before {
    content: "";
    display: block;
    margin: 0 auto;
    background: url(/t3_data/img/common/icon/pagetop.png) left top no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
  }
  .btn-pagetop:hover {
    filter: brightness(1.1);
  }
  .btn-pagetop.js-show {
    opacity: 1;
    visibility: visible;
  }
  .btn-pagetop.js-show:hover {
    opacity: 0.6;
  }
  .area-header-wap {
    height: 104px;
  }
  .area-gmenu {
    position: fixed;
    top: 64px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 40px;
    background-color: var(--main-color);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  }
  .mod-head-gmenu {
    display: flex;
    justify-content: center;
    gap: 20px;
    height: 40px;
  }
  .mod-head-gmenu-item {
    min-width: 100px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mod-head-gmenu-item.is-active {
    height: 50px;
    background-color: #000;
  }
  .area-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 64px;
    background: #fff;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._inner {
    position: relative;
    margin: 0 55px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .area-header ._inner {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._left {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .area-header ._logo {
    width: 200px;
  }
  .area-header ._logo a {
    display: block;
    width: 200px;
    height: 50px;
  }
  .area-header ._logo img {
    object-fit: contain;
    height: 100%;
  }
  .area-header ._site-name {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .area-header ._site-name {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .mod-menu-pc {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .mod-menu-pc ._text {
    font-size: 20px;
    color: var(--main-color);
    font-weight: bold;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .mod-menu-pc ._text {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .mod-float-menu-sp {
    display: none;
  }
  .mod-sp-menu-btn {
    display: none;
  }
  .mod-head-contact {
    display: flex;
    gap: 5px;
  }
  .mod-head-contact-mail {
    width: 140px;
    height: 50px;
    background: url(/t3_data/img/common/head/mail.png?) left top no-repeat;
    background-size: contain;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    color: #fff;
    padding: 0 0 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-contact-mail:hover {
    opacity: 0.8;
    filter: brightness(1.1);
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .mod-head-contact-mail {
    width: 102px;
    height: 36px;
    font-size: 13px;
    padding: 0 0 0 25px;
  }
}
@media print, screen and (min-width: 768px) {
  .mod-head-contact-line {
    width: 140px;
    height: 50px;
    background: url(/t3_data/img/common/head/line.png?) left top no-repeat;
    background-size: contain;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    color: #333;
    padding: 0 0 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-contact-line:hover {
    opacity: 0.8;
    filter: brightness(1.1);
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .mod-head-contact-line {
    width: 102px;
    height: 36px;
    font-size: 13px;
    padding: 0 0 0 25px;
  }
}
@media print, screen and (min-width: 768px) {
  .mod-head-contact-tel {
    width: 186px;
    height: 50px;
    background: url(/t3_data/img/common/head/tel.png?) left top no-repeat;
    background-size: contain;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #333;
    padding: 0 0 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-contact-tel:hover {
    opacity: 0.8;
    filter: brightness(1.1);
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .mod-head-contact-tel {
    width: 136px;
    height: 36px;
    font-size: 12px;
    padding: 0 0 0 25px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-modal-menu {
    display: none;
  }
  .area-wrapper {
    overflow: hidden;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1240px) {
  .area-wrapper {
    min-width: 1240px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-inner {
    position: relative;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .area-inner {
    margin: 0 auto;
    width: 1200px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1240px) {
  .area-inner {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .block-inner {
    margin: 0 auto;
    width: 1200px;
  }
  .block-inner2 {
    margin: 0 auto;
    width: 1120px;
  }
  .block-inner3 {
    margin: 0 auto;
    width: 900px;
  }
}
@media screen and (max-width: 767px) {
  /* ----------------------------------------------------------
  .area-footer
  ---------------------------------------------------------- */
  .area-copy {
    margin-top: 20px;
    background: var(--main-color);
    color: #fff;
    padding: 50px;
    text-align: center;
  }
  .area-copy small {
    font-size: 10px;
  }
  /* ----------------------------------------------------------
  .area-footer
  ---------------------------------------------------------- */
  .area-copy {
    margin-top: 60px;
    background: var(--main-color);
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  .area-copy small {
    font-size: 10px;
  }
  /* ----------------------------------------------------------
  .btn-pagetop
  ---------------------------------------------------------- */
  .btn-pagetop {
    position: fixed;
    top: 13px;
    right: 60px;
    text-align: center;
    z-index: 120;
    background-color: #188B03;
    width: 87px;
    height: 38px;
    background: url(/t3_data/img/common/icon/pagetop_sp.png) left top no-repeat;
    background-size: cover;
    opacity: 0;
    transition-duration: 0.2s;
    transition-property: opacity;
    visibility: hidden;
    text-indent: -999px;
    overflow: hidden;
  }
  .btn-pagetop.js-show {
    opacity: 1;
    visibility: visible;
  }
  .btn-pagetop.js-show:hover {
    opacity: 0.6;
  }
  .area-header-wap {
    height: 64px;
  }
  .area-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 64px;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  }
  .area-header img {
    width: 100%;
    height: 64px;
    object-fit: contain;
  }
  .area-header ._inner {
    position: relative;
    margin: 0 10px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .area-header ._left {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .area-header ._logo {
    width: 140px;
  }
  .area-header ._site-name {
    display: none;
  }
  .area-header ._right {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .area-gmenu {
    display: none;
  }
  .mod-menu-pc {
    display: none;
  }
  .mod-float-menu-sp {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 480;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
  .mod-float-menu-sp ._text {
    background-color: var(--main-color);
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .mod-float-menu-sp ._text:before, .mod-float-menu-sp ._text:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
  }
  .mod-float-menu-sp ._text:after {
    transform: rotate(-45deg);
  }
  .mod-float-menu-sp ._body {
    background-color: #fff;
  }
  .mod-head-contact {
    padding: 10px 0;
    display: flex;
  }
  .mod-head-contact li {
    flex: 1;
    padding: 0 10px;
  }
  .mod-head-contact li + li {
    border-left: 1px solid #ccc;
  }
  .mod-head-contact-mail {
    margin: 0 auto;
    width: 100px;
    display: block;
    height: 40px;
    background: url(/t3_data/img/common/float/mail.png?) left top no-repeat;
    background-size: 40px auto;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 0 0 0 50px;
    line-height: 40px;
  }
  .mod-head-contact-line {
    margin: 0 auto;
    width: 100px;
    display: block;
    height: 40px;
    background: url(/t3_data/img/common/float/line.png?) left top no-repeat;
    background-size: 40px auto;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 0 0 0 50px;
    line-height: 40px;
  }
  .mod-head-contact-tel {
    margin: 0 auto;
    width: 100px;
    display: block;
    height: 40px;
    background: url(/t3_data/img/common/float/tel.png?) left top no-repeat;
    background-size: 40px auto;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 0 0 0 50px;
    line-height: 40px;
  }
  .mod-sp-menu-btn {
    position: absolute;
    top: 12px;
    right: 0px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: var(--main-color);
  }
  .mod-sp-menu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #fff;
    height: 2px;
    left: 10px;
    right: 10px;
  }
  .mod-sp-menu-btn span:nth-child(1) {
    top: 11px;
  }
  .mod-sp-menu-btn span:nth-child(2) {
    top: 19px;
  }
  .mod-sp-menu-btn span:nth-child(3) {
    top: 27px;
  }
  body.js-gmenu-active .mod-sp-menu-btn span:nth-child(1) {
    position: absolute;
    top: 19px;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .mod-sp-menu-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-sp-menu-btn span:nth-child(3) {
    position: absolute;
    top: 19px;
    transform: rotate(-45deg);
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -200px);
    top: 60px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    min-height: 140px;
    background: var(--main-color);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 500;
    opacity: 1;
    transform: translate(0, 0);
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    overflow: hidden;
    position: relative;
  }
  .area-wrapper iframe {
    width: 100%;
    height: 56vw;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  .area-inner {
    position: relative;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  .block-inner-sp {
    padding-right: 15px;
    padding-left: 15px;
  }
}
