@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "";
}

@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .xl-none {
    display: none;
  }
}
@media screen and (max-width: 1439px) {
  .l-none {
    display: none;
  }
}
@media screen and (max-width: 919px) {
  .m-none {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .s-none {
    display: none;
  }
}
@media screen and (min-width: 641pxpx) {
  .rs-none {
    display: none;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 1100px) and (min-width: 768) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 919px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  /*min-width: 0;*/
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  scroll-behavior: smooth;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dd {
  margin-left: 0;
}

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

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address,
em {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

.inner {
  max-width: 1150px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 919px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  width: 100%;
}
body a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body a:hover {
  opacity: 0.8;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.header {
  width: 100%;
  height: 100px;
  background-color: #ac2d23;
}
@media screen and (max-width: 767px) {
  .header {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.header-wrap {
  max-width: 700px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .header-wrap {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 0.8rem;
  }
}
.header-wrap p {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 1px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .header-wrap p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .header-jtbLogo {
    width: 100%;
    height: 60px;
    background: -webkit-gradient(linear, left top, right top, from(rgb(193, 19, 17)), color-stop(60%, rgb(224, 88, 38)), to(rgb(252, 178, 54)));
    background: linear-gradient(90deg, rgb(193, 19, 17) 0%, rgb(224, 88, 38) 60%, rgb(252, 178, 54) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .header-jtbLogo .pc {
    display: none;
  }
}
.header-jtbLogo .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-jtbLogo .sp {
    display: block;
    padding-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  .header-shiteneLogo img {
    width: 180px;
  }
}

.mv {
  background-color: #ac2d23;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 0 0 288px;
  padding: 0 0 18rem;
  position: relative;
  background-image: url(../images/bg_logoPattern.webp), url(../images/bg_logoPattern.webp);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: bottom 0px left -250px, top 300px right -250px;
}
@media screen and (max-width: 767px) {
  .mv {
    background-size: 600px;
    background-position: bottom 180px left -250px, top 380px right -300px;
    top: -2px;
  }
}
.mv::after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(172, 45, 35, 0)), to(rgb(216, 196, 155)));
  background: linear-gradient(180deg, rgba(172, 45, 35, 0) 0%, rgb(216, 196, 155) 100%);
  width: 100%;
  height: 80px;
  position: absolute;
  left: 0%;
  bottom: 0%;
}
@media screen and (max-width: 767px) {
  .mv::after {
    display: none;
  }
}

.mvTtl {
  background-image: url(../images/bg_mv.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 96px 0 128px;
  padding: 6rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .mvTtl {
    background-image: url(../images/bg_mv_sp.webp);
    background-size: 100%;
    background-position: center;
    padding: 5rem 2rem 12rem;
  }
}
.mvTtl img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="5" /><feOffset dx="6" dy="6" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.5)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .5));
          filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .5));
}
@media screen and (max-width: 767px) {
  .mvTtl img {
    max-width: 320px;
    width: 100%;
  }
}

.mvBtn {
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(188, 157, 102)), to(rgb(150, 110, 60)));
  background: linear-gradient(180deg, rgb(188, 157, 102) 50%, rgb(150, 110, 60) 100%);
  max-width: 600px;
  width: 100%;
  border-radius: 100px;
  margin: 48px auto;
  margin: 3rem auto;
  padding: 12px;
  padding: 0.75rem;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 4px;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="5" /><feOffset dx="6" dy="6" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.5)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .5));
          filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .5));
}
@media screen and (max-width: 767px) {
  .mvBtn {
    max-width: 350px;
    font-size: 1.25rem;
    padding: 0.8rem;
    margin: -0.5rem auto 1.8rem;
  }
}

.mvTxt {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 112px;
  margin-bottom: 7rem;
  line-height: 16px;
  line-height: 1rem;
}
@media screen and (max-width: 767px) {
  .mvTxt {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 4rem;
  }
}
.mvTxt br {
  display: none;
}
@media screen and (max-width: 767px) {
  .mvTxt br {
    display: block;
  }
}
.mvTxt em {
  font-weight: 600;
  font-size: 40px;
  font-size: 2.5rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  display: block;
  line-height: 48px;
  line-height: 3rem;
}
@media screen and (max-width: 767px) {
  .mvTxt em {
    line-height: 2.2rem;
    font-size: 1.375rem;
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .mvSpecial {
    overflow: hidden;
    padding: 1rem 0;
  }
}
.mvSpecial h2 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  padding: 0 5px 0.5px;
  border-bottom: #fff 1px solid;
  margin: 0 auto 48px;
  margin: 0 auto 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  line-height: 51.2px;
  line-height: 3.2rem;
}
@media screen and (max-width: 767px) {
  .mvSpecial h2 {
    font-size: 1.25rem;
    margin: 0 auto 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mvSpecial h2 br {
    display: none;
  }
}
.mvSpecial h2 em {
  font-size: 60px;
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .mvSpecial h2 em {
    font-size: 2.5rem;
  }
}
.mvSpecial-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mvSpecial-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mvSpecial-flex p {
  text-align: left;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  border-bottom: 1px #fff solid;
  width: min(-webkit-fit-content, 305px);
  width: min(-moz-fit-content, 305px);
  width: min(fit-content, 305px);
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  margin: 0 auto;
  color: #fff;
  line-height: 32px;
  line-height: 2rem;
}
@media screen and (max-width: 767px) {
  .mvSpecial-flex p {
    font-size: 1rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
}
.mvSpecial-flex p em {
  font-size: 76px;
  font-size: 4.75rem;
  display: block;
  line-height: 88px;
  line-height: 5.5rem;
}
@media screen and (max-width: 767px) {
  .mvSpecial-flex p em {
    font-size: 3.25rem;
    line-height: 4rem;
  }
}
.mvSpecial-flex p span {
  font-size: 35px;
  font-size: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .mvSpecial-flex p span {
    font-size: 1.5625rem;
  }
}
.mvSpecial-flex .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .mvSpecial-flex .sp {
    display: block;
  }
}
.mvSpecial-contentTop {
  margin-top: -224px;
  margin-top: -14rem;
}
@media screen and (max-width: 767px) {
  .mvSpecial-contentTop {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    margin-left: -1rem;
  }
}
@media screen and (max-width: 767px) {
  .mvSpecial-contentTop p {
    padding: 0 1rem 0.5rem 4rem;
    margin-left: -3rem;
  }
}
.mvSpecial-contentTop img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="9" dy="9" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.3)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(8px 8px 0px rgba(0, 0, 0, .3));
          filter: drop-shadow(8px 8px 0px rgba(0, 0, 0, .3));
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .mvSpecial-contentTop img {
    width: 210px;
    height: 210px;
    -webkit-filter: drop-shadow(-3px 8px 0px rgba(0, 0, 0, .3));
            filter: drop-shadow(-3px 8px 0px rgba(0, 0, 0, .3));
  }
}
@media screen and (max-width: 767px) {
  .mvSpecial-contentTop._last {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mvSpecial-contentTop._last img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="9" dy="9" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.3)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(8px 8px 0px rgba(0, 0, 0, .3));
          filter: drop-shadow(8px 8px 0px rgba(0, 0, 0, .3));
}
@media screen and (max-width: 767px) {
  .mvSpecial-contentBottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0rem;
    margin-right: -1rem;
    margin-block: -1rem -2rem;
  }
}
.mvSpecial-contentBottom p em {
  margin-bottom: 3.2px;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 767px) {
  .mvSpecial-contentBottom p {
    padding: 0 3rem 0.5rem 1rem;
    margin-right: -2rem;
    text-align: right;
  }
}
.mvSpecial-contentBottom img {
  -webkit-filter: drop-shadow(-8px -8px 0px rgba(0, 0, 0, .3));
          filter: drop-shadow(-8px -8px 0px rgba(0, 0, 0, .3));
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .mvSpecial-contentBottom img {
    -webkit-filter: drop-shadow(-3px -8px 0px rgba(0, 0, 0, .3));
            filter: drop-shadow(-3px -8px 0px rgba(0, 0, 0, .3));
    width: 210px;
  }
}

.recommend {
  background-color: #d8c49b;
  padding: 160px 0 96px 0;
  padding: 10rem 0 6rem 0;
  position: relative;
  background-image: url(../images/bg_logoPattern.webp), url(../images/bg_logoPattern.webp);
  background-repeat: no-repeat, no-repeat;
  background-size: 60%, 60%;
  background-position: bottom -200px left -700px, bottom -200px right -700px;
}
@media screen and (max-width: 767px) {
  .recommend {
    padding: 0rem 0 8rem 0;
    background-size: 600px;
    background-position: bottom 0px left -150px, top 0px right -150px;
    z-index: 0;
  }
}
.recommend::after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(216, 196, 155, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgba(216, 196, 155, 0) 0%, rgb(255, 255, 255) 100%);
  width: 100%;
  height: 80px;
  left: 0%;
  bottom: 0%;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recommend::after {
    height: 150px;
  }
}
.recommend-btn {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(172, 45, 35)), to(rgb(120, 35, 25)));
  background: linear-gradient(180deg, rgb(172, 45, 35) 50%, rgb(120, 35, 25) 100%);
  display: block;
  max-width: 600px;
  width: 100%;
  border-radius: 100px;
  margin: 8px auto 0;
  margin: 0.5rem auto 0;
  padding: 12px;
  padding: 0.75rem;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: #fff;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .recommend-btn {
    margin: 0 auto;
    padding: 0.9rem;
    font-size: 1.125rem;
    letter-spacing: 0px;
    max-width: 310px;
    position: absolute;
    bottom: -5rem;
    left: 0;
    right: 0;
    z-index: 2;
  }
}

.recommendBtn-wrap {
  position: relative;
  z-index: 10;
}

.recommendTtl {
  text-align: center;
  background-image: url(../images/bg_recommendTtl.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 1020px;
  width: 100%;
  height: 100%;
  padding: 128px 0;
  padding: 8rem 0;
  margin: -464px auto -96px;
  margin: -29rem auto -6rem;
}
@media screen and (max-width: 767px) {
  .recommendTtl {
    font-size: 1.25rem;
    background-image: url(../images/bg_recommendTtl_sp.webp);
    background-size: 100%;
    background-position: center top;
    position: absolute;
    padding: 0;
    margin: 0 auto;
    top: -16rem;
  }
}
.recommendTtl h2 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  color: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 4px 0px rgb(0, 0, 0));
          filter: drop-shadow(0px 4px 0px rgb(0, 0, 0));
  z-index: 1;
  position: relative;
  margin: 112px 0 0;
  margin: 7rem 0 0;
}
@media screen and (max-width: 767px) {
  .recommendTtl h2 {
    font-size: 1.25rem;
    margin: 15rem 0 0;
  }
}
.recommendTtl h2::before {
  content: "";
  background-image: url(../images/icon_recommend_ttl.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 48px;
  height: 91px;
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .recommendTtl h2::before {
    width: 30px;
    height: 55px;
    top: -55px;
  }
}
.recommendTtl h2 em {
  font-size: 60px;
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .recommendTtl h2 em {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .recommendSlider {
    padding-top: 6rem !important;
    padding-inline: 1rem !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1.8rem;
  }
}
.recommendSlider-content {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .recommendSlider-content {
    width: 100%;
  }
}
.recommendSlider-content p {
  margin-top: 12.8px;
  margin-top: 0.8rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.recommendSlider-content p span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}

.gift {
  padding: 64px 0 224px;
  padding: 4rem 0 14rem;
  text-align: center;
  position: relative;
  background-image: url(../images/bg_giftLeft.webp), url(../images/bg_giftRight.webp);
  background-repeat: no-repeat;
  background-size: 1100px;
  background-position: bottom 50% right 44vw, bottom 50% left 44vw;
}
@media screen and (max-width: 1200px) {
  .gift {
    background-size: 1100px;
    background-position: bottom 50% right 20vw, bottom 50% left 20vw;
  }
}
@media screen and (max-width: 767px) {
  .gift {
    padding: 2.5rem 1.5rem;
    background: none;
    overflow: hidden;
  }
}
.gift h2 {
  margin: 0 auto 112px;
  margin: 0 auto 7rem;
  padding: 12.8px 80px;
  padding: 0.8rem 5rem;
  color: #ac2d23;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
  border-top: #ac2d23 1px solid;
  border-bottom: #ac2d23 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1200px) {
  .gift h2 {
    margin: 0 auto 11rem;
  }
}
@media screen and (max-width: 767px) {
  .gift h2 {
    font-size: 1.25rem;
    padding: 0.5rem 0rem;
    width: 100%;
    margin: 0 auto 11rem;
  }
}
.gift h2 em {
  font-size: 48px;
  font-size: 3rem;
  line-height: 56px;
  line-height: 3.5rem;
}
@media screen and (max-width: 767px) {
  .gift h2 em {
    font-size: 2.5rem;
    display: block;
    line-height: 3rem;
  }
}
.gift::after {
  content: url(../images/img_giftBottom.svg);
  overflow: hidden;
  position: absolute;
  bottom: 16px;
  bottom: 1rem;
  right: -16px;
  right: -1rem;
  margin: 0 auto;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .gift::after {
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/img_giftBottom_sp.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom 90px left 0px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
}

.giftFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 112px;
  gap: 7rem;
}
@media screen and (max-width: 1200px) {
  .giftFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .giftFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12rem;
  }
}
.giftFlex-content {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #ac2d23;
  position: relative;
  z-index: 99;
}
.giftFlex-content h3 {
  font-size: 35px;
  font-size: 2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .giftFlex-content h3 {
    font-size: 1.875rem;
  }
}
.giftFlex-content h3 br {
  display: none;
}
@media screen and (max-width: 767px) {
  .giftFlex-content h3 br {
    display: block;
  }
}
.giftFlex-content h3 em {
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .giftFlex-content h3 em {
    font-size: 2.625rem;
    line-height: 2.5rem;
  }
}
.giftFlex-content p {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .giftFlex-content p {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.8rem;
  }
}
.giftFlex-content p .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .giftFlex-content p .sp {
    display: block;
  }
}
.giftFlex-content a {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(172, 45, 35)), to(rgb(120, 35, 25)));
  background: linear-gradient(180deg, rgb(172, 45, 35) 50%, rgb(120, 35, 25) 100%);
  display: block;
  max-width: 400px;
  width: 100%;
  border-radius: 100px;
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
  padding: 8px;
  padding: 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .giftFlex-content a {
    padding: 0.9rem;
    margin: 16vh auto 0;
    font-size: 1.25rem;
    max-width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .giftFlex-content._left {
    text-align: left;
  }
  .giftFlex-content._left::after {
    content: "";
    position: absolute;
    background-image: url(../images/bg_giftRight_sp.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 90%;
    height: 1000px;
    display: inline-block;
    z-index: -1;
    top: -30%;
    right: -1.5rem;
  }
}
.giftFlex-content._left h3::before {
  content: "";
  background-image: url(../images/icon_gift_place.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 56px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .giftFlex-content._left h3::before {
    width: 40px;
    height: 60px;
    top: -65px;
    right: 87%;
  }
}
@media screen and (max-width: 767px) {
  .giftFlex-content._right {
    text-align: right;
  }
  .giftFlex-content._right::before {
    content: "";
    position: absolute;
    background-image: url(../images/bg_giftLeft_sp.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 1000px;
    display: inline-block;
    z-index: 0;
    bottom: -120%;
    left: -1.5rem;
    z-index: -1;
  }
}
.giftFlex-content._right h3::before {
  content: "";
  background-image: url(../images/icon_gift_price.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .giftFlex-content._right h3::before {
    width: 60px;
    height: 60px;
    top: -65px;
    left: 80%;
  }
}

.message {
  margin-top: 48px;
  margin-top: 3rem;
  max-width: 1600px;
  margin: 0 auto;
  background-image: url(../images/bg_message.webp);
  background-size: 1600px;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 200px 16px 100px;
  padding: 200px 1rem 100px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .message {
    background-position: left top;
    background-image: url(../images/bg_message_sp.webp);
    background-size: 100%;
    padding: min(30vw, 350px) 0rem 100px 20vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .message {
    max-width: 100%;
    background-image: url(../images/bg_message_sp.webp);
    background-position: center top;
    background-size: 100%;
    padding: 38vw 1rem 25px max(90px, 20vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.message-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 96px;
  gap: 6rem;
}
@media screen and (max-width: 1200px) {
  .message-inner {
    gap: 3rem;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .message-inner {
    margin: 0;
    max-width: 80vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.message-ttl {
  color: #ac2d23;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  font-size: 2.25rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .message-ttl {
    font-size: 1.5rem;
    line-height: 1.7rem;
  }
}
.message-txtTop {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .message-txtTop {
    font-size: 0.875rem;
  }
}
.message-txtBottom {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  font-size: 1.375rem;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: right;
  padding-inline: 8px;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 767px) {
  .message-txtBottom {
    display: none;
  }
}
.message-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .message-flex {
    display: none;
  }
}
.message-flexTxt {
  color: #ac2d23;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .message-flexTxt {
    font-size: 1.125rem;
  }
}
.message-flexContent {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  color: #fff;
  background-color: #ab8466;
  border-radius: 100px;
  position: relative;
  text-align: center;
  width: 140px;
  height: 140px;
  padding: 16px;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .message-flexContent {
    font-size: 0.875rem;
    line-height: 1rem;
    width: 95px;
    height: 95px;
    padding: 0.8rem;
  }
}
.message-flexContent._1 p {
  margin-block: 8px;
  margin-block: 0.5rem;
}
@media screen and (max-width: 767px) {
  .message-flexContent._1 p {
    margin-block: 0.3rem;
  }
}
.message-flexContent._1::before {
  content: "";
  background: url(../images/icon_message_example1.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 56px;
  width: 40px;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .message-flexContent._1::before {
    height: 35px;
    width: 25px;
  }
}
.message-flexContent._2::before {
  content: "";
  background: url(../images/icon_message_example2.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 56px;
  width: 25px;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .message-flexContent._2::before {
    height: 35px;
    width: 16px;
  }
}
.message-flexContent._3::before {
  content: "";
  background: url(../images/icon_message_example3.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 45px;
  width: 56px;
  margin-block: 6px;
}
@media screen and (max-width: 767px) {
  .message-flexContent._3::before {
    height: 28px;
    width: 36px;
    margin: 6px 0 2px;
  }
}
@media screen and (max-width: 1400px) {
  .message-wrap {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .message-wrap {
    margin-top: 0;
  }
}
.message-imgWrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .message-imgWrap {
    height: 175px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .message-img {
    position: absolute;
    width: 220px;
    height: 220px;
    top: -50px;
    right: -50px;
    z-index: 1;
  }
}
.message-imgAbsolute {
  position: absolute;
  bottom: -50px;
  left: -90px;
}
@media screen and (max-width: 1200px) {
  .message-imgAbsolute {
    bottom: -90px;
    left: -35px;
  }
}
@media screen and (max-width: 767px) {
  .message-imgAbsolute {
    width: 135px;
    height: 170px;
    bottom: 0;
    left: 0;
    top: 0;
    z-index: 2;
  }
}
.message-spWrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .message-spWrap {
    display: block;
  }
}
.message-spFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .message-spFlex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .message-spTxt {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9375rem;
    padding-top: 4px;
  }
}

.voice {
  background-color: #efe9dc;
  padding: 48px 0 0;
  padding: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 2rem 0 0;
    background-image: url(../images/bg_logoPattern.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top -8rem left 50%;
  }
}
.voice h2 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  font-size: 2.8125rem;
  letter-spacing: 2px;
  color: #000;
  border-bottom: #000 1px solid;
  max-width: 1230px;
  width: 100%;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 767px) {
  .voice h2 {
    font-size: 2rem;
    border: none;
    margin: 0 auto 1.2rem;
  }
}

.voiceSlider-content {
  background-color: #fff;
  padding: 32px;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  gap: 2rem;
  border-radius: 8px;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="5" /><feOffset dx="8" dy="8" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.3)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, .3));
          filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, .3));
}
@media screen and (max-width: 767px) {
  .voiceSlider-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1rem 1.2rem 1.2rem;
  }
}

.experience._left {
  max-width: 270px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .experience._left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.experience._right {
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .experience._right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
  }
}
.experience-star {
  color: #ac2d23;
  font-size: 32px;
  font-size: 2rem;
  line-height: 32px;
  line-height: 2rem;
  margin-bottom: 3.2px;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 767px) {
  .experience-star {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 0.3rem;
  }
}
.experience-title {
  color: #ac2d23;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .experience-title {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.experience-people {
  color: #ac2d23;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 9.6px 0 4.8px;
  margin: 0.6rem 0 0.3rem;
}
@media screen and (max-width: 767px) {
  .experience-people {
    font-size: 0.875rem;
    line-height: 1rem;
    margin: 1.5rem 0 0.2rem;
  }
}
.experience-voice {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .experience-voice {
    font-size: 0.8125rem;
  }
}
.experience-txt {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: #000 1px solid;
  padding-bottom: 3.2px;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 767px) {
  .experience-txt {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 0.8rem;
  }
}
.experience-img {
  width: 180px;
  height: 180px;
  margin: 12.8px 0 8px;
  margin: 0.8rem 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .experience-img {
    width: 120px;
    height: 120px;
    margin: 0;
  }
}
.experience-place {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .experience-place {
    font-size: 0.75rem;
  }
}
.experience-content {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: -1px;
}
@media screen and (max-width: 767px) {
  .experience-content {
    font-size: 0.875rem;
  }
}
.experience-price {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .experience-price {
    font-size: 0.875rem;
    margin-top: 1.2rem;
  }
}
.experience-rightContent {
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .experience-rightContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.experience-rightContent div {
  width: 125px;
}

.flow {
  background-color: #ac2d23;
  background-image: url(../images/bg_logoPattern.webp);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 32px 32px 56px;
  padding: 2rem 2rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .flow {
    background-size: 125%;
    padding: 2.5rem 1.5rem;
  }
}
.flow h2 {
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 38.4px;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .flow h2 {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.flow h2 em {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .flow h2 em {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.flowSender {
  max-width: 1230px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  font-size: 1.875rem;
  padding: 4.8px;
  padding: 0.3rem;
  margin: 32px auto 32px;
  margin: 2rem auto 2rem;
  border: #fff 2px solid;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .flowSender {
    padding: 0.2rem;
    font-size: 1.5rem;
    margin: 1.5rem auto 1.8rem;
  }
}

.flowDestination {
  max-width: 1230px;
  width: 100%;
  text-align: center;
  color: #ac2d23;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  font-size: 1.875rem;
  padding: 4.8px;
  padding: 0.3rem;
  margin: 56px auto 32px;
  margin: 3.5rem auto 2rem;
  background-color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .flowDestination {
    padding: 0.3rem;
    font-size: 1.5rem;
    margin: 4rem auto 1.8rem;
  }
}

.flowFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  gap: 5rem;
  max-width: 1230px;
  margin: 0 auto;
  padding-inline: 36px;
  padding-inline: 2.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flowFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .flowFlex._last {
    gap: 3rem;
  }
}
.flowFlex::after {
  content: "";
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 42px;
  height: 48px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .flowFlex::after {
    width: 21px;
    height: 24px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.flowFlex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19.2px;
  gap: 1.2rem;
  color: #fff;
  padding: 24px;
  padding: 1.5rem;
  border-left: #fff 1px solid;
  border-bottom: #fff 1px solid;
  width: 500px;
}
@media screen and (max-width: 767px) {
  .flowFlex-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
    border: none;
    padding: 0 0 0 0.3rem;
    width: 100%;
  }
}
.flowFlex-contentNub {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  font-size: 2rem;
  text-align: center;
  line-height: 32px;
  line-height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .flowFlex-contentNub {
    font-size: 1.25rem;
    line-height: 1rem;
    margin-right: 0.5rem;
  }
}
.flowFlex-contentNub em {
  font-weight: 600;
  font-size: 74px;
  font-size: 4.625rem;
  line-height: 80px;
  line-height: 5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .flowFlex-contentNub em {
    font-size: 2.875rem;
    line-height: 2.5rem;
    padding-top: 0.5rem;
  }
}
.flowFlex-contentTxt {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 32px;
  line-height: 2rem;
}
@media screen and (max-width: 767px) {
  .flowFlex-contentTxt {
    font-size: 0.9375rem;
    max-width: 180px;
    width: 100%;
  }
}
.flowFlex-contentImg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(7vw, 130px);
  height: min(7vw, 130px);
}
@media screen and (max-width: 767px) {
  .flowFlex-contentImg._1 {
    width: 80px;
    height: auto;
  }
  .flowFlex-contentImg._2 {
    width: 75px;
    height: auto;
  }
  .flowFlex-contentImg._3 {
    width: 88px;
    height: auto;
  }
  .flowFlex-contentImg._4 {
    width: 50px;
    height: auto;
  }
}

.faq {
  padding: 48px 32px 48px;
  padding: 3rem 2rem 3rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 2rem 1.5rem;
  }
}
.faq h2 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  font-size: 2.8125rem;
  letter-spacing: 2px;
  color: #000;
  border-bottom: #000 1px solid;
  max-width: 1230px;
  width: 100%;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 767px) {
  .faq h2 {
    font-size: 2.5rem;
    border: none;
    letter-spacing: -4px;
    margin: 0 auto;
  }
}
.faq dl {
  max-width: 1230px;
  margin: 0 auto;
  color: #303030;
}
.faq dt {
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 24px;
  padding: 1.5rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(222, 208, 181)), to(rgb(204, 180, 138)));
  background: linear-gradient(180deg, rgb(222, 208, 181) 50%, rgb(204, 180, 138) 100%);
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .faq dt {
    padding: 0.8rem 3rem 0.8rem 0.8rem;
    font-size: 1rem;
  }
}
.faq dt::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: -10px;
  border-bottom: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .faq dt::after {
    right: 20px;
  }
}
.faq .question._open:after {
  margin-top: -5px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.faq dd {
  width: 100%;
  padding: 24px 32px;
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .faq dd {
    padding: 0.5rem 0.5rem 1rem 1rem;
    gap: 0.2rem;
  }
}
.faq dd span {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 40px;
  line-height: 2.5rem;
  color: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .faq dd span {
    padding-right: 1rem;
    font-size: 1.5625rem;
    line-height: 1.5rem;
    width: 30px;
  }
}
.faq dd p {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .faq dd p {
    font-size: 0.875rem;
  }
}
.faq dd p a {
  display: block;
  width: 390px;
  margin: 16px 0;
  margin: 1rem 0;
  padding: 4.8px;
  padding: 0.3rem;
  font-weight: 700;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(222, 208, 181)), to(rgb(204, 180, 138)));
  background: linear-gradient(180deg, rgb(222, 208, 181) 50%, rgb(204, 180, 138) 100%);
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .faq dd p a {
    max-width: 260px;
    width: 100%;
    font-size: 0.875rem;
    padding: 0.5rem;
    margin: 0.8rem 0;
  }
}

.footer {
  background-color: #ac2d23;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-wrap {
    padding-inline: 1rem;
  }
}
.footer-jtbLogo {
  width: 100%;
  height: 80px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(193, 19, 17)), color-stop(60%, rgb(224, 88, 38)), to(rgb(252, 178, 54)));
  background: linear-gradient(90deg, rgb(193, 19, 17) 0%, rgb(224, 88, 38) 60%, rgb(252, 178, 54) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer-jtbLogo {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0.8rem 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-jtbLogo img {
    width: 170px;
  }
}
.footer-shiteneLogo {
  display: block;
  margin: 0 auto;
  margin-top: 28.8px;
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .footer-shiteneLogo {
    margin-top: 1.6rem;
    width: 165px;
  }
}
.footer-tel {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 26px;
  font-size: 1.625rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer-tel {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}
.footer-businessHours {
  margin-top: 16px;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer-businessHours {
    font-size: 0.8125rem;
    margin-top: 0.6rem;
  }
}
.footer-contactBtn {
  display: block;
  background-color: #fff;
  color: #ac2d23;
  font-weight: 600;
  font-size: 15px;
  font-size: 0.9375rem;
  max-width: 350px;
  width: 100%;
  padding: 8px 0;
  padding: 0.5rem 0;
  border-radius: 100px;
  margin: 19.2px auto 0;
  margin: 1.2rem auto 0;
}
@media screen and (max-width: 767px) {
  .footer-contactBtn {
    max-width: 350px;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    margin: 0.8rem auto 0;
  }
}
.footer small {
  display: block;
  padding: 16px 0 24px;
  padding: 1rem 0 1.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .footer small {
    padding: 0.8rem 0 1.2rem;
    font-size: 0.625rem;
  }
}

.splide__list {
  padding-bottom: 32px !important;
  padding-bottom: 2rem !important;
}

.splide__arrow {
  background-color: #bc9d66 !important;
  width: 60px !important;
  height: 60px !important;
}
.splide__arrow svg {
  fill: #fff;
}

.recommend .splide__arrow--next {
  top: 40%;
  right: 15%;
}
.recommend .splide__arrow--prev {
  top: 40%;
  left: 15%;
}

.voice .splide__arrow--next {
  top: 50%;
  right: 15%;
}
.voice .splide__arrow--prev {
  top: 50%;
  left: 15%;
}
@media screen and (max-width: 767px) {
  .voice .splide__list {
    padding-bottom: 3.5rem !important;
  }
}

.js-animation {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.js-animation.is-show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/*# sourceMappingURL=styles.css.map */
