@charset "UTF-8";

:root {
  --theme-main-color: #BB6253;
  --theme-main-dark: #781A23;
  --theme-main-pale: #EADADB;
  --theme-main-pale20: #D97C7C;
  --vivid-color: #C22A39;
  --yellow-pale: #F5D3A3;
  --yellow-color: #EEB767;
  --yellow-dark: #C28F3A;
  --green-pale: #93C47D;
  --green-color: #6AA84F;
  --green-dark: #3B6E47;
  
  --main-border-color: #ddd;
  --sub-border-color: #ccc;
  --main-text-color: #333;
  --sub-text-color: #666;
  --map-bg-color: #F2ECD6;
  --gray-bg-color: #eee;
  --white-color: #fff;
  --black-color: #000;
  --price-color: #C22A39;
  --gray-00-color:#F5F5F5;
  --gray-10-color:#EADADB;
  --gray-60-color:#999;

  --dp-bg-01: var(--theme-main-color);
  --dp-bg-02: #FFC7A7;
  --dp-bg-03: #FFD091;
  --dp-bg-transparent-70: #F5D3A370;
  --dp-bg-transparent-80: #e9be6280;

  --bg-transparent-95: #ffffff95;
  --bg-transparent-90: #ffffff90;
  --bg-transparent-80: #ffffff80;
  --bg-transparent-b5: #ffffffb5;
  --bg-transparent-e4: #ffffffe4;
}
main * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 72px;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
ul, li {
  list-style: none;
  margin: 0;
}
body {
  overflow: hidden;
}
.no-scroll {
  overflow: hidden;
  height: 100%;
}
.App {
  height: auto;
  box-sizing: border-box;
}
section {
  width: 100%;
}
section * {
  box-sizing: border-box;
}
section img {
  width: 100%;
  height: auto;
}
.list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.list li {
  font-size: 0.875rem;
}
.tabWrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--main-border-color);
  overflow: auto;
}
.tabWrap .tab {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: stretch;
  gap: 0.25rem;
}
.tabWrap .tab .tabItem {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.25rem;
  border: 1px solid var(--main-border-color);
  background-color: var(--gray-bg-color);
  border-bottom: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: center;
  border-radius: 0.25rem 0.25rem 0 0;
}
.tabWrap .tab .tabItem:hover {
  background-color: var(--white-color);
}
.tabWrap .tab .tabItem.is-selected {
  background-color: var(--vivid-color);
  border-color: var(--vivid-color);
  color: var(--white-color);
}
.SearchForm {
  width: 100%;
  padding: 1rem 0;
}
.SearchForm .SearchFormSelect {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.25rem;
  background-color: var(--white-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}
.SearchForm .SearchFormSelect:focus {
  outline: none;
}
.SearchForm .SearchBoxFooter .SectionButton {
  display: block;
  width: 100%;
  padding: 1rem;
  border: none;
}
.SearchForm .SearchBoxFooter .SectionButton .Button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 25rem;
  background-color: var(--theme-main-dark);
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.SearchForm .SearchBoxFooter .SectionButton .Button:hover {
  background-color: var(--main-text-color);
}
.SearchFormRow {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem;
}
.SearchFormRow .SearchFormCol {
  width: calc(100% - 0.5rem);
  display: flex;
  align-items: center;
}
.SearchFormRow .SearchFormCol .SearchFormLabel {
  width: 74px;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: bold;
}
.SearchFormRow .SearchFormCol .SearchFormLabel span {
  display: inline-block;
  background-color: var(--theme-main-color);
  color: var(--white-color);
  padding: 0.25rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  line-height: 1;
}
.SearchFormRow .SearchFormCol .SearchFormColInner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.Section {
  border-top: 16px solid var(--theme-main-pale);
  padding: 2rem 1rem;
}
.Section .SectionTitleHeading {
  font-size: 2.4rem;
  text-align: center;
  padding: 3rem 1rem 0.5rem;
  color: var(--theme-main-color);
  font-family: "Cookie", cursive;
}
.Section .SectionTitle {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem 1rem;
}
.Section .SectionTitleImage {
  display: none;
  width: 100%;
  text-align: center;
}
.Section .SectionTitleImage img {
  height: auto;
  max-height: 160px;
}
.Section .SectionText {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.Section .SectionText .SectioTextImage {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  text-align: center;
}
.Section .SectionText .SectioTextImage img {
  width: auto;
  max-width: 280px;
}
.Section .SectionTextHeader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Section .SectionTextTitle {
  width: calc(100% - 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  position: relative;
  background-color: var(--theme-main-color);
  color: var(--white-color);
  border-radius: 0.25rem;
}
.Section .SectionTextTitle:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid var(--theme-main-color);
}
.Section p {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
}
.Section .SectionNav {
  display: flex;
  padding: 0.25rem 0;
  gap: 0.5rem;
}
.Section .SectionNav .SectionNavItem {
  width: 100%;
  border: 1px solid var(--main-border-color);
  background-color: var(--white-color);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}
.Section .SectionNav .SectionNavItem .SectionNavItem {
  text-align: center;
}
.Section .SectionButton {
  display: block;
  width: 100%;
  padding: 1rem 3rem 1rem 3rem;
  border: none;
}
.Section .SectionButton .Button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 0.75rem 0.5rem;
  border: none;
  border-radius: 25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid var(--sub-border-color);
  background-color: var(--gray-00-color);
  transition: all 0.3s ease-in-out;
  color: var(--main-text-color);
}
.Section .SectionButton .Button:hover {
  background-color: var(--sub-border-color);
  opacity: 1!important;
  transition: all 0.3s ease-in-out;
}
.Section .SectionButton a .Button:hover{
  opacity: 1!important;
}
.Section .SectionButton a{
  opacity: 1!important;
}
.Section .SectionButton{
  opacity: 1!important;
}
.Section .SectionButton .Button svg {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  margin-top: -0.75rem;
  fill: currentcolor;
}
.SectionBanner {
  padding: 1.5rem;
}
.SectionBanner img {
  width: 100%;
  height: auto;
}
.SectionChangeDept .tabWrap {
  border: none;
}
.SectionChangeDept .tabWrap .tab {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.SectionChangeDept .tabWrap .tab .tabItem {
  width: calc(25% - 0.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.25rem;
  border: 1px solid var(--main-border-color);
  background-color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
#UnderSectionChangeDeptWrap .SectionChangeDept h3.SectionChangeDeptTitle {
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	margin-bottom:15px
}
#UnderSectionChangeDeptWrap .SectionChangeDept .tabWrap .tab .tabItem {width: calc(18% - 0.5rem)}
@media screen and (max-width: 759.9px) {
#UnderSectionChangeDeptWrap .SectionChangeDept .tabWrap .tab .tabItem {width: calc(50% - 0.5rem)}
}
#UnderSectionChangeDeptWrap .SectionChangeDept .tabWrap .tab .tabItem.select {background-color: var(--theme-main-pale20)}
#UnderSectionChangeDeptWrap .SectionChangeDept .tabWrap .tab .tabItem a,
#UnderSectionChangeDeptWrap .SectionChangeDept .tabWrap .tab .tabItem a:visited {color: #222}
#UnderSectionChangeDeptWrap .SectionChangeDept .tabWrap .tab .tabItem.select a {color: #FFF}
.SectionChangeDept .tabWrap .tab .tabItem:hover {
  background-color: var(--gray-bg-color);
}
.SectionChangeDept .tabWrap .tab .tabItem.is-selected {
  background-color: var(--vivid-color);
  border-color: var(--vivid-color);
  color: var(--white-color);
}
.NavSection {
  border: none;
  padding: 1rem 1rem;
  width: 100%;
}
.NavSection .ChangeDept {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  position: relative;
}
.NavSection .ChangeDept :before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid var(--theme-main-color);
  border-right: 2px solid var(--theme-main-color);
}
.NavSection .ChangeDept span {
  display: block;
  width: 4rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}
.NavSection .ChangeDept select {
  padding: 0.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  position: relative;
}
.NavSection .ChangeDept select option {
  position: relative;
}
.NavSection .ChangeDept select :before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid var(--main-text-color);
  border-right: 2px solid var(--main-text-color);
}

.NavSection .SectionNav .SectionNavItem {
  width: 100%;
  border: 1px solid var(--white-color);
  text-align: center;
  font-size: 0.85rem;
}
.NavSection .JumpToSection {
  padding: 1rem 0;
}

.NavSection .NavWrap .JumpToSection {
  order: 2;
  padding: 0;
}
.NavSection .NavWrap .JumpToSection .SectionNav {
  display: flex;
  padding: 0.25rem 0;
  gap: 0.5rem;
  justify-content: center;
  align-items: flex-start;
}
.NavSection .NavWrap .JumpToSection .SectionNavItem {
  width: 100%;
  border: 1px solid var(--main-border-color);
  background-color: var(--white-color);
  padding: 0.5rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 0.25rem;
}
.NavSection .NavWrap .JumpToSection .SectionNavItem .SectionNavItemIcon {
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  color: var(--theme-main-color);
}
.NavSection .NavWrap .JumpToSection .SectionNavItem .SectionNavItemLabel {
  width: 100%;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
}

.NavSection {
  position: static;
  /* bottom: 0;
  left: 0; */
  width: 100%;
  z-index: 100000;
  background-color: var(--theme-main-color);
}

.HeroSection {
  position: relative;
  /* height: calc(100dvh - 66px - 32px);
  max-height: 850px; */
  overflow: hidden;
  /*z-index: 2;*/
}
.HeroSection .HeroTitle {
  width: 100%;
  padding: 2rem;
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -30%);
  color: var(--white-color);
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.HeroSection .HeroTitle span {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.HeroSection .slick-slide {
  scale: 1 !important;
  transition: 0.3s;
}
.HeroSection .slick-slide.slick-current.slick-active {
  opacity: 1;
  scale: 1;
  transition: 0.6s;
}
.HeroSection .HeroImage {
  width: 100%;
  height: auto;
}
.HeroSection .HeroSlick {
position: relative;
overflow: hidden;
}

.HeroSection .HeroSlick {
	aspect-ratio: 100 / 141;
	max-height: auto;
}
@media screen and (min-width: 760px),print {
.HeroSection .HeroSlick {
	aspect-ratio:auto;
	max-height: 720px;
}
}

.HeroSection .HeroNav {
  border: none;
  padding: 0 1rem 1rem;
  position: absolute;
  z-index: 100000;
  bottom: 0;
  width: 100%;
}
.EmergencyInformation {
/*position: absolute;
  top: 0;
  left: 0;
  background-color: var(--vivid-color);
  color: var(--white-color);*/
  color: #000;
  width: 100%;
  background: #eee;
}
.EmergencyInformation .EmergencyInformationInner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.25rem 0.5rem;
}
.EmergencyInformation .EmergencyInformationTitle {
	width: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    min-width: 4rem;
    background-color: var(--vivid-color);
    color: #FFF;
    text-align: center;
    padding: 0.5rem 5px;
}
@media screen and (max-width: 759.9px) {
.EmergencyInformation .EmergencyInformationTitle {padding: 1rem 5px;}
}
.EmergencyInformation .EmergencyInformationContent {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  width: 100%;
}
.StorySection {
  background-size: cover;
  background-position: center;
  padding: 1rem 0;
  border: none;
  position: relative;
  z-index: 1;
}
.StorySection .SectionText {
  padding: 2rem;
  margin-bottom: 0;
  background-color: var(--white-color);
  border-radius: 2rem;
}
.StorySection .SectionText .SectioTextImage {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 1rem 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}
.StorySection .SectionText .SectioTextImage img {
  width: auto;
  max-width: 90%;
}
.StorySection .SectionText .SectionTextTitle {
  padding: 1rem 0.5rem;
  margin: 2rem 0;
  width: 100%;
}
.SearchSection {
  padding: 0;
}
.SearchSection .select_radio_btn {
  display: flex;
  align-items: center;
}
.SearchSection .select_radio_btn p {
  width: 100%;
  font-size: 0.875rem;
  padding: 0;
}
.SearchSection .select_radio_btn p label {
  border: none;
}
.SearchSection .SearchBox {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0.25rem;
  background-color: var(--white-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}
.SearchSection .SearchBox:focus {
  outline: none;
}
.SearchSection .SearchBox .SearchBoxFooter .SectionButton {
  display: block;
  width: 100%;
  padding: 1rem;
  border: none;
}
.SearchSection .SearchBox .SearchBoxFooter .SectionButton .Button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--vivid-color);
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.SearchSection .SearchBox .SearchBoxFooter .SectionButton .Button:hover {
  background-color: var(--main-text-color);
}
.SearchSection .SectionChangeDept {
  padding: 0.5rem 0.75rem;
}
.SearchSection .SectionChangeDept .SectionChangeDeptTitle {
  text-align: center;
}
.SearchSection .SectionChangeDept .tabWrap .tab {
  padding: 0.5rem 0;
  gap: 0.25rem;
}
.ItemSection {
  padding: 0 0 2rem 0;
}
.ItemSection .SectionTitle {
  margin-bottom: 0;
  padding: 0.5rem 1rem 1rem;
}
.ItemSection h3.SectionTitle {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 2rem 0 1rem;
  padding: 3rem 1rem 1rem;
  line-height: 1.6;
}
.ItemSection h3.SectionTitle span {
  font-size: 1.4rem;
  margin-top: 0.25rem;
}
.ItemSection .SectionTitleImage {
  margin-bottom: 0.5rem;
}
.ItemSection .ItemIntroductionWrap {
  width: 100%;
  padding: 1rem;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionWrapInner {
  padding: 1.5rem;
  border: 4px solid var(--theme-main-color);
  background-color: var(--bg-transparent-90);
  border-radius: 0.5rem;
  display: block;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine {
  width: 100%;
  margin-bottom: 0.5rem;
  position: relative;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle {
  width: 100%;
  font-size: 1rem;
  text-align: center;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle strong {
  font-weight: 700;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox {
  width: 100%;
  padding: 1rem 0;
  border: 1px solid var(--yellow-color);
  background-color: var(--white-color);
  border-radius: 0.5rem;
  position: relative;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox:before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  border: 0.25rem solid transparent;
  border-top: 0.25rem solid var(--yellow-pale);
  border-left: 0.25rem solid var(--yellow-pale);
  border-radius: 0.025rem;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox:after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  border: 0.25rem solid transparent;
  border-right: 0.25rem solid var(--yellow-pale);
  border-bottom: 0.25rem solid var(--yellow-pale);
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg {
  width: 3rem;
  height: 3rem;
  fill: var(--yellow-color);
  /*color: var(--yellow-color);*/
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon .icon-goo-building path:nth-child(3) {
  fill: transparent;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon .icon-goo-building path:nth-child(4), .ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon .icon-goo-building path:nth-child(5), .ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon .icon-goo-building path:nth-child(6), .ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon .icon-goo-building path:nth-child(7), .ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon .icon-goo-building path:nth-child(8), .ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon .icon-goo-building path:nth-child(9) {
  color: var(--white-color);
  border-width: 3px !important;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon .icon-goo-shield-check path:last-child {
  fill: transparent;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus {
  position: absolute;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--theme-main-color);
  background-color: var(--white-color);
  border-radius: 5rem;
  z-index: 1;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus svg {
  color: var(--white-color);
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) {
  position: relative;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-leftover {
  display: none;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-left {
  position: absolute;
  left: 33.3%;
  margin-left: -18px;
  z-index: 1;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-right {
  position: absolute;
  right: 33.3%;
  margin-right: -18px;
  z-index: 1;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine.is-addItem {
  padding: 0.5rem 0;
  border-top: 3px solid var(--main-border-color);
  margin-top: 1rem;
  padding-top: 1.5rem;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet {
  margin-top: 0.5rem;
  background-color: var(--white-color);
  border-radius: 0.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox {
  border: 2px dotted var(--green-pale);
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg {
  width: 3rem;
  height: 3rem;
  fill: var(--green-pale);
  color: var(--green-dark);
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName {
  display: block;
  text-align: center;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionMessage {
  position: absolute;
  background-color: var(--theme-main-color);
  color: var(--white-color);
  margin: 0 auto;
  padding: 1rem;
  width: calc(100% - 2rem);
  border-radius: 0.25rem;
  position: relative;
}
.ItemSection .ItemIntroductionWrap .ItemIntroductionMessage:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-bottom: 8px solid var(--theme-main-color);
}
.ItemSection .ItemBox {
  position: relative;
}
.ItemSection .ItemBox .ItemBoxHeader .ItemBoxTitle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBF4E4;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-align: center;
}
.ItemSection .ItemBox .ItemBoxHeader .tabWrap {
  border-bottom: none;
  padding: 0 1rem;
}
.ItemSection .ItemBox .ItemBoxHeader .tabWrap .tab {
  gap: 0.5rem;
  padding: 0 1rem 0.5rem;
  overflow-x: auto;
  justify-content: center;
}
.ItemSection .ItemBox .ItemBoxHeader .tabWrap .tab.is-many-tabs {
  justify-content: flex-start;
  /* padding: 0 1rem 0.5rem; */
}
.ItemSection .ItemBox .ItemBoxHeader .tabWrap .tab .tabItem {
  width: 100%;
  min-width: 82px;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.5rem 0.25rem 0;
  border: 1px solid var(--main-border-color) !important;
  background-color: var(--white-color);
  border-bottom: none;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 4px var(--sub-border-color);
  font-weight: 600;
}
.ItemSection .ItemBox .ItemBoxHeader .tabWrap .tab .tabItem:hover {
  background-color: var(--white-color);
}
.ItemSection .ItemBox .ItemBoxHeader .tabWrap .tab .tabItem.is-selected {
  background-color: var(--vivid-color);
  border-color: var(--vivid-color);
  color: var(--white-color);
}
.ItemSection .ItemBox .ItemBoxHeader .tabWrap .tab .tabItem a {
  color: var(--main-text-color);
}
.ItemSection .ItemBox .ItemBoxHeader .tabWrap .tab .tabItem .tabItemSvg {
  width: 100%;
}
.ItemSection .ItemBox .ItemBoxHeader .tabWrap .tab .tabItem .tabItemSvg svg {
  width: 1rem;
  height: 1rem;
  color: var(--vivid-color);;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap {
  padding: 2rem 0.75rem 1rem 0.75rem;
  position: relative;
  background-color: var(--gray-00-color);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItemHeader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0 auto 1rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItemHeader .SectionTextTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  padding: 0.5rem;
  position: relative;
  background-color: var(--theme-main-color);
  color: var(--white-color);
  border-radius: 0.25rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItemHeader .SectionTextTitle:before {
  display: none;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItemHeader p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem {
  border-radius: 0.5rem;
  position: relative;
  padding-left: 0.25rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemImage {
  width: 100%;
  height: 120px;
  overflow: hidden;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemImage img {
  width: 100%;
  height: auto;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--main-border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap:hover {
  opacity: 1!important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.25);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a {
  color: var(--main-text-color);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a:hover {
  opacity: 1!important;
  transition: all 0.3s ease-in-out;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemTitleWrap {
  position: relative;
  background-color: var(--gray-bg-color);
  overflow: visible;
  z-index: 2;
  min-height: 88px;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemTitle {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  background-color: var(--gray-bg-color);
  border-radius: 0.5rem 0.5rem 0 0;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap.is-tentsuki a .ItemTitle {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  padding: 0.75rem 1rem 0.25rem;
  background-color: var(--gray-bg-color);
  border-radius: 0.5rem 0.5rem 0 0;
	min-height: 3.4rem;
}
.ItemSection#Tentsuki5 .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap.is-tentsuki a .ItemTitle {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  padding: 0.75rem 1rem 0.25rem;
  background-color: var(--gray-bg-color);
  border-radius: 0.5rem 0.5rem 0 0;
  /*min-height: auto;*/
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemTitleSubLine {
  font-size: 0.875rem;
  font-weight: normal;
  padding: 0.25rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemTitleSubLine .ItemTitleSubLineIcon {
  background-color: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 250%;
  padding: 0.125rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemTitleSubLine .ItemTitleSubLineIcon.tentsuki-from-japan {
  background-color: #BB6253;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemTitleSubLine .ItemTitleSubLineIcon svg {
  width: 14px;
  height: 14px;
  color: var(--white-color);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSubTitle {
  display: inline-block;
  background-color: var(--theme-main-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: var(--white-color);
  font-size: 0.875rem;
  position: absolute;
  top: 2.2rem;
  right: 1rem;
  font-weight: 700;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap.is-tentsuki a .ItemSubTitle {
  display: inline-block;
  background-color: var(--theme-main-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: var(--white-color);
  font-size: 0.875rem;
  position: absolute;
  top: auto;
    bottom:-0.5rem;
    right: 1rem;
  font-weight: 700;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0.75rem;
  border-bottom: 1px solid var(--main-border-color);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet:last-child {
  border-bottom: none;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap.is-tentsuki a .ItemSet{
  padding: 0;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner {
  display: flex;
  width: 100%;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetIcon {
  width: 48px;
  padding: 0.75rem 0;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetIcon svg {
  width: 32px;
  height: 32px;
  background-color: var(--green-pale);
  padding: 0.375rem;
  border-radius: 250%;
  color: var(--white-color);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.125rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardName {
  font-size: 1rem;
  font-weight: bold;
  display: block;
  width: 100%;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardSubTitlte {
  font-size: 0.75rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  width: 100%;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardRating {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  width: 100%;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardRating .starIcon {
  background-image: url("https://www.nta.co.jp/kaigai/assets/svg/star.svg");
  background-size: cover;
  display: inline-block;
  width: 1em;
  height: 1em;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardRating .starIcon--active {
  background-image: url("https://www.nta.co.jp/kaigai/assets/svg/star-active.svg");
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardRating .starIcon--half {
  background-image: url("https://www.nta.co.jp/kaigai/assets/images/star_half.png");
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage {
  width: 100%;
  max-height: 196px;
  overflow: hidden;
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner.Tentsuki001Wrap .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage {
  border-radius: 0;
  max-height: 210px;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage_noslick {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 196px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  /*border-radius: 0.25rem;*/
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage div.slick-slide{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--gray-bg-color);
  text-align: center;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage_noslick div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--gray-bg-color);
  width: 100%;
}

.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage img {
  display: block;
  max-height: 198px;
  border-radius: 0.25rem;
  width: auto;
  height: 100%;
  margin: 0 auto;
}

.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner.Tentsuki001Wrap .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage img {
  border-radius: 0;
  max-height: 216px;
}

.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap.is-tentsuki a .ItemSet .ItemCard .ItemCardImage img {
	width:100%;
	height:auto;
	max-height:unset!important;
	min-height:unset!important;
}

.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage_noslick img {
  display: block;
  max-height: 198px;
  border-radius: 0.25rem;
	width: 100%;
    height: auto;
	margin: 0;
}
.ItemCardCopy{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  padding: 0 0.25rem;
}
.ItemCardTag{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0.5rem 8px;
  gap: 0.25rem;
  min-height: 40px;
}
.ItemCardTag li{
  width: 100%;
  max-width: 33.3%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.125rem 0.25rem;
  background-color: #EEE;
  border: 1px solid #CCC;
  line-height: 1;
  height: 32px;
  text-align: center;
  flex-wrap: wrap;
  border-radius: 0.125rem;
}
.ItemCardTag li.tag-no1{
  background-color: #D0B460;
  border-color: #B48F22;
  color: #FFF;
}
.ItemCardTag li.tag-season{
  background-color: #121E8A;
  border-color: #162063;
  color: #FFF;
}
.ItemCardTag li.tag-highRating{
  background-color: #8B3636;
  border-color: #430808;
  color: #FFF;
}
.ItemCardTag li span{
  font-size: 0.625rem;
  width: 100%;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardText {
  text-align: center;
  margin-bottom: 0.5rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap.is-tentsuki a .ItemSet .ItemCard .ItemCardText {
  padding: 0.5rem;
  margin:8px;
  background-color: #FBF4E4;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardText .ItemCardTitle {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.25rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet .ItemCard .ItemCardText .ItemCardSubText {
  font-size: 0.875rem;
  text-align: left;
  min-height: 4rem;
}

.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetTerm .ItemTermText {
  width: 100%;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  color: var(--main-text-color);
}

.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice {
  padding: 0.5rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop {
  width: 100%;
  margin: 0.25rem auto 0.125rem;
  padding: 0.125rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-bg-color);
  gap: 0.25rem;
  border-radius: 0.25rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop .PricePopIcon {
  padding: 0.125rem;
  background-color: var(--white-color);
  border-radius: 5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop .PricePopIcon svg {
  width: 16px;
  height: 16px;
  fill: var(--theme-main-pale);
  color: var(--theme-main-color);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop .PricePopText {
  font-size: 0.875rem;
  font-weight: 700;
  overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
  /* padding-left: 0.25rem; */
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop .PricePopNumber {
  font-size: 0.75rem;
  width: 3.6rem;
  margin-left: auto;
  text-align: left;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice .ItemPrice {
  width: 100%;
  padding: 0.25rem 0.25rem 0;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: var(--price-color);
  letter-spacing: -0.005rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice .ItemPrice .ItemPriceCurrency {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice .ItemPriceSubText {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  color: var(--main-text-color);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetPrice .ItemPriceText {
  width: 100%;
  padding: 0 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  color: var(--main-text-color);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetUpgrade  {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeText {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  color: var(--main-text-color);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeIcon li.is-disabled {
  position: relative;
  opacity: 0.5;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeIcon li.is-disabled::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333;
  transform: rotate(45deg);
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeIcon li svg {
  width: 24px;
  height: 24px;
}

.ItemBoxItemFooter{
  padding: 1rem 0.75rem;
  background-color: #FEF2E2;
  width: calc(100% - 1.5rem);
  max-width: 970px;
  margin: 1.25rem auto;
  border-radius: 0.5rem;
}

.ItemBoxItemFooter h4 {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}
.ItemBoxUpgradeWrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ItemBoxUpgrade{
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 0.25rem;
  padding: 1rem 0.5rem 1rem;
  background-color: var(--white-color);
}
.ItemBoxUpgradeHeading{
  width: 100%;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ItemBoxUpgradeTitleWrap{
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 0.5rem;
}
.ItemBoxUpgradeTitle{
  font-size: 0.875rem;
  font-weight: bold;
}
.ItemBoxUpgradeTitle span{
  font-size: 0.675rem;
  font-weight: normal;
}
.ItemBoxUpgradeText{
  display: none;
}
.ItemBoxUpgradeImage{
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.ItemBoxUpgradeImage img{
  display: block;
  margin: 0 auto;
  width: 48px;
  height: 48px;
}
.ItemBoxUpgradeWrap .PlanPlusLink{
  width: 3rem;
}

.ItemSection.TentsukiSection{
  background-color: var(--theme-main-color);
  background: linear-gradient(#B8171F, #AB141C, #8A0E15, #550509, #4A0307);
}
.ItemSection.TentsukiSection .ItemIntroductionWrap {
  width: 100%;
  padding: 0;
}
.ItemSection.TentsukiSection .ItemIntroductionWrap .ItemIntroductionWrapInner {
  border: none;
  background-color: transparent;
  border-radius: 0.5rem;
  display: block;
  padding: 0;
  position: relative;
  overflow: visible;
}

.TentsukiIntroHeading{
  width: 58%;
}
.TentsukiIntroSince{
  color: #FFF;
  font-size: 1rem;
  padding: 1rem 0.5rem 0.5rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.TentsukiIntroSince span{
  font-size: 1.4rem;
  font-weight: 600;
  padding-left: 0.5rem;
  letter-spacing: 2px;
}
.TentsukiIntroStartDate{
  width: 84%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  padding: 0.25rem 0.5rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.TentsukiIntroStartDate .StartDateText01{
  line-height: 1;
  font-size: 0.75rem;
  text-align: right;
}
.TentsukiIntroStartDate .StartDateText01 span{
  line-height: 1;
  font-size: 0.75rem;
  text-align: right;
  padding-right: 1rem;
}
.TentsukiIntroStartDate .StartDateText02{
  line-height: 1;
  font-size: 2rem;
  padding: 0 0.25rem;
  color: #B02418;
  letter-spacing: -3px;
}

.TentsukiIntroStartDate .StartDateText03{
  line-height: 1;
  font-size: 1.1rem;
}
.TentsukiIntroTitle{
  padding: 1.8rem 1.25rem 0.5rem 0.75rem;
  font-size: 2.2rem;
  text-align: center;
  line-height: 0.825;
  color: var(--white-color);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.TentsukiIntroTitle span{
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.TentsukiIntroBody{
  padding: 2rem 1.25rem 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.TentsukiTourPoint{
  width: 100%;
  background-color: var(--white-color);
  padding: 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
  border-radius: 0.25rem;
}
.TentsukiTourPointLabel{
  width: 20%;
  max-width: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #D3B486;
  color: #000;
  padding: 0.25rem 0.5rem 1.5rem;
}
.TentsukiTourPointLabel::after{
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-bottom: 1rem solid #FFF;
  border-right: 1.5rem solid transparent;
  z-index: 1;
}
.TentsukiTourPointLabel span{
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B02418;
  line-height: 1;
}
.TentsukiTourPointBody{
  /* width: 80%; */
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  padding: 0.25rem 0.5rem;
  padding-right: 0;
}
.TentsukiTourPointTitle{
  width: 100%;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}
.TentsukiTourPointText{
  font-size: 0.875rem;
}
.TentsukiTourPointText span{
  font-size: 0.75rem;
  color: #666;
}
.TentsukiIntroResult{
  position: absolute;
  top: -1.25rem;
  right: 0;
  width: 48%;
  max-width: 260px;
}

.ItemSection.TentsukiSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap {
  background-color: transparent;
  /* padding: 0.5rem 0.75rem 1rem 0.75rem; */
}

.TentsukiSection .SectionBanner a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--main-text-color);
}
.TentsukiSection .SectionBanner a > p{
  width: 100%;
  color: var(--white-color);
}

.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemBook {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  background-color: var(--vivid-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 3rem;
  height: 3rem;
  padding: 0.5rem 0 0.75rem;
  border-radius: 5rem;
  text-align: center;
  display: none;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemBook .ItemBookLabel {
  width: 100%;
  font-size: 0.625rem;
  line-height: 1;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemBook .ItemBookIcon {
  width: 100%;
}
.ItemSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem .ItemSetWrap a .ItemBook .ItemBookIcon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.ItemSection .ItemBox:before {
  position: absolute;
  top: 0;
  left: -2rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, var(--main-border-color) 70%, var(--gray-bg-color) 42%, transparent 100%);
  z-index: -1;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionLTitle {
  grid-area: 1/1/2/4;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet {
  grid-area: 2/1/6/3;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus {
  position: absolute;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 5rem;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus svg, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus svg, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus svg, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus svg, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus svg, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus svg, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus svg, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine .ItemIntroductionSet .ItemIntroductionPlus svg {
  color: var(--white-color);
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2), #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2), #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2), #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2), #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2), #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2), #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2), #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) {
  position: relative;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-leftover, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-leftover, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-leftover, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-leftover, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-leftover, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-leftover, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-leftover, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-leftover {
  display: none;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-left, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-left, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-left, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-left, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-left, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-left, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-left, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-left {
  position: absolute;
  left: 33.3%;
  margin-left: -18px;
  z-index: 1;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-right, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-right, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-right, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-right, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-right, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-right, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-right, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine:nth-child(2) .ItemIntroductionPlus.is-right {
  position: absolute;
  right: 33.3%;
  margin-right: -18px;
  z-index: 1;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem {
  padding: 0.5rem 0;
  border-top: 3px solid var(--theme-main-dark);
  margin-top: 1rem;
  padding-top: 1.5rem;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet {
  margin-top: 0.5rem;
  background-color: var(--white-color);
  border-radius: 0.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox {
  border: 2px dotted var(--green-pale);
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionIcon svg {
  width: 3rem;
  height: 3rem;
  fill: var(--green-pale);
  color: var(--green-dark);
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionLine.is-addItem .ItemIntroductionSet .ItemIntroductionBox .ItemIntroductionName {
  display: block;
  text-align: center;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionMessage, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionMessage, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionMessage, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionMessage, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionMessage, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionMessage, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionMessage, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionMessage {
  grid-area: 2/3/3/4;
  position: absolute;
  background-color: var(--theme-main-color);
  color: var(--white-color);
  margin: 0 auto;
  padding: 1rem;
  width: calc(100% - 2rem);
  border-radius: 0.25rem;
  position: relative;
}
#AirHotel1 .ItemIntroductionWrap .ItemIntroductionMessage:before, #AirHotel2 .ItemIntroductionWrap .ItemIntroductionMessage:before, #AirHotel3 .ItemIntroductionWrap .ItemIntroductionMessage:before, #AirHotel4 .ItemIntroductionWrap .ItemIntroductionMessage:before, #AirHotel5 .ItemIntroductionWrap .ItemIntroductionMessage:before, #AirHotel6 .ItemIntroductionWrap .ItemIntroductionMessage:before, #AirHotel7 .ItemIntroductionWrap .ItemIntroductionMessage:before, #AirHotel8 .ItemIntroductionWrap .ItemIntroductionMessage:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-bottom: 8px solid var(--theme-main-color);
}

#AirHotel1, #Air1, #Hotel1,
#AirHotel2, #Air2, #Hotel2,
#AirHotel3, #Air3, #Hotel3,
#AirHotel4, #Air4, #Hotel4,
#AirHotel5, #Air5, #Hotel5,
#AirHotel6, #Air6, #Hotel6,
#AirHotel7, #Air7, #Hotel7,
#AirHotel8, #Air8, #Hotel8 {
  border-width: 2px;
}
.DpSection {
  border-width: 16px;
  background-color: var(--yellow-pale);
}
.DpSection h3.SectionTitle {
  padding: 3rem 1rem 1rem;
}
/* .DpSection .SectionContent .JS_MakeUnderLine {
  background-image: linear-gradient(var(--green-pale), var(--green-pale));
} */
.DpSection .ItemBox .tabWrap {
  border-bottom: none;
  max-width: 640px;
}
.DpSection .ItemBox .tabWrap .tab {
  gap: 1rem;
  padding: 0.5rem 1.5rem 1.5rem;
  width: calc(100% - 2rem);
}
.DpSection .ItemBox .tabWrap .tab .tabItem {
  width: 100%;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.5rem;
  border: none !important;
  background-color: var(--white-color);
  /* background-color: var(--bg-transparent-95); */
  border-bottom: none;
  position: relative;
  border-radius: 0.5rem;
}
.DpSection .ItemBox .tabWrap .tab .tabItem:hover {
  background-color: var(--white-color);
}
.DpSection .ItemBox .tabWrap .tab .tabItem a {
  color: var(--main-text-color);
  display: flex;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
}
.DpSection .ItemBox .tabWrap .tab .tabItem a p {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.DpSection .ItemBox .tabWrap .tab .tabItem a p svg {
  width: 1rem;
  height: 1rem;
}
.DpSection .ItemBox .tabWrap .tab .tabItem .tabItemSvg {
  width: 100%;
}
.DpSection .ItemBox .tabWrap .tab .tabItem .tabItemSvg svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--theme-main-color);
}
.DpSection .ItemBox .tabWrap .tab .tabItem .tabItemImage {
  width: 100%;
  position: relative;
}


.DpSection .ItemBox .tabWrap .tab .tabItem .tabItemImage img {
  min-width: 160px;
  min-height: 160px;
  border-radius: 36px 36px 8px 8px;
  overflow: hidden;
}
.DpSection .ItemBox .tabWrap .tab .tabItem .tabItemImage span {
  position: absolute;
  left: 0;
  top:0;
  width: 56px;
  height: 56px;
  background-color: var(--white-color);
  border-radius: 8px 0 30px 0;
  padding: 0.25rem 0.5rem 0.5rem 0.25rem;
  fill: var(--theme-main-pale);
  color: var(--theme-main-color);
}
.DpSection .ItemBox .tabWrap .tab .tabItem .tabItemImage span svg {
  width: 40px;
  height: 40px;
  fill: var(--theme-main-pale);
  color: var(--theme-main-color);
}
.DpSection .ItemBox .ItemBoxContent {
  width: calc(100% - 2.5rem);
  margin: 0 auto;
}
.DpSection .ItemBox .ItemBoxContent .ItemBoxContentInner{
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 1rem;

}
.DpSection .ItemBox .ItemBoxContent .ItemBoxContentInner:last-child{
  margin-bottom: 0;
}
.DpSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap {
  padding: 2rem 0.75rem 1rem 0.75rem;
  padding: 2rem 0.25rem 1rem 0.25rem;
  position: relative;
  background-color: var(--white-color);
  background-color: var(--bg-transparent-80);
  border-radius: 1rem;
}
.DpSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItemHeader {
  width: 100%;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.DpSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItemHeader span {
  background-color: var(--white-color);
  border-radius: 50%;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.DpSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItemHeader span svg {
  width: 32px;
  height: 32px;
  fill: var(--theme-main-pale);
  color: var(--theme-main-color);
}
.DpSection .ItemBox .ItemBoxContent .ItemBoxContentInner .ItemBoxItemWrap .ItemBoxItem {
  padding-left: 0;
}

.SectionContent .ItemBox p.tab-image__copyright {
	font-size: 10px;
	text-align: right;
	margin: 0 5% 25px 0;
}

.SpotSection {
  padding: 2rem 0;
}
.SpotSection .SectionText {
  padding: 0 0 1rem;
}
.SpotSection .SectionText area:hover {
  opacity: .7;
}
.SpotSection .SectionText .SectionTextTitle {
  width: calc(100% - 2rem);
  margin: 0 auto 1rem;
}
.ImageMapWrap{
  position: relative;
  padding: 1rem;
  background-color: var(--map-bg-color);
}
.ImageMapWrap img{
  border-radius: 0.5rem;
}
.SpotSection .ImageMapWrap .SpotTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--white-color);
  border: 2px solid var(--vivid-color);
  border-radius: 6rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.25rem 0.25rem 1.75rem;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}
.SpotSection .ImageMapWrap a .triangle {
  position: absolute;
  bottom: 0.125rem;
  height: calc(8px / 2 * tan(45deg));
  width: 8px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--main-text-color);
}
.SpotSection .ImageMapWrap a .SpotTitle .SpotTitleJp {
  font-size: 1.375rem;
  letter-spacing: -1px;
  padding-top: 0;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  width: 100%;
  color: var(--main-text-color);
}
.ImageMapWrap .SpotTitle.Spot01Button {
  margin-left: -21%;
  margin-top: -39%;
}
.ImageMapWrap .SpotTitle.Spot02Button {
  margin-left: 7%;
  margin-top: 10%;
}
.ImageMapWrap .SpotTitle.Spot03Button {
  margin-left: -30%;
  margin-top: 45%;
}
.SpotSection .SpotBody {
  width: 100%;
  margin: 0.75rem 0 3rem;
  padding: 0.25rem 0 3rem;
  font-size: 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--main-border-color);
}
.SpotSection .SpotBody.is-gray {
  background-color: var(--gray-bg-color);
}
.SpotSection .SpotBody .SpotInner {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding: 1rem 0;
}
.SpotSection .SpotBody .SpotInner .SpotCard {
  width: 100%;
  background-color: var(--white-color);
  border: 1px solid var(--white-color);
  /* overflow: visible; */
  position: relative;
  border-radius: 0.5rem;
}
.SpotSection .SpotBody .SpotInner .SpotCard .SpotImage {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background-color: var(--gray-00-color);
  position: relative;
}
.SpotSection .SpotBody .SpotInner .SpotCard .SpotImage img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem 0.5rem 0 0;
}
.SpotSection .SpotBody .SpotInner .SpotCard .SpotImage .SpotImageLabel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20000;
  font-size: 0.75rem;
  color: var(--main-text-color);
  padding: 0.25rem 0.5rem;
}
.SpotSection .SpotBody .SpotInner .SpotCard .SpotCardContents {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 0.5rem 1.25rem;
  line-height: 1.25;
  position: relative;
}
.SpotSection .SpotBody .SpotInner .SpotCard .SpotCardContents .SpotImageLabel {
  position: absolute;
  bottom: 0.25rem;
  right: 0.5rem;
  z-index: 20000;
  font-size: 0.75rem;
  color: var(--sub-text-color);
  padding: 0;
}
.SpotSection .SpotBody .SpotInner .SpotCard .SpotCardContents .SpotCardTitle {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.SpotSection .SpotBody .SpotInner .SpotCard .SpotCardContents .SpotCardSubText {
  width: 100%;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader {
  position: relative;
  padding: 1rem 0;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotImage {
  width: 100%;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotImage img {
  width: 100%;
  height: auto;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotImage .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotImage .slick-slide {
  scale: 1;
  transition: 0.3s;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotImage .slick-slide.slick-current.slick-active {
  opacity: 1;
  scale: 1;
  transition: 0.6s;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotImage .SpotImageLabel {
  position: absolute;
  top: 0.75rem;
  right: 0.5rem;
  font-size: 0.75rem;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotImageDots {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  display: none;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotImageDots .SpotImageDot {
  width: 0.25rem;
  height: 0.25rem;
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
  font-size: 1rem;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotImageDots .SpotImageDot.is-selected {
  opacity: 1;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotTitle {
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  background-color: var(--white-color);
  border: 2px solid var(--vivid-color);
  border-radius: 6rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.5rem 0.25rem;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}
.SpotSection .SpotTitle .SpotTitleJp {
  font-size: 2rem;
  letter-spacing: -1px;
  padding-top: 0.5rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.SpotSection .SpotTitle .SpotTitleEng {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1;
  text-align: center;
  width: 100%;
  font-family: "Cookie", cursive;
  color: var(--vivid-color);
  transform: rotate(-8deg);
}
.SpotSection .SpotWrap {
  margin-bottom: 3rem;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotSubTitle {
  width: 70%;
  position: absolute;
  bottom: 0rem;
  right: 1rem;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  padding: 0.5rem 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotSubTitle p {
  padding: 0;
  display: inline-block;
  min-width: 44%;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotHeader .SpotSubTitle p span {
  font-size: 1.2rem;
  font-weight: 700;
  background-color: var(--white-color);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}
.SpotSection .SpotWrap .SpotHeaderWrap .SpotText {
  padding: 1.5rem 2rem 1rem;
  font-size: 1rem;
}
.SpotSection .SpotWrap .SpotTextCopyright {
  width: 100%;
  text-align: center;
  background-color: #FFF;
  padding: 1rem 6rem;
}
.SpotSection .SpotWrap .SpotBody {
  width: 100%;
  margin: 0.75rem 0 3rem;
  padding: 0.25rem 1rem 1rem 1rem;
  background-color: var(--gray-bg-color);
  background-image: url(../assets/spot_bg.png);
  background-repeat: repeat;
}
.SpotSection .SpotWrap .SpotBody:last-child {
  margin: 0.75rem 0 0;
}
.SpotSection .slick-prev {
  left: -0.5rem !important;
}
.SpotSection .slick-next {
  right: -0.5rem !important;
}
.accordionWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.accordionLine {
  width: 100%;
  border-bottom: 1px solid var(--main-border-color);
  padding: 0.5rem 0;
}
.accordionLine .accordionParent,
.accordionLine .accordionChild {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}
.accordionLine .accordionChild {
  display: none;
  padding: 0;
}
.accordionLine .accordionChild .accordionChildInner {
  display: flex;
  align-items: center;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem;
}
.accordionLine .accordionChild .accordionChildInner .accordionText {
  width: calc(100% - 36px - 1rem);
}
.accordionLine .accordionChild .accordionChildInner .accordionIcon {
  background-color: var(--theme-main-dark);
  color: var(--theme-main-pale);
}
.accordionLine .accordionIcon {
  width: 36px;
  height: 36px;
  background-color: var(--theme-main-pale);
  color: var(--theme-main-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  font-size: 20px;
}
.accordionLine .accordionIcon svg {
  width: 24px;
  height: 24px;
}
.accordionLine .accordionSwich {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  margin-left: auto;
}
.accordionLine .accordionSwich:hover {
  background-color: var(--sub-text-color);
  color: var(--white-color);
}
.accordionLine .accordionSwich svg {
  width: 24px;
  height: 24px;
}
.accordionLine .accordionTitle {
  width: auto;
  font-size: 1rem;
  font-weight: bold;
}
.accordionLine .accordionText {
  width: auto;
  font-size: 1rem;
}
.accordionLine .accordionParent {
  font-weight: bold;
}
.accordionLine .accordionParent .accordionTitle {
  width: calc(100% - 60px - 2rem);
}
.accordionLine .accordionParent .accordionIcon {
  border-radius: 5rem;
}
.accordionLine .accordionParent.is-opened {
  background-color: var(--theme-main-pale);
  border-radius: 0.25rem 0.25rem 0 0;
}
.accordionLine .accordionParent.is-opened .accordionIcon {
  background-color: var(--white-color);
}
.accordionLine .accordionParent.is-opened .accordionSwich {
  transform: rotate(90deg);
}
.accordionLine .accordionParent.is-opened .accordionSwich svg {
  transform: rotate(90deg);
}
.accordionLine .accordionChildInner {
  padding: 1rem 0.5rem;
  border: 1px solid var(--theme-main-pale);
  border-radius: 0 0 0.25rem 0.25rem;
}
.ItemWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.RelationFooter {
  padding: 4rem 1rem;
}
.RelationFooter .SectionTextTitle {
  background-color: var(--white-color);
  border: 1px solid var(--main-text-color);
  color: var(--main-text-color);
  font-size: 1.2rem;
  margin: 0;
}
.RelationFooter .SectionTextTitle:before {
  border: none;
}
.RelationFooter .SectionContent {
  padding: 1rem 0 4rem;
}
.RelationFooter .SectionContent:last-child {
  padding-bottom: 2rem;
}
.RelationFooter .accordionLine .accordionParent {
  transition: all 0.3s ease-in-out;
}
.RelationFooter .accordionLine .accordionParent.is-opened {
  color: var(--vivid-color);
  border-radius: 0.25rem;
  transition: all 0.3s ease-in-out;
}
.RelationFooter .accordionLine .accordionParent.is-opened svg {
  transform: rotate(45deg);
}
.RelationFooter .accordionLine .accordionChild {
  padding: 0;
  border: none;
  flex-wrap: wrap;
  gap: 0;
}
.RelationFooter .accordionLine .accordionChild .accordionLine {
  width: 100%;
  padding: 0.5rem 0.5rem;
  padding-right: 0;
}
.RelationFooter .accordionLine .accordionChild .accordionLine .accordionGrandchild {
  padding: 0;
}
.RelationFooter .accordionLine .accordionChild .accordionLine .accordionGrandchild a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  background-color: var(--white-color);
  color: var(--main-text-color);
}
.RelationFooter .accordionLine .accordionChild .accordionLine .accordionGrandchild a img {
  width: 80px;
  height: 36px;
  border-radius: 0.5rem;
}
.tableLine {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-bottom: 1px solid var(--main-border-color);
}
.tableLine .tableTitle {
  min-width: 70px;
  font-size: 0.875rem;
  font-weight: bold;
}
.tableLine .tableContent {
  width: 100%;
  font-size: 0.875rem;
}
.tableLine .tableSubTitle {
  width: 100%;
  font-size: 0.875rem;
  font-weight: bold;
}
.tableLine .tableSubText {
  width: 100%;
  font-size: 0.75rem;
}
.tableLine.is-wide {
  flex-wrap: wrap;
}
.tableLine.is-wide .tableTitle {
  width: 100%;
}
.tableLine.is-wide .tableContent {
  width: 100%;
}
.tableLine.is-wide .tableContent .tableLine {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0 0 0.25rem 0.25rem;
}
.tableLine.is-wide .tableContent .tableLine .tableTitle {
  width: auto;
  min-width: 3rem;
  font-size: 0.875rem;
  font-weight: bold;
}
.tableLine.is-wide .tableContent .tableLine .tableContent {
  width: 100%;
  font-size: 0.875rem;
}
.tableLine.is-wide:first-child {
  background-color: var(--gray-bg-color);
  border-bottom: none;
  border-radius: 0.5rem;
}
.tableLine:last-child {
  border-bottom: none;
}

.tableLineWrap {
  display: flex;
  align-content: stretch;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
}
.tableLineWrap .is-mini {
  width: 100%;
  display: flex;
  align-content: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  border: 1px solid var(--main-border-color);
  gap: 0.125rem;
  padding: 0.5rem 0.25rem;
  border-radius: 0.25rem;
}
.tableLineWrap .is-mini .tableContent {
  font-size: 2rem;
  text-align: center;
  width: 100%;
  letter-spacing: -2px;
}
.tableLineWrap .is-mini .tableContent .tableSubTitle {
  font-size: 0.875rem;
  letter-spacing: normal;
  padding: 0.125rem;
}
.tableLineWrap .is-mini .tableSubText {
  text-align: center;
  width: 100%;
}

.tableLineMulti{
  display: flex;
  flex-wrap: wrap; 
  gap: 0.25rem;
  border-top: 1px solid var(--main-border-color);
  border-bottom: 1px solid var(--main-border-color);
  margin: 0.5rem 0 0.25rem;
  padding: 0.25rem 0;
}
.tableLineMulti .tableLine{
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}
/* .tableLineMulti .tableLine .tableSubText {
  font-size: 0.625rem;
} */
.tableLineMulti .tableLine .tableContent {
  font-size: 0.875rem;
}
.tableLineMulti .tableLine .tableLineWrap {
  padding: 0.25rem 0;
}
.tableLineMulti .tableLineWrap .is-mini .tableContent {
  font-size: 1.8rem;
  letter-spacing: -2px;
}

.BasicInformation .CountryNameWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem;
}
.BasicInformation .CountryNameWrap .CountryNameImage {
  max-width: 50px;
}
.BasicInformation .CountryNameWrap .CountryNameImage img {
  width: 100%;
  height: auto;
}
.BasicInformation .CountryNameWrap .CountryName {
  display: block;
}
.BasicInformation .CountryNameWrap .CountryName .CountryNameJp {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: left;
}
.BasicInformation .CountryNameWrap .CountryName .CountryNameEng {
  font-size: 1rem;
  font-weight: 100;
  text-align: left;
  color: var(--vivid-color);
}
.ArticleSection {
  padding: 2rem 0;
  position: relative;
}
.ArticleSection::before{
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height:100%;
  top: 0;
  left: 0;
  background-color: var(--theme-main-pale);
  background-image: url(../assets/article_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 1;
}
.ArticleSection::after{
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height:100%;
  top: 0;
  left: 0;
  background-color: var(--theme-main-pale);
  opacity: 0.75;
}
.Section.ArticleSection .SectionTitle {
  background-color: #ffffffb3;
  width: calc(100% - 3rem);
  margin: 0 auto 2rem;
  border-radius: 0.5rem;
}
.ArticleSection .SpotBody {
  width: 100%;
  margin: 0.75rem 0 3rem;
  padding: 0;
}
.ArticleSection .slick-slider {
  padding: 0 0 0;
}
.ArticleSection .slick-dotted.slick-slider {
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.ArticleSection .SpotBody .slick-list {
  padding: 1rem 0 0.5rem!important;
}
.ArticleSection .slick-dots {
  width: calc(100% - 2rem);
}
.ArticleSection .slick-prev {
  left: 0.5rem !important;
}
.ArticleSection .slick-next {
  right: 0.5rem !important;
}
.ArticleSection .SpotCard {
  background-color: var(--white-color);
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ArticleSection .SpotCard:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.ArticleSection .SpotCard a {
  color: var(--main-text-color);
}
.ArticleSection .SpotCard a .SpotImage {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ArticleSection .SpotCard a .SpotImage img {
  width: 100%;
  height: auto;
  max-height: 180px;
  border-radius: 0;
  width: auto;
  height: 100%;
}
.ArticleSection .SpotCard a .SpotCardContents {
  padding: 1rem;
}
.ArticleSection .SpotCard a .SpotCardContents .SpotCardTitle {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--main-text-color);
}
.ArticleSection .SpotCard a .SpotCardContents .SpotCardSubText {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--sub-text-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ArticleSection .ArticleCardFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0 0;
  color: var(--theme-main-color);
  font-size: 0.875rem;
}

.SpecialInformation .slick-dots {
  position: absolute;
  bottom: -16px;
  width: 100%;
}
.SpecialInformation .slick-dots li {
  overflow: visible;
}

.ContactSection .SectionTextTitle {
  background-color: var(--green-dark);
}
.ContactSection .SectionTextTitle:before {
  border-top: 8px solid var(--green-dark);
}
.ContactSection .contactBox {
  width: 100%;
  padding: 0;
  border: 1px solid var(--main-border-color);
  background-color: var(--white-color);
  border-radius: 0.5rem;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ContactSection .contactBox:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.ContactSection .contactBox a {
  color: var(--main-text-color);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}
.ContactSection .contactBox .contactBoxIcon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}
.ContactSection .contactBox .contactBoxIcon svg {
  width: 48px;
  height: 48px;
}
.ContactSection .contactBox .contactBoxContentTitle {
  font-weight: bold;
}
.ContactSection .contactBox .contactBoxContentText {
  font-size: 1rem;
}
.ContactSection .contactBox .contactBoxButton {
  margin-left: auto;
}
/*add NTA*/
.ItemSetCardRating img {
  width: 50% !important;
  margin: 0 !important;
}
.SpotHeader .SpotImageLabel {
	color: var(--sub-text-color);
}
.SpotHeader .SpotImageLabel {
  font-size: 0.625rem;
  position: absolute;
  top: 0;
  right: 0.5rem;
  color: var(--sub-text-color);
}

.ModalWrap{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  transition: all 0.3s ease-in;
}
.ModalWrap.is-open{
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in;
}
.ModalOverlay{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.1s ease-in;
}
.ModalOverlay.is-open{
  transition: all 0.3s ease-in;
  background-color: rgba(0, 0, 0, 0.25);
}
.ModalBottom{
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  left: 0.25rem;
  width: calc(100% - 0.5rem);
  height: auto;
  max-height: 70%;
  overflow-y: auto;
  background-color: #FFF;
  z-index: 10000;
  border-radius: 0.5rem 0.5rem 0 0 ;
  box-shadow: 0px 0px 6px var(--sub-border-color);
  /* transition: all 0.3s ease-in; */
}
.ModalClose{
  position: absolute;
  top:0.25rem;
  right: 0.25rem;
  padding: 0.125rem;
  background-color: var(--white-color);
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
}
.ModalClose svg{
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--main-text-color);
}
.ModalHeader{
  width: 100%;
  /* height: 20%; */
  display: flex;
  padding: 0.5rem;
  gap: 0.5rem;
  background-color: var(--dp-bg-transparent-70);
  background-color: #FDF5E9;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
}
.ModalHeaderTitle{
  width: 100%;
  height: auto;
}
.ModalInner{
  width: 100%;
  height: 100%;
  padding: 0;
  overflow-y: auto;
  /* max-height: 200px; */
}
.ModalBody{
  padding: 1rem;
  width: 100%;
  /* overflow-y: auto; */
}
.ModalFooter{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 5rem;
}
.ModalFooter .Button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 0.5rem 0.5rem;
  border: none;
  border-radius: 25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid var(--sub-border-color);
  background-color: var(--gray-00-color);
  transition: all 0.3s ease-in-out;
  color: var(--main-text-color);
}


.UpgradeModalWrap{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  transition: all 0.3s ease-in;
}
.UpgradeModalWrap.is-open{
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in;
}
.UpgradeModalOverlay{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.1s ease-in;
}
.UpgradeModalOverlay.is-open{
  transition: all 0.3s ease-in;
  background-color: rgba(0, 0, 0, 0.25);
}
.UpgradeModalBottom{
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  left: 0.25rem;
  width: calc(100% - 0.5rem);
  height: auto;
  max-height: 70%;
  overflow-y: auto;
  background-color: #FFF;
  z-index: 10000;
  border-radius: 0.5rem 0.5rem 0 0 ;
  box-shadow: 0px 0px 6px var(--sub-border-color);
  /* transition: all 0.3s ease-in; */
}


.UpgradeModalWrap .ModalBody{
  display: flex;
  gap: 1rem;
}
.UpgradeModalWrap .PlanPlusImage{
  width: 96px;
  min-width: 96px;
  height: 96px;
}
.UpgradeModalWrap .PlanPlusImage img{
  width: 96px;
  height: 96px;
}
