/* reset */
html {
  margin: 0;
}

body,html {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 24.5px;
  letter-spacing: 1px;
  font-feature-settings: "palt" 1;
  background-color: #fff;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

a,button {
  font-family: "YuGothic", "Noto Sans JP", sans-serif;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.text-center {
  text-align: center;
}

/*================ hamburger button start here ============*/
.humbrger-icon {
  position: absolute;
  z-index: 101;
  transition: 0.3s;
  top: 0px;
  right: 0px;
  display: none;
  background-color: #ffff00;
  padding: 17px 15px;
  width: 60px;
  height: 60px;
}

.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  float: right;
  padding: 0px;
  width: 30px;
  height: 26px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  background-color: transparent;
}

.c-hamburger:focus {
  outline: none;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 12px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: #1A2530;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1A2530;
  content: "";
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
}

.c-hamburger span::before {
  top: -9px;
}

.c-hamburger span::after {
  bottom: -9px;
}

.c-hamburger--htx {
  /*background-color:transparent !important;  border:none !important; padding:0px !important;*/
}

.c-hamburger--htx span {
  transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.mobile-menu-active .c-hamburger--htx {
  background-color: transparent;
}

.mobile-menu-active .site_header {
  position: fixed;
  z-index: 99;
}

.mobile-menu-active .c-hamburger--htx span {
  background: none;
}

.mobile-menu-active .c-hamburger--htx span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-active .c-hamburger--htx span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.mobile-menu-active .c-hamburger--htx span::before,
.mobile-menu-active .c-hamburger--htx span::after {
  transition-delay: 0s, 0.3s;
  background-color: #000;
}

.mobile-menu-active .humbrger-icon {
  background-color: #61BAB7;
}

@media screen and (max-width:1279px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 539px) {}

@media screen and (max-width: 480px) {}

/*======== hamburger button End's here ============*/


/* container */
.container {
  max-width: 1132px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:1279px) {
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 752px;
  }
}

@media screen and (max-width: 539px) {}

@media screen and (max-width: 480px) {}

/* display */
@media screen and (max-width: 480px) {
  .desktop {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .sp {
    display: block;
  }
}
/* Header */
.site_header {
  padding-top: 16px;
  padding-bottom: 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 84px;
  transition: all  0.3s ease;
}

.site_header .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.site_header .site_logo {
  position: absolute;
  top: 16px;
  left: 0;
}

.site_header .site_logo {
  display: block;
  width: 180px;
  background-color: #000;
  text-align: right;
}

.site_header .site_logo img {
  height: 52px;
}

.site_header nav .feature_links,
.site_header nav .nav_footer {
  display: none;
}

@media screen and (max-width:1279px) {
  .site_header .site_logo {
    width: 148px;
  }
}

@media screen and (max-width: 900px) {
  .site_header .site_logo {
    width: 110px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .site_header {
    height: auto;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .site_header .row {
    justify-content: flex-start;
  }

  .site_header .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .humbrger-icon {
    display: block;
  }

  .site_header .site_logo {
    position: static;
    z-index: 1;
  }

  .site_header nav {
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #61BAB7;
    padding: 16px;
    padding-top: 15vh;
    transition: opacity 0.3s ease-in-out;
  }

  .mobile-menu-active nav {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }

  .site_header nav>ul {
    display: none;
  }

}

@media screen and (max-width: 539px) {}

@media screen and (max-width: 480px) {}

/* nav */
nav>ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: flex;
  position: absolute;
  top: 16px;
  right: 85px;
}

nav>ul li {
  margin-right: 20px;
  position: relative;
  /* overflow: hidden; */
}

nav>ul li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 10px solid #000;
  border-left: 10px solid transparent;
  transition: border 0.3s ease-in-out;
}

nav>ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  z-index: -1;
  background-image: repeating-linear-gradient(-45deg,
      #cee6e4,
      #cee6e4 2px,
      transparent 2px,
      transparent 5px);
}

nav>ul li:last-child {
  margin-right: 0px;
}

nav>ul li a {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  color: #000;
  background-color: #ffff00;
  display: block;
  padding: 7px 0px;
  transition: all 0.3s ease-in-out;
  min-width: 168px;
}

nav>ul li.active a {
  background-color: #61bab7;
}

nav>ul li a span {
  display: block;
}

nav>ul li:last-child a {
  min-width: 178px;
}

nav>ul li a span.en {
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-left: 10px;
  padding-bottom: 4px;
  padding-right: 10px;
  margin-bottom: 4px;
  transition: border 0.3s ease-in-out;
  font-family: "Lato";
  font-weight: normal;
}
/* 20230919 */
nav>ul li.top a,
.feature_links ul li.top a {
  font-family: "Lato";
  background-color: transparent;
  border: 1px solid #9fa0a0;
  padding: 10px;
  color: black;
  min-width: auto;
  height: 100%;
  justify-content: center;
    display: flex;
    align-items: center;
    width: 52px;
    background-color: white;
}
nav>ul li.top:after,
nav>ul li.top:before,
.feature_links ul li.top:after,
.feature_links ul li.top:before {
  display: none;
}

@media (hover: hover) {
  nav>ul li:hover:before {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width:1279px) {
}
@media screen and (max-width:900px) {
  nav>ul {
    right: 15px;
  }
}

@media screen and (max-width: 767px) {
  nav>ul {
    /* position: relative; */
  }
  .feature_links ul li.top a {
    width: 100%;
  }
  .site_header nav .feature_links ul li.top {
    margin-top: 25px;
  }
  .site_header nav .feature_links ul li.top a {
    background-color: transparent;
    border-color: white;
    color: white;
  }
}

@media screen and (max-width: 539px) {}

@media screen and (max-width: 480px) {}

/* sp nav top */
.feature_links {}

.feature_links ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.feature_links ul li {
  margin-bottom: 26px;
  position: relative;
}

.feature_links ul li:last-child {
  margin-bottom: 0px;
}

.feature_links ul li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 18px solid #000;
  border-left: 18px solid transparent;
  transition: border 0.3s ease-in-out;
}

.feature_links ul li a {
  background-color: #ffff00;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 18px;
  line-height: 22.5px;
  min-height: 62px;
  padding: 0px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.feature_links ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  z-index: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1) 2px,
      transparent 2px,
      transparent 5px);
}

.feature_links ul li a span {
  display: inline-block;
}

.feature_links ul li a .number {
  width: 48px;
  text-align: center;
}

.feature_links ul li a .num_01 {
  content: url(/sp/tepra_arekore/common/img/feature_links_icon_num01.svg);
}
.feature_links ul li a .num_02 {
  content: url(/sp/tepra_arekore/common/img/feature_links_icon_num02.svg);
}
.feature_links ul li a .num_03 {
  content: url(/sp/tepra_arekore/common/img/feature_links_icon_num03.svg);
}

.feature_links ul li a .jap {
  letter-spacing: 4px;
  margin-right: 10px;
  width: 186px;
  letter-spacing: 0.04em;
  /*40*/
  text-align: right;
}

form fieldset,
form input,
form button {
  pointer-events: none !important;
}

.feature_links ul li a .en {
  font-family: "Lato";
  letter-spacing: -1px;
  font-size: 24px;
  padding-right: 20px;
}
@media (hover: hover) {
  .feature_links ul li:hover:before {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width:1279px) {
  .feature_links ul li {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .site_header nav .feature_links {
    display: block;
  }

  .site_header nav .feature_links ul {
    flex-direction: column;
  }

  .site_header nav .feature_links ul li {
    margin-right: 0px;
  }

  .site_header nav .feature_links ul li a {
    background-color: #fff;
  }

  .site_header nav .feature_links ul li a .en {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
    width: 120px;
  }
  .site_header nav .feature_links ul li:nth-of-type(2) a .en {
    padding-left: 2px;
    padding-right: 0;
  }

  .site_header nav .nav_footer {
    display: block;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding-top: 14px;
    border-top: #fff 1px solid;
  }

  .site_header nav .nav_footer .social {
    border-bottom: #fff 1px solid;
    padding-bottom: 8px;
    margin-bottom: 24px;
  }

  .site_header nav .nav_footer .social h3 {
    color: #fff;
    font-family: 'Lato';
    font-weight: normal;
  }

  .site_header nav .nav_footer .social ul li a {
    font-size: 32px;
  }

  .site_header nav .nav_footer .foot_logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
  }

  .site_header nav .nav_footer .foot_logo_item {
    margin-bottom: 16px;
  }

  .site_header nav .nav_footer .copyright {
    color: #fff;
  }
}

@media screen and (max-width: 539px) {}

@media screen and (max-width: 480px) {}

/* Page Hero Banner */
.page_banner_wrap {
  height: 100vh;
  position: relative;
  z-index: 0;
}

.page_banner_wrap img {
  pointer-events: none;
  user-select: none;
}

.page_banner_wrap .container {
  max-width: 800px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

/* .page_intro {
  display: inline-block;
  position: relative;
  z-index: 10;
}

.page_intro h1 {
  font-size: 26px;
  line-height: 39px;
  letter-spacing: 4px;
  margin-bottom: 30px;
  font-weight: normal;
}

.page_intro img {
  width: 420px;
} */

@media screen and (max-width:1279px) {
  .page_banner_wrap .container {
    max-width: 737px;
  }
}

@media screen and (max-width: 767px) {
  /* .page_intro h1 {
    font-size: 20px;
    line-height: 32px;
  } */
}

@media screen and (max-width: 539px) {
  .page_intro img {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {}


/* Button */
.action_btn {
  border: #000 2px solid;
  padding: 10px 16px;
  color: #000;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  min-width: 168px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
}

.action_wrap .btnStripe {
  margin-left: auto;
  margin-right: auto;
}

.action_wrap .lag_btn {
  font-size: 16px;
  line-height: 35px;
}

@media (hover: hover) {
  .action_btn:hover {
    background-color: #eeea38;
  }
}

@media screen and (max-width:1279px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 539px) {}

@media screen and (max-width: 480px) {}


/* Final Button Css */
.btnStripe {
  color: #000;
  min-width: 175px;
  font-family: "Lato";
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2px 24px;
  border: #000 2px solid;
  border-right: none;
  border-bottom: none;
}

.btnStripe.jp {
  font-family: "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.btnStripe::before {
  content: "";
  width: 2px;
  height: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-color: #000;
  /* transition: background 0.3s ease-in-out; */
}

.btnStripe span {
  position: relative;
  z-index: 2;
}

.btnStripe::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0;
  visibility: hidden;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: 0;
  background-image: repeating-linear-gradient(-45deg,
      #cee6e4,
      #cee6e4 2px,
      transparent 2px,
      transparent 5px);
      transition: all 0.3s ease-in-out;
}

.btnStripe span.line {
  width: 12px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 2px;
  right: -1px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  /* transition: background 0.3s ease-in-out; */
}

.btnStripe span.border-bottom {
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -2px;
  left: -2px;
  right: 0;
  /* transition: background 0.3s ease-in-out; */
}

/* small */
.btnStripe.sml_btn {
  min-width: 84px;
  padding: 4px 16px;
  line-height: 20px;
}
.btnStripe.sml_btn:after {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.3) 2px,
    transparent 2px,
    transparent 5px
  );
}
.btnStripe.sml_btn::after {
  top: 4px;
  left: 4px;
}

/* large */
.btnStripe.lag_btn {
  min-width: 14.25em;
}

@media (hover: hover) {
  .btnStripe:hover::after {
    opacity: 1;
    visibility: visible;
  }
  .btnStripe.sml_btn:hover {
    border-color: #fff;
    color: #fff;
  }
  .btnStripe.sml_btn:hover:before {
    background-color: #fff;
  }
  .btnStripe.sml_btn:hover span.line {
    background-color: #fff;
  }
  .btnStripe.sml_btn:hover .border-bottom {
    background-color: #fff;
  }
}

@media screen and (max-width:1279px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 539px) {}

@media screen and (max-width: 480px) {}


/* Footer */
.site_footer {
  background-color: #000;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
}

.site_footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.site_footer .row .col {
  width: 33.33%;
}

.site_footer a {
  color: #fff;
}

.foot_logos {
  text-align: center;
  margin-top: 10px;
}

.foot_logos img {
  margin-left: auto;
  margin-right: auto;
}

.foot_logo_item {
  margin-bottom: 26px;
}

.foot_logo_item a {
  display: inline-block;
}

.foo_logo {
  max-width: 66px;
}

.kingjim {
  max-width: 155px;
}

.copyright {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  font-family: "Lato";
  font-weight: normal;
}

.site_footer .page_intro {
  font-size: 11px;
  line-height: 1.45;
}

.site_footer .page_intro h3 {
  font-size: 11px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 12px;
}

.site_footer .page_intro img {
  max-width: 136px;
}

.social {
  margin-top: 16px;
}

.social h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 14px;
  display: none;
}

.social ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.social ul li {
}
.social ul li a {
  color: #fff;
  font-size: 22px;
  padding: 6px 12px;
  display: inline-flex;
}
.social ul li a i {
  vertical-align: middle;
  display: block;
  width: 36px;
  height: 36px;
}
.social ul li a i.instagram {
  background: url(/sp/tepra_arekore/common/img/instagram.png) no-repeat;
  background-position: center center;
  background-size: 30px;
}
.social ul li a i.facebook {
  background: url(/sp/tepra_arekore/common/img/facebook.png) no-repeat;
  background-position: center center;
  background-size: 30px;
}
.social ul li a i.twitter {
  background: url(/sp/tepra_arekore/common/img/twitter.png) no-repeat;
  background-position: center center;
  background-size: 30px;
}
.social ul li a i.youtube-play {
  background: url(/sp/tepra_arekore/common/img/youtube.png) no-repeat;
  background-position: center center;
  background-size: 35px;
}
.social ul li a i.x {
  background: url(/sp/tepra_arekore/common/img/x.svg) no-repeat;
  background-position: center center;
  background-size: 30px;
}
.social ul li a i.tiktok {
  background: url(/sp/tepra_arekore/common/img/tiktok.svg) no-repeat;
  background-position: center center;
  background-size: 30px;
}

@media screen and (max-width:1279px) {


  .site_footer .page_intro img {
    max-width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .site_footer .row {
    gap: 40px;
  }

  .site_footer .row .col {
    width: 100%;
  }

  .site_footer .row .col:nth-child(1) {
    order: 1;
  }

  .site_footer .row .col:nth-child(2) {
    order: 3;
  }

  .site_footer .row .col:nth-child(3) {
    order: 2;
  }

  .foot_logos {
    text-align: left;
    margin-top: 0;
  }

  .foot_logo_item {
    margin-right: 30px;
    display: inline-block;
  }

  .social {
    margin-top: 0;
  }

  .social h3 {
    display: block;
    color: #B9B9B9;
  }

  .social ul {
    justify-content: flex-start;
    margin-left: -15px;
  }

  .copyright {
    text-align: left;
  }
}

@media screen and (max-width: 539px) {}

@media screen and (max-width: 480px) {}