@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger, .fadeInTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  color: #154D60;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}
body .bold {
  font-weight: 600;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  display: block;
  color: #154D60;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    /*opacity: $opacity;*/
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 420px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #154D60;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.wrapper {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: 90%;
  }
}

.pc {
  display: block;
}

.sp, .ssp {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb {
    display: block;
  }
}
@media screen and (max-width: 420px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc {
    display: none;
  }
}
/* 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 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * 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;
}

/**
 * 1. 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 */
}

/**
 * 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;
}

.dotted01 {
  background-image: linear-gradient(to right, #73CCE2 2px, transparent 3px);
  background-repeat: repeat-x;
  background-size: 9px 2px;
  background-position: left bottom;
}

.dotted-top {
  position: relative;
}
.dotted-top::after {
  content: "";
  height: 2px;
  width: 100%;
  background-image: linear-gradient(to right, #73CCE2 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  top: 0;
  left: 0;
}

.ttl {
  text-align: center;
  font: 600 3.2rem/1 "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 1px;
}
.ttl span {
  display: block;
  font: 600 1.8rem/1.2 "Dancing Script", cursive;
  color: #69C9E0;
}

footer {
  background: #154D60;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.4rem 0 1.6rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer {
    margin-bottom: 50px;
  }
}

.l-nav {
  display: none;
}
@media screen and (max-width: 420px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

#header {
  display: none;
}

@media screen and (max-width: 768px) {
  #header {
    display: block;
  }
  .header {
    position: fixed;
    z-index: 999;
    top: 0;
  }
  nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    overflow: scroll;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: url(../images/humberger_bg.jpg) 0/cover no-repeat;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  nav.panelactive {
    right: 0;
  }
  nav.panelactive .nav_logo {
    width: 75%;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
  /*ナビゲーションの縦スクロール*/
  nav.panelactive nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    width: 75%;
    z-index: 999;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
  }
  nav ul li ul {
    position: static;
    transform: none;
    padding-left: 2rem;
  }
  nav li a {
    color: #154D60;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  nav li .nagoyabtnlogo {
    background: transparent;
    background: rgba(255, 255, 255, 0.7);
    width: 95%;
    margin: 3rem auto 0;
    border: 2px solid #94BFDC;
    padding: 0 16px;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn1 {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 0;
    right: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #002B51;
  }
  /*×に変化*/
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 16px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 30px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
  }
  /*========= メニュー内ボタン ===============*/
  .link_btn {
    border-radius: 2px;
    background: linear-gradient(180deg, #0CC755 11.7%, #009239 100%);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    height: 5rem;
    margin-top: 4rem;
    position: relative;
  }
  .link_btn .icon {
    width: 2rem;
    margin-right: 1.1rem;
  }
  .link_btn .icon img {
    width: 2rem;
    height: 2rem;
    vertical-align: middle;
    object-fit: contain;
  }
  .link_btn .txt {
    text-align: center;
    color: #fff;
    flex-basis: 80%;
  }
  .link_btn::after {
    content: "";
    width: 8px;
    height: 14px;
    background: url(../images/arrow_white.png) 0/contain no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
  }
  .link_btn.mail {
    border-radius: 2px;
    background: linear-gradient(180deg, #FB5C5F 11.7%, #E63B39 100%);
    margin-top: 1.4rem;
  }
  .link_btn.phone {
    border-radius: 2px;
    margin-top: 1.4rem;
    background: linear-gradient(180deg, #FF9D2F 0%, #E6500B 100%);
  }
  .link_btn.phone .txt {
    font-size: 1.8rem;
  }
}
.sp_btn_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.sp_btn_container .follow_btn {
  background: #FF9D2F;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  gap: 5px;
  padding: 1.5rem 1rem 1.4rem;
  width: 100%;
  font-size: 1.4rem;
}
.sp_btn_container .follow_btn i {
  width: 20px;
  height: 23px;
  vertical-align: middle;
}
.sp_btn_container .follow_btn i img {
  vertical-align: text-bottom;
  height: 23px;
  object-fit: contain;
}
.sp_btn_container .follow_btn.net {
  background: #FF4145;
}
.sp_btn_container .follow_btn.line {
  background: #0CC755;
}

@media screen and (min-width: 768px) {
  .sp_btn_container {
    display: none;
  }
}
.kv {
  height: 100vh;
  width: 100%;
  position: relative;
}
.kv .kv_bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.kv .kv_bg img {
  height: 100%;
}
.kv .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  top: 16.6666666667vw;
}
@media screen and (max-width: 400px) {
  .kv .logo {
    width: 80%;
  }
}
.kv .cp {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 38.2051282051vw;
  width: 95%;
}
.kv .link_btn_container {
  position: absolute;
  bottom: 10%;
  height: 28vw;
  height: auto;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}
.kv .link_btn_container .inner .item {
  position: relative;
  height: 9rem;
  margin-top: 1.2rem;
}
.kv .link_btn_container .inner p {
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.kv .link_btn_container .inner .btn {
  top: 32px;
  position: absolute;
}

@media screen and (min-width: 768px) {
  .bg_pc {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: url(../images/pc_bg.jpg) 0/cover no-repeat;
    background-position: left;
    z-index: 0;
  }
  .bg_pc .bg-inner {
    position: relative;
    width: 90%;
    max-width: 120rem;
    height: 100%;
    margin: 0 auto;
  }
  .pc_logo {
    width: 28rem;
    margin-bottom: 5rem;
  }
  .navigation {
    width: 315px;
    padding: 1.7rem 1.8rem 4rem;
    border-radius: 0 0 1rem 1rem;
    background: #fff;
    box-shadow: 4px 4px 40px 0px rgba(3, 62, 120, 0.5);
  }
  .navigation .pc_nav a {
    font-weight: 600;
    background-size: 9px 2px;
    background-image: linear-gradient(to right, #73CCE2 1px, transparent 3px);
    background-repeat: repeat-x;
    background-position: left top;
    padding: 12px 0;
  }
  .navigation .pc_nav a:hover {
    opacity: 0.7;
  }
  .navigation .pc_nav .last {
    background-size: 9px 2px;
    background-image: linear-gradient(to right, #73CCE2 1px, transparent 3px);
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .navigation .pc_nav .nav_child {
    padding-bottom: 1rem;
  }
  .navigation .pc_nav .nav_child a {
    background: none;
    padding: 0 0 1rem 3rem;
    font-size: 1.4rem;
  }
  .navigation .pc_nav .contact_container {
    margin-top: 4.2rem;
  }
  .navigation .pc_nav .contact_container .follow_btn {
    border-radius: 2px;
    background: linear-gradient(180deg, #0CC755 11.7%, #009239 100%);
    justify-content: center;
    font-weight: 700;
    color: #fff;
    gap: 5px;
    padding: 1.3rem 1rem 1.3rem;
    width: 90%;
    margin: 1.4rem auto 0;
    position: relative;
    text-align: center;
  }
  .navigation .pc_nav .contact_container .follow_btn i {
    position: absolute;
    width: 20px;
    height: 23px;
    vertical-align: middle;
    left: 1.5rem;
  }
  .navigation .pc_nav .contact_container .follow_btn i img {
    vertical-align: text-bottom;
    height: 23px;
    object-fit: contain;
  }
  .navigation .pc_nav .contact_container .follow_btn::after {
    position: absolute;
    width: 7px;
    height: 1.2rem;
    background: url(../images/arrow_white.png) 0/contain no-repeat;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 1.5rem;
  }
  .navigation .pc_nav .contact_container .follow_btn.net {
    background: linear-gradient(180deg, #FB5C5F 11.7%, #E63B39 100%);
  }
  .navigation .pc_nav .contact_container .follow_btn.phone {
    background: linear-gradient(180deg, #FF9D2F 0%, #E6500B 100%);
    font-size: 1.8rem;
  }
  .navigation .pc_nav .contact_container .follow_btn:hover {
    transform: scale(0.97);
  }
  .navigation .pc_nav .nagoyabtnlogo {
    background: transparent;
    width: 90%;
    margin: 1.4rem auto 0;
    border: 2px solid #E59595;
    padding: 0 16px;
  }
  .main_contents {
    position: relative;
    width: 100%;
    max-width: 39rem;
    margin: 0 auto;
    box-shadow: 4px 4px 40px 0px rgba(3, 62, 120, 0.5);
    z-index: 1;
    background: #fff;
  }
  .main_contents .logo {
    left: 50%;
    transform: translateX(-50%);
    top: 4.5138888889vw;
  }
  .main_contents .cp {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 13.8888888889vw;
    width: 95%;
  }
  .kv .link_btn_container {
    bottom: 10%;
    height: auto;
  }
}
@media screen and (max-width: 1150px) {
  .main_contents {
    margin: 0 12% 0 auto;
  }
}
@media screen and (max-width: 860px) {
  .navigation {
    width: 220px;
  }
  .navigation .pc_logo {
    width: 100%;
  }
  .navigation .pc_nav a {
    font-size: 1.3rem;
  }
  .navigation .pc_nav .contact_container .follow_btn {
    width: 100%;
  }
  .navigation .pc_nav .contact_container .follow_btn i {
    width: 13px;
  }
}
@media screen and (max-width: 768px) {
  .bg_pc {
    display: none;
  }
  .main_contents {
    margin: 0;
  }
}
/*----------------------------------------
/
/      常滑りんくうビーチBBQの特徴
/
----------------------------------------*/
.top_01 {
  background: url(../images/top_01_bg.png) 0/cover no-repeat;
  padding-bottom: 6.4rem;
}
.top_01 .top_01_ttl {
  width: 65%;
  margin: 0 auto;
}
.top_01 .top01_contents {
  margin-top: 4rem;
}
.top_01 .top01_contents .contents_01 {
  width: 95%;
  margin: 0 auto 2.4rem 0;
}
.top_01 .top01_contents .contents_01.right {
  margin: 0 0 2.4rem auto;
}

/*----------------------------------------
/
/      CTA
/
----------------------------------------*/
.cta {
  margin: 4rem auto;
  width: 100%;
  background: url(../images/cta_bg.png) center 0/contain no-repeat;
  padding: 5rem 0;
}
.cta .contact_ttl {
  width: 70%;
  margin: 0 auto;
}
.cta .cta_contents {
  width: 54%;
  margin: 1rem 2rem 0 auto;
}
.cta .cta_contents .time {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-align: center;
}
.cta .cta_contents .time span {
  font-size: 1rem;
  margin-right: 0.6rem;
}
.cta .cta_contents .time strong {
  font-size: 1.4rem;
}
.cta .cta_contents .cta_btn {
  position: relative;
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding: 8px 1rem;
  background: #FF9D2F;
  border: 2px solid #ffd19e;
  margin-bottom: 2rem;
}
.cta .cta_contents .cta_btn i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}
.cta .cta_contents .cta_btn i img {
  height: 22px;
  vertical-align: text-bottom;
  object-fit: contain;
}
.cta .cta_contents .cta_btn::after {
  content: "";
  width: 1.8rem;
  height: 1rem;
  background: url(../images/yajirushi.png) 0/contain no-repeat;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.cta .cta_contents .cta_btn.net {
  border: 2px solid #FF8588;
  background: #FF4145;
  margin-bottom: 1.2rem;
}
.cta .cta_contents .cta_btn.line {
  border: 2px solid #77DC9F;
  background: #0CC755;
}

/*----------------------------------------
/
/      flow ご利用の流れ
/
----------------------------------------*/
.flow {
  background: #FFFEE5;
}
.flow .flow_contents {
  padding: 0 2.2rem 2rem;
  position: relative;
  z-index: 10;
}
.flow .flow_inner {
  margin-top: 3.2rem;
}
.flow .flow_box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
}
.flow .flow_box .num {
  flex-basis: 28%;
}
.flow .flow_box .txt {
  flex-basis: 72%;
  padding-bottom: 1rem;
}
.flow .flow_box .txt .flow_head {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 0.7rem;
  background-size: 9px 2px;
  background-image: linear-gradient(to right, #73CCE2 1px, transparent 3px);
  background-repeat: repeat-x;
  background-position: left bottom;
  margin-bottom: 1rem;
}
.flow .flow_box .txt p {
  font-size: 1.25rem;
  line-height: 1.4;
}
.flow .flow_box .txt .inner_box {
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 8px;
}
.flow .flow_box .txt h4 {
  font: 600 1.3rem/1.2 "Noto Sans JP", sans-serif;
  padding-bottom: 3px;
  width: fit-content;
}
.flow .flow_box .txt dl {
  margin-top: 1rem;
}
.flow .flow_box .txt dl dt {
  font: 600 1.2rem/1.2 "Noto Sans JP", sans-serif;
}
.flow .flow_box .txt dl dd {
  font: 500 1.2rem/1.4 "Noto Sans JP", sans-serif;
  margin-top: 5px;
  text-indent: -2rem;
  padding-left: 2rem;
}
.flow .flow_box .txt dl dd::before {
  content: "→";
  font-size: 1rem;
}
.flow .flow_box:not(:first-child) .num {
  margin-top: -1.5rem;
}
.flow .flow_bottom {
  width: 100%;
  margin-top: -5rem;
}

/*----------------------------------------
/
/              planご利用プラン
/
----------------------------------------*/
.plan {
  padding: 2rem;
}
.plan .lead {
  font-weight: 600;
  text-align: center;
  margin-top: 3.2rem;
}
.plan .plan_container {
  display: flex;
  margin-top: 2rem;
  gap: 1.2rem;
}
.plan .plan_contents {
  border: 2px solid #69C9E0;
  margin-top: 2.4rem;
  padding-bottom: 3.2rem;
}
.plan .plan_contents .img {
  width: 90%;
  margin: 3.2rem auto 0;
}
.plan .plan_contents .price_container {
  width: 80%;
  margin: 2rem auto;
}
.plan .plan_contents .price_container p {
  font: 600 1.25rem/1.2 "Zen maru Gothic", sans-serif;
}
.plan .plan_contents .price_container .price {
  color: #E60012;
  font: 900 3rem/1.2 "Zen maru Gothic", sans-serif;
  padding-left: 3rem;
  margin-top: -0.8rem;
}
.plan .plan_contents .price_container .price strong {
  font-size: 5.4rem;
}
.plan .plan_contents .price_container .price i {
  font-style: normal;
  color: #154D60;
  font-size: 1.2rem;
  margin-left: 1rem;
}
.plan .plan_contents .inner_coctents {
  background: #FFFEE5;
  padding: 3rem 1rem;
  margin: 2rem;
}
.plan .plan_contents .inner_coctents h4 {
  font-weight: 700;
  padding-bottom: 5px;
}
.plan .plan_contents .inner_coctents h5 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.plan .plan_contents .inner_coctents .list_container {
  display: flex;
  margin-top: 1.6rem;
}
.plan .plan_contents .inner_coctents .list_container .bbq_list {
  flex-basis: 50%;
}
.plan .plan_contents .inner_coctents .list_container li {
  font-size: 1.3rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.7;
}
.plan .plan_contents .inner_coctents .list_container li::before {
  content: "・";
  position: absolute;
  left: 2px;
}
.plan .plan_contents .inner_coctents .list_container li ul {
  padding: 0.5rem 0;
}
.plan .plan_contents .inner_coctents .list_container li ul li {
  padding-left: 1rem;
}
.plan .plan_contents .inner_coctents .list_container li ul li::before {
  content: none;
}
.plan .plan_contents .inner_coctents .inner_box {
  flex-basis: 50%;
}
.plan .plan_contents .note {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  font-size: 1.2rem;
  padding: 0 2rem;
  gap: 10px;
}
.plan .plan_contents .note span {
  display: block;
}
.plan .plan_contents .note.second {
  margin-top: 0.8rem;
}
.plan .plan_option {
  margin-top: 4rem;
}
.plan .plan_option h3 {
  background: #FFFEE5;
  text-align: center;
  font: 600 2.4rem/1 "Noto Sans JP", sans-serif;
  padding: 1.2rem 0;
}
.plan .attention {
  color: #FF4145;
  font: 1.8rem 500/1.4 "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 2.4rem;
}
.plan .attention strong {
  font: 700 2rem/1.4 "Noto Sans JP", sans-serif;
}

.option_contents {
  display: grid;
  gap: 2rem 1rem;
  margin-top: 2.4rem;
  grid-template-columns: repeat(2, 1fr);
}
.option_contents .box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.option_contents .box .name {
  font-weight: 600;
  flex-grow: 1;
}
.option_contents .box .ex {
  flex-grow: 1;
  font-size: 1.2rem;
}
.option_contents .box .price {
  color: #E60012;
  font-weight: 700;
}
.option_contents .box .price span {
  font-size: 1rem;
  margin-left: 1rem;
}

/*----------------------------------------
/
/           よくあるご質問
/
----------------------------------------*/
.faq {
  background: url(../images/faq_bg.jpg) 0/cover no-repeat;
  padding: 6.4rem 2rem;
}
.faq .ttl span {
  color: #fff;
}
.faq .faq_box {
  background: #fff;
  margin-top: 8px;
  padding: 1rem 1rem 1.8rem;
  box-shadow: 0px 2px 3px 0px #1696B5;
}
.faq .faq_box .inner {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem 0;
}
.faq .faq_box .inner span {
  width: 3rem;
  flex-basis: 10%;
  height: 3rem;
  margin-top: -4px;
}
.faq .faq_box .inner span img {
  height: 3rem;
  width: 3rem;
  object-fit: contain;
}
.faq .faq_box .inner .txt {
  flex-basis: 90%;
  font-weight: 500;
}
.faq .faq_box .dotted01 .txt {
  font-weight: 700;
}
.faq .first {
  margin-top: 4rem;
}

/*----------------------------------------
/
/           アクセス情報
/
----------------------------------------*/
.access {
  background: #FFF3A2;
  margin-top: -5px;
  padding: 7rem 2rem;
}
.access .first {
  margin-top: 4rem;
}
.access .access_item {
  display: flex;
  flex-wrap: wrap;
  padding: 1.4rem 0;
}
.access .access_item .head {
  display: flex;
  gap: 7px;
  flex-basis: 35%;
  font-weight: 600;
}
.access .access_item .head span {
  width: 16px;
  height: 2rem;
  display: block;
}
.access .access_item .head span img {
  height: 2rem;
  object-fit: contain;
  vertical-align: text-bottom;
}
.access .access_item .head .head_inner {
  font-size: 1.4rem;
}
.access .access_item .head .head_inner .bold {
  width: 100%;
  font-weight: 700;
  display: inline;
  font-size: 1.6rem;
}
.access .access_item .contents {
  flex-basis: 65%;
  font-size: 1.5rem;
  font-weight: 500;
}
.access .access_item .contents a {
  font-weight: 700;
  font-size: 1.8rem;
}
.access .access_item .contents a span {
  font-weight: 500;
  font-size: 1.4rem;
}
.access .access_item .large {
  flex-basis: 100%;
  padding: 1rem 0 0;
}
.access .access_item .large iframe {
  width: 100%;
}

/*----------------------------------------
/
/              予約見積もりフォーム
/
----------------------------------------*/
/* コンテナスタイル */
.form-container {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 64px 0;
  background-color: #fff;
}

/* ヘッダースタイル */
.reservation-header {
  margin-bottom: 30px;
  text-align: center;
}

.reservation-header h1 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
}

/* ステップインジケーター */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin: 32px auto;
  flex-wrap: wrap;
}
.step-indicator .step_ttl {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
}

.step-indicator .step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-indicator .step .step-number {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #D0EDF4;
  color: #154D60;
  font-weight: bold;
  position: relative;
}

.step-indicator .step .step-title {
  font-size: 12px;
  color: #888;
}

.step-indicator .step.active .step-number {
  background-color: #154D60;
  color: #fff;
}

.step-indicator .step.active .step-title {
  color: #333;
  font-weight: bold;
}

#cancel {
  margin-top: -5rem;
  padding-top: 4.5rem;
}

/* フォーム要素の共通スタイル */
.form-group {
  margin-bottom: 16px;
}
.form-group .attention {
  margin-left: 1rem;
  font-size: 1.2rem;
  opacity: 0.8;
}
.form-group .form_link {
  text-decoration: underline;
  display: inline;
}

.form-note {
  color: #ED6262;
  font-size: 1.2rem;
  display: flex;
  gap: 4px;
}

.note_02 {
  display: flex;
  gap: 4px;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=date],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  font-weight: 600;
  background: #EAF5F7;
  border-radius: 4px;
  font-size: 16px;
}

.form-group input::placeholder {
  color: #A5A5A7;
}

.select {
  position: relative;
  cursor: pointer;
}
.select::after {
  content: "";
  width: 1cap;
  height: 8px;
  background: url(../images/arrow-down.png) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

/* セレクトボックスの未選択オプション */
.select select option:first-child {
  color: #a5a5a7;
}

/* 入力フィールドのプレースホルダー */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a5a5a7;
}

/* 入力フィールドのプレースホルダー */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a5a5a7;
}

.form-group textarea {
  resize: vertical;
}

.form-group .date-input-wrapper {
  position: relative;
}

.form-group .date-input-wrapper input[type=date] {
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #a5a5a7;
  -webkit-appearance: none;
  height: 49px;
  -moz-appearance: textfield;
}

.form-group .date-input-wrapper input[type=date]::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/calendar-icon.svg) 0/contain no-repeat, #EAF5F7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 0;
  pointer-events: none;
  cursor: pointer;
}

/* プレースホルダーのスタイル */
.form-group .date-input-wrapper input[type=date]::placeholder {
  color: #a5a5a7;
}

.form-group .date-input-wrapper input[type=date]::-webkit-input-placeholder {
  color: #a5a5a7;
}

.form-group .date-input-wrapper input[type=date]::-moz-placeholder {
  color: #a5a5a7;
}

.form-group .date-input-wrapper input[type=date]::-webkit-calender-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-group .date-input-wrapper input[type=date]::-moz-clear {
  display: none;
}

/* 日付入力がフォーカスされたときの色 */
.form-group input[type=date]:focus {
  color: #154D60;
}

/* 日付が選択された状態のクラス（JavaScriptで追加） */
.form-group input[type=date].date-selected {
  color: #154D60;
}

.form-group .date-input-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 0;
}

.form-group .date-input-wrapper .date-error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  font-weight: normal;
}

/* カスタムラジオボタン（代替方法） */
.radio-group {
  display: flex;
  gap: 20px;
}

.radio-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}

.radio-group input[type=radio] {
  position: absolute;
  opacity: 0;
}

.radio-group label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.radio-group label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #154D60;
  opacity: 0;
  transition: all 0.3s ease;
}

.radio-group input[type=radio]:checked + label::after {
  opacity: 1;
}

.form-container label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-container label input[type=checkbox] + span {
  position: relative;
  padding-left: 30px;
  display: inline-block;
  cursor: pointer;
}
.form-container label input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #D0EDF4;
  transition: all 0.3s ease;
}
.form-container label input[type=checkbox] + span::after {
  content: "";
  background: url(../images/checkbox.png) 0/contain no-repeat;
  width: 16px;
  height: 11px;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-55%);
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}
.form-container label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.form-container label:has(input[type=checkbox]) {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.form-container .option-toggle, .form-container .checkbox-label, .form-container .option-checkbox {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
}

.option-checkbox {
  margin-bottom: 0;
}

/* ステップコンテンツ */
.step-content {
  display: none;
  margin-bottom: 30px;
}

.step-content.active {
  display: block;
}

.step-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

/* フォームアクション部分 */
.form-action {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 16px;
}
.form-action .btn {
  width: 90%;
  position: relative;
  margin: 0 auto;
  border: #608D9B solid 2px;
  background-color: #D0EDF4;
  border-radius: 3rem;
  text-align: center;
  transition: 0.3s;
}
.form-action .btn::after {
  content: "";
  width: 8px;
  height: 12px;
  background: url(../images/arrow-right.png) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  right: 10%;
}
.form-action .btn button {
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.form-action .btn:hover {
  transform: scale(0.95);
}
.form-action .prev {
  background: #F0F1F2;
  border: none;
  border-radius: 3rem;
}
.form-action .prev bottom {
  border-radius: 3rem;
}
.form-action .prev::after {
  right: auto;
  left: 10%;
  transform: rotate(180deg) translateY(50%);
}
.form-action .btn-next:hover {
  background-color: #D0EDF4;
}

/* オプション選択スタイル */
.option-categories {
  margin: 20px 0;
}

.option-category {
  display: flex;
  gap: 1rem;
}

.option-toggle {
  display: block;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.option-toggle span {
  margin-left: 5px;
}

.option-items {
  padding: 15px;
}
.option-items .option_container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
.option-items h3 {
  font-weight: 600;
  width: 100%;
  padding-bottom: 5px;
}

.option-item {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.option-item p {
  font-weight: 500;
  color: #333;
  flex-grow: 1;
}
.option-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.option-item .price {
  flex-grow: 1;
  font-weight: bold;
  color: #e74c3c;
}
.option-item .option-info select {
  width: 100%;
  padding: 5px 1rem;
  font-weight: 700;
  background: #FAFBE2;
}

.option-item .option-info .option-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.option-item .option-info .option-checkbox input {
  margin-right: 5px;
}

.option-item .option-info .option-checkbox span {
  font-weight: bold;
  color: #154D60;
  font-size: 1.4rem;
}

/* 見積もり表示スタイル */
.estimate-container {
  margin-top: 40px;
  padding: 20px;
  background-color: #FFFCE9;
  border-radius: 4px;
}

.estimate-container h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.estimate-details .estimate-section {
  margin-bottom: 20px;
}

.estimate-details .estimate-section .section-header {
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}

.estimate-details .estimate-section .section-content {
  padding-left: 15px;
  margin-bottom: 5px;
}

.estimate-details .estimate-section .section-content .option-row,
.estimate-details .estimate-section .section-content .plan-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.estimate-details .estimate-section .section-content .option-row .option-name,
.estimate-details .estimate-section .section-content .plan-row .option-name {
  flex: 2;
}

.estimate-details .estimate-section .section-content .option-row .option-quantity,
.estimate-details .estimate-section .section-content .plan-row .option-quantity {
  flex: 1;
  text-align: center;
}

.estimate-details .estimate-section .section-content .option-row .option-price,
.estimate-details .estimate-section .section-content .plan-row .option-price {
  flex: 1;
  text-align: right;
}

.estimate-details .estimate-section .subtotal {
  text-align: right;
  margin-top: 10px;
}

.estimate-details .estimate-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.estimate-details .estimate-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.estimate-details .estimate-row.total {
  font-weight: bold;
  font-size: 18px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}
.estimate-details .estimate-row.total .total-label {
  font-size: 1.4rem;
}
.estimate-details .estimate-row.total .total-price {
  color: #E60012;
}

.nagoyabtn {
  width: 90%;
  margin: 0 auto 4rem;
  text-align: center;
}
.nagoyabtn p {
  font-size: 12px;
}
.nagoyabtn p strong {
  font-weight: 700;
}

.thanks {
  padding: 8rem 2rem;
  min-height: 100vh;
  background: url(../images/thanks_bg.jpg) 0/cover no-repeat;
}
.thanks .thanks_ttl {
  width: 80%;
  margin: 0 auto;
}
.thanks h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 5rem;
}
.thanks .txt {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 4rem;
}
.thanks .note {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 4rem;
}
.thanks .home-btn {
  background: #69C9E0;
  color: #fff;
  border: 2px solid #ABE1EE;
  padding: 1.2rem;
  text-align: center;
  font-weight: 600;
  position: relative;
  margin-top: 5rem;
}
.thanks .home-btn::after {
  width: 20px;
  height: 10px;
  background: url(../images/yajirushi.png) 0/contain no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}