@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Darumadrop+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

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

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

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

caption,
th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --color-main: #E1B605;
  --text-color: #343434;
  --background-color: #fff;
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
  --font-family-en: "Inter", sans-serif;
  --font-size-base-pc: 1.5rem;
  --font-size-base-sp: 1.4rem;
  --font-weight-thin: 100;
  --font-weight-extraLight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-extraBold: 800;
  --font-weight-black: 900;
  --ease-linear: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-inout-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-inout-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-inout-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-inout-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-inout-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-inout-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*----------------------------------------
	Common
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

@media only screen and (max-width: 375px) {
  html {
    font-size: 58%;
  }
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

.en {
  font-family: var(--font-family-en);
}

a {
  color: var(--text-color);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}

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

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-wrapper {
  width: 100vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.l-wrapper::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-wrapper .l-wrapper__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-height: 100dvh;
}
.l-wrapper .l-wrapper__main {
  width: 400px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.l-wrapper .l-wrapper__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-height: 100dvh;
}

@media (max-width: 480px) {
  .l-wrapper .l-wrapper__left,
  .l-wrapper .l-wrapper__right {
    display: none;
  }
  .l-wrapper .l-wrapper__main {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }
}
.l-container {
  padding-left: 6.667%;
  padding-right: 6.667%;
}

.l-header {
  width: 400px;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: calc(50vw - 200px);
  z-index: 100;
}

.menu-open .l-header {
  height: auto;
}

@media (max-width: 480px) {
  .l-header {
    width: 100%;
    left: 0;
  }
}
.l-main {
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.c-button {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  color: #fff;
  background-color: var(--color-main);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1.4rem 2.4rem 1.6rem 2.4rem;
  min-width: 20rem;
  border-radius: 10rem;
  -webkit-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.c-button:hover {
  -webkit-box-shadow: initial;
          box-shadow: initial;
  color: #fff;
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
  text-decoration: none;
}

.input-text {
  width: 100%;
  padding: 1rem 1rem;
  border: none;
  font-size: 1.6rem;
  line-height: 1.65;
}

.input-textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: none;
  font-size: 1.6rem;
}

.input-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-indent: 1rem;
  background: #fff;
  height: 44px;
  vertical-align: middle;
  border: none;
  font-size: 1.6rem;
  width: 100%;
  cursor: pointer;
}

.p-header {
  height: 8rem;
}
.p-header .p-misc-link {
  margin-top: 1.6rem;
}
.p-header .p-misc-link a {
  color: #fff;
}
.p-header .p-header__content {
  width: 100%;
  min-height: 100dvh;
  background-color: #E1B605;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
  height: 100dvh;
  overflow-y: scroll;
  position: absolute;
  top: 0;
  left: 0;
}
.p-header .p-header__logo {
  display: block;
  width: 6.5rem;
  height: 6rem;
  margin: 2rem 0 0 2rem;
}
.p-header .p-header__navi {
  padding: 4rem;
  background: #ffffff url(../img/common/bg_header_content.svg) no-repeat left bottom -4px;
  background-size: 100% auto;
  position: relative;
}
.p-header .p-header__navi::after {
  content: "";
  display: block;
  width: 14rem;
  height: 15rem;
  -webkit-animation: swing-anime 3s steps(2, end) infinite;
          animation: swing-anime 3s steps(2, end) infinite;
  background: url(../img/common/img_boy.png) no-repeat left bottom;
  background-size: contain;
  position: absolute;
  bottom: -2rem;
  right: 1rem;
}
@-webkit-keyframes swing-anime {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@keyframes swing-anime {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
.p-header .p-header__navi .logo {
  width: 13rem;
  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;
  margin-bottom: 2.4rem;
}
.p-header .p-header__navi .p-gnavi {
  width: 60%;
  margin-bottom: 0.8rem;
}
.p-header .p-header__navi .p-gnavi li {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.p-header .p-header__navi .p-gnavi li:not(:last-of-type) {
  border-bottom: 2px dotted #E1B605;
}
.p-header .p-header__information {
  color: #fff;
  padding: 0 2.4rem 4rem 2.4rem;
}
.p-header .p-header__information.p-open-time dl dt span {
  border: 2px solid #fff;
}
.p-header .p-menu-bottom {
  border-top: 1px solid #fff;
  margin-top: 2rem;
  padding-top: 1.6rem;
}

.p-header__cta.p-cta-navi {
  position: absolute;
  top: 37rem;
  right: 1.6rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu-open .p-header__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.menu-open .p-header {
  height: 100dvh;
  overflow-y: scroll;
}
.menu-open .p-header .p-gnavi li.visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.p-footer {
  position: relative;
  width: 100%;
  background-color: #FFF6E5;
}

.p-footer__copyright {
  font-size: 1.2rem;
  font-weight: var(--font-weight-semiBold);
  color: #BEBEBE;
  text-align: center;
  padding: 4rem;
}

.p-footer__gotop {
  position: absolute;
  top: 4.4rem;
  right: 6%;
  width: 3rem;
  height: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.p-footer__gotop img {
  width: 3rem;
  height: 1.4rem;
}

.p-loading {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #fff;
  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;
  opacity: 1;
}
.p-loading .p-loading__logo {
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: opacity 1s linear 0s, -webkit-transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 1s linear 0s, -webkit-transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 1s linear 0s, transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 1s linear 0s, transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.is_loaded .p-loading {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 1s linear 2.1s;
  transition: 1s linear 2.1s;
}
.is_loaded .p-loading .p-loading__logo {
  -webkit-animation: loadingLogoAnime 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
          animation: loadingLogoAnime 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
}

@-webkit-keyframes loadingLogoAnime {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes loadingLogoAnime {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
.p-gnavi ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: var(--font-weight-medium);
  padding: 0.8rem 0;
}
.p-gnavi ul li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-main);
  text-decoration: none;
}

.p-menu-btn {
  position: fixed;
  top: 2.4rem;
  right: calc(50vw - 200px + 20px);
  z-index: 1001;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-menu-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  position: absolute;
  z-index: 1;
  left: 4px;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.p-menu-btn span.l1 {
  top: 10px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  background: url(../img/common/bg_menu_btn_1.svg) no-repeat center;
}

.p-menu-btn span.l2 {
  top: 18px;
  background: url(../img/common/bg_menu_btn_2.svg) no-repeat center;
}

.p-menu-btn span.l3 {
  top: 26px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  background: url(../img/common/bg_menu_btn_3.svg) no-repeat center;
}

.menu-open .p-menu-btn span.l1,
.menu-open .p-menu-btn span.l3 {
  top: 18px;
  left: 5px;
}
.menu-open .p-menu-btn span.l1 {
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
}
.menu-open .p-menu-btn span.l3 {
  -webkit-transform: rotate(-210deg);
          transform: rotate(-210deg);
}
.menu-open .p-menu-btn span.l2 {
  display: none;
}

@media (max-width: 480px) {
  .p-menu-btn {
    right: 2rem;
  }
}
.p-post-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 2rem 0;
}
.p-post-list .item:hover {
  text-decoration: none;
}
.p-post-list .item:hover > picture img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
.p-post-list .item:hover .content h3 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-main);
}
.p-post-list .item:last-of-type {
  border-bottom: 1px none;
}
.p-post-list .item > picture {
  width: 15rem;
  height: 10rem;
  overflow: hidden;
  display: block;
  border-radius: 0.6rem;
  overflow: hidden;
  position: relative;
}
.p-post-list .item > picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-post-list .item .content {
  width: calc(100% - 17rem);
}
.p-post-list .item .content .meta {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1;
}
.p-post-list .item .content .meta .date {
  font-family: var(--font-family-en);
  margin-bottom: 0.64rem;
}
.p-post-list .item .content .meta .category span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: var(--font-weight-bold);
  padding: 0.3rem 1.4rem 0.4rem 1.4rem;
  border-radius: 2rem;
  background-color: var(--color-main);
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-post-list .item .content h3 {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-post-list .item .content .author {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.6rem;
}
.p-post-list .item .content .author::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background-color: var(--color-main);
  margin-right: 1rem;
}
.p-post-list .item .content .author span {
  font-size: 1.2rem;
  line-height: 1;
}

.p-post-head {
  padding-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.p-post-head .title {
  font-size: 2.2rem;
  line-height: 1.45;
}
.p-post-head .meta {
  margin-bottom: 1.6rem;
  font-size: 1rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 1.6rem;
}
.p-post-head .meta .date {
  font-family: var(--font-family-en);
  margin-bottom: 0.8rem;
}
.p-post-head .meta .category span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: var(--font-weight-bold);
  padding: 0.3rem 1.4rem 0.4rem 1.4rem;
  border-radius: 2rem;
  background-color: var(--color-main);
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-post-head__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 0.8rem;
}
.p-post-head__author .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
}
.p-post-head__author .text .label {
  font-size: 1.2rem;
  color: var(--color-main);
  margin-bottom: 0.56rem;
}
.p-post-head__author .text .name {
  font-size: 1.6rem;
}
.p-post-head__author picture {
  display: block;
  width: 8rem;
  border: 2px solid var(--color-main);
  border-radius: 10rem;
  overflow: hidden;
}
.p-post-head__author picture img {
  width: 100%;
}

.p-post-intro {
  text-align: center;
  margin-bottom: 3.2rem;
}

.p-post-body {
  padding-bottom: 1rem;
  /* 見出し */
  /* 段落 */
  /* リスト */
  /* 画像 */
  /* レイアウト */
  /* カラム */
  /* 引用 */
  /* 表 */
  /* ギャラリー */
  /* 詩 */
  /* ボタン */
}
.p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
  line-height: 1.5;
  margin-bottom: 2rem;
}
.p-post-body h1 {
  font-size: 2.8rem;
}
.p-post-body h2 {
  font-size: 2.2rem;
}
.p-post-body h3 {
  font-size: 1.8rem;
}
.p-post-body h4 {
  font-size: 1.6rem;
}
.p-post-body h5 {
  font-size: var(--font-size-base-pc);
}
.p-post-body p {
  margin-bottom: 2.4rem;
}
.p-post-body ul {
  margin-bottom: 2.4rem;
}
.p-post-body ul li {
  line-height: 1.65;
  position: relative;
  margin-left: 0.6rem;
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
}
.p-post-body ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  top: 1.2rem;
}
.p-post-body .wp-block-image {
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-image figcaption {
  font-size: 1.4rem;
  color: #A0A0A0;
  margin: 0.4rem 0 0 0;
}
.p-post-body .wp-block-media-text {
  font-size: 1.4rem;
}
.p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding: 0 8% 0 0;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content {
  padding: 0 0 0 8%;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content .has-large-font-size {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.p-post-body .wp-block-columns {
  font-size: 1.4rem;
}
.p-post-body .wp-block-quote {
  overflow-wrap: break-word;
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
}
.p-post-body .wp-block-quote p {
  border-left: 2px solid var(--text-color);
  padding: 0 0 0 1.4rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.p-post-body .wp-block-quote cite {
  font-size: 1.2rem;
  padding: 0 0 0 2rem;
  color: #acacac;
}
.p-post-body .wp-block-table {
  font-size: 1.4rem;
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-table table {
  border-color: #C7C7C7;
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr {
  border-color: #C7C7C7;
  border-bottom: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr td {
  border-color: #C7C7C7;
  border-right: 1px solid #C7C7C7;
  padding: 1rem 1.4rem;
}
.p-post-body .wp-block-table table tr th {
  border-color: #C7C7C7;
}
.p-post-body .wp-block-table figcaption {
  font-size: 1.2rem;
  color: #A0A0A0;
  margin-top: 0.4rem;
}
.p-post-body .wp-block-gallery.has-nested-images figcaption {
  font-size: 1.2rem;
  color: #A0A0A0;
  margin: 0;
  position: relative !important;
  background: none !important;
  color: #000 !important;
  font-size: 12px !important;
  padding: 0 !important;
}
.p-post-body .wp-block-verse {
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-buttons .wp-block-button {
  margin-bottom: 1rem;
}
.p-post-body .wp-block-button__link {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  color: #fff;
  background-color: var(--color-main);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1rem 1.6rem 1.2rem 1.6rem;
  border-radius: 10rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
}
.p-post-body .wp-block-button__link:hover {
  color: #fff;
  -webkit-box-shadow: initial;
          box-shadow: initial;
  text-decoration: none;
}

/* 区切り線 */
.wp-block-separator {
  border-bottom: none;
  margin: 2.4rem 0;
  border-color: #B1B1B1;
}

@media (max-width: 480px) {
  .p-post-body {
    /* 画像 */
    /* レイアウト */
  }
  .p-post-body .wp-block-image {
    margin-bottom: 2.4rem;
  }
  .p-post-body .wp-block-image.size-full {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .p-post-body .wp-block-image figcaption {
    font-size: 1.4rem;
    color: #A0A0A0;
    margin: 0.4rem 0 0 0;
  }
  .p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post-body .wp-block-media-text .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .post-office {
    /* 画像 */
  }
  .post-office .wp-block-image.size-full {
    width: 100%;
    position: relative;
    left: initial;
    right: initial;
    margin-left: initial;
    margin-right: initial;
  }
}
.p-post-navi {
  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: 4rem 0 3rem 0;
}
.p-post-navi.back-navi {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-post-navi.paging-navi {
  font-family: var(--font-family-en);
}
.p-post-navi.paging-navi a {
  display: block;
  color: #9F9F9F;
}
.p-post-navi.paging-navi a:hover {
  opacity: 0.7;
}
.p-post-navi.paging-navi .wp-pagenavi {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.p-post-navi.paging-navi .wp-pagenavi span,
.p-post-navi.paging-navi .wp-pagenavi a {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border: none;
  padding: 0.3rem;
  margin: 0 1.5rem 1rem 1.5rem;
}
.p-post-navi.paging-navi .wp-pagenavi .previouspostslink, .p-post-navi.paging-navi .wp-pagenavi .nextpostslink {
  text-indent: -9999px;
  width: 3.6rem;
  height: 3.6rem;
}
.p-post-navi.paging-navi .wp-pagenavi .previouspostslink {
  background: url(../img/common/icon_allow_prev.svg) no-repeat center;
  background-size: contain;
}
.p-post-navi.paging-navi .wp-pagenavi .nextpostslink {
  background: url(../img/common/icon_allow_next.svg) no-repeat center;
  background-size: contain;
}
.p-post-navi.paging-navi .wp-pagenavi a:hover,
.p-post-navi.paging-navi .wp-pagenavi span.current {
  border: none;
}

.p-404 {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.p-404 h1 {
  line-height: 1;
  margin: 0 auto 8rem auto;
  font-family: var(--font-family-en);
  font-weight: 700;
}

.p-404 h1 span {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.p-404 h1 span:first-of-type {
  font-size: 10rem;
  margin-bottom: 1rem;
}

.p-404-content p {
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}

.p-404-back-navi {
  margin-top: 4rem;
}

.p-404-back-navi a {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 480px) {
  .p-404 h1 span:first-of-type {
    font-size: 12rem;
    margin-bottom: 1rem;
  }
  .p-404 h1 span {
    font-size: 2.6rem;
  }
}
.p-top-visual {
  width: 100%;
  height: 100dvh;
  max-height: 900px;
  position: relative;
  background-image: url(../img/top/img_main_visual.png);
  background-position: center top 31rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-top-visual .logo {
  position: absolute;
  left: 4rem;
  top: 6.4rem;
}
.p-top-visual .logo a {
  display: block;
  width: 14rem;
}
.p-top-visual .logo a img {
  width: 100%;
}
.p-top-visual .copy {
  width: 6.4rem;
  position: absolute;
  right: 22%;
  top: 10rem;
}
.p-top-visual > .content {
  width: 88%;
  position: absolute;
  bottom: 2.4rem;
  right: 2rem;
  z-index: 99;
  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-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.p-top-visual .p-post-list {
  width: 100%;
}
.p-top-visual .p-post-list > h3 {
  color: var(--color-main);
  font-family: "Darumadrop One", sans-serif;
  font-size: 2.4rem;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  margin-bottom: 1rem;
}
.p-top-visual .p-post-list .item {
  background-color: #fff;
  -webkit-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 2.4rem 1.4rem 2rem 1.8rem;
}
.p-top-visual .p-post-list .item > .content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
}
.p-top-visual .p-post-list .item > .content .meta {
  width: 7rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-visual .p-post-list .item > .content h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: -0.4rem;
}

@media (max-width: 480px) {
  .p-top-visual {
    background-position: center top 27rem;
  }
  .p-top-visual .logo {
    top: 4rem;
  }
  .p-top-visual .logo a {
    width: 13rem;
  }
}
.p-top-about {
  background-image: url(../img/top/bg_top_about.svg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 14rem;
  padding-bottom: 6.4rem;
}
.p-top-about__content .bg_color {
  background-color: #FFF6E5;
}
.p-top-about__content strong {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #ECD883));
  background: linear-gradient(transparent 0%, #ECD883 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-weight: 500;
}
.p-top-about__content p {
  padding-bottom: 1.6rem;
}
.p-top-about__content figure {
  margin-top: -1.6rem;
  margin-bottom: 3.2rem;
}

.p-top-message {
  background-image: url(../img/top/bg_top_about.svg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 14rem;
}
.p-top-message__bg-group {
  background-color: #FFF6E5;
  background-image: url(../img/top/bg_top_message.svg);
  background-position: center top 12.4rem;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-bottom: 8rem;
}

.p-top-message__profile {
  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;
  margin-bottom: 2.4rem;
}
.p-top-message__profile .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1rem;
}
.p-top-message__profile .text .title {
  font-size: 1.2rem;
  margin-right: 1rem;
  padding-left: 1.6rem;
}
.p-top-message__profile .text .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-message__profile .text .name span {
  display: block;
  line-height: 1;
}
.p-top-message__profile .text .name span.jp {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.8rem;
}
.p-top-message__profile .text .name span.en {
  font-size: 1rem;
}
.p-top-message__profile picture {
  width: 50%;
}

.p-top-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top-message__content .title {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
  text-indent: 0.6rem;
  width: 5.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
.p-top-message__content .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-message__content .text p {
  margin-bottom: 1.6rem;
  letter-spacing: 0;
}

.p-top-blog {
  background-image: url(../img/top/bg_top_blog.svg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 14rem;
  padding-bottom: 6.4rem;
}
.p-top-blog__navi {
  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;
  margin-top: 4rem;
}
.p-top-blog__navi .c-button {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.p-top-information {
  background-image: url(../img/top/bg_top_about.svg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 14rem;
}
.p-top-information__bg-group {
  background-color: #FFF6E5;
  padding-bottom: 2rem;
}

.p-top-information__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 7.2rem;
}
.p-top-information__content.price .title::after {
  background-color: #00964F;
}
.p-top-information__content.homecare .title::after {
  background-color: #51B1D0;
}
.p-top-information__content.area {
  padding-bottom: 2.4rem;
}
.p-top-information__content.area .title::after {
  background-color: #DA7044;
}
.p-top-information__content .title {
  font-size: 2rem;
  letter-spacing: 0.16em;
  font-weight: var(--font-weight-semiBold);
  text-indent: 0.6rem;
  width: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  position: relative;
}
.p-top-information__content .title::after {
  content: "";
  display: block;
  width: 1.5px;
  height: 6rem;
  background-color: #000;
  position: absolute;
  top: 0.7rem;
  right: 1.4rem;
}
.p-top-information__content .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-information__content .text h3 {
  font-size: 1.7rem;
  font-weight: var(--font-weight-semiBold);
  margin-bottom: 1rem;
}
.p-top-information__content .text p {
  margin-bottom: 1.6rem;
  letter-spacing: 0;
}
.p-top-information__content .text p.t-large {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}
.p-top-information__content .text p.attention {
  font-size: 1.4rem;
  line-height: 1.65;
}
.p-top-information__content .text p:last-of-type {
  margin-bottom: 0;
}
.p-top-information__content .text nav {
  margin-top: 2.4rem;
  width: 23rem;
}
.p-top-information__content .text nav .c-button img {
  width: 2.2rem;
  height: auto;
  margin-right: 0.6rem;
}

.p-top-contact {
  background-color: #fff;
  background-image: url(../img/top/bg_top_blog.svg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 14rem;
  padding-bottom: 15rem;
}
.p-top-contact .p-post-intro {
  margin-bottom: 1.6rem;
}

.p-top-contact__content {
  width: 50%;
  min-width: 230px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-main);
  color: #fff;
  border-radius: 0.8rem;
  padding: 4rem 3.2rem 2.4rem 3.2rem;
  line-height: 1.2;
  position: relative;
}
.p-top-contact__content::after {
  content: "";
  display: block;
  width: 13rem;
  height: 25rem;
  background-image: url(../img/top/img_illust_3.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -15rem;
  right: -5rem;
}
.p-top-contact__content dl.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top-contact__content dl.sns-list dt {
  width: 3.2rem;
}
.p-top-contact__content dl.sns-list dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-contact__content dl.sns-list dd .sns-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1rem;
}
.p-top-contact__content dl.sns-list dd .sns-navi a {
  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: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 10rem;
}
.p-top-contact__content dl.sns-list dd .sns-navi a img {
  width: 20px;
  height: 20px;
}
.p-top-contact__content dl dt {
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
}
.p-top-contact__content dl dd {
  margin-bottom: 2rem;
}
.p-top-contact__content dl dd a {
  color: #fff;
  text-decoration: underline;
}
.p-top-contact__content dl dd .t-large {
  font-size: 2.2rem;
  font-weight: var(--font-weight-medium);
}

.p-top-access {
  background-image: url(../img/top/bg_top_about.svg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 20rem;
}
.p-top-access .p-misc-link {
  margin-top: 2rem;
  color: #666;
}

.p-top-access__bg-group {
  background-color: #FFF6E5;
  padding-top: 2.4rem;
}
.p-top-access__bg-group .address {
  line-height: 1.45;
  padding-bottom: 2.4rem;
}
.p-top-access__bg-group .tel {
  color: #E1B605;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-weight-medium);
  margin-bottom: 3.2rem;
}
.p-top-access__bg-group .tel span {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  margin-right: 1rem;
}
.p-top-access__bg-group .tel a.t-large {
  font-size: 3.2rem;
  line-height: 1;
  color: #E1B605;
  text-decoration: underline;
}

.p-top-access__information {
  position: relative;
}
.p-top-access__information::after {
  content: "";
  display: block;
  width: 13rem;
  height: 14rem;
  -webkit-animation: swing-anime 3s steps(2, end) infinite;
          animation: swing-anime 3s steps(2, end) infinite;
  background: url(../img/common/img_boy.png) no-repeat left bottom;
  background-size: contain;
  position: absolute;
  top: -3rem;
  right: -2rem;
}
@keyframes swing-anime {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

.top-page .l-main {
  background-image: url(../img/top/bg_top.svg);
  background-position: center top 12rem;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.top-page .p-header__logo {
  display: none;
}

.sub-page .l-main {
  background-image: url(../img/common/bg_post.svg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #FFF6E5;
  padding-top: 20rem;
}

.p-section-title {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 4rem;
}
.p-section-title span {
  display: block;
}
.p-section-title .jp {
  font-size: 2.3rem;
  font-weight: 500;
}
.p-section-title .en {
  font-family: "Darumadrop One", sans-serif;
  font-weight: normal;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-main);
}

.p-cta-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.p-cta-navi a {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 10rem;
  color: #fff;
  background-color: var(--color-main);
  -webkit-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-cta-navi a:hover {
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  text-decoration: none;
}
.p-cta-navi a figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
}
.p-cta-navi a figure img {
  width: 100%;
  height: auto;
}
.p-cta-navi a span {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
}
.p-cta-navi.fixed {
  position: fixed;
  bottom: 2rem;
  right: calc(50vw - 200px + 20px);
  z-index: 99;
}

.p-open-time dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.6rem;
}
.p-open-time dl dt {
  width: 8rem;
}
.p-open-time dl dt span {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--color-main);
  padding: 0.2rem 1rem 0.4rem 1rem;
  border-radius: 4rem;
}
.p-open-time dl dd {
  width: calc(100% - 9.6rem);
  font-size: 1.7rem;
  line-height: 1.45;
}
.p-open-time dl dd .tel {
  font-size: 2.2rem;
}
.p-open-time .attention {
  font-size: 1.4rem;
  line-height: 1.65;
}

.p-wrapper-right {
  width: calc((100% - 400px) / 2);
  height: 100%;
  position: fixed;
  background-color: #FFF7E9;
  overflow: hidden;
}
.p-wrapper-right::before {
  content: "";
  display: block;
  width: 100%;
  min-width: 500px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: url(../img/common/bg_wrap_right.png);
  background-repeat: no-repeat;
  background-position: left bottom 4rem;
  background-size: 100% auto;
}
.p-wrapper-right::after {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  background-color: #E1B605;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-wrapper-right .inner {
  width: 350px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-bottom: 4rem;
}
.p-wrapper-right .p-wrapper-right__content {
  position: relative;
}
.p-wrapper-right .p-wrapper-right__content .p-gnavi {
  width: 170px;
}
.p-wrapper-right .p-wrapper-right__content .p-gnavi li:not(:last-of-type) {
  border-bottom: 2px dotted #E1B605;
}
.p-wrapper-right .p-wrapper-right__content .p-cta-navi {
  position: absolute;
  bottom: 0;
  right: 6.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-wrapper-right .p-menu-bottom {
  padding-top: 30rem;
  color: #fff;
}
.p-wrapper-right .cloud {
  display: block;
  position: absolute;
  z-index: -2;
}
.p-wrapper-right .cloud.cloud-3 {
  height: 10rem;
  top: 25%;
  left: 4%;
  -webkit-animation: cloudFlow 10s ease infinite;
          animation: cloudFlow 10s ease infinite;
}
.p-wrapper-right .cloud.cloud-4 {
  height: 11rem;
  top: 40%;
  right: 4%;
  -webkit-animation: cloudFlow 20s ease infinite;
          animation: cloudFlow 20s ease infinite;
}

@media (min-width: 481px) and (max-width: 1199px) {
  .p-wrapper-right .inner {
    display: none;
  }
}
.p-wrapper-left {
  width: calc((100% - 400px) / 2);
  height: 100%;
  position: fixed;
  background-color: #FFF7E9;
  overflow: hidden;
}
.p-wrapper-left::before {
  content: "";
  display: block;
  width: 100%;
  min-width: 500px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: url(../img/common/bg_wrap_left.png);
  background-repeat: no-repeat;
  background-position: left bottom 4rem;
  background-size: 100% auto;
}
.p-wrapper-left::after {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  background-color: #E1B605;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-wrapper-left .inner {
  width: 350px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-bottom: 4rem;
}
.p-wrapper-left .p-wrapper-left__content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-wrapper-left .p-wrapper-left__content .logo {
  width: 16rem;
  padding-bottom: 28rem;
}
.p-wrapper-left .p-wrapper-left__content .p-open-time {
  color: #fff;
}
.p-wrapper-left .p-wrapper-left__content .p-open-time dl dt span {
  border: 2px solid #fff;
  background-color: var(--color-main);
}
.p-wrapper-left .cloud {
  display: block;
  position: absolute;
  z-index: -2;
}
.p-wrapper-left .cloud.cloud-1 {
  height: 10rem;
  top: 35%;
  left: 4%;
  -webkit-animation: cloudFlow 8s ease infinite;
          animation: cloudFlow 8s ease infinite;
}
.p-wrapper-left .cloud.cloud-2 {
  height: 11rem;
  top: 30%;
  right: 5%;
  -webkit-animation: cloudFlow 13s ease infinite;
          animation: cloudFlow 13s ease infinite;
}

@-webkit-keyframes cloudFlow {
  0%, to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
}

@keyframes cloudFlow {
  0%, to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
}
@media (min-width: 481px) and (max-width: 1199px) {
  .p-wrapper-left .inner {
    display: none;
  }
}
.p-menu-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 1rem;
}
.p-menu-bottom .address {
  line-height: 1.45;
}
.p-menu-bottom .sns-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.p-menu-bottom .sns-navi a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
.p-menu-bottom .sns-navi a img {
  width: 100%;
  height: auto;
}

.p-misc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2rem;
}
.p-misc-link a {
  display: block;
  width: 50%;
  text-align: center;
  text-decoration: underline;
}

.p-page-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 4rem;
  padding-top: 4rem;
}
.p-page-back .c-button {
  width: 20rem;
}

.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.fadeIn.inview {
  opacity: 1;
}

.fadeUpIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadeUpIn.inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.maskIn {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.maskIn.inview {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.blurIn {
  -webkit-animation-name: blurInAnime;
          animation-name: blurInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-mobile {
  display: block;
}

.hide-mobile-inline {
  display: inline-block;
}

@media (max-width: 480px) {
  .show-mobile {
    display: block;
  }
  .show-mobile-inline {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
  .hide-mobile-inline {
    display: none;
  }
  .br-mobile {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */