@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  box-sizing: border-box;
}

main {
  position: relative;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

@media screen and (min-width: 1024px) {
  .d-lg-block {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .d-lg-inline {
    display: inline;
  }
}

@media screen and (min-width: 1024px) {
  .d-lg-inline-block {
    display: inline-block;
  }
}

@media screen and (min-width: 1024px) {
  .d-lg-flex {
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  .d-lg-inline-flex {
    display: inline-flex;
  }
}

@media screen and (min-width: 1024px) {
  .d-lg-grid {
    display: grid;
  }
}

@media screen and (min-width: 1024px) {
  .d-lg-none {
    display: none;
  }
}

/* ハンバーガーボタン */
.button {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 50px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
}
@media screen and (min-width: 1260px) {
  .button {
    display: none;
  }
}
.button .line {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  transition: 0.3s;
}
.button .line + .line {
  margin-top: 6px;
}

.button.open .line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.button.open .line:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.language-switcher {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.language-switcher a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  background-color: #ffffff;
  padding: 5px 0;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  width: 4em;
  color: #000000;
}
.language-switcher .current {
  align-items: center;
  display: flex;
  align-items: center;
  color: #C83C28;
  background-color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
}
.language-switcher .current span {
  font-size: 6px;
}
@media screen and (min-width: 1260px) {
  .language-switcher {
    position: fixed;
    top: 65px;
    left: 50px;
  }
}

/* ドロワー */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  transition: right 0.3s;
  padding: 60px 20px;
  z-index: 1000;
}
@media screen and (min-width: 1260px) {
  .drawer {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    right: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
    padding: 65px 35px 0 0;
  }
}
@media screen and (min-width: 1260px) {
  .drawer .reserve {
    padding: 9px 15px 9px;
    border-radius: 20px;
    margin-top: -9px;
    font-weight: bold;
    text-align: center;
    background-color: #ffffff;
    color: #000;
    text-shadow: 0px 0px 17px rgba(0, 0, 0, 0);
  }
}

.drawer.open {
  right: 0;
}

.drawer a {
  display: block;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: opacity 0.3s;
  width: clamp(320px, 200px + 29.412vw, 800px);
  margin: 100px auto 0;
  border-bottom: 1px solid #fff;
}
.drawer a:last-child {
  border-bottom: none;
  text-align: center;
}
@media screen and (min-width: 1260px) {
  .drawer a {
    line-height: 1;
    font-size: 15px;
    width: auto;
    margin: 0;
    border-bottom: none;
    text-shadow: 0px 0px 17px rgba(0, 0, 0, 0.75);
  }
}
.drawer a:hover {
  opacity: 0.8;
}
.drawer a .icon_instagram {
  width: 34px;
  height: 34px;
}
@media screen and (min-width: 1260px) {
  .drawer a .icon_instagram {
    width: 24px;
    height: 24px;
  }
}
.drawer a + a {
  margin-top: 2em;
}
@media screen and (min-width: 1260px) {
  .drawer a + a {
    margin-top: 0;
  }
}

.fnavi {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.fnavi .fnavi-reserve {
  background-color: #ffffff;
  color: #ffffff;
  padding: 20px 40px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
}
@media screen and (min-width: 1260px) {
  .fnavi .fnavi-reserve {
    display: none;
  }
}
.fnavi .fnavi-reserve a {
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.2em;
}

section#hero.hero {
  background-color: #282845;
}
section#hero.hero div.container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
section#hero.hero div.container .splide .splide__track ul.splide__list li.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#hero.hero div.container .bg img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  width: 100%;
  height: auto;
}
section#hero.hero div.container h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  width: clamp(300px, 188.863px + 28.497vw, 736px);
}
@media screen and (min-width: 1024px) {
  section#hero.hero div.container h1 {
    bottom: -150px;
  }
}
section#hero.hero div.container h1 picture {
  max-width: 100%;
  height: auto;
}
section#hero.hero div.container .logo_deco {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 100%;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  section#hero.hero div.container .logo_deco {
    top: 150px;
    width: clamp(390px, 50.98px + 86.928vw, 1720px);
  }
}
section#hero.hero div.container .logo_deco picture {
  max-width: 100%;
  height: auto;
}
section#hero.hero div.container .logo_deco img {
  width: 100%;
  height: auto;
}

section#concept.concept {
  background-image: url(../img/base_bg.png);
  overflow-x: hidden;
}
section#concept.concept div.container {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  padding-top: clamp(140px, 83.922px + 14.379vw, 360px);
  padding-bottom: clamp(400px, 366.863px + 8.497vw, 530px);
}
section#concept.concept div.container h2 {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: clamp(28px, 21.373px + 1.699vw, 54px);
  line-height: 1.7;
  color: #fff;
  font-weight: 600;
  padding: 0 clamp(20px, 14.471px + 0.392vw, 40px);
}
section#concept.concept div.container p {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: clamp(16px, 14.471px + 0.392vw, 22px);
  line-height: 2;
  color: #fff;
  padding: clamp(35px, 24.804px + 2.614vw, 75px) clamp(20px, 14.471px + 0.392vw, 40px);
}
section#concept.concept div.container div.map {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(calc(-50% + clamp(90px, 10.98px + 20.261vw, 400px)));
  width: clamp(520px, 468.51px + 13.203vw, 722px);
}
section#concept.concept div.container div.map img {
  max-width: 100%;
  height: auto;
}

section#about.about {
  position: relative;
  background-color: #f8f8f1;
}
@media screen and (min-width: 1024px) {
  section#about.about {
    background-image: url(../img/base_bg.png);
  }
}
section#about.about div.container {
  position: relative;
  max-width: 700px;
  min-width: 290px;
  margin-inline: auto;
  z-index: 1;
  padding: 0 50px;
}
@media screen and (min-width: 1024px) {
  section#about.about div.container {
    position: absolute;
    top: -105px;
    left: 50%;
    transform: translateX(calc(-50% - 22.5vw));
    background-color: #f8f8f1;
    width: 560px;
    margin-inline: initial;
    padding: 20px 50px 0;
  }
}
section#about.about div.container hgroup {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  flex-direction: column-reverse;
}
section#about.about div.container hgroup h2 {
  padding-top: 30px;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: clamp(28px, 26.216px + 0.458vw, 35px);
  font-weight: 600;
  line-height: 1.7;
  color: #282845;
}
@media screen and (min-width: 1024px) {
  section#about.about div.container hgroup h2 {
    font-size: 35px;
  }
}
section#about.about div.container hgroup p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 13.235px + 0.196vw, 17px);
  font-weight: bold;
  line-height: 2;
  color: #C83C28;
}
section#about.about div.container .story {
  padding-top: 40px;
  padding-bottom: 75px;
}
section#about.about div.container .story p {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: clamp(16px, 15.49px + 0.131vw, 18px);
  line-height: 2;
  color: #282845;
}
@media screen and (min-width: 1024px) {
  section#about.about div.container .story p {
    line-height: 1.7;
  }
}
section#about.about .bg {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  section#about.about .bg img {
    min-width: 1920px;
    width: 100%;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }
}
section#about.about .bg-01 picture img {
  width: 100%;
}
section#about.about .bg-02 img {
  width: 100%;
  height: auto;
}

section#suggested-itinerary {
  position: relative;
  background-image: url(../img/base_bg.png);
  overflow-x: hidden;
}
section#suggested-itinerary .bg img {
  max-width: 100%;
  height: auto;
}
section#suggested-itinerary .bg-01 {
  top: 0;
  z-index: 0;
  width: 100%;
}
section#suggested-itinerary .bg-01 img {
  width: 100%;
  height: auto;
}
section#suggested-itinerary .bg-02 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1129px;
  top: clamp(514px, 462.255px + 13.268vw, 717px);
  z-index: 0;
  width: 100%;
}
section#suggested-itinerary .bg-02 img {
  width: 100%;
  height: auto;
}
section#suggested-itinerary div.heading {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  z-index: 1;
  padding-top: 10vw;
}
section#suggested-itinerary div.heading hgroup {
  margin-bottom: 50px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  flex-direction: column-reverse;
}
section#suggested-itinerary div.heading hgroup h2 {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: clamp(15px, 12.451px + 0.654vw, 25px);
  line-height: 1.7;
  letter-spacing: 0.25em;
  color: #fff;
}
section#suggested-itinerary div.heading hgroup p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(26px, 21.667px + 1.111vw, 43px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.25em;
  color: #fff;
}
section#suggested-itinerary div.heading .bg-03 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(318px, 235.922px + 21.046vw, 640px);
  top: -15vw;
  transform: translateX(calc(-50% + clamp(140px, 45.686px + 24.183vw, 510px)));
  z-index: -1;
}
section#suggested-itinerary div.suggested-itinerary {
  position: relative;
  padding-top: clamp(100px, 87.255px + 3.268vw, 150px);
}
section#suggested-itinerary div.suggested-itinerary div.container {
  position: relative;
}
@media screen and (min-width: 1024px) {
  section#suggested-itinerary div.suggested-itinerary div.container div.lead {
    max-width: 1280px;
    margin-inline: auto;
  }
}
section#suggested-itinerary div.suggested-itinerary div.container div.lead div.number {
  position: relative;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.25em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  section#suggested-itinerary div.suggested-itinerary div.container div.lead div.number {
    display: block;
    padding-right: 0;
    padding-left: 8px;
    top: 45px;
  }
}
section#suggested-itinerary div.suggested-itinerary div.container div.lead div.number::before {
  content: "";
  flex: 1;
  margin-right: 8px;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 1024px) {
  section#suggested-itinerary div.suggested-itinerary div.container div.lead div.number::before {
    flex: auto;
    position: absolute;
    top: 50%;
    left: calc(-50vw + 50%);
    width: calc(50vw - 50%);
    border-bottom: 1px solid #fff;
    transform: translateY(-50%);
  }
}
section#suggested-itinerary div.suggested-itinerary div.container div.lead hgroup {
  margin-top: 20px;
}
section#suggested-itinerary div.suggested-itinerary div.container div.lead hgroup h3 {
  padding-top: 50px;
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: clamp(30px, 24.902px + 1.307vw, 50px);
  line-height: 1.5;
  color: #dfd3be;
}
@media screen and (min-width: 1024px) {
  section#suggested-itinerary div.suggested-itinerary div.container div.lead hgroup h3 {
    padding-top: 0;
  }
}
section#suggested-itinerary div.suggested-itinerary div.container div.lead hgroup p {
  padding-top: 15px;
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: clamp(16px, 13.961px + 0.523vw, 24px);
  line-height: 2;
  color: #dfd3be;
}
section#suggested-itinerary div.suggested-itinerary div.container div.lead .lead_text {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: clamp(16px, 13.961px + 0.523vw, 24px);
  line-height: 1.6;
  color: #fff;
  text-align: left;
  padding: 40px 40px 0;
}
section#suggested-itinerary div.suggested-itinerary div.container div.lead .scroll {
  margin-top: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #C83C28;
  text-align: right;
  font-weight: 600;
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards {
  padding-top: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 1024px) {
  section#suggested-itinerary div.suggested-itinerary div.container div.cards {
    justify-content: left;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: content-box;
    width: 1200px;
  }
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card {
  flex: 0 0 auto;
  width: 270px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card {
    flex: 0 0 auto;
    width: 320px;
  }
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card div.card-header {
  position: relative;
  height: 50px;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card div.card-header {
    width: auto;
  }
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card div.card-header::after {
  position: absolute;
  right: -40px;
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: transparent;
  border-bottom: 1px solid #fff;
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card div.card-header:last-child::after {
  display: none;
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card:last-of-type .card-header::after {
  display: none;
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card div.card-body {
  padding-top: 30px;
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card div.card-body div.card-img img {
  width: 100%;
  height: auto;
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card div.card-body div.card-title {
  padding-top: 35px;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card div.card-body div.card-title span {
  font-size: 14px;
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
}
section#suggested-itinerary div.suggested-itinerary div.container div.cards div.card div.card-footer p.card-text {
  padding-top: 15px;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  text-align: left;
}

section#experience {
  position: relative;
  background-image: url(../img/base_bg.png);
  padding-top: clamp(40px, 19.608px + 5.229vw, 120px);
  padding-bottom: clamp(110px, 25.882px + 21.569vw, 440px);
  overflow-x: hidden;
}
section#experience::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 5px;
  height: calc(100% - 50px);
  background-color: #c83c28;
  transform: translateX(0);
}
@media screen and (min-width: 1024px) {
  section#experience::before {
    top: 170px;
    height: calc(100% - 230px);
    display: block;
    border-left: 1px solid #c83c28;
    background-color: transparent;
    width: clamp(350px, -59.259px + 104.938vw, 1200px);
    margin-left: auto;
    margin-right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
section#experience div.heading {
  position: relative;
  max-width: 1417px;
  margin-inline: auto;
  z-index: 1;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  flex-direction: column-reverse;
}
section#experience div.heading h2 {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: clamp(15px, 12.451px + 0.654vw, 25px);
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
}
section#experience div.heading p {
  font-family: YakuHanMP, "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(26px, 21.667px + 1.111vw, 43px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.15em;
  color: #fff;
}
section#experience div.experience {
  position: relative;
}
section#experience div.experience div.container {
  max-width: 1417px;
  margin-inline: auto;
  position: relative;
}
section#experience div.experience div.container .badge {
  width: clamp(64px, 55.843px + 2.092vw, 96px);
  height: clamp(64px, 55.843px + 2.092vw, 96px);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  section#experience div.experience div.container .badge {
    width: 96px;
    height: 96px;
  }
}
section#experience div.experience div.container .badge img {
  width: 100%;
  height: 100%;
}
section#experience div.experience div.container hgroup {
  padding-top: 10px;
}
section#experience div.experience div.container hgroup h3 {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: clamp(29px, 23.647px + 1.373vw, 50px);
  line-height: 1.4;
  color: #fff;
  position: relative;
  left: 0.25em;
}
@media screen and (min-width: 1024px) {
  section#experience div.experience div.container hgroup h3 {
    font-size: 50px;
  }
}
section#experience div.experience div.container hgroup p {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #C83C28;
  font-weight: 600;
  margin-top: 1em;
  position: relative;
  left: 0.05em;
}
@media screen and (min-width: 1024px) {
  section#experience div.experience div.container hgroup p {
    font-size: 14px;
  }
}
section#experience div.experience div.container div.cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, -4.784px + 3.791vw, 68px);
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 89.804px + 2.614vw, 140px) 30px 0;
}
section#experience div.experience div.container div.cards div.card {
  position: relative;
  z-index: 1;
  background-color: #f8f8f1;
  max-width: 1417px;
}
@media screen and (min-width: 1024px) {
  section#experience div.experience div.container div.cards div.card {
    display: flex;
  }
}
section#experience div.experience div.container div.cards div.card div.card-header {
  order: 1;
  overflow: hidden;
  max-height: clamp(250px, 150.588px + 25.49vw, 640px);
  max-width: 857px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  section#experience div.experience div.container div.cards div.card div.card-header {
    order: 2;
    max-height: 700px;
    max-width: 857px;
    position: relative;
  }
}
section#experience div.experience div.container div.cards div.card div.card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#experience div.experience div.container div.cards div.card div.card-body {
  padding: 0 30px 60px;
  width: clamp(350px, 196.215px + 39.432vw, 600px);
  margin-inline: auto;
  order: 2;
}
@media screen and (min-width: 1024px) {
  section#experience div.experience div.container div.cards div.card div.card-body {
    order: 1;
    padding: 0 80px 60px;
  }
}
section#experience div.experience div.container div.cards div.card div.card-body div.card-lead {
  margin-inline: auto;
  padding-top: clamp(45px, 34.804px + 2.614vw, 85px);
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: clamp(18px, 12.2px + 2vw, 20px);
  line-height: 1.7;
  color: #282845;
}
section#experience div.experience div.container div.cards div.card div.card-body div.card-title {
  margin-inline: auto;
  padding-top: 60px;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: clamp(30px, 15.5px + 5vw, 35px);
  line-height: 1;
  color: #282845;
  text-align: left;
}
section#experience div.experience div.container div.cards div.card div.card-body p.card-text {
  margin-inline: auto;
  padding-top: clamp(40px, 37.451px + 0.654vw, 50px);
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.4;
  color: #282845;
}
section#experience div.experience div.container div.cards div.card div.card-body div.card-link {
  padding-top: 40px;
  width: clamp(290px, 264.51px + 6.536vw, 390px);
  margin-inline: auto;
}
section#experience div.experience div.container div.cards div.card div.card-body div.card-link a {
  position: relative;
  width: clamp(290px, 264.51px + 6.536vw, 390px);
  height: 70px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.25em;
  color: #282845;
  text-decoration: none;
  transition: all 0.3s ease;
}
section#experience div.experience div.container div.cards div.card div.card-body div.card-link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #000;
}
section#experience div.experience div.container div.cards div.card div.card-body div.card-link a::after {
  content: "";
  position: absolute;
  background-image: url("./../img/icon_arrow_right_blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  right: 30px;
  top: 50%;
  transform: translateY(calc(-50% + 5px));
  display: block;
  width: 14px;
  height: 24px;
}
section#experience div.experience div.container div.cards div.card div.card-body div.card-link a:hover {
  background-color: #c83c28;
  color: #fff;
}
section#experience div.experience div.container div.cards div.card div.card-body div.card-link a:hover::after {
  background-image: url("./../img/icon_arrow_right_white.svg");
}
section#experience div#experience-samurai-martial-arts {
  padding-top: clamp(50px, 62.745px - 3.268vw, 0px);
}
section#experience div#experience-samurai-martial-arts .bg {
  position: absolute;
  left: 50%;
  z-index: 0;
}
section#experience div#experience-samurai-martial-arts .bg img {
  max-width: 100%;
  height: auto;
}
section#experience div#experience-samurai-martial-arts .bg-01 {
  width: clamp(284px, 179.235px + 26.863vw, 695px);
  top: -30px;
  transform: translateX(calc(-50% + clamp(70px, -39.608px + 28.105vw, 500px)));
}
@media screen and (min-width: 1024px) {
  section#experience div#experience-samurai-martial-arts .bg-01 {
    top: -8vw;
  }
}
section#experience div#experience-traditional-culture {
  padding-top: clamp(150px, 132.157px + 4.575vw, 150px);
}
section#experience div#experience-traditional-culture .bg {
  position: absolute;
  left: 30vw;
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  section#experience div#experience-traditional-culture .bg {
    left: 50%;
  }
}
section#experience div#experience-traditional-culture .bg img {
  max-width: 100%;
  height: auto;
}
section#experience div#experience-traditional-culture .bg-01 {
  width: clamp(359px, 239.706px + 30.588vw, 827px);
  top: 20px;
}
@media screen and (min-width: 1024px) {
  section#experience div#experience-traditional-culture .bg-01 {
    top: -4vw;
  }
}

section#access.access {
  background-color: #0f0f2d;
  padding-top: clamp(80px, 57.059px + 5.882vw, 170px);
}
section#access.access div.container {
  width: 100%;
  margin-inline: auto;
  border-bottom: 1px solid #dfd3be;
}
section#access.access div.container h2 {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: clamp(28px, 22.392px + 1.438vw, 50px);
  line-height: 1.7;
  color: #fff;
}
section#access.access div.container div[role=tablist] {
  padding-top: clamp(35px, 18.431px + 4.248vw, 100px);
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #dfd3be;
}
section#access.access div.container div[role=tablist] button[role=tab] {
  position: relative;
  width: clamp(175px, 149.51px + 6.536vw, 275px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: transparent;
  border: 1px solid #dfd3be;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  section#access.access div.container div[role=tablist] button[role=tab] {
    width: 300px;
  }
}
section#access.access div.container div[role=tablist] button[role=tab][aria-selected=true] {
  background-color: #dfd3be;
  color: #0f0f2d;
}
section#access.access div.container div[role=tablist] button[role=tab][aria-selected=true]::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("./../img/icon_arrow_down_blue.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 1;
}
section#access.access div.container div[role=tablist] button[role=tab][aria-selected=false]::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("./../img/icon_arrow_down_white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 1;
}
section#access.access div.container div[role=tablist] button[role=tab]:first-of-type {
  border-top-right-radius: 0;
}
section#access.access div.container div[role=tablist] button[role=tab]:last-of-type {
  border-top-left-radius: 0;
}
section#access.access div.container div[role=tabpanel] {
  width: clamp(290px, -85.237px + 96.215vw, 900px);
  margin-inline: auto;
  padding-bottom: 75px;
}
@media screen and (min-width: 1024px) {
  section#access.access div.container div[role=tabpanel] {
    width: 1024px;
    margin-inline: auto;
  }
}
section#access.access div.container div[role=tabpanel] p {
  padding: 50px 0px 0;
  margin-inline: auto;
}
section#access.access div.container div[role=tabpanel] p picture img {
  max-width: 100%;
  height: auto;
}
section#access.access div.container div[role=tabpanel][hidden] {
  display: none;
}

footer {
  background-image: url(../img/base_bg.png);
  padding-top: clamp(100px, 96.176px + 0.98vw, 115px);
  padding-bottom: clamp(160px, 171.471px - 2.941vw, 115px);
}
footer div.container {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
footer div.container p {
  width: clamp(268px, 254.745px + 3.399vw, 320px);
  margin-inline: auto;
}
footer div.container p img {
  width: 100%;
  height: auto;
}
footer div.container ul.social {
  padding-top: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer div.container ul.social li a {
  display: block;
}
footer div.container ul.social li a img {
  width: 34px;
  height: 34px;
}
footer div.container div.contact {
  padding-top: 45px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  footer div.container div.contact span {
    padding-left: 1em;
  }
}
footer div.container div.copyrights {
  padding-top: 25px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.25em;
  color: #fff;
}/*# sourceMappingURL=style.css.map */