/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

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;
  vertical-align: baseline;
  font-size: 100%;
}

body {
  line-height: 1;
}

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

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #212121;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 700;
  color: #212121;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 1px;
}

body {
  position: relative;
  z-index: 100;
  font-size: 14px;
}

.wrap {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .wrap {
    width: calc(100% - 100px);
  }
}

.palmtop {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .palmtop {
    display: none !important;
  }
}

.laptop {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .laptop {
    display: block !important;
  }
}

/*===============================
layout
================================*/
/*
header
================================*/
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 2.5px 2.5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2.5px 2.5px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .site-header {
    width: calc(100% - 60px);
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    overflow: hidden;
  }
}
.site-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-header .container .logo {
  margin-left: 15px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo {
    margin-left: 30px;
  }
}
.site-header .container .logo img {
  width: 225px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo img {
    width: 250px;
  }
}
.site-header .container .hbg {
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  background: #1fa700;
  width: 55px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg .inner {
  position: relative;
  z-index: 120;
  width: 30px;
  height: 19px;
}
.site-header .container .hbg .inner .line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header .container .hbg .inner .line:first-child {
  top: 0;
}
.site-header .container .hbg .inner .line:nth-child(2) {
  top: 8px;
}
.site-header .container .hbg .inner .line:last-child {
  bottom: 0;
}
.site-header .container .is-hbg .line:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.site-header .container .is-hbg .line:nth-child(2) {
  opacity: 0;
}
.site-header .container .is-hbg .line:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
.site-header .container .drawer {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1fa700;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .site-header .container .drawer {
    display: none;
  }
}
.site-header .container .drawer .drawer-links {
  margin-top: 55px;
}
.site-header .container .drawer .drawer-links .link {
  border-top: 1px solid #fff;
}
.site-header .container .drawer .drawer-links .link:last-child {
  border-bottom: 1px solid #fff;
}
.site-header .container .drawer .drawer-links .link a {
  position: relative;
  display: block;
  color: #fff;
  padding: 25px;
}
.site-header .container .drawer .drawer-links .link a:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  top: calc(50% - 8px);
  right: 25px;
  background-image: url("../../../assets/images/common/drawer-icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top right;
  width: 16px;
  height: 16px;
}
.site-header .container .drawer .tel-btn {
  margin: 30px 25px;
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-header .container .drawer .tel-btn a {
  display: block;
  padding: 15px;
  background: #fff;
  letter-spacing: 0;
  border-radius: 5px;
}
.site-header .container .drawer .tel-btn a .num {
  margin-top: 10px;
  color: #1fa700;
  font-weight: 900;
  font-size: 30px;
}
.site-header .container .drawer .cp {
  padding: 0 0 30px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0;
}
.site-header .container .is-drawer {
  opacity: 1;
  pointer-events: auto;
}
.site-header .container .links {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .links .link:not(:first-child) {
    margin-left: 30px;
  }
}
.site-header .container .links .link a {
  display: block;
}
.site-header .container .links .contact a {
  padding: 30px;
  background: #1fa700;
  color: #fff;
}

/*
main
================================*/
.site-main {
  margin-top: 55px;
}

@media screen and (min-width: 1024px) {
  .site-main--home {
    margin-top: 104px;
  }
}

@media screen and (min-width: 1024px) {
  .site-main--page {
    margin-top: 0;
  }
}
.site-main--page .site-main__title {
  padding: 50px 0;
  background: #1fa700;
  color: #fff;
  -moz-text-align-last: center;
       text-align-last: center;
}
@media screen and (min-width: 1024px) {
  .site-main--page .site-main__title {
    padding: 178px 0 75px;
  }
}
.site-main--page .site-main__title .page-title span {
  display: block;
}
.site-main--page .site-main__title .page-title__en {
  letter-spacing: 0;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .site-main--page .site-main__title .page-title__en {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main--page .site-main__title .page-title__en {
    font-size: 16px;
  }
}
.site-main--page .site-main__title .page-title__ja {
  margin-top: 12.5px;
  font-size: 20px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .site-main--page .site-main__title .page-title__ja {
    margin-top: 15px;
    font-size: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main--page .site-main__title .page-title__ja {
    margin-top: 20px;
    font-size: 32px;
  }
}

/*
footer
================================*/
.site-footer .cta {
  position: relative;
  background-image: url("../../../assets/images/common/cta-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.site-footer .cta:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(31, 167, 0, 0.85);
}
.site-footer .cta .wrap {
  position: relative;
  z-index: 10;
}
.site-footer .cta .wrap .cta-title {
  -moz-text-align-last: center;
       text-align-last: center;
  color: #fff;
  margin-bottom: 35px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .wrap .cta-title {
    margin-bottom: 50px;
  }
}
.site-footer .cta .wrap .cta-title__en {
  color: #fff;
  letter-spacing: 0;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .wrap .cta-title__en {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .wrap .cta-title__en {
    font-size: 16px;
  }
}
.site-footer .cta .wrap .cta-title__ja {
  margin-top: 12.5px;
  font-size: 20px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .wrap .cta-title__ja {
    margin-top: 15px;
    font-size: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .wrap .cta-title__ja {
    margin-top: 20px;
    font-size: 32px;
  }
}
.site-footer .cta .wrap .desc {
  margin-top: -7px;
  color: #fff;
  line-height: 1.8em;
  -moz-text-align-last: center;
       text-align-last: center;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .wrap .desc {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .wrap .desc {
    font-size: 18px;
  }
}
.site-footer .cta .wrap .btn-list {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .wrap .btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
  }
}
.site-footer .cta .wrap .btn-list .btn {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .wrap .btn-list .btn {
    margin-top: 0;
    width: calc(50% - 27.5px);
    margin-right: 55px;
  }
}
.site-footer .cta .wrap .btn-list .btn:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .site-footer .cta .wrap .btn-list .btn:nth-child(2) {
    margin-right: 0;
  }
}
.site-footer .cta .wrap .btn-list .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px;
  background: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .wrap .btn-list .btn a {
    padding: 50px;
  }
}
.site-footer .cta .wrap .btn-list .btn a .icon {
  width: 40px;
  margin-right: 15px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .wrap .btn-list .btn a .icon {
    width: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .cta .wrap .btn-list .btn a .icon {
    margin-right: 25px;
  }
}
.site-footer .cta .wrap .btn-list .btn a .text {
  font-size: 18px;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .wrap .btn-list .btn a .text {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .info .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.site-footer .info .column .company .logo img {
  width: 225px;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .column .company .logo img {
    width: 250px;
  }
}
.site-footer .info .column .company .name {
  margin-top: 25px;
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .column .company .name {
    font-size: 17px;
  }
}
.site-footer .info .column .company .address, .site-footer .info .column .company .tel-fax {
  margin-top: 10px;
  line-height: 1.4em;
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .column .company .address, .site-footer .info .column .company .tel-fax {
    margin-top: 15px;
  }
}
.site-footer .info .column .links {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .column .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-footer .info .column .links .link:not(:first-child) {
    margin-left: 30px;
  }
}
.site-footer .info .other {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ccc;
  font-size: 12px;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .other {
    margin-top: 50px;
    padding-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.site-footer .info .other .privacy a {
  color: #1fa700;
  text-decoration: underline;
}
.site-footer .info .other .cp {
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .site-footer .info .other .cp {
    margin-top: 0;
  }
}

/*===============================
module
================================*/
/*
title-style
================================*/
.sec-title {
  margin-bottom: 35px;
}
@media screen and (min-width: 1024px) {
  .sec-title {
    margin-bottom: 50px;
  }
}
.sec-title span {
  display: block;
}
.sec-title__en {
  color: #1fa700;
  letter-spacing: 0;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .sec-title__en {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .sec-title__en {
    font-size: 16px;
  }
}
.sec-title__ja {
  margin-top: 12.5px;
  font-size: 20px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .sec-title__ja {
    margin-top: 15px;
    font-size: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .sec-title__ja {
    margin-top: 20px;
    font-size: 32px;
  }
}

/*
btn-style
================================*/
.more-btn {
  margin-top: 35px;
  -moz-text-align-last: center;
       text-align-last: center;
}
@media screen and (min-width: 1024px) {
  .more-btn {
    margin-top: 50px;
  }
}
.more-btn a {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  border-radius: 5px;
  background: #1fa700;
  color: #fff;
  padding: 25px 0;
}
@media screen and (min-width: 1024px) {
  .more-btn a {
    font-size: 16px;
  }
}

/*
news-style
================================*/
/*
space
================================*/
.pad-tb {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .pad-tb {
    padding: 75px 0;
  }
}

.pad-b {
  padding: 0 0 50px;
}
@media screen and (min-width: 768px) {
  .pad-b {
    padding: 0 0 75px;
  }
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}