@charset "UTF-8";
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
/* HTML5要素対応 */
main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, picture {
  display: block;
}

/* 要素の基本リセット */
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, mark, audio, video, figure {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
}

/* リストと引用 */
li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

/* 表・画像・フォーム要素 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

img {
  vertical-align: top;
}

/* 入力系要素 */
input,
textarea,
select,
button {
  font: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input,
select {
  vertical-align: middle;
}

/* 強調・補足など */
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: none;
  font-style: normal;
}

/* ボタン */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 108px;
}
@media (max-width: 767px) {
  :target {
    scroll-margin-top: 60px;
  }
}

/*------------
Body
--------------*/
body {
  background: #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #4E3A2A;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1020px;
}
.container.wide {
  max-width: 1200px;
}

/*------------
Element
--------------*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 1025px) {
  a {
    transition: all 0.4s;
  }
  a:hover {
    opacity: 0.6;
  }
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

ul {
  list-style: none;
}

/*------------
Utility
--------------*/
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background: #fff;
}
.header * {
  transition: all 0.4s ease;
}
.header-inner {
  padding: 20px 40px 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .header-inner {
    padding: 15px 5%;
  }
}
.header-logo {
  display: block;
}
.header-logo img {
  width: 278px;
}
@media (max-width: 767px) {
  .header-logo img {
    width: 200px;
  }
}
.header-logo > a:hover {
  opacity: 1;
}
.header-right-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  gap: 20px;
}
@media (max-width: 767px) {
  .header-right-top {
    display: none;
  }
}
.header-right .tel-link {
  transform: translateY(3px);
}
.header-cta {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .header-navi {
    position: absolute;
    top: 0;
    right: 0;
    background: #F8B626;
    background: rgba(248, 182, 38, 0.95);
    color: #fff;
    width: 80vw;
    height: 100vh;
    padding: 100px 30px 30px;
    transform: translateX(80vw);
  }
}
.header-navi-list {
  display: flex;
  gap: 20px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .header-navi-list {
    flex-direction: column;
    gap: 25px;
  }
}
.header-navi-list > li > a {
  font-weight: 700;
}
.header-navi-list > li > a:hover {
  text-decoration: underline;
  opacity: 1;
}
.header-navi.is-open {
  transform: translateX(0);
}

.header.is-fixed {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1300px) and (min-width: 768px) {
  .header-navi-list {
    gap: 15px;
  }
  .header-navi-list > li > a {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.hamburger {
  display: none;
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 9999;
    right: 5%;
  }
}
.hamburger-inr {
  position: relative;
  width: 30px;
  height: 30px;
}
.hamburger-inr span {
  position: absolute;
  width: 24px;
  height: 3px;
  background: #4E3A2A;
  transform: translate(-50%, -50%);
  left: 50%;
  transition: all 0.3s;
  border-radius: 10px;
}
.hamburger-inr span:nth-child(1) {
  top: 20%;
}
.hamburger-inr span:nth-child(2) {
  top: 50%;
}
.hamburger-inr span:nth-child(3) {
  top: 80%;
}
.hamburger.is-open .hamburger-inr span {
  background: #fff;
}
.hamburger.is-open .hamburger-inr span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-open .hamburger-inr span:nth-child(2) {
  display: none;
}
.hamburger.is-open .hamburger-inr span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.footer-contact {
  background: url(../images/share/footer_bg01.jpg) center/cover no-repeat;
  padding: 80px 0 130px;
}
@media (max-width: 767px) {
  .footer-contact {
    padding: 40px 0 75px;
  }
}
.footer-contact-ttl {
  font-size: 3.8rem;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .footer-contact-ttl {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
}
.footer-contact-txt {
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}
.footer-contact-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer-contact-btn {
    flex-direction: column;
    gap: 15px;
  }
}
.footer-bottom {
  padding: 110px 0 70px;
  position: relative;
  background: linear-gradient(transparent 50px, #FDF8E3 50px);
  z-index: 3;
  margin-top: -50px;
}
@media (max-width: 767px) {
  .footer-bottom {
    padding: 60px 0 50px;
    background: linear-gradient(transparent 30px, #FDF8E3 30px);
    margin-top: -30px;
  }
}
.footer-bottom::before {
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/share/footer_sec_deco01.png) center top/100% auto no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .footer-bottom::before {
    background: url(../images/share/footer_sec_deco01.png) center top/200% auto no-repeat;
  }
}
.footer-bottom .container {
  display: flex;
  gap: 5%;
}
@media (max-width: 767px) {
  .footer-bottom .container {
    flex-direction: column;
    gap: 40px;
  }
}
.footer-bottom-deco01 {
  position: absolute;
  width: 88px;
  top: 53px;
  left: 4.5%;
  z-index: -1;
}
@media (max-width: 767px) {
  .footer-bottom-deco01 {
    width: 40px;
    top: 25px;
    left: 4%;
  }
}
.footer-bottom-deco02 {
  position: absolute;
  width: 12.63vw;
  max-width: 182px;
  bottom: 20px;
  right: 4.2%;
  z-index: -1;
}
@media (max-width: 767px) {
  .footer-bottom-deco02 {
    width: 50px;
    max-width: none;
    bottom: 10px;
    right: 4%;
  }
}
.footer-info {
  min-width: 350px;
}
@media (max-width: 767px) {
  .footer-info {
    min-width: auto;
  }
}
.footer-logo-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer-logo-wrap {
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
  }
}
.footer-logo {
  line-height: 1;
}
.footer-logo > a {
  display: block;
}
.footer-logo > a:hover {
  opacity: 1;
}
.footer-logo img {
  width: 278px;
}
@media (max-width: 767px) {
  .footer-logo img {
    width: 200px;
  }
}
.footer-address {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .footer-address {
    font-size: 1.4rem;
    text-align: center;
  }
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer-links {
    align-items: center;
  }
}
.footer-navi {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 8%;
}
@media (max-width: 767px) {
  .footer-navi {
    gap: 3%;
  }
}
.footer-navi-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .footer-navi-list {
    flex: 1;
    gap: 10px;
  }
}
.footer-navi-list > li {
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  padding-left: 12px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .footer-navi-list > li {
    font-size: 1.3rem;
  }
}
.footer-navi-list > li::before {
  content: "";
  width: 8px;
  height: 11px;
  position: absolute;
  top: 7px;
  left: 0;
  background: url(../images/share/f-navi_arrow.svg) center/contain no-repeat;
}
@media (max-width: 767px) {
  .footer-navi-list > li::before {
    width: 6px;
    height: 8px;
    top: 6px;
  }
}
.footer-navi-list > li > a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-copy {
  background: #F8B626;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  padding: 20px 5%;
}
.footer .pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #4E3A2A;
  position: fixed;
  z-index: 100;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .footer .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 75px;
  }
}
.footer .pagetop img {
  width: 15px;
}
.footer .pagetop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.footer .pagetop.is-show:hover {
  opacity: 0.7;
}

.sp-fixed-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 65px;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .sp-fixed-menu {
    display: none;
  }
}
.sp-fixed-menu > ul {
  display: flex;
}
.sp-fixed-menu > ul > li {
  width: 50%;
}
.sp-fixed-menu > ul > li > a {
  height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding-bottom: 10px;
  color: #fff;
}
.sp-fixed-menu > ul > li > a.link-mail {
  background: #F8B626;
}
.sp-fixed-menu > ul > li > a.link-mail img {
  width: 30px;
  margin-bottom: 8px;
}
.sp-fixed-menu > ul > li > a.link-shop {
  background: #D95221;
}
.sp-fixed-menu > ul > li > a.link-shop img {
  width: 24px;
  margin-bottom: 6px;
}

/*-----------------------------------------------------------
TOP
-----------------------------------------------------------*/
/* ===== MV ===== */
.hero {
  margin-top: 110px;
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    margin-top: 60px;
    height: auto;
  }
}
.hero::before {
  content: "";
  width: 100%;
  height: 580px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background: url(../images/hero_deco.png) center bottom/100% auto no-repeat;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero::before {
    bottom: 120px;
    height: 150px;
    background: url(../images/hero_deco.png) 15% bottom/140% auto no-repeat;
  }
}
.hero-img img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .hero-img img {
    height: 360px;
    -o-object-position: 25% 50%;
       object-position: 25% 50%;
  }
}
.hero-desc {
  position: absolute;
  z-index: 5;
  top: 95px;
  left: 18.5%;
}
@media (max-width: 767px) {
  .hero-desc {
    top: 25px;
    left: 5%;
    width: 86%;
  }
}
.hero-ttl {
  width: 240px;
  max-width: 240px;
  font-size: 5rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  line-height: 1.6;
  letter-spacing: 0.25em;
  color: #fff;
  text-shadow: 0 0 20px #4E3A2A;
}
@media (max-width: 767px) {
  .hero-ttl {
    writing-mode: horizontal-tb;
    width: 100%;
    max-width: 100%;
    font-size: 3.2rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }
}
.hero-news {
  display: block;
  width: 450px;
  background: #fff;
  position: absolute;
  bottom: 90px;
  right: 0;
  z-index: 3;
  border-radius: 10px 0 0 10px;
  padding: 13px 20px 8px 24px;
}
@media (max-width: 767px) {
  .hero-news {
    position: static;
    width: 100%;
    padding: 0 5%;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero-news-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .hero-news-top {
    margin-bottom: 8px;
  }
}
.hero-news-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .hero-news-ttl {
    font-size: 1.8rem;
  }
}
.hero-news-btn {
  font-weight: 700;
  display: inline-block;
  color: #F8B626;
  text-decoration: underline;
}
.hero-news-btn:hover {
  opacity: 1;
  text-decoration: none;
}
.hero-news-cont {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .hero-news-cont {
    flex-wrap: wrap;
  }
}
.hero-news time {
  font-size: 1.5rem;
  color: #A9998C;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 3px;
  margin-right: 5px;
  line-height: 1;
}
.hero-news .category {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0;
  background: #FDF8E3;
  padding: 3px 10px 3px;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .hero-news .category {
    font-size: 1.2rem;
  }
}
.hero-news .ttl {
  flex: 1;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .hero-news .ttl {
    flex: none;
    width: 100%;
    margin: 3px 0 0;
    font-size: 1.4rem;
  }
}
.hero-news .ttl:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ===== Title ===== */
/* ===== components ===== */
/* ===== contents ===== */
.store {
  padding: 35px 0 50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .store {
    padding: 25px 0 20px;
  }
}
.store::before {
  content: "";
  width: 260px;
  height: 245px;
  position: absolute;
  top: -30px;
  left: 21%;
  background: url(../images/store_deco01.svg) center/contain no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .store::before {
    width: 120px;
    height: 112px;
    top: auto;
    bottom: -10px;
    left: -3%;
    transform: rotate(52deg);
  }
}
.store-bnr {
  display: block;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 5px;
  position: relative;
}
.store-bnr::before {
  content: "";
  width: 95px;
  height: 88px;
  position: absolute;
  top: 0;
  right: 27px;
  background: url(../images/store_deco02.svg) center/contain no-repeat;
  z-index: 2;
}
@media (max-width: 767px) {
  .store-bnr::before {
    width: 50px;
    height: 46px;
    top: -12px;
    right: -12px;
  }
}
.store-bnr-inr {
  background: #DA4F48;
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 20px;
  width: 100%;
  min-height: 150px;
  z-index: 1;
}
@media (max-width: 767px) {
  .store-bnr-inr {
    padding: 20px;
    gap: 15px;
    align-items: flex-start;
  }
}
.store-bnr-inr::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px dashed #fff;
  border-radius: 10px;
  z-index: -1;
}
.store-icon img {
  width: 90px;
}
@media (max-width: 767px) {
  .store-icon img {
    width: 80px;
  }
}
.store-ttl {
  font-size: 3.2rem;
  margin-bottom: 10px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 767px) {
  .store-ttl {
    font-size: 2.2rem;
  }
}
.store-txt {
  font-size: 1.4rem;
  line-height: 1.42;
}

.about {
  padding: 30px 0 145px;
  position: relative;
  background: linear-gradient(transparent 300px, #FDF8E3 300px calc(100% - 300px), transparent calc(100% - 300px));
  z-index: 3;
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .about {
    background: linear-gradient(transparent 150px, #FDF8E3 150px calc(100% - 150px), transparent calc(100% - 150px));
  }
}
@media (max-width: 767px) {
  .about {
    padding: 30px 0 125px;
    background: linear-gradient(transparent 50px, #FDF8E3 50px calc(100% - 100px), transparent calc(100% - 100px));
  }
}
.about::before {
  content: "";
  width: 100%;
  height: 720px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/about_sec_deco01.png) center top/100% auto no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .about::before {
    height: 300px;
    background: url(../images/about_sec_deco01.png) center top/120% auto no-repeat;
  }
}
.about::after {
  content: "";
  width: 100%;
  height: 720px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/about_sec_deco02.png) center bottom/100% auto no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .about::after {
    height: 180px;
    background: url(../images/about_sec_deco02.png) center bottom/130% auto no-repeat;
  }
}
.about-wrap {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 7%;
}
@media (max-width: 767px) {
  .about-wrap {
    flex-direction: column;
    gap: 25px;
  }
}
.about-right {
  display: flex;
  padding-top: 60px;
}
.about-ttl {
  font-size: 4.2rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  line-height: 1.6;
  letter-spacing: 0.25em;
  flex: 1;
}
@media (max-width: 767px) {
  .about-ttl {
    font-size: 2.8rem;
    writing-mode: horizontal-tb;
    line-height: 1.5;
    letter-spacing: 0.15em;
    text-align: center;
    font-feature-settings: "palt";
  }
}
.about-cont {
  width: 64%;
}
@media (max-width: 767px) {
  .about-cont {
    width: 100%;
  }
}
.about-desc {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .about-desc {
    padding-left: 0;
  }
}
.about-desc p + p {
  margin-top: 2em;
}
@media (max-width: 767px) {
  .about-desc p + p {
    margin-top: 1em;
  }
}
.about-img {
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .about-img {
    text-align: center;
  }
}
.about-img::before {
  content: "";
  width: 172px;
  height: 210px;
  position: absolute;
  left: -95px;
  bottom: 12px;
  background: url(../images/about_deco01.svg) center/contain no-repeat;
  z-index: 2;
}
@media (max-width: 767px) {
  .about-img::before {
    width: 102px;
    height: 125px;
    left: 0px;
    bottom: -10px;
  }
}
.about-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .about-img img {
    width: 90%;
  }
}
.about .btn-more {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .about .btn-more {
    margin-top: 25px;
  }
}
.about-deco {
  width: 282px;
  position: absolute;
  right: 9%;
  bottom: 425px;
  z-index: 2;
}
@media (max-width: 767px) {
  .about-deco {
    width: 100px;
    right: auto;
    left: 4%;
    bottom: 33px;
  }
}

.rice-egg {
  width: 100%;
  position: relative;
  z-index: 2;
}
.rice-egg::after {
  content: "";
  width: 100%;
  height: 508px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/rice-egg_sec_deco01.png) center bottom/100% auto no-repeat;
  z-index: -1;
}
.rice-egg-inr {
  width: 100%;
  position: relative;
  padding: 50px 0 200px;
}
@media (max-width: 767px) {
  .rice-egg-inr {
    padding: 20px 0 80px;
  }
}
.rice-egg-inr::before {
  content: "";
  width: 186px;
  height: 350px;
  position: absolute;
  top: -193px;
  left: 0;
  background: url(../images/rice-egg_deco01.svg) center/contain no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .rice-egg-inr::before {
    width: 140px;
    height: 260px;
    top: -150px;
  }
}
.rice-egg-inr::after {
  content: "";
  width: 348px;
  height: 429px;
  position: absolute;
  top: 29%;
  right: 0;
  background: url(../images/rice-egg_deco02.svg) center right/contain no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .rice-egg-inr::after {
    top: 22%;
    width: 160px;
    height: 197px;
  }
}
.rice-egg-wrap {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 7%;
}
@media (max-width: 767px) {
  .rice-egg-wrap {
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
  }
}
.rice-egg-left {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .rice-egg-left {
    display: block;
    padding-top: 0;
  }
}
.rice-egg-ttl {
  font-size: 4.2rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  line-height: 1.6;
  letter-spacing: 0.25em;
}
@media (max-width: 767px) {
  .rice-egg-ttl {
    font-size: 2.8rem;
    writing-mode: horizontal-tb;
    line-height: 1.5;
    letter-spacing: 0.15em;
    text-align: center;
    font-feature-settings: "palt";
  }
}
.rice-egg-cont {
  width: 66%;
}
.rice-egg-desc p + p {
  margin-top: 2em;
}
@media (max-width: 767px) {
  .rice-egg-desc p + p {
    margin-top: 1em;
  }
}
.rice-egg-img {
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .rice-egg-img {
    margin-bottom: 70px;
  }
}
.rice-egg-img::before {
  content: "";
  width: 235px;
  height: 206px;
  position: absolute;
  right: -60px;
  bottom: -95px;
  background: url(../images/rice-egg_deco03.svg) center/contain no-repeat;
  z-index: 2;
}
@media (max-width: 767px) {
  .rice-egg-img::before {
    width: 115px;
    height: 120px;
    right: 0px;
    bottom: -35px;
  }
}
.rice-egg-img img {
  width: 100%;
  border-radius: 10px;
}
.rice-egg .btn-more {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .rice-egg .btn-more {
    margin-top: 25px;
  }
}
.rice-egg-ttl {
  flex: 1;
}
.rice-egg-deco {
  width: 25.7vw;
  position: absolute;
  left: 0;
  bottom: 37%;
  z-index: 2;
}
@media (max-width: 767px) {
  .rice-egg-deco {
    width: 160px;
    z-index: 5;
    bottom: auto;
    top: calc(134px + 40vw);
  }
}
.rice-egg-deco img {
  border-radius: 0 10px 10px 0;
}

.top-img {
  position: relative;
  z-index: 1;
  margin-top: -100px;
}
@media (max-width: 767px) {
  .top-img {
    margin-top: -30px;
  }
}
.top-img img {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .top-img img {
    height: 46vw;
  }
}

.feature {
  padding: 115px 0 135px;
  position: relative;
  margin-top: -70px;
  background: linear-gradient(transparent 100px, #FDF8E3 100px calc(100% - 100px), transparent calc(100% - 100px));
  z-index: 3;
}
@media (max-width: 767px) {
  .feature {
    padding: 60px 0 75px;
    margin-top: -20px;
    background: linear-gradient(transparent 30px, #FDF8E3 30px calc(100% - 50px), transparent calc(100% - 50px));
  }
}
.feature::before {
  content: "";
  width: 100%;
  height: 280px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/feature_sec_deco01.png) center top/100% auto no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .feature::before {
    height: 140px;
  }
}
.feature::after {
  content: "";
  width: 100%;
  height: 500px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/feature_sec_deco02.png) center bottom/100% auto no-repeat;
  z-index: -1;
}
.feature-ttl {
  text-align: center;
  position: relative;
  padding: 10px 0 15px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .feature-ttl {
    padding: 0;
    margin-bottom: 20px;
  }
}
.feature-ttl .en {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 16rem;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .feature-ttl .en {
    top: 5px;
    font-size: 18vw;
  }
}
.feature-ttl .jp {
  display: block;
  letter-spacing: 0;
  font-size: 3.6rem;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .feature-ttl .jp {
    font-size: 2.8rem;
    line-height: 1.05;
  }
}
.feature-ttl .jp .small {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .feature-ttl .jp .small {
    font-size: 2.2rem;
  }
}
.feature-ttl .jp .txt-red {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .feature-ttl .jp .txt-red {
    font-size: 3.4rem;
  }
}
.feature-catch {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .feature-catch {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.feature-txt {
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .feature-txt {
    margin-bottom: 40px;
  }
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 38px;
}
@media (max-width: 767px) {
  .feature-list {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}
.feature-list > li:nth-child(1) .list-img {
  position: relative;
}
.feature-list > li:nth-child(1) .list-img::before {
  content: "";
  width: 26px;
  height: 23px;
  position: absolute;
  top: 17px;
  right: -6px;
  background: url(../images/feature_deco01.svg) center/contain no-repeat;
}
@media (max-width: 767px) {
  .feature-list > li:nth-child(1) .list-img::before {
    width: 34px;
    height: 30px;
  }
}
.feature-list .list-img {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .feature-list .list-img {
    margin: 0 0 20px;
  }
}
.feature-list .list-ttl {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0;
  font-feature-settings: "palt";
  margin-bottom: 15px;
}
.feature-list p {
  letter-spacing: 0;
}
.feature-btn {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .feature-btn {
    margin-top: 30px;
  }
}

.products {
  padding: 50px 0 100px;
  position: relative;
}
@media (max-width: 767px) {
  .products {
    padding: 40px 0 60px;
  }
}
.products::before {
  content: "";
  width: 160px;
  height: 220px;
  position: absolute;
  left: 40px;
  bottom: 35px;
  background: url(../images/products_deco01.svg) center/contain no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .products::before {
    width: 90px;
    height: 124px;
    left: -10px;
    bottom: 10px;
  }
}
.products-ttl {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 3px dashed #EDD476;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .products-ttl {
    display: block;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.products-ttl .ttl {
  font-size: 3.8rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .products-ttl .ttl {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .products-ttl .btn-more {
    display: none;
  }
}
.products-txt {
  margin-bottom: 25px;
}
.products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media (max-width: 767px) {
  .products-list {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}
.products-list .list-img {
  margin-bottom: 15px;
}
.products-list .list-img img {
  border-radius: 10px;
}
.products-list .list-ttl {
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .products-list .list-ttl {
    font-size: 2.2rem;
  }
}
.products-list p {
  letter-spacing: 0;
  line-height: 1.5;
}
.products-list .list-btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .products-list .list-btn {
    margin-top: 15px;
  }
}
.products-list .btn-more {
  font-size: 1.6rem;
  width: auto;
  min-height: 44px;
  padding: 10px 5px 10px 50px;
}
.products-list .btn-more::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 20px;
  right: auto;
  transform: translateY(-50%);
  background: url(../images/share/btn_arrow_min.svg) center/contain no-repeat;
}
.products-list .btn-shop {
  width: auto;
  min-height: 44px;
  font-weight: 900;
}
.products-btn-sp {
  display: none;
}
@media (max-width: 767px) {
  .products-btn-sp {
    display: block;
    margin-top: 30px;
  }
}

.shop {
  padding: 0 0 60px;
  position: relative;
}
@media (max-width: 767px) {
  .shop {
    padding: 0 0 30px;
  }
}
.shop-ttl {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 3px dashed #EDD476;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .shop-ttl {
    display: block;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.shop-ttl .ttl {
  font-size: 3.8rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .shop-ttl .ttl {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .shop-ttl .btn-more {
    display: none;
  }
}
.shop-txt {
  margin-bottom: 25px;
}
.shop-list .list-item {
  background: #FDF8E3;
  padding: 15px;
  border-radius: 10px;
}
.shop-list .list-map {
  line-height: 1;
  margin-bottom: 10px;
}
.shop-list .list-map iframe {
  vertical-align: bottom;
  line-height: 1;
  width: 100%;
  height: 140px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .shop-list .list-map iframe {
    height: 55vw;
  }
}
.shop-list .list-ttl {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 10px;
}
.shop-list .list-address {
  padding-left: 17px;
  line-height: 1.4;
  font-size: 1.4rem;
  position: relative;
}
.shop-list .list-address::before {
  content: "";
  width: 12px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/share/icon_map_min.svg) center/contain no-repeat;
}
.shop-list .list-btn {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.shop-list .btn-more {
  font-size: 1.6rem;
  width: 155px;
  min-height: 44px;
  padding: 10px 5px 10px 50px;
}
.shop-list .btn-more::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 20px;
  right: auto;
  transform: translateY(-50%);
  background: url(../images/share/btn_arrow_min.svg) center/contain no-repeat;
}
.shop-list .btn-shop {
  width: auto;
  min-height: 44px;
  font-weight: 900;
}
@media (max-width: 767px) {
  .shop .splide {
    padding: 0 35px;
  }
}
.shop .splide .splide__arrow--prev {
  left: -70px;
}
@media (max-width: 767px) {
  .shop .splide .splide__arrow--prev {
    left: -3vw;
  }
}
.shop .splide .splide__arrow--next {
  right: -70px;
}
@media (max-width: 767px) {
  .shop .splide .splide__arrow--next {
    right: -3vw;
  }
}
.shop-btn-sp {
  display: none;
}
@media (max-width: 767px) {
  .shop-btn-sp {
    display: block;
    margin-top: 30px;
  }
}

.instagram {
  padding: 260px 0 90px;
  position: relative;
  background: linear-gradient(transparent 180px, #FDF8E3 180px);
  z-index: 3;
}
@media screen and (min-width: 1600px) {
  .instagram {
    background: linear-gradient(transparent 240px, #FDF8E3 240px);
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .instagram {
    background: linear-gradient(transparent 140px, #FDF8E3 140px);
  }
}
@media (max-width: 767px) {
  .instagram {
    padding: 60px 0 90px;
    background: linear-gradient(transparent 50px, #FDF8E3 50px);
  }
}
.instagram::before {
  content: "";
  width: 100%;
  height: 460px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/instagram_sec_deco01.png) center top/100% auto no-repeat;
  z-index: -1;
}
.instagram-ttl {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 3px dashed #EDD476;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .instagram-ttl {
    display: block;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.instagram-ttl .ttl {
  font-size: 3.8rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .instagram-ttl .ttl {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .instagram-ttl .btn-more {
    display: none;
  }
}
.instagram-btn-sp {
  display: none;
}
@media (max-width: 767px) {
  .instagram-btn-sp {
    display: block;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .instagram #sb_instagram {
    padding: 10px 0 0 !important;
  }
}
.instagram #sb_instagram #sbi_images {
  padding: 0 !important;
}

.access {
  position: relative;
  z-index: 5;
}
.access::before {
  content: "";
  width: 141px;
  height: 175px;
  position: absolute;
  top: -140px;
  right: 30px;
  background: url(../images/access_deco01.svg) center/contain no-repeat;
  z-index: 3;
}
@media screen and (max-width: 1380px) and (min-width: 768px) {
  .access::before {
    width: 100px;
    height: 124px;
    top: -91px;
  }
}
@media (max-width: 767px) {
  .access::before {
    width: 70px;
    height: 84px;
    top: -80px;
    right: 10px;
  }
}
.access-map {
  line-height: 1;
}
.access-map iframe {
  width: 100%;
  height: 420px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .access-map iframe {
    height: 280px;
  }
}
.access-cont {
  position: absolute;
  background: #fff;
  z-index: 2;
  border-radius: 10px;
  padding: 30px;
  width: 340px;
  right: 50px;
  top: 30px;
}
@media (max-width: 767px) {
  .access-cont {
    position: static;
    border-radius: 0;
    width: 100%;
    padding: 30px 5% 50px;
  }
}
.access-ttl {
  font-size: 3rem;
  padding-bottom: 15px;
  border-bottom: 3px dashed #EDD476;
  margin-bottom: 20px;
  line-height: 1;
}
@media (max-width: 767px) {
  .access-ttl {
    font-size: 2.4rem;
  }
}
.access-list {
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 17px;
}
@media (max-width: 767px) {
  .access-list {
    margin-bottom: 25px;
  }
}
.access-list > li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.5;
  letter-spacing: 0;
}
.access-list .icon {
  width: 24px;
  padding-top: 2px;
}
.access .btn-more {
  width: 100%;
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/*-----------------------------------------------------------
under
-----------------------------------------------------------*/
/*------------
ページタイトル
--------------*/
.page-ttl {
  background: #FDF8E3;
  height: 380px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 110px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, transparent 100px, #FDF8E3 100px);
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .page-ttl {
    height: 190px;
    min-height: 190px;
    margin-top: 60px;
    padding-bottom: 45px;
    background: linear-gradient(to top, transparent 30px, #FDF8E3 30px);
  }
}
.page-ttl::before {
  content: "";
  width: 100%;
  height: 408px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/under/page-ttl_deco01.png) center bottom/100% auto no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-ttl::before {
    height: 150px;
    background: url(../images/under/page-ttl_deco01.png) center bottom/140% auto no-repeat;
  }
}
.page-ttl .title {
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .page-ttl .title {
    font-size: 2.6rem;
  }
}

/*------------
パンクズ
--------------*/
.breadcrumb {
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
}
.breadcrumb ul {
  font-size: 1.4rem;
  line-height: 1.3;
  padding: 20px 0;
  color: rgba(78, 58, 42, 0.7);
}
@media (max-width: 767px) {
  .breadcrumb ul {
    padding: 20px 0 10px;
  }
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li + li:before {
  content: ">";
  display: inline-block;
  margin: 0 8px;
  transform: translateY(-1px);
}
.breadcrumb ul a {
  color: #4E3A2A;
  text-decoration: underline;
}
.breadcrumb ul a:hover {
  opacity: 1;
  text-decoration: none;
}

/*------------
ブロック
--------------*/
.section {
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 45px 0;
  }
}
.section.bg-color {
  background: #FDF8E3;
}

.subsection + .subsection {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .subsection + .subsection {
    margin-top: 40px;
  }
}

/*------------
見出し
--------------*/
.u-ttl-lg, .postdata h1 {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .u-ttl-lg, .postdata h1 {
    font-size: 2.4rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
}
.u-ttl-lg::before, .postdata h1::before {
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #EDD476;
}
@media (max-width: 767px) {
  .u-ttl-lg::before, .postdata h1::before {
    width: 40px;
    height: 2px;
  }
}

.u-ttl-md, .postdata h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0;
  padding-bottom: 7px;
  border-bottom: 3px dashed #EDD476;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .u-ttl-md, .postdata h2 {
    font-size: 2rem;
    padding-bottom: 5px;
    border-bottom: 2px dashed #EDD476;
    margin-bottom: 15px;
  }
}

.u-ttl-sm, .postdata h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #F8B626;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .u-ttl-sm, .postdata h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.u-ttl-bg {
  background: #F8B626;
  color: #fff;
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 2px 10px;
  border-radius: 5px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .u-ttl-bg {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}

/*------------
パーツ
--------------*/
.u-box01 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 60px 8.8%;
}
@media (max-width: 767px) {
  .u-box01 {
    padding: 30px 25px;
  }
}
.u-box01::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px dashed #EDD476;
  border-radius: 10px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .u-box01::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 2px dashed #EDD476;
  }
}
.u-box01::after {
  content: "";
  width: 293px;
  height: 276px;
  position: absolute;
  top: -80px;
  right: -113px;
  background: url(../images/under/u-shape01.svg) center/contain no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .u-box01::after {
    width: 150px;
    height: 140px;
    top: -40px;
    right: -30px;
  }
}
.u-box01 .box-ttl {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .u-box01 .box-ttl {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}

.u-box02 {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 767px) {
  .u-box02 {
    padding: 25px;
  }
}

.u-box03 {
  background: #FDF8E3;
  border-radius: 10px;
  padding: 50px;
}
@media (max-width: 767px) {
  .u-box03 {
    padding: 25px;
  }
}
.u-box03.white {
  background: #fff;
}

.u-box-inr {
  background: #FDF8E3;
  padding: 25px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .u-box-inr {
    padding: 20px;
  }
}

.u-layout-img {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}
@media (max-width: 767px) {
  .u-layout-img {
    flex-direction: column;
    gap: 20px;
  }
}
.u-layout-img .l-img {
  flex: 1.07;
}
.u-layout-img .l-img img {
  border-radius: 10px;
}
.u-layout-img .l-img.min {
  flex: 0.47;
}
.u-layout-img .l-img.l-map {
  line-height: 1;
}
.u-layout-img .l-img.l-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 200px;
}
@media (max-width: 767px) {
  .u-layout-img .l-img.l-map iframe {
    height: 60vw;
  }
}
.u-layout-img .l-icon {
  width: 130px;
}
@media (max-width: 767px) {
  .u-layout-img .l-icon {
    margin: 0 auto;
  }
}
.u-layout-img .l-desc {
  flex: 1;
}
.u-layout-img.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .u-layout-img.reverse {
    flex-direction: column;
  }
}
.u-layout-img.layout-icon {
  gap: 4%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .u-layout-img.layout-icon {
    gap: 20px;
    padding-right: 0;
  }
}
.u-layout-img.layout-min {
  gap: 4%;
}
@media (max-width: 767px) {
  .u-layout-img.layout-min {
    gap: 20px;
  }
}

.u-layout-bg {
  display: flex;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .u-layout-bg {
    display: block;
  }
}
.u-layout-bg .l-img {
  width: 39.2%;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .u-layout-bg .l-img {
    width: 80%;
    margin: 0 auto;
  }
}
.u-layout-bg .l-img img {
  border-radius: 10px;
}
.u-layout-bg .l-desc {
  width: 80.6%;
  background: #FDF8E3;
  border-radius: 10px;
  margin-top: 100px;
  margin-left: -19.8%;
  padding: 60px 60px 60px 27%;
  position: relative;
}
@media (max-width: 767px) {
  .u-layout-bg .l-desc {
    width: 100%;
    margin: -45px 0 0;
    padding: 65px 25px 25px;
  }
}
.u-layout-bg .l-desc.white {
  background: #fff;
}
.u-layout-bg .l-desc.deco::after {
  content: "";
  width: 293px;
  height: 276px;
  position: absolute;
  top: -100px;
  left: -80px;
  background: url(../images/under/u-shape02.svg) center/contain no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .u-layout-bg .l-desc.deco::after {
    width: 173px;
    height: 147px;
    top: -60px;
    left: -60px;
  }
}
.u-layout-bg .l-num {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  color: #FFECC6;
  line-height: 1;
  letter-spacing: 0.1em;
  display: inline-block;
  position: absolute;
  z-index: 2;
  top: -56px;
  left: 0;
  font-size: 4.9rem;
}
@media (max-width: 767px) {
  .u-layout-bg .l-num {
    letter-spacing: 0.05em;
    font-size: 3.8rem;
    top: 0;
    left: 10%;
  }
}
.u-layout-bg .l-num .num {
  font-size: 7.4rem;
}
@media (max-width: 767px) {
  .u-layout-bg .l-num .num {
    font-size: 5.2rem;
  }
}
@media (max-width: 767px) {
  .u-layout-bg.sp-num {
    padding-top: 39px;
  }
  .u-layout-bg.sp-num .l-desc {
    position: static;
  }
}
.u-layout-bg.reverse {
  flex-direction: row-reverse;
}
.u-layout-bg.reverse .l-desc {
  margin-left: 0;
  margin-right: -19.8%;
  padding: 60px 27% 60px 60px;
}
@media (max-width: 767px) {
  .u-layout-bg.reverse .l-desc {
    margin: -45px 0 0;
    padding: 65px 25px 25px;
  }
}

.u-layout-lg {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-right: calc((100vw - 1200px) / 2);
}
@media screen and (max-width: 1333px) and (min-width: 768px) {
  .u-layout-lg {
    margin-right: 5vw;
  }
}
@media (max-width: 767px) {
  .u-layout-lg {
    margin-right: 0;
    flex-direction: column;
    gap: 20px;
  }
}
.u-layout-lg .l-img {
  width: 50vw;
}
@media (max-width: 767px) {
  .u-layout-lg .l-img {
    width: 100vw;
  }
}
.u-layout-lg .l-img img {
  border-radius: 0 10px 10px 0;
}
@media (max-width: 767px) {
  .u-layout-lg .l-img img {
    border-radius: 0;
  }
}
.u-layout-lg .l-desc {
  flex: 1;
}
@media (max-width: 767px) {
  .u-layout-lg .l-desc {
    margin: 0 5vw;
  }
}

.u-card01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media (max-width: 767px) {
  .u-card01 {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.u-card01 .card-item {
  background: #FDF8E3;
  padding: 20px;
  border-radius: 10px;
}
.u-card01 .card-img {
  margin-bottom: 10px;
}
.u-card01 .card-img img {
  border-radius: 10px;
}
.u-card01 .card-ttl {
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 20px;
}
.u-card01 .card-ttl-center {
  color: #F8B626;
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 7px;
  padding-top: 5px;
}
@media (max-width: 767px) {
  .u-card01 .card-ttl-center {
    font-size: 2.2rem;
  }
}
.u-card01 .btn-shop {
  width: 155px;
  min-height: 44px;
  font-weight: 900;
}
@media (max-width: 767px) {
  .u-card01 .btn-shop {
    width: 100%;
  }
}
.u-card01.white .card-item {
  background: #fff;
}

.u-list-disc > li {
  position: relative;
  padding-left: 15px;
}
.u-list-disc > li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 14px;
  left: 0;
  background: #F8B626;
}
@media (max-width: 767px) {
  .u-list-disc > li::before {
    top: 10px;
  }
}

.u-dl01 {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-gap: 10px;
  letter-spacing: 0;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .u-dl01 {
    display: block;
  }
}
.u-dl01 dt {
  background: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  border-radius: 100px;
  padding: 3px;
  align-self: flex-start;
  width: 90px;
}
@media (max-width: 767px) {
  .u-dl01 dt {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .u-dl01 dd:not(:last-child) {
    margin-bottom: 15px;
  }
}

.u-list-column {
  display: grid;
}
.u-list-column.col1 {
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (max-width: 767px) {
  .u-list-column.col1 {
    gap: 40px;
  }
}
.u-list-column.col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
}
@media (max-width: 767px) {
  .u-list-column.col2 {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.u-list-column.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.u-flow01 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 50px;
}
@media (max-width: 767px) {
  .u-flow01 {
    grid-gap: 30px;
  }
}
.u-flow01 .flow-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .u-flow01 .flow-item {
    gap: 20px;
  }
}
.u-flow01 .flow-item .flow-num {
  width: 80px;
  height: 80px;
  background: #F8B626;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  padding-top: 18px;
}
@media (max-width: 767px) {
  .u-flow01 .flow-item .flow-num {
    width: 60px;
    height: 60px;
    padding-top: 13px;
  }
}
.u-flow01 .flow-item .flow-num span {
  display: block;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .u-flow01 .flow-item .flow-num span {
    letter-spacing: 0.05em;
  }
}
.u-flow01 .flow-item .flow-num .txt {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .u-flow01 .flow-item .flow-num .txt {
    font-size: 1.3rem;
  }
}
.u-flow01 .flow-item .flow-num .num {
  font-size: 3.9rem;
}
@media (max-width: 767px) {
  .u-flow01 .flow-item .flow-num .num {
    font-size: 3rem;
  }
}
.u-flow01 .flow-item .flow-cont {
  flex: 1;
}
.u-flow01 .flow-item .flow-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
}
@media (max-width: 767px) {
  .u-flow01 .flow-item .flow-layout {
    flex-direction: column;
    gap: 10px;
  }
}
.u-flow01 .flow-item .flow-img {
  flex: 1;
}
.u-flow01 .flow-item .flow-desc {
  flex: 2.15;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .u-flow01 .flow-item .flow-desc {
    padding-top: 0;
  }
}
.u-flow01 .flow-item .flow-ttl {
  font-size: 2.6rem;
  color: #F8B626;
  letter-spacing: 0;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .u-flow01 .flow-item .flow-ttl {
    font-size: 2.2rem;
    margin-bottom: 7px;
  }
}
.u-flow01 .flow-item .flow-img img {
  border-radius: 10px;
}
.u-flow01 .flow-item:not(:last-child) {
  position: relative;
}
.u-flow01 .flow-item:not(:last-child)::before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  top: 70px;
  left: 40px;
  transform: translateX(-50%);
  background: #F8B626;
  z-index: -1;
}
@media (max-width: 767px) {
  .u-flow01 .flow-item:not(:last-child)::before {
    width: 3px;
    top: 50px;
    left: 30px;
  }
}

.u-bnr01 {
  max-width: 870px;
  margin: 0 auto;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .u-bnr01 {
    max-width: none;
    padding-top: 30px;
  }
}
.u-bnr01 .bnr-deco {
  width: 131px;
  position: absolute;
  top: -15px;
  right: 12.5%;
  background: url(../images/under/u-egg01.svg) center/contain no-repeat;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .u-bnr01 .bnr-deco {
    width: 90px;
    top: -30px;
    right: 15px;
    transform: rotate(14deg);
  }
}
.u-bnr01 .bnr-link {
  background: #DA4F48;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
  width: 100%;
  padding: 40px 90px 45px 40px;
}
@media (max-width: 767px) {
  .u-bnr01 .bnr-link {
    flex-direction: column;
    gap: 15px;
    padding: 30px 25px 45px;
  }
}
.u-bnr01 .bnr-link::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px dashed #fff;
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .u-bnr01 .bnr-link::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}
.u-bnr01 .bnr-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(45deg);
  width: 25px;
  height: 25px;
  border: 0px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media (max-width: 767px) {
  .u-bnr01 .bnr-link::after {
    width: 13px;
    height: 13px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: auto;
    bottom: 22px;
    right: 25px;
    transform: rotate(45deg);
  }
}
.u-bnr01 .bnr-icon img {
  width: 127px;
}
@media (max-width: 767px) {
  .u-bnr01 .bnr-icon img {
    width: 80px;
  }
}
.u-bnr01 .bnr-desc {
  flex: 1;
}
.u-bnr01 .bnr-ttl {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .u-bnr01 .bnr-ttl {
    font-size: 2.2rem;
    margin-bottom: 7px;
  }
}
.u-bnr01 .bnr-sub {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .u-bnr01 .bnr-sub {
    font-size: 1.8rem;
  }
}
.u-bnr01 .bnr-txt {
  font-size: 1.4rem;
  line-height: 1.7;
}

.u-map {
  line-height: 1;
}
.u-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 460px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .u-map iframe {
    height: 60vw;
  }
}

.u-table01 th,
.u-table01 td {
  padding: 15px 20px;
  border: 1px solid #EDD476;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .u-table01 th,
  .u-table01 td {
    display: block;
    padding: 10px 15px;
  }
}
.u-table01 th {
  background: #F8B626;
  color: #fff;
  width: 30%;
  text-align: left;
  font-weight: 700;
}
@media (max-width: 767px) {
  .u-table01 th {
    border-bottom: none;
    width: auto;
  }
}
.u-table01 td {
  width: 70%;
  background: #fff;
}
@media (max-width: 767px) {
  .u-table01 td {
    width: auto;
  }
}

.u-accordion01 {
  background: #FDF8E3;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .u-accordion01 {
    line-height: 1.5;
    border-radius: 5px;
  }
}
.u-accordion01 .accordion-btn {
  cursor: pointer;
  padding: 20px 30px;
  position: relative;
}
@media (max-width: 767px) {
  .u-accordion01 .accordion-btn {
    padding: 15px 35px 15px 15px;
  }
}
.u-accordion01 .accordion-desc {
  display: none;
  padding: 0 30px 30px;
  position: relative;
}
@media (max-width: 767px) {
  .u-accordion01 .accordion-desc {
    padding: 0 15px 20px;
  }
}
.u-accordion01 .accordion-ttl {
  font-weight: bold;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .u-accordion01 .accordion-ttl {
    font-size: 1.6rem;
  }
}
.u-accordion01 .accordion-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .u-accordion01 .accordion-open-icon {
    width: 25px;
    height: 25px;
    right: 10px;
  }
}
.u-accordion01 .accordion-open-icon::before, .u-accordion01 .accordion-open-icon::after {
  content: "";
  display: block;
  background: #F8B626;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.u-accordion01 .accordion-open-icon::before {
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .u-accordion01 .accordion-open-icon::before {
    width: 14px;
  }
}
.u-accordion01 .accordion-open-icon::after {
  width: 16px;
  height: 2px;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left;
  transition: transform 0.5s;
}
@media (max-width: 767px) {
  .u-accordion01 .accordion-open-icon::after {
    width: 14px;
  }
}
.u-accordion01 .is-open .accordion-open-icon {
  transform: translateY(-50%) rotate(180deg);
}
.u-accordion01 .is-open .accordion-open-icon::after {
  opacity: 0;
}
.u-accordion01 + .u-accordion01 {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .u-accordion01 + .u-accordion01 {
    margin-top: 15px;
  }
}

/*-----------------------------------------------------------
post
-----------------------------------------------------------*/
.post-layout {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .post-layout {
    flex-direction: column;
    gap: 20px;
  }
}
.post-layout .l-img {
  width: 30%;
}
@media (max-width: 767px) {
  .post-layout .l-img {
    width: 100%;
  }
}
.post-layout .l-img img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-layout .l-desc {
  flex: 1;
}
.post-layout .post-data {
  margin-bottom: 5px;
}
.post-layout + .post-layout {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .post-layout + .post-layout {
    margin-top: 30px;
  }
}

.post-data time {
  font-size: 1.5rem;
  color: #A9998C;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 3px;
  margin-right: 5px;
  line-height: 1;
}
.post-data .category {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0;
  background: #FDF8E3;
  padding: 3px 10px 3px;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .post-data .category {
    font-size: 1.2rem;
  }
}

.post-number {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .post-number {
    margin-top: 40px;
  }
}
.post-number-list {
  display: flex;
  justify-content: center;
}
.post-number-list span, .post-number-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s;
  margin: 0 6px;
  padding: 2px 0 0 2px;
  background: #4E3A2A;
  border: 1px solid #4E3A2A;
  color: #fff;
}
@media (max-width: 767px) {
  .post-number-list span, .post-number-list a {
    width: 30px;
    height: 30px;
    font-size: 1.6rem;
    margin: 0 3px;
  }
}
.post-number-list span:hover, .post-number-list a:hover {
  opacity: 0.6;
}
.post-number-list span.current, .post-number-list a.current {
  background: #fff;
  color: #4E3A2A;
}
.post-number-list span.next, .post-number-list span.prev, .post-number-list a.next, .post-number-list a.prev {
  background: transparent;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #4E3A2A;
  border: none;
  position: relative;
  margin: 0;
}
.post-number-list span.next::before, .post-number-list span.prev::before, .post-number-list a.next::before, .post-number-list a.prev::before {
  content: "";
  width: 10px;
  height: 16px;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.post-number-list span.next::before, .post-number-list a.next::before {
  background: url(../images/share/post_arrow_next.svg) center/contain no-repeat;
}
.post-number-list span.prev::before, .post-number-list a.prev::before {
  background: url(../images/share/post_arrow_prev.svg) center/contain no-repeat;
}

.post-number-single {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
}
.post-number-single a {
  display: inline-block;
  color: #4E3A2A;
}
.post-number-single a.next {
  margin-top: 2px;
  position: relative;
}
.post-number-single a.next::before {
  content: "";
  width: 10px;
  height: 16px;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/share/post_arrow_next.svg) center/contain no-repeat;
}
.post-number-single a.prev {
  margin-top: 2px;
  position: relative;
}
.post-number-single a.prev::after {
  content: "";
  width: 10px;
  height: 16px;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/share/post_arrow_prev.svg) center/contain no-repeat;
}

/*投稿本文用CSS*/
.postdata {
  overflow-wrap: break-word;
}
.postdata h4 {
  font-size: 18px;
  color: #F8B626;
}
.postdata h5 {
  font-size: 17px;
  padding-left: 10px;
  position: relative;
}
.postdata h5:after {
  content: "-";
  color: #F8B626;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.postdata h6 {
  font-size: 16px;
  color: #F8B626;
}
.postdata .screen-reader-text {
  border: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.postdata .screen-reader-text:focus {
  background-color: #eee;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.postdata iframe {
  max-width: 100%;
}
.postdata p, .postdata ul, .postdata ol {
  margin-bottom: 15px;
}
.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}
.postdata a:focus-visible {
  text-decoration: none;
}
.postdata strong {
  font-weight: bold;
}
.postdata em {
  font-style: italic;
}
.postdata ul li {
  list-style: inside disc;
}
.postdata ul li > ul {
  margin: 0 0 0 15px;
}
.postdata ol li {
  list-style: inside decimal;
}
.postdata ol li > ol {
  margin: 0 0 0 15px;
}
.postdata sub {
  font-size: 11px;
  position: relative;
  bottom: -0.1em;
}
.postdata sup {
  font-size: 11px;
  position: relative;
  top: -0.1em;
}
.postdata .screen-reader-text {
  border: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.postdata .screen-reader-text:focus {
  background-color: #eee;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.postdata iframe {
  max-width: 100%;
}
.postdata .wp-block-button__link {
  background-color: #F8B626;
  border: 1px solid #F8B626;
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s;
}
.postdata .wp-block-button__link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: border-color 0.3s;
}
.postdata .wp-block-button__link:hover {
  opacity: 1;
  background-color: #fff;
  color: #F8B626;
}

/*セレクト式カテゴリー*/
.select-area {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .select-area {
    margin-bottom: 50px;
  }
}
.select-area .select-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.select-area .select-box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border-top: 8px solid #F8B626;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateY(-50%);
}
.select-area .select-category {
  -webkit-appearance: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  border-radius: 5px;
  background: #FDF8E3;
  color: #4E3A2A;
  vertical-align: middle;
  height: 50px;
  padding: 5px 15px;
  border: none;
  width: 100%;
  cursor: pointer;
}
.select-area .select-category::-ms-expand {
  display: none;
}

/*-----------------------------------------------------------
contact form
-----------------------------------------------------------*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.contact-form table {
  border-collapse: collapse;
  margin: 0 0 50px;
  width: 100%;
}

.contact-form table th {
  padding: 15px 40px 15px 0;
  vertical-align: top;
  font-weight: bold;
  text-align: left;
  width: 30%;
}

.contact-form table td {
  padding: 15px 0;
  width: 70%;
}

.contact-form .hissu {
  display: inline-block;
  background: #DA4F48;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  padding: 1px 8px;
  margin-right: 10px;
  vertical-align: 1px;
}

.contact-form .ninni {
  display: inline-block;
  border: 1px solid #4E3A2A;
  border-radius: 3px;
  font-size: 10px;
  padding: 1px 8px;
  margin-right: 10px;
  vertical-align: 1px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form input[type=date],
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #FDF8E3;
  border: none;
  border-radius: 3px;
  color: #4E3A2A;
  font-size: 16px;
  padding: 10px;
  margin: 0;
  width: 100%;
  min-height: 50px;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=number]:focus,
.contact-form input[type=file]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 1px solid #F8B626;
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

/*radio*/
.wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin: 0 20px 0 0;
}

.wpcf7-radio label {
  display: flex;
  align-items: flex-start;
  position: relative;
  font-size: 16px;
}

.wpcf7-radio input[type=radio] {
  flex: 0 0 18px;
  display: inline-block;
  background-color: #eeeff2;
  border: 1px solid #d6d9e0;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 6px 10px 0 0;
}

.wpcf7-radio input[type=radio]:checked + span::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #4E3A2A;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 5px;
  z-index: 0;
}

.wpcf7-radio input[type=radio]:focus-visible {
  border-color: #F8B626;
  outline: none;
}

/*checkbox*/
.wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  margin: 0 20px 0 0;
}

.wpcf7-checkbox label {
  display: flex;
  align-items: flex-start;
  position: relative;
  font-size: 16px;
}

.wpcf7-checkbox input[type=checkbox] {
  flex: 0 0 18px;
  display: inline-block;
  background-color: #eeeff2;
  border: 1px solid #d6d9e0;
  border-radius: 0;
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 6px 10px 0 0;
}

.wpcf7-checkbox input[type=checkbox]:checked + span::before {
  content: "";
  display: block;
  border: solid #4E3A2A;
  border-width: 0 2px 2px 0;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 9px;
  left: 6px;
  transform: rotate(45deg);
  z-index: 0;
}

.wpcf7-checkbox input[type=checkbox]:focus-visible {
  border-color: #F8B626;
  outline: none;
}

/*select*/
.contact-form .select-wrap {
  position: relative;
}

.contact-form .select-wrap::after {
  content: "";
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #4E3A2A transparent transparent transparent;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 22px;
}

/*file*/
.file-label {
  display: inline-block;
  background-color: #FDF8E3;
  cursor: pointer;
  color: #4E3A2A;
  font-size: 13px;
  padding: 10px 25px;
  transition: 0.5s;
}

.file-label:hover {
  background-color: #4E3A2A;
  color: #fff;
}

.file-label input[type=file] {
  display: none;
}

.file-message {
  margin-top: 5px;
  font-size: 13px;
}

.date-picker input[type=text] {
  background-image: url("data:image/svg+xml;base64,PCEtLT94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPy0tPgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+Cgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9Il94MzJfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJ3aWR0aDogMjU2cHg7IGhlaWdodDogMjU2cHg7IG9wYWNpdHk6IDE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojODg4O30KPC9zdHlsZT4KPGc+Cgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTQ5LjE5MywxMDMuNTI1YzE1Ljk5NSwwLDI4Ljk2NC0xMi45NywyOC45NjQtMjguOTczVjI4Ljk2NEMxNzguMTU3LDEyLjk3LDE2NS4xODgsMCwxNDkuMTkzLDAKCQljLTE2LjAwMiwwLTI4Ljk3MywxMi45Ny0yOC45NzMsMjguOTY0djQ1LjU4OEMxMjAuMjIsOTAuNTU2LDEzMy4xOTEsMTAzLjUyNSwxNDkuMTkzLDEwMy41MjV6Ij48L3BhdGg+Cgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzYyLjgxNiwxMDMuNTI1YzE1Ljk5NCwwLDI4Ljk2NC0xMi45NywyOC45NjQtMjguOTczVjI4Ljk2NEMzOTEuNzgsMTIuOTcsMzc4LjgxLDAsMzYyLjgxNiwwCgkJYy0xNi4wMDMsMC0yOC45NzMsMTIuOTctMjguOTczLDI4Ljk2NHY0NS41ODhDMzMzLjg0Myw5MC41NTYsMzQ2LjgxMywxMDMuNTI1LDM2Mi44MTYsMTAzLjUyNXoiPjwvcGF0aD4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik00MzUuMTY0LDQxLjI4N2gtMTcuOTI1djMzLjI2NWMwLDMwLjAxNy0yNC40MTQsNTQuNDMyLTU0LjQyMiw1NC40MzJjLTMwLjAxOCwwLTU0LjQzMi0yNC40MTUtNTQuNDMyLTU0LjQzMgoJCVY0MS4yODdIMjAzLjYxNnYzMy4yNjVjMCwzMC4wMTctMjQuNDE1LDU0LjQzMi01NC40MjMsNTQuNDMyYy0zMC4wMTYsMC01NC40MzItMjQuNDE1LTU0LjQzMi01NC40MzJWNDEuMjg3SDc2LjgzNgoJCWMtMzguNTI4LDAtNjkuNzYzLDMxLjIzNS02OS43NjMsNjkuNzYzdjMzMS4xODdDNy4wNzMsNDgwLjc2NSwzOC4zMDksNTEyLDc2LjgzNiw1MTJoMzU4LjMyOAoJCWMzOC41MjgsMCw2OS43NjMtMzEuMjM1LDY5Ljc2My02OS43NjNWMTExLjA1QzUwNC45MjcsNzIuNTIyLDQ3My42OTIsNDEuMjg3LDQzNS4xNjQsNDEuMjg3eiBNNDcwLjk4Miw0NDIuMjM3CgkJYzAsMTkuNzQ4LTE2LjA2OSwzNS44MTgtMzUuODE4LDM1LjgxOEg3Ni44MzZjLTE5Ljc0OCwwLTM1LjgxOC0xNi4wNy0zNS44MTgtMzUuODE4VjE1NS4xMzhoNDI5Ljk2NFY0NDIuMjM3eiI+PC9wYXRoPgoJPHJlY3QgeD0iMTc1Ljg2MiIgeT0iMzg0LjAwMiIgY2xhc3M9InN0MCIgd2lkdGg9IjYyLjg1OSIgaGVpZ2h0PSI2Mi44NTkiPjwvcmVjdD4KCTxyZWN0IHg9IjE3NS44NjIiIHk9IjI4Ni41ODQiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTkiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSI3OC40NTMiIHk9IjM4NC4wMDIiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTEiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSI3OC40NTMiIHk9IjI4Ni41ODQiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTEiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSIzNzAuNjk3IiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODUxIiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0PgoJPHJlY3QgeD0iMjczLjI4IiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODU5IiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0PgoJPHJlY3QgeD0iMjczLjI4IiB5PSIyODYuNTg0IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODU5IiBoZWlnaHQ9IjYyLjg1OSI+PC9yZWN0PgoJPHJlY3QgeD0iMzcwLjY5NyIgeT0iMzg0LjAwMiIgY2xhc3M9InN0MCIgd2lkdGg9IjYyLjg1MSIgaGVpZ2h0PSI2Mi44NTkiPjwvcmVjdD4KCTxyZWN0IHg9IjM3MC42OTciIHk9IjI4Ni41ODQiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTEiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSIyNzMuMjgiIHk9IjM4NC4wMDIiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTkiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSIxNzUuODYyIiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODU5IiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0PgoJPHJlY3QgeD0iNzguNDUzIiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODUxIiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0Pgo8L2c+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 20px auto;
  padding-left: 50px;
}

/*希望日*/
.contact-form .reserve-wrap {
  display: grid;
  gap: 15px;
}

.contact-form .reserve-date {
  display: flex;
}

.contact-form .reserve-date .date {
  width: 35%;
  margin-right: 15px;
}

.contact-form .reserve-date .time {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-form .reserve-date .time .select-wrap {
  width: 100px;
}

/*生年月日*/
.contact-form .birth-wrap {
  display: flex;
  gap: 10px;
}

.contact-form .birth-wrap .item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-form .birth-wrap .select-wrap {
  width: 100px;
}

.zipcode {
  display: grid;
  grid-template-columns: 1fr 130px;
  grid-gap: 10px;
}

.zipcode input {
  width: 100%;
}

.btn-zipcode {
  background-color: #DA4F48;
  border-radius: 2px;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 5px;
  text-align: center;
  height: 50px;
  transition: opacity 0.3s;
}

.btn-zipcode:hover {
  opacity: 0.5;
}

/*送信ボタン*/
.contact-form .submit-btn {
  display: flex;
  justify-content: center;
}

.contact-form .submit-btn [type=submit] {
  -webkit-appearance: none;
  background: #F8B626;
  border: 1px solid #F8B626;
  border-radius: 100px;
  outline: none;
  color: #fff;
  cursor: pointer;
  padding: 11px 20px;
  letter-spacing: 3px;
  transition: 0.3s;
  width: 320px;
  font-weight: 900;
  font-size: 1.8rem;
}

.contact-form .submit-btn [type=submit]:hover {
  opacity: 0.7;
}

.contact-form .submit-btn [type=submit].back-btn {
  background: #999;
  border: none;
  margin-right: 50px;
}

/*エラー表示*/
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background-color: #DA4F48;
  border: none;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin: 30px 0 0;
}

.contact-form .wpcf7-not-valid-tip {
  color: #DA4F48;
  font-size: 11px;
  font-weight: bold;
  margin: 5px 0 0 0;
}

div.wpcf7-response-output.wpcf7-validation-errors {
  display: none !important;
}

.contact-form .wpcf7-spinner {
  display: none;
}

/*Material datepicker*/
.dtp > .dtp-content {
  font-weight: bold;
}

.dtp > .dtp-content > .dtp-date-view > header.dtp-header {
  background: #373c3f !important;
}

.dtp div.dtp-date,
.dtp div.dtp-time {
  background-color: #eff0f0 !important;
  color: #4E3A2A !important;
}

.dtp .p10 > a,
.dtp div.dtp-actual-year,
.dtp table.dtp-picker-days tr > th {
  color: #4E3A2A !important;
}

.dtp div.dtp-picker-month {
  font-weight: bold;
  padding-bottom: 0 !important;
}

.dtp table.dtp-picker-days tr > td > a.selected {
  background-color: #96cee1 !important;
  border-radius: 3px !important;
}

.dtp .right,
.dtp .left {
  margin-top: 10px !important;
}

/*送信ローダー*/
.loading-wrapper {
  display: none;
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
}

.loading-send {
  background: #fff;
  padding: 35px 70px;
  box-shadow: 0 0.4rem 0.8rem -0.1rem rgba(0, 32, 128, 0.1), 0 0 0 1px #f0f2f7;
  border-radius: 5px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.loading-send-dot,
.loading-send-dot::before,
.loading-send-dot::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9face6;
  position: absolute;
  top: 0;
  animation: dot-flashing 1s infinite alternate;
}

.loading-send-dot {
  margin-top: 5px;
  position: relative;
  animation-delay: 0.5s;
}

.loading-send-dot::before {
  left: -15px;
  animation-delay: 0s;
}

.loading-send-dot::after {
  left: 15px;
  animation-delay: 1s;
}
@keyframes dot-flashing {
  0% {
    background-color: #9face6;
  }
  50%, 100% {
    background-color: #ccc;
  }
}
/*メールアドレスチェック*/
.mail-check {
  background-color: #FDF8E3;
  padding: 35px;
  margin-bottom: 50px;
}

.mail-check-txt {
  border-bottom: 1px solid #4E3A2A;
  font-size: 15px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5px;
}

#mailoutput {
  font-size: 22px;
  word-break: break-all;
  text-align: center;
  margin-top: 0;
}

@media (max-width: 800px) {
  .contact-form table {
    margin: 0 0 30px;
  }
  .contact-form table th,
  .contact-form table td {
    display: block;
    width: 100%;
  }
  .contact-form table th {
    padding: 15px 0 10px;
  }
  .contact-form table td {
    padding: 0 0 15px;
  }
  .contact-form .reserve-date {
    display: block;
  }
  .contact-form .reserve-date .date {
    width: 100%;
    margin: 0 0 10px;
  }
  .contact-form .birth-wrap {
    flex-wrap: wrap;
  }
  .contact-form .birth-wrap .item.year {
    width: 100%;
  }
  .contact-form .submit-btn [type=submit] {
    padding: 15px;
    width: 250px;
  }
  .contact-form .submit-btn [type=submit].back-btn {
    margin-right: 25px;
  }
  .mail-check {
    padding: 15px;
    margin-bottom: 30px;
  }
  #mailoutput {
    font-size: 18px;
  }
}
.contact-check {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}
.contact-check .wpcf7-checkbox .wpcf7-list-item-label {
  color: transparent;
  max-height: 18px;
  font-size: 1rem;
}
.contact-check .wpcf7-checkbox input[type=checkbox] {
  margin: 0;
}
.contact-check .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  max-width: 18px;
  max-height: 18px;
  overflow: hidden;
}
.contact-check .wpcf7-checkbox input[type=checkbox]:checked + span::before {
  top: 3px;
}
.contact-check p {
  line-height: 1.7;
}

.contact-txt {
  text-align: center;
  margin-top: 50px;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .contact-txt {
    text-align: left;
    margin-top: 30px;
  }
}

/*-----------------------------------------------------------
Utility
-----------------------------------------------------------*/
.btn-more {
  width: 320px;
  min-height: 60px;
  background: #F8B626;
  padding: 5px 50px 5px 20px;
  position: relative;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  border-radius: 100px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .btn-more {
    width: 100%;
    min-height: 50px;
    font-size: 1.6rem;
  }
}
.btn-more::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: url(../images/share/btn_arrow.svg) center/contain no-repeat;
}
@media (max-width: 767px) {
  .btn-more::before {
    width: 26px;
    height: 26px;
  }
}

.btn-mail {
  width: 220px;
  min-height: 40px;
  background: #F8B626;
  padding: 5px;
  position: relative;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .btn-mail {
    width: 100%;
  }
}
.btn-mail img {
  width: 24px;
}
.btn-mail.large {
  width: 300px;
  min-height: 60px;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .btn-mail.large {
    width: 100%;
    min-height: 50px;
    font-size: 1.6rem;
  }
}
.btn-mail.large img {
  width: 30px;
}
@media (max-width: 767px) {
  .btn-mail.large img {
    width: 24px;
  }
}

.btn-shop {
  width: 220px;
  min-height: 40px;
  background: #DA4F48;
  padding: 5px;
  position: relative;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
@media (max-width: 767px) {
  .btn-shop {
    width: 100%;
  }
}
.btn-shop img {
  width: 22px;
}
.btn-shop.large {
  width: 320px;
  min-height: 60px;
  font-size: 1.8rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .btn-shop.large {
    width: 100%;
    min-height: 50px;
    font-size: 1.6rem;
  }
}

.btn-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4E3A2A;
}
@media (max-width: 767px) {
  .btn-instagram {
    width: 36px;
    height: 36px;
  }
}
.btn-instagram img {
  width: 22px;
}
@media (max-width: 767px) {
  .btn-instagram img {
    width: 20px;
  }
}

.btn-tel {
  width: 300px;
  min-height: 60px;
  background: #fff;
  padding: 6px 5px 0;
  position: relative;
  font-size: 3.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media (max-width: 767px) {
  .btn-tel {
    width: 100%;
    min-height: 50px;
    padding: 6px 5px 0;
    font-size: 2.6rem;
    gap: 4px;
  }
}
.btn-tel img {
  width: 21px;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .btn-tel img {
    width: 16px;
  }
}

.tel-link {
  display: inline-block;
  line-height: 1;
  font-size: 3.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .tel-link {
    font-size: 3rem;
    padding-left: 22px;
  }
}
.tel-link::before {
  content: "";
  width: 21px;
  height: 28px;
  position: absolute;
  top: 2px;
  left: 0;
  background: url(../images/share/icon_tel.svg) center/contain no-repeat;
}
@media (max-width: 767px) {
  .tel-link::before {
    width: 18px;
    height: 24px;
  }
}
.tel-link:hover {
  opacity: 1;
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.fade {
  transition: 0.5s;
}
.fade:hover {
  opacity: 0.5;
}

.bold, strong {
  font-weight: 700;
}

.underline {
  text-decoration: underline;
}

.txt-red {
  color: #DA4F48;
}

.txt-orange {
  color: #F8B626;
}

.txt-lg {
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .txt-lg {
    font-size: 1.8rem;
  }
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.link {
  text-decoration: underline;
}
.link:hover {
  opacity: 1;
  text-decoration: none;
}

.notice {
  font-size: 13px;
}

.m-auto {
  margin: 0 auto;
}

.u-mb-sm {
  margin-bottom: 15px;
}

.u-mb-md {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .u-mb-md {
    margin-bottom: 20px;
  }
}

.u-mb-lg {
  margin-bottom: 50px;
}

/*------------
アニメーション
--------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}
.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

.splide__arrow {
  background: #4E3A2A;
  height: 50px;
  width: 50px;
  opacity: 1;
}
@media (max-width: 767px) {
  .splide__arrow {
    height: 36px;
    width: 36px;
  }
}
.splide__arrow .splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow svg {
  fill: #fff;
  height: 1em;
  width: 1em;
}/*# sourceMappingURL=style.css.map */