@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-size: 16px;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

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

a {
  cursor: pointer;
  text-decoration: none;
}

/*
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
/*
=========================================================================
共通の変数を定義
==========================================================================*/
/*=========================================================================
# common - 共通のスタイル
==========================================================================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
  background-color: #f0f0f0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}
body.is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

main {
  height: 100svh;
}

.guide-template {
  background-color: #ffffff;
  margin-top: 50px;
  padding-bottom: 120px;
}

.inner {
  padding-inline: 10px;
  margin: 0 auto;
}

.heading {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-block: 10px;
}

.banner-text {
  font-size: 14px;
  color: #666666;
  text-align: right;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 20px;
  gap: 10px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  font-weight: 400;
}
.page-numbers.current {
  background-color: #eaf6f4;
  color: #47c59f;
}
.page-numbers.next, .page-numbers.prev {
  border: 1px solid #dddddd;
  position: relative;
}
.page-numbers.next::before {
  content: "";
  position: absolute;
  left: 46%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: translate(-50%, -50%) rotate(45deg);
}
.page-numbers.prev::before {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #333333;
  border-left: 2px solid #333333;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.tax-map {
  width: 100%;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  border-radius: 10px;
}

.search-form-wrapper {
  position: relative;
}
.search-form-wrapper::before {
  content: "";
  position: absolute;
  background-image: url(../img/search.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.search-input {
  background-color: #ededed;
  border: none;
  color: #333333;
  border-radius: 5px;
  padding-block: 10px;
  padding-inline: 30px 10px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  outline: #666666;
}
.search-input::-moz-placeholder {
  color: #afafaf;
}
.search-input::placeholder {
  color: #afafaf;
}

.no-image {
  border-radius: 10px;
  aspect-ratio: 240/160;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #dddddd;
  color: #666666;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-image.box {
  border-radius: 10px;
  width: 40px;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #dddddd;
  color: #666666;
  font-size: 10px;
  text-align: center;
}

.slider-image {
  border-radius: 10px;
  aspect-ratio: 240/160;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
==========================================================================
# header
========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  padding-block: 10px;
  padding-inline: 56px 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  font-weight: 500;
}

.header-logo {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.back-button {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  cursor: pointer;
}

/*
==========================================================================
# front-page - フロントページのスタイル
========================================================================== */
.guide-banner {
  padding-block: 20px;
}
.guide-banner img {
  border-radius: 16px;
}

.guide-list {
  display: flex;
  flex-direction: column;
}

.guide-list-item {
  border-bottom: 1px solid #dddddd;
}

.guide-list-item-link {
  padding-block: 20px 10px;
  padding-inline: 0 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.guide-list-item-link p {
  font-weight: 500;
}
.guide-list-item-link img {
  border-radius: 50%;
}
.guide-list-item-link img.gentle {
  border-radius: 10px;
  width: 40px;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.guide-list-item-link img.aspect-square {
  width: 40px;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.guide-list-item-link.--column {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}
.guide-list-item-link.--column span {
  font-size: 14px;
  color: #666666;
  font-weight: 400;
}
.guide-list-item-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  aspect-ratio: 1/1;
  height: auto;
  border-top: 2px solid #bcbcbc;
  border-left: 2px solid #bcbcbc;
  transform: rotate(135deg);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: 20px;
}

.guide-grid-item {
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.guide-grid-item-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  padding: 5px;
}
.guide-grid-item-link p {
  font-weight: 500;
}
.guide-grid-item-link img {
  border-radius: 10px;
  aspect-ratio: 240/160;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.guide-list-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.guide-list-item-content-date {
  font-size: 12px;
  color: #47c59f;
}

.guide-grid-item-content-area {
  font-size: 12px;
  color: #47c59f;
}

.guide-grid-item-content-category {
  font-size: 14px;
  color: #afafaf;
  font-weight: 400;
}

.guide-list-item-content-category {
  font-size: 14px;
  color: #afafaf;
  font-weight: 400;
}

.guide-slider .splide__slide {
  width: 100%;
  aspect-ratio: 240/160;
  height: auto;
}
.guide-slider .splide__slide img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guide-slider .splide__arrow {
  background: rgba(217, 217, 217, 0.1);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  height: 80px;
  width: 30px;
  border-radius: 10px;
  opacity: 1 !important;
}
.guide-slider .splide__arrow--prev::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 44%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
  z-index: 1;
}
.guide-slider .splide__arrow--next::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 44%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  z-index: 1;
}
.guide-slider .splide__pagination {
  bottom: 30px;
}
.guide-slider .splide__pagination__page {
  width: 40px;
  height: 2px;
  border-radius: 10px;
}
.guide-slider .splide__pagination__page.is-active {
  transform: scale(1);
  background-color: #666666;
}

.guide-content {
  font-weight: 400;
  margin-block: 20px;
}

.guide-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 20px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
}
.guide-data dt {
  color: #666666;
  flex: 0 0 100px;
}

.guide-data-home {
  color: #47c59f;
  word-break: break-all;
}

.guide-data-tel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.guide-data-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.guide-data-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eaf6f4;
  border-radius: 50%;
}
.guide-data-link.no-link {
  opacity: 0.5;
  pointer-events: none;
}

.guide-data-map {
  margin-block: 20px;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.guide-data-map .leaflet-container {
  width: 100% !important;
  height: 100% !important;
  border-radius: 10px;
  overflow: hidden;
}

.guide-data-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 20px;
  color: #ffffff;
  background-color: #47c59f;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
}

.guide-link-image {
  margin-block: 20px;
  display: block;
}

/*
==========================================================================
# tax-payment - 旅先納税ページのスタイル
========================================================================== */
.tax-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tax-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
  background-color: #47c59f;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/*
==========================================================================
# footer
========================================================================== */
.footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  background-color: #ffffff;
  color: #666666;
  font-size: 12px;
  padding-block: 10px;
  height: 80px;
  max-width: 480px;
}

.footer-links {
  display: flex;
  align-items: center;
}

.footer-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.footer-link img:nth-child(2) {
  display: none;
}
.footer-link p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.footer-link.current img:nth-child(2) {
  display: block;
}
.footer-link.current img:nth-child(1) {
  display: none;
}
.footer-link.current p {
  color: #47c59f;
}