/*------------------------------
RESET
--------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*------------------------------
common
--------------------------------*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.fixed {
  height: 100%;
  overflow: hidden;
}

:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

html {
  width: 100%;
  margin: 0 auto;
  font-size: 0.715vw;
  color: #000;
}
@media screen and (min-width: 1401px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  html {
    min-width: 100%;
    font-size: 1.334vw;
  }
}

body {
  font-family: YakuHanJP, "Zen Maru Gothic", serif;
  font-weight: 400;
}

main {
  display: block;
}
@media screen and (min-width: 769px) {
  main {
    padding-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 10rem;
  }
}

*, ::before, ::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}

.visually_hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.js-tabElement:not(.is-current) {
  display: none;
}

@keyframes animeFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animeFadeUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.content_fadeUp {
  opacity: 0;
}
.content_fadeUp.is-animated {
  animation: animeFadeUp 1s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes cloudX {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(-8px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes cloudY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
header {
  position: fixed;
  inset: 0;
  z-index: 11;
}
@media screen and (min-width: 769px) {
  header {
    height: 8rem;
    padding: 2rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: 10rem;
    padding: 3rem 2rem;
  }
}

body:has(.p-top) header {
  position: relative;
}

.header_logo {
  display: none;
}
@media screen and (min-width: 769px) {
  .header_logo {
    width: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 31.9rem;
  }
}
.header_logo.show {
  display: block;
}
@media screen and (min-width: 769px) {
  .header_logo a:hover {
    opacity: 0.7;
  }
}

.hamburger_button {
  display: block;
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 11;
}
@media screen and (min-width: 769px) {
  .hamburger_button {
    top: 2.4rem;
    right: 5rem;
    width: 4rem;
    height: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_button {
    top: 3rem;
    right: 3rem;
    width: 4.8rem;
    height: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_button.open {
    display: none;
  }
}

body:has(.p-top) .hamburger_button.open {
  position: fixed;
}

.hamburger_line {
  display: block;
  width: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .hamburger_line {
    height: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_line {
    height: 0.5rem;
  }
}
.hamburger_line:nth-child(1) {
  top: 0;
}
.hamburger_line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger_line:nth-child(3) {
  bottom: 0;
}

@media screen and (min-width: 769px) {
  .hamburger_button.open .hamburger_line:nth-child(1) {
    transform: translateY(1.4rem) rotate(45deg);
  }
}
@media screen and (max-width: 768px) {
  .hamburger_button.open .hamburger_line:nth-child(1) {
    transform: translateY(1.4rem) rotate(45deg);
  }
}

.hamburger_button.open .hamburger_line:nth-child(2) {
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .hamburger_button.open .hamburger_line:nth-child(3) {
    transform: translateY(-1.2rem) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  .hamburger_button.open .hamburger_line:nth-child(3) {
    transform: translateY(1.4rem) rotate(45deg);
  }
}

.nav_menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  translate: 100% 0;
  transition: 0.5s;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .nav_menu {
    justify-content: center;
    border-left: solid #000;
    border-left-width: 0.5rem;
    width: 38.4rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_menu {
    width: 100vw;
    height: 100vh;
    padding: 9rem 0;
    overflow-y: auto;
  }
}
.nav_menu.open {
  translate: 0 0;
}
@media screen and (max-width: 768px) {
  .nav_menu .nav_flag {
    width: 4.6rem;
    margin: 0 auto 3rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_menu .nav_close {
    width: 10.5rem;
    margin: 9rem auto 0;
  }
}

.nav_menu_list {
  list-style: none;
  border-top: solid #000;
}
@media screen and (min-width: 769px) {
  .nav_menu_list {
    border-top-width: 0.2rem;
    width: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_menu_list {
    border-top-width: 0.3rem;
    width: 46rem;
  }
}
.nav_menu_list > li {
  font-family: YakuHanJP, "Zen Maru Gothic", serif;
  border-bottom: solid #000;
  border-bottom-width: 0.2rem;
}
.nav_menu_list > li > a {
  position: relative;
  display: block;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .nav_menu_list > li > a {
    padding: 1.5rem 1rem;
    line-height: 1;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_menu_list > li > a {
    padding: 4rem 1rem;
    line-height: 1;
    font-size: 3.2rem;
    text-align: center;
  }
}
.nav_menu_list > li > p {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .nav_menu_list > li > p {
    padding: 1.5rem 1rem;
    line-height: 1;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_menu_list > li > p {
    padding: 4rem 1rem;
    line-height: 1;
    font-size: 3.2rem;
    text-align: center;
  }
}

.nav_menu_list_sub {
  list-style: none;
  padding-left: 1em;
}
@media screen and (min-width: 769px) {
  .nav_menu_list_sub {
    margin-top: -0.5rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_menu_list_sub {
    margin-top: -1rem;
    padding-bottom: 1rem;
  }
}
.nav_menu_list_sub > li > a {
  display: block;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .nav_menu_list_sub > li > a {
    padding: 1rem;
    line-height: 1.334em;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_menu_list_sub > li > a {
    padding: 1rem;
    line-height: 1.209em;
    font-size: 2.4rem;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .nav_menu_list_sub > li > a::before {
    width: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_menu_list_sub > li > a::before {
    width: 3rem;
  }
}
.nav_menu_list_sub > li > p {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .nav_menu_list_sub > li > p {
    padding: 1rem;
    line-height: 1;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_menu_list_sub > li > p {
    padding: 1rem;
    line-height: 1;
    font-size: 2.4rem;
    text-align: center;
  }
}

.footer {
  background: #fff url(/assets/images/tabisakiannaijo/kv_bg.svg) repeat-x;
}
@media screen and (min-width: 769px) {
  .footer {
    background-position: 50% 11rem;
    background-size: 352.8rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    background-position: 50% 13.3rem;
    background-size: 352.8rem;
    padding-top: 13rem;
    padding-bottom: 2.5rem;
  }
}

.footer_inr {
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer_inr {
    width: 120rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .footer_inr {
    width: 54.6rem;
    margin: 0 auto;
  }
}

.footer_cha {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .footer_cha {
    width: 44.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_cha {
    width: 44.2rem;
  }
}

.footer_cont {
  display: flex;
}
@media screen and (min-width: 769px) {
  .footer_cont {
    justify-content: space-between;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_cont {
    flex-direction: column;
    padding-top: 5rem;
  }
}

@media screen and (min-width: 769px) {
  .footer_ttl {
    width: 42rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_ttl {
    width: 54.6rem;
  }
}

.footer_txt {
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .footer_txt {
    margin-top: 3rem;
    line-height: 2.143em;
    font-size: 1.4rem;
  }
  .footer_txt > p {
    line-height: inherit;
    font: inherit;
  }
  .footer_txt > p:first-of-type {
    margin-top: -0.571em;
  }
  .footer_txt > p:last-of-type {
    margin-bottom: -0.571em;
  }
}
@media screen and (max-width: 768px) {
  .footer_txt {
    text-align: center;
    margin-top: 3rem;
    line-height: 2.046em;
    font-size: 2.2rem;
  }
  .footer_txt > p {
    line-height: inherit;
    font: inherit;
  }
  .footer_txt > p:first-of-type {
    margin-top: -0.522em;
  }
  .footer_txt > p:last-of-type {
    margin-bottom: -0.522em;
  }
}
.footer_txt .txtRed {
  color: #e5202e;
}
@media screen and (min-width: 769px) {
  .footer_txt .txtRed {
    line-height: 1.765em;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_txt .txtRed {
    line-height: 1.072em;
    font-size: 2.8rem;
  }
}

.footer_link {
  display: flex;
}
@media screen and (min-width: 769px) {
  .footer_link {
    justify-content: flex-end;
    gap: 7.5rem;
    padding-top: 5.8rem;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_link {
    flex-direction: column;
    padding-top: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_link nav + nav {
    margin-top: -0.2rem;
  }
}

.footer_nav {
  border-top: solid #000;
}
@media screen and (min-width: 769px) {
  .footer_nav {
    border-top-width: 0.2rem;
    width: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav {
    border-top-width: 0.2rem;
    width: 50rem;
    margin: 0 auto;
  }
}
.footer_nav > li {
  font-family: YakuHanJP, "Zen Maru Gothic", serif;
  border-bottom: solid #000;
  border-bottom-width: 0.2rem;
}
.footer_nav > li > a {
  position: relative;
  display: block;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .footer_nav > li > a {
    padding: 1.5rem 1rem;
    line-height: 1;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav > li > a {
    text-align: center;
    padding: 2.5rem 0;
    line-height: 1;
    font-size: 2.8rem;
  }
}
.footer_nav > li > p {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .footer_nav > li > p {
    padding: 1.5rem 0;
    line-height: 1;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav > li > p {
    text-align: center;
    padding: 2.5rem 0;
    line-height: 1;
    font-size: 2.8rem;
  }
}

.footer_nav_sub {
  padding-left: 1em;
}
@media screen and (min-width: 769px) {
  .footer_nav_sub {
    margin-top: -0.5rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav_sub {
    margin-top: -0.2rem;
    padding-bottom: 1.4rem;
  }
}
.footer_nav_sub > li > a {
  display: block;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .footer_nav_sub > li > a {
    padding: 1rem;
    line-height: 1.334em;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav_sub > li > a {
    text-align: center;
    padding: 1rem;
    line-height: 1.209em;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 769px) {
  .footer_nav_sub > li > a::before {
    width: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav_sub > li > a::before {
    width: 1.8rem;
  }
}
.footer_nav_sub > li > p {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .footer_nav_sub > li > p {
    padding: 1rem;
    line-height: 1;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav_sub > li > p {
    text-align: center;
    padding: 1rem;
    line-height: 1;
    font-size: 2.4rem;
  }
}

.footer_copyright {
  text-align: right;
  font-family: YakuHanJP, "Zen Maru Gothic", serif;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .footer_copyright {
    margin-top: 5rem;
    padding-right: 5rem;
    line-height: 1;
    font-size: 1rem;
  }
  .footer_copyright > p {
    line-height: inherit;
    font: inherit;
  }
  .footer_copyright > p:first-of-type {
    margin-top: 0em;
  }
  .footer_copyright > p:last-of-type {
    margin-bottom: 0em;
  }
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    text-align: center;
    margin-top: 3rem;
    line-height: 1.2em;
    font-size: 2rem;
  }
  .footer_copyright > p {
    line-height: inherit;
    font: inherit;
  }
  .footer_copyright > p:first-of-type {
    margin-top: -0.1em;
  }
  .footer_copyright > p:last-of-type {
    margin-bottom: -0.1em;
  }
}

@media screen and (min-width: 769px) {
  .footer_flower {
    position: absolute;
    right: -5.4rem;
    bottom: 0;
    width: 6.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_flower {
    width: 6.2rem;
    margin: 4.5rem auto 0;
  }
}

.link_flag {
  position: relative;
}
.link_flag::before {
  display: none;
  content: "";
  background: url(/assets/images/tabisakiannaijo/nav_flag.svg) no-repeat 0 0;
  background-size: contain;
  aspect-ratio: 27/32;
}
@media screen and (min-width: 769px) {
  .link_flag::before {
    position: absolute;
    top: 50%;
    left: 0;
    translate: -115% -30%;
    width: 2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .link_flag::before {
    content: none;
  }
}
.link_flag:hover::before {
  display: block;
}

.page_top {
  display: none;
  position: fixed;
  z-index: 9;
}
@media screen and (min-width: 769px) {
  .page_top {
    right: 5rem;
    bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .page_top {
    right: 4rem;
    bottom: 12rem;
  }
}
.page_top > a {
  display: block;
  background-image: url(/assets/images/tabisakiannaijo/pagetop_w.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  text-indent: -9999px;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .page_top > a {
    width: 6.1rem;
    height: 9.9rem;
  }
}
@media screen and (max-width: 768px) {
  .page_top > a {
    width: 7.5rem;
    height: 12.5rem;
  }
}
.page_top > a:hover {
  background-image: url(/assets/images/tabisakiannaijo/pagetop_bk.svg);
}
.page_top.show {
  display: block;
}

@media screen and (min-width: 769px) {
  #breadcrumbs {
    padding: 1.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  #breadcrumbs {
    padding: 1rem 0 2.5rem;
  }
}

.breadcrumbs_list {
  display: flex;
  color: #aa8f1d;
  font-weight: 500;
  font-family: YakuHanJP, "Zen Maru Gothic", serif;
}
@media screen and (min-width: 769px) {
  .breadcrumbs_list {
    line-height: 1;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs_list {
    line-height: 1.417em;
    font-size: 2.4rem;
  }
}
.breadcrumbs_list a {
  color: #aa8f1d;
}
@media screen and (min-width: 769px) {
  .breadcrumbs_list a:hover {
    opacity: 0.7;
  }
}
.breadcrumbs_list > li {
  position: relative;
}
.breadcrumbs_list > li + li {
  margin-left: 0.5em;
  padding-left: 1.1em;
}
.breadcrumbs_list > li + li::before {
  content: ">";
  position: absolute;
  left: 0;
  transform: translate(0, -50%);
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .breadcrumbs_list > li + li::before {
    top: 40%;
    line-height: 1;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs_list > li + li::before {
    top: 20%;
    line-height: 1;
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 769px) {
  .nav_bnr {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_bnr {
    margin-top: 4.5rem;
  }
}

.btn_reserve {
  display: block;
  position: relative;
  color: #fff;
  background-color: #0050c8;
}
@media screen and (min-width: 769px) {
  .btn_reserve {
    width: 26rem;
    padding: 2.2rem 2rem;
    border-radius: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .btn_reserve {
    width: 46rem;
    padding: 3.5rem 3rem;
    border-radius: 1.7rem;
  }
}
.btn_reserve::before {
  content: "";
  position: absolute;
  background: url(/assets/images/tabisakiannaijo/arrow_external.svg) no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .btn_reserve::before {
    right: 2.5rem;
    bottom: 3.5rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .btn_reserve::before {
    right: 4rem;
    bottom: 5.6rem;
    width: 2.7rem;
    height: 2.7rem;
  }
}
.btn_reserve:hover {
  background-color: #000;
}
.btn_reserve .jp {
  font-family: YakuHanJP, "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.125em;
}
@media screen and (min-width: 769px) {
  .btn_reserve .jp {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .btn_reserve .jp {
    font-size: 2.7rem;
  }
}
.btn_reserve .en {
  text-align: center;
  letter-spacing: 0.03em;
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .btn_reserve .en {
    font-size: 1.6rem;
    line-height: 2.1rem;
    top: -0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .btn_reserve .en {
    font-size: 2.9rem;
    line-height: 3.7rem;
    top: -0.2rem;
  }
}/*# sourceMappingURL=common.css.map */