:root {
  --wht: #fff;
  --black01: #333;
  --blue01: #0691fc;
  --blue02: #06b4d6;
  --yellow01: #fce806;
  --orange01: #ff562d;
}

:root {
  --ZenKakuGothic: "Zen Kaku Gothic Antique", sans-serif;
}

:root {
  --fszBase: 1.4rem;
  --fszBase_sp: 14;
  --fszAtt: 1.1rem;
  --fszAtt_sp: 11;
  --fszMid: 1.6rem;
  --fszMid_sp: 16;
  --fszMvTtl: 3.2rem;
  --fszMvTtl_sp: 24;
  --fszTtl: 2.8rem;
  --fszTtl_sp: 20;
  --fszSubTtl: 2rem;
  --fszSubTtl_sp: 16;
}

:root {
  --fullWidth: 1600px;
  --outerWidth: 1200px;
  --inrWidth: 800px;
}

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

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

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none !important;
}

blockquote, q {
  quotes: none;
}

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

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

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

/* ====================
 SIZE SET
==================== */
/* ===================
 MIXIN
==================== */
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--ZenKakuGothic);
  background-color: var(--blue01);
  color: var(--black01);
  position: relative;
  width: 100%;
  word-break: break-all;
  line-height: 1.4;
  font-size: var(--basefs);
  font-weight: normal;
  letter-spacing: 0.025em;
  text-align: justify;
  overflow-x: hidden;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: calc(var(--fszBase_sp) / 375 * 100vw);
  }
}
main,
header,
footer,
section {
  display: block;
}

img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  padding: 0;
  border: unset;
}

input[type=text],
input[type=password],
textarea,
select {
  outline: none;
}

label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

#pageTop {
  position: fixed;
  bottom: 20px;
  right: 0;
  font-size: 1.4rem;
  text-align: right;
}
#pageTop a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#pageTop a:hover {
  text-decoration: none;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 769px) {
  .c-btn__to-top {
    position: fixed;
    z-index: 999;
    bottom: 50px;
    right: 50px;
    width: 60px;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-btn__to-top {
    bottom: calc(50 / 375 * 100vw);
    right: calc(50 / 375 * 100vw);
    width: calc(60 / 375 * 100vw);
  }
}
@media screen and (min-width: 769px) {
  .c-outer {
    width: calc(100% - 45px);
    max-width: var(--outerWidth);
    margin-left: auto;
    margin-right: auto;
  }
  .c-inner {
    width: calc(100% - 45px);
    max-width: var(--inrWidth);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-outer {
    width: calc(100% - 45px);
    max-width: var(--outerWidth);
    margin-left: auto;
    margin-right: auto;
  }
  .c-inner {
    width: calc(100% - 45px);
    max-width: var(--inrWidth);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 769px) {
  .c-flex-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-flex-col2 > div {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  .c-flex-col2 > div:nth-of-type(2n) {
    margin-right: 0;
  }
  .c-flex-col2 > div:nth-of-type(n + 3) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-flex-col2 > div {
    width: calc(50% - 20 / 375 * 100vw * 1 / 2);
    margin-right: calc(20 / 375 * 100vw);
  }
  .c-flex-col2 > div:nth-of-type(2n) {
    margin-right: 0;
  }
  .c-flex-col2 > div:nth-of-type(n + 3) {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.c-appear-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.c-appear-up.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-appear-left {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.c-appear-left.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-appear-right {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.c-appear-right.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-appear-down {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.c-appear-down.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (min-width: 769px) {
  .c-ttl-mv {
    color: var(--textBlack);
  }
}
.u-mt0 {
  margin-top: 0 !important;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mt1000 {
  margin-top: 1000px;
}

.u-tal {
  text-align: left;
}

.u-tac {
  text-align: center;
}

.u-tac {
  text-align: center;
}

.u-tal {
  text-align: left;
}

.u-tar {
  text-align: right;
}

.u-taj {
  text-align: justify;
}

.u-tdu {
  text-decoration: underline;
}

.u-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.u-fwb {
  font-weight: bold;
}

.u-redCol {
  color: var(--txtRed);
}

@media only screen and (max-width: 768px) {
  .u-mt10 {
    margin-top: 0.6em;
  }
  .u-mt20 {
    margin-top: 1.2em;
  }
  .u-mt30 {
    margin-top: 1.8em;
  }
  .u-mt40 {
    margin-top: 2.4em;
  }
  .u-mt50 {
    margin-top: 3em;
  }
  .u-mt60 {
    margin-top: 3.6em;
  }
  .u-mt70 {
    margin-top: 4.2em;
  }
  .u-mt80 {
    margin-top: 4.8em;
  }
  .u-mt90 {
    margin-top: 5.4em;
  }
  .u-mt100 {
    margin-top: 6em;
  }
}
@media screen and (min-width: 769px) {
  .l-ft {
    background-color: var(--blue02);
  }
  .l-ft__inner {
    padding: 27px 0 50px;
  }
  .l-ft__logo {
    width: 274px;
    margin-inline: auto;
  }
  .l-ft__copyright {
    text-align: center;
    color: var(--wht);
    font-size: 1.6rem;
    letter-spacing: 0.11em;
    margin-top: 17px;
  }
}
@media screen and (max-width: 768px) {
  .l-ft {
    background-color: var(--blue02);
  }
  .l-ft__inner {
    padding: calc(23 / 375 * 100vw) 0 calc(50 / 375 * 100vw);
  }
  .l-ft__logo {
    width: calc(200 / 375 * 100vw);
    margin-inline: auto;
  }
  .l-ft__copyright {
    text-align: center;
    color: var(--wht);
    font-size: calc(11 / 375 * 100vw);
    letter-spacing: 0.14em;
    margin-top: calc(13 / 375 * 100vw);
  }
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    top: 0;
    background-color: var(--bgGray);
  }
  .l-header__inner {
    width: calc(100% - 40px);
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0;
  }
  .l-header__logo {
    width: 200px;
  }
  .l-header__nav {
    width: calc(100% - 200px);
  }
  .l-header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .l-header__nav a {
    font-size: 16px;
    color: var(--textBlack);
    padding: 5px;
  }
  .l-header__hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: sticky;
    top: 0;
    background-color: var(--bgGray);
  }
  .l-header__inner {
    width: calc(100% - 40 / 375 * 100vw);
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: calc(10 / 375 * 100vw) 0;
  }
  .l-header__logo {
    width: calc(90 / 375 * 100vw);
  }
  .l-header__nav {
    position: fixed;
    top: calc(60 / 375 * 100vw);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100vh - 60 / 375 * 100vw);
    background-color: var(--bgGray02);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__nav.on {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .l-header__nav ul {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header__nav a {
    font-size: calc(16 / 375 * 100vw);
    color: var(--textBlack);
    padding: calc(5 / 375 * 100vw);
  }
  .l-header__hamburger {
    position: relative;
    width: calc(40 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-header__hamburger-box {
    width: calc(30 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
    position: relative;
  }
  .l-header__hamburger-box span {
    position: absolute;
    display: block;
    width: 100%;
    height: calc(2 / 375 * 100vw);
    background-color: var(--wht);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__hamburger-box span:nth-of-type(1) {
    top: 0;
  }
  .l-header__hamburger-box span:nth-of-type(2) {
    top: 50%;
  }
  .l-header__hamburger-box span:nth-of-type(3) {
    top: 100%;
  }
  .l-header__hamburger.on span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__hamburger.on span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__hamburger.on span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media screen and (min-width: 769px) {
  .l-wrapper {
    margin-inline: auto;
    width: 500px;
    background-color: var(--blue01);
  }
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    margin-inline: auto;
    background-color: var(--blue01);
  }
}
@media screen and (min-width: 769px) {
  .p-top-mv {
    margin-bottom: -54px;
  }
  .p-top-mv__inner {
    padding: 16px 0 10px;
  }
  .p-top-contents__inner {
    padding-bottom: 64px;
  }
  .p-top-contents__block-wrap:not(:first-of-type) {
    margin-top: 27px;
  }
  .p-top-contents__block-wrap.-gourmet .p-top-contents__block {
    border-color: var(--blue02);
    padding: 0;
  }
  .p-top-contents__block-wrap > * + * {
    margin-top: 18px;
  }
  .p-top-contents__block {
    background-color: var(--wht);
    border: 3px solid var(--yellow01);
    padding: 30px 0 15px;
  }
  .p-top-contents__block.-block01_02 {
    padding: 27px 0 32px;
  }
  .p-top-contents__block-btn {
    margin-top: 20px;
    display: block;
    margin-inline: auto;
    width: 390px;
    height: 80px;
    color: var(--wht);
    background-color: var(--orange01);
    border: 2px solid var(--orange01);
    border-radius: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2.3rem;
    font-weight: bold;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-top-contents__block-btn:hover {
    opacity: 1;
    background-color: var(--wht);
    color: var(--orange01);
  }
  .p-top-contents__block-note {
    margin-top: 14px;
  }
  .p-top-contents__block-note > * + * {
    margin-top: 6px;
  }
  .p-top-contents__block-note-item {
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0.07em;
    line-height: 1.3;
    font-weight: bold;
  }
  .p-top-contents__block-thumbnail {
    position: relative;
  }
  .p-top-contents__block-thumbnail-icon {
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 218px;
  }
  .p-top-contents__block-textarea {
    padding-bottom: 14px;
  }
  .p-top-contents__block-textarea-name {
    border-top: 2px solid var(--blue02);
    padding: 10px 0 0px;
    font-size: 2.7rem;
    text-align: center;
    color: var(--blue02);
    letter-spacing: 0.07em;
    line-height: 1.3;
    font-weight: bold;
  }
  .p-top-contents__block-textarea-price {
    text-align: center;
    font-size: 2.7rem;
    padding: 0 0 20px;
    line-height: 1;
    margin-top: 5px;
    letter-spacing: 0.1em;
    color: var(--blue02);
    font-weight: bold;
  }
  .p-top-contents__block-textarea-text {
    border-top: 2px solid var(--blue02);
    font-size: 2rem;
    padding: 15px 20px 23px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
	  .p-top-contents__block-textarea-floor {
		  text-align: center;
    font-size: 2rem;
    padding: 0 20px 15px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv {
    margin-bottom: calc(-54 / 375 * 100vw);
  }
  .p-top-mv__inner {
    padding: calc(16 / 375 * 100vw) 0 calc(10 / 375 * 100vw);
  }
  .p-top-contents__inner {
    padding-bottom: calc(44 / 375 * 100vw);
  }
  .p-top-contents__block-wrap:not(:first-of-type) {
    margin-top: calc(27 / 375 * 100vw);
  }
  .p-top-contents__block-wrap.-gourmet .p-top-contents__block {
    border-color: var(--blue02);
    padding: 0;
  }
  .p-top-contents__block-wrap > * + * {
    margin-top: calc(12 / 375 * 100vw);
  }
  .p-top-contents__block {
    background-color: var(--wht);
    border: calc(3 / 375 * 100vw) solid var(--yellow01);
    padding: calc(31 / 375 * 100vw) 0 calc(9 / 375 * 100vw);
  }
  .p-top-contents__block.-block01_02 {
    padding: calc(21 / 375 * 100vw) 0 calc(22 / 375 * 100vw);
  }
  .p-top-contents__block-btn {
    margin-top: calc(13 / 375 * 100vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(280 / 375 * 100vw);
    height: calc(56 / 375 * 100vw);
    margin-inline: auto;
    color: var(--wht);
    background-color: var(--orange01);
    border: calc(2 / 375 * 100vw) solid var(--orange01);
    border-radius: calc(15 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    font-weight: bold;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-top-contents__block-btn:hover {
    opacity: 1;
    background-color: var(--wht);
    color: var(--orange01);
  }
  .p-top-contents__block-note {
    margin-top: calc(12 / 375 * 100vw);
  }
  .p-top-contents__block-note > * + * {
    margin-top: calc(5 / 375 * 100vw);
  }
  .p-top-contents__block-note-item {
    text-align: center;
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0.04em;
    line-height: 1.2;
    font-weight: bold;
  }
  .p-top-contents__block-thumbnail {
    position: relative;
  }
  .p-top-contents__block-thumbnail-icon {
    position: absolute;
    top: calc(16 / 375 * 100vw);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(154 / 375 * 100vw);
  }
  .p-top-contents__block-textarea {
    padding-bottom: calc(10 / 375 * 100vw);
  }
  .p-top-contents__block-textarea-name {
    border-top: calc(2 / 375 * 100vw) solid var(--blue02);
    padding: calc(8 / 375 * 100vw) 0 0;
    font-size: calc(19 / 375 * 100vw);
    text-align: center;
    color: var(--blue02);
    letter-spacing: 0.07em;
    line-height: 1.3;
    font-weight: bold;
  }
  .p-top-contents__block-textarea-price {
    text-align: center;
    font-size: calc(19 / 375 * 100vw);
    padding: 0 0 calc(12 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--blue02);
    font-weight: bold;
  }
  .p-top-contents__block-textarea-text {
    border-top: calc(2 / 375 * 100vw) solid var(--blue02);
    font-size: calc(15 / 375 * 100vw);
    padding: calc(11 / 375 * 100vw) calc(13 / 375 * 100vw) calc(13 / 375 * 100vw);
    line-height: 1.5;
    letter-spacing: 0;
  }
	  .p-top-contents__block-textarea-floor {
    border-top: calc(2 / 375 * 100vw) solid var(--blue02);
    font-size: calc(15 / 375 * 100vw);
    padding: calc(11 / 375 * 100vw) calc(13 / 375 * 100vw) calc(13 / 375 * 100vw);
    line-height: 1.5;
    letter-spacing: 0;
		  text-align: center;
  }
}

/*追加分*/
.annotation{color: #FFF;
        font-size: 1.5rem;}

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