@charset "UTF-8";
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  height: 100%;
  color: #3a3a3a;
  font-family: "Shippori Mincho", serif;
  line-height: 1.4;
}

li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

img,
picture {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  object-fit: cover;
}

/* fadein用 */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fadein.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-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 {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* 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) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  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 {
  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] {
  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 {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  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;
}

caption {
  text-align: left;
}

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

th {
  text-align: left;
  font-weight: bold;
}

.header {
  width: min(94.4444444444vw, 1360px);
  position: absolute;
  right: 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__logoImg {
  width: min(3.4027777778vw, 49px);
  aspect-ratio: 49/122;
}

.header__logoTxt {
  font-size: min(1.6666666667vw, 24px);
  color: #ffffff;
  padding: 10px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.header__info {
  padding: 1% 3%;
  padding: min(1.3888888889vw, 20px) min(2.0833333333vw, 30px);
  background-color: #ffffff;
  border-radius: 0 0 0 20px;
}

.header__cta {
  max-width: 252px;
  width: min(26.0416666667vw, 252px);
  aspect-ratio: 252/48;
}

.header__cta:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

.header__telBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: min(0.6944444444vw, 10px);
}

.header__tel {
  font-size: min(2.6075619296vw, 24px);
  font-size: clamp(1.25rem, 0.964rem + 0.6vw, 1.5rem);
  color: #3a3a3a;
  font-weight: bold;
}

.header__telImg {
  display: inline-block;
  max-width: 28px;
  width: min(3.6505867014vw, 28px);
  margin-right: 10px;
  vertical-align: middle;
}

.header__instaLogo {
  width: min(5.4758800522vw, 42px);
}

@media screen and (max-width: 767px) {
  .header__inner {
    align-items: end;
  }
  .header__logo {
    gap: 5px;
  }
  .header__logoImg {
    width: min(5.2151238592vw, 40px);
  }
  .header__logoTxt {
    font-size: clamp(0.625rem, -0.001rem + 3.13vw, 1.5rem);
  }
  .header__tel {
    font-size: clamp(0.75rem, 0.034rem + 3.58vw, 1.75rem);
  }
  .header__cta {
    width: min(37.3333333333vw, 292px);
  }
  .header__info {
    padding: min(2.6075619296vw, 20px) min(3.9113428944vw, 30px);
  }
}
.cta {
  position: relative;
}

.cta__txt {
  width: min(44.9305555556vw, 647px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.cta__txtImg {
  margin-inline: auto;
}

.cta__btn {
  padding-top: min(2.3611111111vw, 34px);
}

.cta__btnImg {
  cursor: pointer;
}

.cta__btnImg:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cta__under {
  text-align: center;
  font-size: clamp(0.75rem, -0.107rem + 1.79vw, 1.5rem);
  font-weight: 700;
}

.btn-animation {
  position: relative;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  animation: btn-animation 1s infinite;
}

@keyframes btn-animation {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-4px);
  }
  40% {
    transform: translateY(4px);
  }
  60% {
    transform: translateY(-4px);
  }
  80% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
.menu {
  position: relative;
  background-image: url("../img/1409443.webp");
  overflow: hidden;
}

.logo-bg {
  width: 20%;
  max-width: 285px;
  height: auto;
  position: absolute;
  top: -4%;
  left: -2%;
}

.name {
  position: absolute;
  color: #ffffff;
  font-size: clamp(1.25rem, -0.179rem + 2.98vw, 2.5rem);
  font-weight: 700;
}

.name1 {
  top: 15%;
  left: 20%;
}

.name2 {
  top: 33.7%;
  right: 19%;
}

.name3 {
  top: 52.5%;
  left: 12.5%;
}

.name4 {
  top: 71.3%;
  right: 11.5%;
}

.txt {
  width: 320px;
  width: min(22.2222222222vw, 320px);
}

.price {
  color: #ffffff;
}

.txt,
.price {
  position: absolute;
  font-size: clamp(1rem, -0.143rem + 2.38vw, 2rem);
  font-weight: 700;
}

.price1 {
  top: 17%;
  left: 20%;
}

.price2 {
  top: 35.7%;
  right: 20%;
}

.price3 {
  top: 54.5%;
  left: 20%;
}

.price4 {
  top: 73.3%;
  right: 17.5%;
}

.txt1 {
  top: 19.3%;
  left: 13%;
}

.txt2 {
  top: 40%;
  right: 12%;
}

.txt3 {
  top: 57%;
  left: 11.5%;
}

.txt4 {
  top: 76%;
  right: 11%;
}

.message {
  position: relative;
  background-image: url("../img/1409443.webp");
}

.voice {
  background-image: url("../img/1409443.webp");
}

.voice img {
  position: relative;
  margin-top: -13%;
}

.access-wrap {
  background-image: url("../img/1409443.webp");
}

.access__info {
  position: relative;
}

.access__infoInner {
  width: 48%;
  padding: 70px 0 120px 0;
  padding: min(4.8611111111vw, 70px) 0 min(8.3333333333vw, 120px) 0;
  max-width: 736px;
  width: 70%;
  margin-inline: auto;
}

.access__infoImg {
  width: min(22.0833333333vw, 313px);
  width: 20%;
  height: auto;
  position: absolute;
  top: 0%;
  right: 0;
}

.access__info dl:not(:first-child) {
  margin-top: min(2.0833333333vw, 30px);
}

.access__info dt {
  font-weight: 700;
}

.access__info dd {
  font-weight: 500;
}

.access__info dt,
.access__info dd {
  font-size: clamp(0.938rem, -0.277rem + 2.53vw, 2rem);
}

.map {
  width: 100%;
  position: relative;
  padding-bottom: min(9.7222222222vw, 140px);
  text-align: center;
}

iframe {
  width: min(63.8888888889vw, 920px);
  aspect-ratio: 920/600;
}

@media screen and (max-width: 767px) {
  .cta__txt {
    width: min(84.3546284224vw, 647px);
  }
  .cta__txtImg {
    width: min(65.1890482399vw, 500px);
  }
  .cta__under {
    font-size: clamp(0.75rem, 0.213rem + 2.68vw, 1.5rem);
  }
  .logo-bg {
    display: none;
  }
  .menu {
    margin-top: unset;
  }
  .voice img {
    margin-top: unset;
  }
  .access__info dl:not(:first-child) {
    margin-top: min(1.3037809648vw, 10px);
  }
  .access__info dt,
  .access__info dd {
    font-size: clamp(0.875rem, 0.428rem + 2.24vw, 1.5rem);
  }
  .access__infoInner {
    width: 75%;
    padding: 70px 0 min(6.518904824vw, 50px) 0;
    margin-inline: auto;
  }
  .name {
    text-align: center;
    width: min(56.25vw, 360px);
    font-size: clamp(0.938rem, 0.177rem + 3.8vw, 2rem);
  }
  .txt {
    width: min(56.25vw, 360px);
    text-align: center;
  }
  .txt,
  .price {
    font-size: clamp(0.75rem, -0.145rem + 4.47vw, 2rem);
  }
  .txt,
  .name,
  .price {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .name1 {
    top: 12.8%;
  }
  .name2 {
    top: 31%;
  }
  .name3 {
    top: 49.3%;
  }
  .name4 {
    top: 67.6%;
  }
  .price1 {
    top: 14.5%;
  }
  .price2 {
    top: 32.7%;
    text-align: center;
  }
  .price3 {
    top: 51%;
  }
  .price4 {
    top: 69.4%;
    text-align: center;
  }
  .txt1 {
    top: 14.5%;
  }
  .txt2 {
    top: 34.2%;
  }
  .txt3 {
    top: 53.8%;
  }
  .txt4 {
    width: min(39.1134289439vw, 380px);
    top: 73.5%;
    width: 100%;
  }
  .message {
    margin-top: unset;
  }
  iframe {
    width: min(63.4941329857vw, 487px);
    width: 90%;
    max-width: 487px;
  }
}
.privacy-policy {
  max-width: 1440px;
  padding: 0 30px;
  margin-inline: auto;
}

.privacy-policy a {
  text-decoration: underline;
}

.privacy-policy a p {
  font-weight: 700;
}

.privacy-policy main {
  max-width: 700px;
  margin: 10% 0;
  margin-inline: auto;
}

.privacy-policy h1 {
  margin-top: 40px;
  padding-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
}

.privacy-policy h2 {
  padding-bottom: 20px;
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
}

.privacy-policy p {
  font-weight: 500;
}

.privacy-policy p:nth-of-type(3) {
  margin-top: 20px;
}

.copy {
  width: 100%;
  padding: 20px;
  text-align: center;
  color: #ffffff;
  background-color: #3a3a3a;
  font-size: 24px;
}

.copy a {
  font-size: 16px;
  display: block;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .copy {
    font-size: clamp(0.875rem, 0.428rem + 2.24vw, 1.5rem);
  }
}

/*# sourceMappingURL=style.css.map */
