/* Reset
----------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html, body {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, picture, video, canvas, svg {
  display: block;
  height: auto;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}
a {
  color: #009943;
  text-decoration: none;
}
a:hover {
  color: #f99427;
}
/* Common
----------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  font-family: "Tahoma", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Meiryo", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  color: #009943;
  background: #FDFBF0;
  overflow: visible;
}
h1 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
h2 {
  margin: 30px 0;
}
h3 {
  margin: 0 0 80px;
}
h3 img {
  margin: 0 auto;
}
.device_dt {
  display: block;
}
.device_tb {
  display: none;
}
.device_sp {
  display: none;
}
/* Layout
----------------------------------------------------- */
section {
  max-width: 1100px;
  margin: 0 auto;
}
div.bg_beige {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding: 100px 5vw;
}
div.bg_beige section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
p {
  display: inline-block;
  margin: 20px 0;
}
section p, section img {
  position: relative;
  z-index: 1;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: auto;
  position: relative;
}
.half_box {
  width: 48%;
}
.t_cntr {
  text-align: center;
}
.notxt {
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
}
.sticky {
  position: sticky;
  top: 100px;
}
.h_cntr {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}
.bg_beige {
  background: #FDFBF0;
}
.bg_green {
  background: #009943;
}
img.icon_search {
  position: absolute;
  top: 15px;
  width: 25px;
  height: 25px;
  z-index: 1;
}
img.icon_newtab {
  position: absolute;
  bottom: 15px;
  width: 25px;
  height: 25px;
  z-index: 1;
}
/* Scroll
----------------------------------------------------- */ ::-webkit-scrollbar {
  width: 5px;
  background: #FDFBF0;
}
::-webkit-scrollbar-thumb {
  width: 5px;
  background: #009943;
}
/* Animation
----------------------------------------------------- */
.motion {
  transition: all .5s ease-in-out;
}
.delay {
  transition-delay: .3s;
}
.delay6 {
  transition-delay: .6s;
}
.fixin.onpage {
  opacity: 1 !important;
  transform: translateY(0%) !important;
}
/* Overlay
----------------------------------------------------- */
figure {
  position: relative;
  width: 100%;
  height: auto;
  left: 0;
  overflow: hidden;
}
figure a, figure a:link, figure a:visited, figure a:active {
  padding: 0;
  opacity: 1;
}
figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,153,67,0.5);
  color: white;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  overflow: hidden;
  transition: all 0.5s linear;
  opacity: 0;
  z-index: -1;
}
figure:hover figcaption {
  opacity: 1;
  z-index: 1;
}
/* Modal Window
----------------------------------------------------- */
.open-modal {
  cursor: pointer;
}
.nonscroll {
  overflow-y: hidden !important;
}
.modal-body {
  position: relative;
}
.modal {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  text-align: center;
  pointer-events: none;
  z-index: -5;
}
.modal.active {
  display: flex;
  pointer-events: inherit;
  opacity: 1;
  z-index: 100;
}
.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 80vh;
  background: #FDFBF0;
  border: solid 10px #009943;
  border-radius: 30px;
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 70px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all .5s ease-in-out;
}
.modal-content::-webkit-scrollbar {
  background: none;
}
.modal.active .modal-content {
  animation: fadeInScale 0.5s ease-in-out forwards;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-close {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  width: 60px;
  height: 60px;
  position: fixed;
  top: 20px;
  left: calc(50% - 30px);
  z-index: 1000;
}
.modal-close:hover img.icon_close {
  transform: scale(.7);
}
.charm_window .modal-close img {
  width: 45px;
  height: 45px;
}
/* Base
----------------------------------------------------- */
header, footer {
  background: white;
  padding: 20px 25px;
  text-align: center;
}
header {
  width: 100%;
  height: 100px;
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 10;
}
.Header__content {
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 200px 1fr;
}
.Header__logo {
  width: 200px;
  padding: 10px 0;
}
nav ul.flex {
  gap: 0vw;
  justify-content: end;
  list-style: none;
  font-size: 1.2rem;
}
nav ul.flex li {
  margin-right: 2vw;
}
nav ul.flex li:last-child {
  margin-right: 0;
}
.burgerMenu {
  display: none;
}
a.banner_button {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 150px;
  right: -10px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #f99427;
  box-shadow: -10px 10px 0 rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1.3;
  z-index: 10;
}
a.banner_button.device_tb.device_sp {
  display: none;
}
a.banner_button span {
  font-size: 2rem;
}
a.banner_button:hover {
  background: #e50011;
  transform: rotate(15deg);
}
/* Main Content
-----------------------------------------------------
-----------------------------------------------------
----------------------------------------------------- */
main {
  padding: 100px 0 0;
  overflow-x: hidden;
}
.hero {
  height: auto;
  padding: 0;
  background: rgb(240, 240, 240);
  text-align: center;
  padding: calc(100vh - 100px) 0 30vh;
}
.heroimg {
  width: 100%;
  height: calc(100vh - 100px);
  position: fixed;
  top: 100px;
  left: 0;
  background: #FDFBF0;
  overflow: hidden;
  z-index: 0;
}

.heroimg img {
  width: auto;
  height: 100%;
}

.heroimg img.device_bg {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(1.2);
  z-index: -1;
}

@media (max-aspect-ratio: 25 / 15) {
  .heroimg img {
  max-width: 100%;
  max-height: 100%;
    object-fit: cover;
  }
}

.hero_inner {
  max-width: 1000px;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding: 80px 50px;
  background: #fdfbf0;
  border: solid 5px #f99427;
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  z-index: 1;
}
.hero_inner h2 {
  margin: 30px 0 10px;
}
.hero_inner img.copy_cashinjapan {
  height: 200px;
  margin: 0 auto;
}
.hero_inner p {
  margin: 20px 0 0;
}
/* The Sacred Power of Paper
----------------------------------------------------- */
#thesacredpowerofpaper h3 img {
  height: 70px;
}
#thesacredpowerofpaper .flex {
  align-items: center;
}
#thesacredpowerofpaper .flex img.cashmeetscharm_illut {
  height: auto;
  position: absolute;
}
#thesacredpowerofpaper .flex img.cashmeetscharm_illut:nth-child(1) {
  width: 400px;
  top: 0px;
  right: calc((100vw - 1100px) / -2);
  transform : rotate(10deg);
}
#thesacredpowerofpaper .flex img.cashmeetscharm_illut:nth-child(2) {
  width: 500px;
  top: 250px;
  right: -150px;
  transform : rotate(-10deg);
}
#thesacredpowerofpaper .flex span.bg_jpcopy {
  opacity: 0.05;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100%;
  z-index: 0;
}
/* Engimono:Good Luck Charms for the Curious Traveler
----------------------------------------------------- */
#engimono h3 img {
  width: 100%;
  height: auto;
}
#engimono .flex img.cashmeetscharm_illut {
  height: auto;
  position: absolute;
}
#engimono .flex img.cashmeetscharm_illut:nth-child(1) {
  width: 400px;
  top: 0px;
  left: calc((100vw - 1100px) / -2);
  transform : rotate(10deg);
}
#engimono .flex img.cashmeetscharm_illut:nth-child(2) {
  width: 500px;
  top: 250px;
  left: -150px;
  transform : rotate(-10deg);
}

#thesacredpowerofpaper img.cashmeetscharm_illut.is-animated:nth-child(1),
#engimono img.cashmeetscharm_illut.is-animated:nth-child(1) {
  animation: rotateYf 10s ease-in-out 1s 1;
}
#thesacredpowerofpaper img.cashmeetscharm_illut.is-animated:nth-child(2),
#engimono img.cashmeetscharm_illut.is-animated:nth-child(2) {
  animation: rotateYs 5s ease-in-out 1;
}

@keyframes rotateYf {
    0% {
       transform : rotate(10deg) rotateY(0deg);
    }
    40% {
       transform : rotate(-10deg) rotateY(180deg);
    }
    60% {
       transform : rotate(-10deg) rotateY(180deg);
    }
    100% {
       transform : rotate(10deg) rotateY(0deg);
    }
}
@keyframes rotateYs {
    0% {
       transform : rotate(-10deg) rotateY(0deg);
    }
    40% {
       transform : rotate(10deg) rotateY(180deg);
    }
    60% {
       transform : rotate(10deg) rotateY(180deg);
    }
    100% {
       transform : rotate(-10deg) rotateY(0deg);
    }
}

#engimono .flex span.bg_jpcopy {
  opacity: 0.05;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100%;
  z-index: 0;
}
/* 12 Luky Charms
----------------------------------------------------- */
#twelveluckycharms h3 img {
  width: auto;
  height: 100px;
}
section#twelveluckycharms .charm_list_area {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.charm_list_area span.bg_curvetop {
  position: absolute;
  top: -25vw;
  left: 0;
  width: 100vw;
  height: 25vw;
  z-index: 0;
}
.charm_list_area span.bg_curvebottom {
  position: absolute;
  bottom: -25vw;
  left: 0;
  width: 100vw;
  height: 25vw;
  z-index: 0;
}
.charm_list_area span.bg_curvetop img,
.charm_list_area span.bg_curvebottom img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
section#twelveluckycharms .charm_list {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1000px;
  position: relative;
  margin: 100px auto 20vw;
  padding: 0;
}
section#twelveluckycharms .charm_list .charm {
  border-radius: 50%;
  overflow: hidden;
  border: solid 7px white;
}
section#twelveluckycharms .charm_list .charm:hover {
  border: solid 7px #f99427;
}
section#twelveluckycharms .charm_list .charm img {
  width: 100%;
  height: 100%;
}
.charm_window .charm_jp {
  min-height: 240px;
  position: absolute;
  top: 70px;
  right: 70px;
  padding: 50px 10px 35px;
  border: solid 3px #e50011;
  background: #FDFBF0;
  color: #e50011;
  font-size: 2rem;
  letter-spacing: 15px;
  text-align: center;
  writing-mode: vertical-rl;
}
.charm_window .charm_jp span.jp_box1,
.charm_window .charm_jp span.jp_box2 {
  content: '';
  position: absolute;
  top: -15px;
  left: -3px;
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  border: solid 3px #e50011;
  background: #FDFBF0;
  z-index: -1;
}
.charm_window .charm_jp span.jp_box2 {
  top: -3px;
  right: -3px;
}
.charm_window .charm_img {
  width: 400px;
  height: 400px;
  position: relative;
  margin: 50px auto 0;
  border-radius: 50%;
  overflow: hidden;
  border: solid 7px white;
  z-index: -1;
}
.charm_titleA, .charm_titleB {
  display: block;
  margin: 5px 0;
  color: #f99427;
  font-size: 2.4rem;
  line-height: 1;
  text-align: left;
}
.charm_titleB {
  margin: 0 0 30px;
  color: #e50011;
}
.charm_text {
  text-align: left;
}
.charm_text ul {
  padding: 0 0 0 20px;
}
.charm_text ul li {
  margin: 5px 0;
  line-height: 1.2;
}

/* Places to Discover Engimono
----------------------------------------------------- */
#placestodiscoverengimono h3 img {
  width: auto;
  height: 70px;
}
#placestodiscoverengimono span.section_line {
  position: absolute;
  top: -25vw;
  left: calc(50% - 1px);
  width: 2px;
  height: 25vw;
  background: #009943;
  z-index: -1;
}
.place_detail {
  align-items: center;
  margin: 0 0 50px 0;
}
.place_detail:last-child {
  margin: 0;
}
.place_detail img {
  width: 400px;
  height: auto;
  border-radius: 20px;
}
.place_text {
  width: calc(100% - 450px);
}
.place_text p {
  margin: 0;
}
.place_text p.place_title {
  margin: 0 0 15px;
  font-size: 3rem;
  line-height: 1;
}
/* Footer Banner
----------------------------------------------------- */
#atms {
  min-height: calc(100vh - 300px);
  padding: 200px 0 100px;
}
.banner_box {
  align-items: center;
}
.atm_box {
  display: flex;
  justify-content: center;
  flex-flow: column;
  width: 500px;
  height: 500px;
  position: relative;
  margin: 0 auto;
  padding: 50px;
  background: #fdfbf0;
  border: solid 5px #f99427;
  border-radius: 30px;
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1;
}
.atm_box h3 {
  margin: 0;
}
.atm_box h3 img.copy_togetcash {
  height: 100px;
  margin: 0 auto 10px;
}
.atm_box h3 img.copy_startyour {
  width: 110%;
  max-width: none;
  height: auto;
  margin: 0 0 30px -5%;
}
.atm_box img.kv_img {
  height: 110px;
  margin: 0 auto;
}
.atm_box .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 80px;
  position: relative;
  margin: 20px auto 0;
  border-radius: 40px;
  background: #e50011;
  color: white;
  letter-spacing: 2px;
}
.atm_box .button.search_button {
  background: #f99427;
}
.atm_box .button span {
  margin: 0 0 0 10px;
  font-size: 2.4rem;
}
.atm_box .button .icon_search, .atm_box .button .icon_newtab {
  top: calc(50% - 12.5px);
}
.atm_box .button .icon_search {
  top: calc(50% - 12.5px);
  left: 30px;
}
.atm_box .button .icon_newtab {
  right: 25px;
}
.atm_box .button:hover {
  background: #009943;
}
#atms .button.share_fb {
  display: block;
  width: 350px;
  height: 60px;
  position: relative;
  margin: 100px auto 0;
  background: #4267B2;
  border-radius: 5px;
  font-size: 1rem;
  color: white;
  line-height: 60px;
  letter-spacing: 1px;
  z-index: 1;
}
#atms .icon_fb {
  position: absolute;
  top: calc(50% - 15px);
  left: 20px;
  width: 30px;
  height: 30px;
  z-index: 1;
}
.button.share_fb .icon_newtab {
  top: calc(50% - 12.5px);
  right: 20px;
}
#atms .button.share_fb:hover {
  filter: brightness(1.5);
}/* Footer
----------------------------------------------------- */
footer {
  height: auto;
  position: relative;
  padding: 0;
  border-top: solid 5px #e50011;
  background: white;
  font-size: 0.7rem;
  font-weight: normal;
  letter-spacing: 2px;
  text-align: center;
  z-index: 10;
}
footer .inner_foot {
  display: flex;
  flex-flow: column;
  background: #009943;
  color: white;
}
footer a.footer_logo {
  display: inline-block;
}
footer a.footer_logo:hover {
  opacity: 0.6;
}
footer a.footer_logo {
  display: inline-block;
  width: 250px;
  margin: 40px auto 10px;
}
footer a.footer_logo img {
  filter: brightness(10);
}
footer p.bankcode {
  margin: 0 0 30px;
    padding: 0 7vw;
}
footer p.copyright {
  margin: 10px 0 30px;
  color: black;
  font-size: 0.7rem;
  letter-spacing: 1px;
}