@charset "UTF-8";
@font-face {
  font-family: "Dancing Script";
  src: url(../font/DancingScript-Regular.ttf);
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Sawarabi Mincho", 游明朝, "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body {
    position: relative;
    min-height: 100vh;
  }
}

h1,
h2,
h3,
p,
a,
th,
td {
  font-family: "Sawarabi Mincho", 游明朝, "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

h1 {
  font-size: 4.8vw;
  line-height: 1.6;
  font-weight: lighter;
}
@media screen and (min-width: 1500px) {
  h1 {
    font-size: 66px;
  }
}

h2 {
  font-size: 47px;
  line-height: 69px;
  text-align: center;
  color: #333333;
}

.subheading {
  font-family: "Dancing Script";
  width: 90%;
  margin: 0 auto;
  transform: rotate(-11deg);
  color: #aecc84;
  font-size: 38px;
  line-height: 46px;
  letter-spacing: 0px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .subheading {
    font-size: 30px;
  }
}

.heading {
  margin-top: 17px;
  margin-left: -41px;
  letter-spacing: 7px;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 30px;
    line-height: 1.3;
    margin-top: 5px;
    padding-bottom: 10px;
    margin-left: 6px;
    letter-spacing: 5px;
  }
}

a {
  text-decoration: none;
  color: #333333;
}
a:hover {
  transition: 0.3s;
  color: #AECC84;
  cursor: pointer;
}

p {
  color: #333333;
}

.btnInner {
  margin-top: 65px;
}

.btn {
  max-width: 350px;
  border: solid 1px #333;
  padding-top: 23px;
  padding-left: 49px;
  padding-bottom: 23px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 23px;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 21px 24px 18px 22px;
    margin-bottom: 17px;
    text-align: center;
    font-size: 16px;
    width: 100%;
  }
}
.btn:hover {
  transition: 0.3s;
  color: #fff;
  background-color: #AECC84;
  border: solid 1px #fff;
}
.btn:hover .targetblank {
  transition: 0.3s;
  display: none;
}
.btn:hover .targetblankHover {
  transition: all 0.8s;
  display: inline-block;
}

.targetblank {
  margin-left: 7px;
}

.targetblankHover {
  display: none;
  width: 12px;
  margin-left: 7px;
  padding-bottom: 1px;
}

@media screen and (max-width: 860px) {
  .hide {
    transition: all 0.5s ease;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.header {
  width: 100%;
  margin-top: 35px;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    background-color: #fff;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 9px;
    padding-left: 3px;
  }
}

.headerInner {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 0 35px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .headerInner {
    padding: 0 18px;
  }
}

.headerLogo {
  width: 144px;
  height: 89px;
}
@media screen and (max-width: 767px) {
  .headerLogo {
    width: 80px;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .navMenu {
    display: none;
  }
}

.navItems {
  display: flex;
}

.navItem {
  text-decoration: none;
  font-size: 16px;
  color: #333333;
  padding-left: 32px;
  padding-bottom: 3px;
}
.navItem a {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .navItem {
    padding-left: 0;
  }
}

.hamburger {
  display: none;
  position: fixed;
  z-index: 100;
  top: 17px;
  right: 13px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 6px;
  background: #707070;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 21px;
}
.hamburger span:nth-child(3) {
  top: 32px;
}

.drawerWrapper {
  visibility: hidden;
  position: fixed;
  display: flex;
  width: 100%;
  top: 0px;
  right: 0;
  left: 10;
  z-index: 10;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
@media screen and (max-width: 559px) {
  .drawerWrapper {
    visibility: visible;
  }
}

.drawerMenu {
  height: 100vh;
  background-color: #fff;
  width: 100%;
  margin-top: 71px;
  padding-top: 44px;
}
.drawerMenu li {
  background-color: #fff;
  line-height: 39px;
  margin-bottom: 35px;
  text-align: center;
}
.drawerMenu li a {
  font-size: 16px;
  color: #333333;
}

.drawerNavItems {
  display: flex;
  flex-direction: column;
}

/* ナビ開いてる時のボタン */
.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.active span:nth-child(2), .active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
}

.kv {
  position: relative;
  max-width: 1500px;
  margin: 38px auto 0;
  padding-bottom: 111px;
}
@media screen and (max-width: 860px) {
  .kv {
    margin-top: 0;
    padding-top: 71px;
    padding-bottom: 263px;
  }
}

.bgColor {
  position: absolute;
  top: 48%;
  width: 93%;
  height: 54%;
  background: #f7faf2;
}

.bgWorldmap {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/kv_bg_worldmap.svg);
  background-repeat: no-repeat;
  background-position: -16% 115%;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .bgWorldmap {
    background-size: 100%;
    background-position: -23px 805px;
  }
}

.contents {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  .contents {
    flex-direction: column;
  }
}

.kvLeft {
  width: 30%;
  box-sizing: border-box;
  padding-left: 2%;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 860px) {
  .kvLeft {
    width: 100%;
    padding-left: 20px;
  }
}
@media screen and (max-width: 860px) {
  .kvLeft h1 {
    line-height: 56px;
  }
}
.kvLeft h1 span {
  color: #7ab626;
}

.kvHeading {
  margin-top: 43%;
  letter-spacing: 3px;
}
@media screen and (max-width: 860px) {
  .kvHeading {
    margin-top: 31px;
    font-size: 42px;
  }
}

.kvSubhead {
  margin-top: 24px;
  margin-left: -1px;
  font-size: 17px;
  line-height: 29px;
}
@media screen and (max-width: 860px) {
  .kvSubhead {
    margin-top: 15px;
    margin-left: 6px;
    font-size: 15px;
    line-height: 27px;
  }
}

.kvRight {
  width: 70%;
}
@media screen and (max-width: 860px) {
  .kvRight {
    width: 100%;
    margin-top: 28px;
  }
}

.kvkeepheigt {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  .kvkeepheigt {
    height: 100%;
  }
}

.kvImage img {
  display: block;
  width: 310px;
  height: 300px;
  flex-basis: auto;
}
.kvImage .kvInner {
  display: flex;
}
@media screen and (max-width: 860px) {
  .kvImage .kvInner {
    justify-content: space-between;
    align-items: flex-start;
  }
}

.ml {
  margin-left: 18px;
}
@media screen and (max-width: 860px) {
  .ml {
    margin-left: 7px;
  }
}

.mt {
  margin-top: 18px;
}
@media screen and (max-width: 860px) {
  .mt {
    margin-top: 7px;
  }
}

.kvDetailsInner {
  margin-top: 9%;
}
@media screen and (max-width: 860px) {
  .kvDetailsInner {
    margin-top: 48px;
    padding-left: 20px;
    padding-right: 9%;
  }
}

.kvDetailsHead {
  font-size: 34px;
  letter-spacing: 0.8px;
  color: #7ab626;
}
@media screen and (max-width: 860px) {
  .kvDetailsHead {
    font-size: 26px;
    letter-spacing: -1.6px;
  }
}

.kvDetailsSentence {
  margin-top: 33px;
  font-size: 16px;
  line-height: 40px;
}
@media screen and (max-width: 860px) {
  .kvDetailsSentence {
    margin-top: 22px;
    font-size: 14px;
    line-height: 26px;
  }
}

@media screen and (max-width: 860px) {
  .brSp {
    display: none;
  }
}

.information {
  max-width: 1500px;
  margin: 147px auto 0;
  padding-bottom: 156px;
}
@media screen and (max-width: 767px) {
  .information {
    margin-top: 49px;
    padding-bottom: 21px;
  }
}

.informationItems {
  margin-top: 124px;
}
@media screen and (max-width: 767px) {
  .informationItems {
    margin-top: 15px;
  }
}

.informationItem {
  display: flex;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .informationItem {
    margin-top: 0;
    flex-direction: column;
    padding-right: 20px;
  }
}

.informationDetails {
  margin-top: 21px;
  margin-left: 81px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.informationImg {
  width: 54vw;
}
@media screen and (max-width: 767px) {
  .informationImg {
    width: 100%;
  }
}

.detailsHead {
  font-size: 28px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .detailsHead {
    font-size: 24px;
  }
}

.detailsParagraph {
  font-size: 16px;
  margin-top: 20px;
  max-width: 350px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .detailsParagraph {
    max-width: none;
    margin-top: 24px;
    line-height: 23px;
  }
}

footer {
  padding: 0 10px;
  max-width: 1500px;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 0 0 13px;
  }
}

.footerMain {
  display: flex;
  width: 100%;
}

.footerLeft {
  display: flex;
  align-items: center;
  padding-top: 9px;
  margin-left: -27px;
}
@media screen and (max-width: 767px) {
  .footerLeft {
    display: none;
  }
}

.copyright {
  transform: rotate(90deg);
  font-size: 15px;
  letter-spacing: 1.4px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .copyright {
    transform: rotate(0deg);
  }
}

.footerRight {
  max-width: 1400px;
  width: 100%;
  background-color: #f7faf2;
  padding: 126px 0 133px;
}

.rightInner {
  margin-left: -112px;
}

.footerSubhead {
  margin-left: 4%;
}
@media screen and (max-width: 767px) {
  .footerSubhead {
    margin-left: auto;
  }
}

.footerHead {
  padding-top: 4px;
  margin-left: -1%;
}
@media screen and (max-width: 767px) {
  .footerHead {
    margin-left: 0;
  }
}

.footerItems {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 90px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .footerItems {
    margin-top: 20px;
    padding: 0;
    flex-direction: column;
    text-align: center;
  }
}

.itemsLeft {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .itemsLeft {
    margin-bottom: 0;
  }
}

.tel,
.fax {
  font-size: 30px;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .tel,
  .fax {
    font-size: 20px;
  }
}

.label {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .label {
    font-size: 16px;
  }
}

.telLabel {
  margin-right: 12px;
}

.faxLabel {
  margin-right: 12px;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .faxLabel {
    font-size: 16px;
  }
}

.hours {
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .hours {
    margin-top: 14px;
    margin-left: 0;
    font-size: 14px;
  }
}

.fax {
  margin-top: 43px;
}
@media screen and (max-width: 767px) {
  .fax {
    margin-top: 29px;
  }
}

.number {
  letter-spacing: 4.5px;
}

.itemsRight, .itemsLeft {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .itemsRight, .itemsLeft {
    padding: 0;
  }
}

.itemsRight {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .itemsRight {
    margin-top: 0;
    margin-left: 0;
  }
}

.btnInquiry {
  max-width: 350px;
  font-size: 20px;
  padding: 24px 37px 21px 41px;
}
@media screen and (max-width: 767px) {
  .btnInquiry {
    margin: 43px auto 0;
    width: 100%;
    font-size: 16px;
    background-color: #aecc84;
    color: #fff;
    border: none;
    padding: 28px 5px 26px;
  }
}

.footerSub {
  float: right;
  display: flex;
  padding: 42px 33px 34px 0;
}
@media screen and (max-width: 767px) {
  .footerSub {
    margin-top: 22px;
    padding: 0;
    float: none;
    justify-content: center;
  }
}
.footerSub a {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .footerSub a {
    font-size: 12px;
  }
}

.privacyPolicy {
  margin-left: 34px;
}
@media screen and (max-width: 767px) {
  .privacyPolicy {
    margin-left: 0;
  }
}

.sitemap {
  margin-left: 34px;
}
@media screen and (max-width: 767px) {
  .sitemap {
    margin-left: 30px;
  }
}

.copyrightSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .copyrightSp {
    display: block;
    text-align: center;
    margin-top: 18px;
  }
  .copyrightSp p {
    font-size: 10px;
  }
}

@keyframes animate-panel {
  0% {
    transform-origin: left top;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  35% {
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}
@keyframes animate-content {
  0% {
    visibility: hidden;
  }
  35% {
    visibility: hidden;
  }
  36% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}
.mask_wrap {
  display: block;
}
.mask_wrap .mask_inner {
  position: relative;
  visibility: hidden;
}
.mask_wrap .mask_inner::after {
  content: "";
  background: #aecc84;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.3s ease 0s;
  visibility: visible;
}
.mask_wrap .mask_inner.start {
  animation-name: animate-content;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
.mask_wrap .mask_inner.start::after {
  animation-name: animate-panel;
  animation-iteration-count: 1;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.mask::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #08435e;
}

.wipe_in::after {
  animation: wipe_in_out 1.1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-duration: 1.1s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: wipe_in_out;
}

@font-face {
  font-family: "Dancing Script";
  src: url(../font/DancingScript-Regular.ttf);
}
.company {
  padding-top: 141px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 112px;
  }
}

.headCustomCompany {
  margin-left: 51px;
}
@media screen and (max-width: 767px) {
  .headCustomCompany {
    margin-left: 0;
  }
}

.infomationTable {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .infomationTable {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .infomationTable table {
    width: 100%;
  }
}
.infomationTable table,
.infomationTable td,
.infomationTable th {
  border-collapse: collapse;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .infomationTable table,
  .infomationTable td,
  .infomationTable th {
    font-size: 15px;
  }
}
.infomationTable td,
.infomationTable th {
  border-bottom: solid 1px #aecc84;
}
@media screen and (max-width: 767px) {
  .infomationTable td,
  .infomationTable th {
    display: block;
    width: 100%;
    margin: 0 auto;
    border: none;
  }
}
.infomationTable th {
  min-width: 179px;
  background-color: #f7faf2;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .infomationTable th {
    text-align: left;
    padding: 18px 0 17px 22px;
  }
}
.infomationTable td {
  width: 100%;
  padding: 25px 3px 24px 53px;
  line-height: 33px;
}
@media screen and (max-width: 767px) {
  .infomationTable td {
    padding: 8px 10px 15px 20px;
  }
}
.infomationTable .brSpDisplay {
  display: none;
}
@media screen and (max-width: 767px) {
  .infomationTable .brSpDisplay {
    display: inline-block;
  }
}

.tableCustomCompany {
  margin-top: 82px;
}
@media screen and (max-width: 767px) {
  .tableCustomCompany {
    margin-top: 39px;
  }
}

.history {
  margin-top: 135px;
}

.tableCustomHistory {
  margin-top: 82px;
}

.license {
  margin-top: 153px;
}

.tableCustomLicense {
  margin-top: 60px;
  margin-bottom: 156px;
}

@font-face {
  font-family: "Dancing Script";
  src: url(../font/DancingScript-Regular.ttf);
}
.privacy {
  padding: 136px 20px 0;
  max-width: 1040px;
  margin: 0 auto 165px;
}
.privacy .bullets li {
  font-size: 16px;
}

.headCustomPrivacy {
  padding-left: 51px;
}
@media screen and (max-width: 767px) {
  .headCustomPrivacy {
    padding-left: 0px;
  }
}

.policyContents {
  margin-top: 79px;
}

.introduction {
  font-size: 16px;
  line-height: 27px;
  text-align: justify;
}

.bullets {
  margin-top: 16px;
  padding-left: 21px;
}

.bullets li {
  position: relative;
  margin-bottom: 8px;
  line-height: 32px;
  text-align: justify;
}
.bullets li::after {
  display: block;
  content: '';
  position: absolute;
  top: 13px;
  left: -13px;
  width: 3px;
  height: 3px;
  background-color: #666;
  border-radius: 100%;
}

.issue {
  margin-top: 41px;
  font-size: 16px;
  text-align: right;
  line-height: 34px;
}

@font-face {
  font-family: "Dancing Script";
  src: url(../font/DancingScript-Regular.ttf);
}
.siteMap {
  padding-top: 131px;
  margin-bottom: 226px;
}
@media screen and (max-width: 767px) {
  .siteMap {
    padding-top: 113px;
    margin-left: -12px;
  }
}

.siteMapNav {
  max-width: 581px;
  padding: 0 52px 0 20px;
  margin: 86px auto;
}
@media screen and (max-width: 767px) {
  .siteMapNav {
    margin: 28px auto;
  }
}

.siteMapNavInner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .siteMapNavInner {
    flex-direction: column;
    align-items: center;
  }
}

.siteMapNavInner ul li {
  font-size: 16px;
  margin-bottom: 36px;
}

.items {
  margin-bottom: 20px;
}

.itemsPl {
  padding-left: 42px;
}

.item {
  position: relative;
  padding-left: 28px;
}
.item::after {
  display: block;
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 10px;
  height: 1px;
  background-color: #aecc84;
  border-radius: 100%;
}

@media screen and (max-width: 1370px) {
  .kvImage img {
    width: 100%;
    height: auto;
  }

  .ml {
    margin-left: 9px;
  }

  .mt {
    margin-top: 9px;
  }
}
@media screen and (max-width: 1248px) {
  .informationDetails {
    margin-top: 14px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 1180px) {
  .rightInner {
    margin: 0 auto;
  }

  .footerRight {
    padding-left: 0;
  }
}
@media screen and (max-width: 975px) {
  .informationDetails {
    margin: 0 20px 0;
  }

  .btnInner {
    margin-top: 13px;
  }
}
@media screen and (max-width: 870px) {
  .kvImage {
    padding-left: 0;
  }
  .kvImage .responsiveImg {
    width: calc(33% - 14px / 3);
    height: auto;
  }
  .kvImage .responsiveImg img {
    width: 100%;
    height: auto;
  }
  .kvImage .responsiveSwichImg {
    width: calc(33% - 14px / 3);
  }
  .kvImage .responsiveSwichImg img {
    width: 100%;
    height: auto;
  }

  .ml {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .informationDetails {
    margin: 34px 20px 43px 20px;
  }

  .btnInner {
    margin-top: 34px;
  }

  .footerRight {
    padding: 45px 20px 45px;
  }
}
