@charset "utf-8";
/* 
@media screen and (max-width: 1080px) {
@media screen and (max-width: 960px) {
@media screen and (max-width: 480px) {
*/
:root {
  --color-white: #ffffff;
  --color-black: #4b4747;
  --color-black-dark: #070707;
  --color-black-light: #736f6f;
  --color-pink: #ffcec7;
  --color-pink-white: #fde8e5;
  --color-pink-red: #ee7666;
  --color-orange: #e87e49;
  --color-bg-white: #ffffff;
  --color-bg-black: #292929;
  --color-yellow: #fff26b;

  --padding-x: 7.5vw;
  --padding-x-tb: 6.66vw;
  --padding-x-sp: 20px;

  --box-mt: 72px;
  --box-mt-sp: 40px;

  --container-sm: 944px;
  --container-m: 1200px;

  --radius-s: 3px;
}
@font-face {
  font-family: "YourFont";
  src: url("YourFont.woff2") format("woff2");
  font-display: swap;
}
body {
  font-size: 1rem;
  color: var(--color-black);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0;
}

header {
  display: flex;
  justify-content: flex-end;
  padding: 10px 15px;
  background: #fff;
  box-sizing: border-box;
  align-items: center;
}

a {
  text-decoration: none;
  color: var(--color-black);
}
header h2 img {
  width: 240px;
  padding: 5px 0 0;
}

header h2 {
  margin-right: auto;
}
.sub-menu.hover-open {
  position: relative;
}
.sub-menu-sp {
  padding: 0 !important;
}

@media screen and (min-width: 768px) {
  .has-hover_submenu .sub-menu-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    width: fit-content;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  .has-hover_submenu:hover .sub-menu-wrap {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .has-hover_submenu .support-link {
    display: flex;
    align-items: center;
  }
  .has-hover_submenu svg {
    width: 18px;
    height: auto;
    transform: rotate(0deg);
    padding-bottom: 2px;
  }
  .has-hover_submenu:hover svg {
    transform: rotate(180deg);
    padding-bottom: 1px;
  }
  .has-hover_submenu ul.sub-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 16px 20px 15px;
    margin-top: 35px;
    gap: 15px;
    background-color: #fff2f0;
    border-radius: 4px;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    width: 198px;
  }

  .sub-menu::before {
    position: absolute;
    top: -8px;
    left: 25px;
    border-top: 2px solid transparent;
    border-right: 2px solid var(--color-white);
    background-color: var(--color-white);
    transform: rotate(45deg);
    content: "";
  }
  .sub-menu_list {
    margin-right: 0 !important;
    letter-spacing: 0.07em;
    white-space: nowrap;
  }
  .sub-menu_link {
    padding: 0.75em 0px 0px;
  }
}
@media screen and (max-width: 960px) {
  p {
    font-size: 0.875rem;
  }
}
.c-hover:hover {
  opacity: 0.7;
  transition: transform 0.3s ease-out;
}

p {
  letter-spacing: 0.05em;
}
/* fonts */
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-old-mincho-black {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}
/* common */
img {
  width: 100%;
  border-radius: var(--radius-s);
}
.box-inner {
  max-width: var(--container-m);
  margin-inline: auto;
  padding: 80px var(--padding-x) 82px;
}
.box-inner.box-sm {
  max-width: var(--container-sm);
}
@media screen and (max-width: 1000px) {
  .box-inner {
    padding: 62px var(--padding-x-tb) 64px;
  }
}
@media screen and (max-width: 480px) {
  .box-inner {
    padding: 62px var(--padding-x-sp) 64px;
  }
}
.box-txt {
  line-height: 1.75;
  max-width: 720px;
}
@media screen and (max-width: 960px) {
  .box-txt {
    margin-left: 5px;
    max-width: 100%;
  }
}

.c-heading {
  position: relative;
  width: 92%;
  max-width: 450px;
  margin-bottom: 0.875rem;
}
.c-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background-color: var(--color-pink-red);
}
.c-heading::after {
  content: "";
  position: absolute;
  width: 38px;
  transform: translateY(-50%) rotate(55deg);
  transform-origin: right center;
  bottom: -18%;
  right: 0;
  height: 3px;
  background-color: var(--color-pink-red);
}
.c-heading-bg {
  font-size: 4rem;
  color: var(--color-pink);
  opacity: 0.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
  .c-heading-bg {
    font-size: 3rem;
  }
}
@media screen and (max-width: 820px) {
  .c-heading-bg {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .c-heading {
    width: 100%;
  }
  .c-heading-bg {
    font-size: 2.75rem;
    color: var(--color-pink);
    opacity: 0.5;
    letter-spacing: 0.05em;
  }
  .c-heading::after {
    bottom: -23%;
  }
}
.c-bg-pink .c-heading-bg {
  color: var(--color-white);
  opacity: 0.3;
}
.c-head_2 {
  position: absolute;
  font-size: 2rem;
  font-weight: 500;
  z-index: 1;
  bottom: 0;
  width: fit-content;
}

.c-head_3 {
  font-size: 1.225rem;
}
.c-txt {
  line-height: 1.7;
  text-align: justify;
}
@media screen and (max-width: 800px) {
  .c-head_2 {
    font-size: 1.75rem;
  }
  .c-head_3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .c-head_2 {
    font-size: 1.375rem;
  }
  .c-head_3 {
    font-size: 1.125rem;
  }
  .c-txt {
    font-size: 0.875rem;
  }
}

.txt-bold {
  font-size: 140%;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.txt-strong {
  margin-top: var(--txt-mt-m);
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .txt-strong {
    font-size: 1.125rem;
  }
}
.txt-center {
  text-align: center;
}
.reverse {
  flex-direction: row-reverse;
}
.c-txt-white {
  color: var(--color-white);
}
.c-txt-pink-red {
  color: var(--color-pink-red);
}
.txt-black-dark {
  color: var(--color-black-dark);
}
.c-bg-white {
  background: var(--color-bg-white);
}
.c-bg-pink {
  background-image: linear-gradient(
    rgba(245, 185, 119, 0.77),
    rgb(238, 118, 102)
  );
}
.c-bg-pink-red {
  background: var(--color-pink-red);
}

.c-bg-orange {
  background: var(--color-orange);
}
.border-b {
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-white);
}
.border-b_black {
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-black-light);
}
@media screen and (max-width: 960px) {
  .border-b,
  .border-b_black {
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
}
.btn {
  min-width: 200px;
  text-align: center;
}
.c-btn {
  display: inline-block;
  border: 1px solid var(--color-white);
  margin: 32px auto 0;
  padding: 15px 2vw;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
.c-btn:hover {
  background: var(--color-bg-white);
  color: var(--color-black);
}
@media screen and (max-width: 960px) {
  .c-btn {
    display: block;
    width: fit-content;
    margin: 32px auto 0;
    padding: 15px 4.5vw;
    border-radius: var(--radius-s);
  }
}
.c-decoLine {
  position: relative;
}
.c-decoLine::after {
  background-color: var(--color-pink-red);
  bottom: -4px;
  content: "";
  height: 0.8px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s ease-out;
  width: 100%;
}
.c-decoLine:hover::after {
  transform: scale(1, 1);
}
.pc-none {
  display: none;
}
.sp-none {
  display: block;
}
@media screen and (max-width: 960px) {
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
}
/* catch */
.catch_box h1 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
  font-weight: bold;
  font-size: clamp(1.5rem, 1.302rem + 0.93vw, 2rem);
  line-height: 1.55;
  color: var(--color-white);
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.45);
}
@media screen and (max-width: 768px) {
  .catch_box h1 {
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

/* c-parts */
.c-box_container {
  margin-top: var(--box-mt);
}
@media screen and (max-width: 768px) {
  .c-box_container {
    margin-top: var(--box-mt-sp);
  }
}
.c-box_inner {
  max-width: var(--container-m);
  margin-inline: auto;
  padding-inline: var(--padding-x);
}
@media screen and (max-width: 768px) {
  .c-box_inner {
    padding-inline: var(--padding-x-tb);
  }
}
@media screen and (max-width: 400px) {
  .c-box_inner {
    padding-inline: var(--padding-x-sp);
  }
}
.c-box_layer {
  position: relative;
  border-radius: 100px 100px 0 0;
}

.c-box_layer::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: calc(-1 * var(--box-mt));
  width: 100%;
  height: 100%;
}
.c-box_layer .c-box_inner {
  padding-block: 4rem calc(4rem + 2px);
  padding-inline: var(--padding-x);
}
@media screen and (max-width: 820px) {
  .c-box_layer {
    position: relative;
    border-radius: 45px 45px 0 0;
  }
  .c-box_layer .c-box_inner {
    padding-block: 3rem calc(0rem + 2px);
    padding-inline: var(--padding-x-tb);
  }
}
@media screen and (max-width: 400px) {
  .c-box_layer .c-box_inner {
    padding-inline: var(--padding-x-sp);
  }
}
.c-2column {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .c-2column {
    flex-direction: column;
  }
}
.c-2column_wrap {
  width: 50%;
}
@media screen and (max-width: 820px) {
  .c-2column_wrap {
    width: 100%;
  }
}
.c-img-wrap img {
  aspect-ratio: 6/4;
}
.c-contents-container {
  display: flex;
  gap: 8%;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .c-contents-container {
    gap: 5%;
  }
}
@media screen and (max-width: 960px) {
  .c-contents-container {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.c-contents-container:not(:last-child) {
  margin-bottom: 80px;
}
.c-contents-wrap {
  width: 49.5%;
}
@media screen and (max-width: 960px) {
  .c-contents-wrap {
    width: 100%;
  }
  .c-contents-container:not(:last-child) {
    margin-bottom: 72px;
  }
}
.c-single-wrap {
  width: 55%;
}
@media screen and (max-width: 960px) {
  .c-single-wrap {
    width: 100%;
  }
}
.c-contents-wrap .catch-ttl {
  padding-bottom: 16px;
  margin-bottom: 24px;
}

/*ふわっと表示*/

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.4s ease-in;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up-list {
  transition: 0.8s ease;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}
.scroll_up-list.on {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .scroll_up {
    transform: translateY(30px);
    opacity: 0;
  }
  .scroll_up-list {
    transform: translateY(30px);
    opacity: 0;
  }
}
/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 960px) {
  header {
    padding: 0 0 0 3px;
    height: 82px;
  }
  header h2 img {
    width: 200px;
    padding: 3px 0 0;
  }
}

/*グローバルナビ*/

#g_nav {
  display: flex;
  height: 100%;
}

#g_nav ul {
  display: flex;
  align-items: center;
}

#g_nav li {
  position: relative;
  margin-right: 1rem;
  list-style: none;
  font-size: 0.875rem;
}
#g_nav li::after {
  background-color: var(--color-black);
  bottom: -4px;
  content: "";
  height: 0.8px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s ease-out;
  width: 100%;
}
#g_nav li:hover::after {
  transform: scale(1, 1);
}

#g_nav li span {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}

#g_nav .contact {
  background: var(--color-pink-red);
  color: #fff;
  align-content: center;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  border-radius: 3px;
  margin-block: 4px;
}
#g_nav .contact:hover {
  opacity: 0.8;
  transition: transform 0.3s ease-out;
}

#g_nav .contact a {
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 0.2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0.875rem 1.125rem;
}

#g_nav .contact a i {
  font-size: 1.1rem;
  padding-bottom: 1px;
}

/*固定メニュー*/

header.fixed {
  display: flex;
  justify-content: flex-end;
  padding: 10px 15px;
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffffb8;
  z-index: 1000;
  height: 84px;
}

header.fixed h2 img {
  padding: 0;
}

header.fixed #g_nav li {
  font-size: 1rem;
  margin-right: 1rem;
}

header.fixed #g_nav li span {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
}

header.fixed #g_nav .contact a {
  color: #fff;
  letter-spacing: -1px;
}

@media screen and (max-width: 960px) {
  #g_nav {
    display: none;
  }
}

.hamburger {
  display: none;
}

@media screen and (max-width: 960px) {
  .hamburger {
    display: block;
  }
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  position: fixed;
  z-index: 1001;
  right: 10px;
  top: 11px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  text-align: center;
  background: var(--color-pink-red);
}
.hamburger span {
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  left: 15px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 16px;
}
.hamburger span:nth-child(2) {
  top: 26px;
}
.hamburger span:nth-child(3) {
  top: 36px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 25px;
  left: 15px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 25px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  overflow-y: auto;
  z-index: 1000;
  top: 0;
  left: 0;
  color: #fff;
  background: var(--color-pink-red);
  text-align: center;
  width: 100%;
  opacity: 0;
  display: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100%;
  margin-bottom: 40px;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 64px 0 0 0;
  width: 100%;
  height: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}

nav.globalMenuSp ul li span {
  font-size: 1.5rem;
  margin-right: 5px;
}
/* nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
} */
nav.globalMenuSp ul li.globalMenuSp_item:hover {
  background: #ddd;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 0.85em 50px;
  text-decoration: none;
  line-height: 1.2;
}
.globalMenuSp_item .contact-inner {
  margin-top: 1.6em;
}
@media screen and (max-width: 960px) {
  .globalMenuSp .contact {
    padding: 1em 0;
  }
  .globalMenuSp .contact a {
    font-size: 1.3rem;
    font-weight: bold;
    padding: 12px 40px 14px;
    display: block;
  }
  .contact-inner {
    width: fit-content;
    max-width: 320px;
    margin-inline: auto;
    border: 1px solid #ffffff;
  }
  /* nav.globalMenuSp ul li .contact-inner a {
    color: var(--color-black);
  } */
  .contact-inner .u-icon {
    margin-right: 6px;
  }
  .sub-menu-wrap-sp {
    padding: 1em 50px;
  }
  .globalMenuSp_item-list {
    padding: 0.85em 0px;
  }
  nav.globalMenuSp ul li span {
    font-size: 1rem;
    display: block;
    margin-right: auto;
  }
  nav.globalMenuSp ul li a {
    font-size: 0.875rem;
    padding: 1em 0px;
  }
  .sub-menu-ttl {
    padding: 10px 3rem;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
    width: 50%;
    margin-right: auto;
    margin-left: auto;
  }
  nav.globalMenuSp ul li a.sub-menu_link {
    color: var(--color-white);
  }
  .globalMenuSp_item .contact-link {
    padding: 1em 50px;
  }
}
/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
}

/*共通*/

/*スマホだけ表示*/

.sp_disp {
  display: none;
}

@media (max-width: 480px) {
  .sp_disp {
    display: block;
  }
}

/*pcだけ表示*/

.pc_disp {
  display: block;
}

@media (max-width: 600px) {
  .pc_disp {
    display: none;
  }
}

/*スマホだけ表示*/

.br-sp {
  display: none;
}

@media (max-width: 600px) {
  .br-sp {
    display: block;
  }
}

.catch_box .title {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
  padding-bottom: 5px;
  flex-wrap: wrap;
}

.catch_box .title h2 {
  font-size: 3.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -3px;
}

.catch_box .title p {
  font-size: 1rem;
  margin-left: 5px;
  letter-spacing: 2px;
}

.catch_box .sub_catch {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.catch_box p {
  line-height: 1.8;
  font-size: 0.95rem;
}

@media screen and (max-width: 480px) {
  .catch_box .sub_catch {
    font-size: 1.5rem;
  }
  .catch_box .title h2 {
    font-size: 2.5rem;
  }
}

/*レイアウト*/

.t_center {
  text-align: center;
}

.flame.inner {
  padding: 5vw;
}

.l_pillar {
  padding-left: 7vw;
}

.r_pillar {
  padding-right: 7vw;
}

/*フッター*/

footer {
  padding: 60px 0 40px;
}

footer .inner {
  padding: 0 20px;
}

.f_inner {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
@media screen and (max-width: 820px) {
  footer {
    padding: 2rem 0 1.75rem;
  }
  .f_inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.f_nav-inner {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 480px) {
  .f_nav-inner {
    flex-direction: column;
  }
}
footer .logo img {
  width: 100%;
}
@media screen and (max-width: 1080px) {
  footer .logo {
    text-align: center;
  }
  footer .logo img {
    max-width: 480px;
  }
}
@media screen and (max-width: 820px) {
  .f_nav-inner {
    justify-content: space-around;
    gap: 1.5rem;
  }
}
.f_cta-ttl {
  font-size: 1.3125rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .f_cta-ttl {
    font-size: 1.125rem;
  }
}
.f_nav-space-title {
  border-bottom: 1px solid var(--color-pink-red);
  color: var(--color-pink-red);
}
.f_nav-space-title:not(:first-child) {
  margin-top: var(--txt-mt-m);
}
.f_copy {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 4rem;
}
.f_tel {
  width: fit-content;
}
.f_tel a {
  font-size: 160%;
}
@media screen and (max-width: 960px) {
  .f_tel {
    margin-inline: auto;
  }
}

footer .t_center {
  margin-bottom: 10px;
}

.tel_link {
  text-align: center;
  margin: 20px 0 40px;
}
@media screen and (max-width: 960px) {
  .tel_link {
    text-align: center;
    margin: 16px 0 24px;
  }
}
.tel_link a {
  letter-spacing: 0.05em;
}
.tel_number {
  display: block;
  width: fit-content;
  margin: 0 auto 8px;
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .tel_number {
    font-size: 170%;
  }
}
.tel_link .sns_link {
  font-size: 1rem;
  font-weight: bold;
}
.tel_link .sns-txt {
  text-decoration: underline;
}
.annotation {
  text-align: center;
}

.annotation p {
  margin-bottom: 4px;
  font-size: 0.8rem;
}
@media screen and (max-width: 960px) {
  .annotation p {
    font-size: 12px;
  }
}
footer .sub_catch {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

footer p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

footer .link_bnr {
  display: flex;

  justify-content: space-between;
  gap: 32px;
  max-width: 800px;
  margin: 20px auto;
}
@media screen and (max-width: 960px) {
  footer .link_bnr {
    flex-direction: column;
    gap: 24px;
    max-width: 320px;
  }
}
footer .link_bnr .btn {
  width: 44%;
  background: #b29970;
  display: block;
  text-align: center;
  padding: 15px 2vw;
  color: #fff;
  border-radius: 3px;
}

footer .bnr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 30px auto;
}

footer .bnr a {
  width: 23%;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

footer .bnr a:hover img {
  opacity: 0.7;
}

footer .bnr a img {
  width: 100%;
}

footer #f_menu {
  background: #333;
  padding: 20px;
  margin-top: 50px;
}

footer #f_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

footer #f_menu ul li {
  margin-right: 20px;
}

footer #f_menu ul li a {
  color: #fff;
  list-style: none;
}

@media screen and (max-width: 480px) {
  footer #f_menu ul {
    flex-direction: column;
    gap: 8px;
  }
  footer .bnr a {
    width: 48%;
  }
}
.f_nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.f_nav-list li {
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  .f_nav-list {
    gap: 0.875rem;
  }
}
.f_insta {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 960px) {
  footer .logo {
    margin: 0 auto 2rem;
  }

  footer .sub_catch {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0;
  }
  footer .t_center {
    margin-bottom: 8px;
  }
  .footer .link_bnr {
    gap: 16px;
  }
  footer .link_bnr .btn {
    padding: 10px 0;
    color: #fff;
    line-height: 1.6;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .f_info .c-txt {
    text-align: center;
  }
  .p-contact_btn-inner {
    margin-inline: auto;
  }
}
.f_info .p-contact_btn-wrap {
  background: var(--color-pink-red);
  color: var(--color-white);
}
/*ページナビ*/

div.wp-pagenavi {
  clear: both;
  text-align: center;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 1vw;
}

/* 各リンクのCSS */

div.wp-pagenavi a {
  border: 1px solid #9c8664;
  color: #9c8664;
  padding: 10px 1.5vw;
  /* margin: 0 4px; */
  text-decoration: none;
  background: #fff;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  div.wp-pagenavi a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 400px) {
  div.wp-pagenavi a {
    padding: 10px;
    /* margin: 0 3px; */
    font-size: 0.875rem;
  }
}

/* 各リンクのCSS(マウスオーバー時) */

div.wp-pagenavi a:hover {
  background: #9c8664;
  border: 1px solid #9c8664;
  color: #fff;
}
@media screen and (max-width: 400px) {
  div.wp-pagenavi .first,
  div.wp-pagenavi .last {
    display: none;
  }
}
/* 総ページ数のCSS */

div.wp-pagenavi span.pages {
  border: 1px solid #9c8664;
  color: #9c8664;
  padding: 8px 8px;
  margin: 0 4px;
  background: #fff;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  div.wp-pagenavi span.pages {
    display: none;
  }
}
/* 現在のページのCSS */
div.wp-pagenavi span.current {
  border: 1px solid #9c8664;
  color: #fff;
  padding: 10px 1.5vw;
  /* margin: 0 4px; */
  background: #9c8664;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  div.wp-pagenavi span.current {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 374px) {
  div.wp-pagenavi span.current {
    padding: 10px;
    /* margin: 0 3px; */
    font-size: 0.875rem;
  }
}

div.wp-pagenavi span.extend {
  display: none;
}

/*パンくずリスト*/

#breadcrumb {
  font-size: 0.875rem;
  color: #fff;
  padding: 15px 5px 10px;
  margin-left: 10px;
  display: none;
}
.breadcrumb {
  font-size: 0.875rem;
  padding: 15px 5px 18px;
  margin-left: 15px;
}
@media screen and (max-width: 400px) {
  .breadcrumb {
    padding: 0px 0px 20px 0px;
    margin-left: 15px;
  }
}
.breadcrumb a,
#breadcrumb a {
  color: var(--color-pink-red);
  text-decoration: none;
  margin-right: 3px;
}

.breadcrumb i,
#breadcrumb i {
  margin-right: 3px;
}
.breadcrumb a:hover,
#breadcrumb a:hover {
  text-decoration: underline;
}

.contentwrap p {
  margin-bottom: 20px;
}

figure img {
  margin-bottom: 20px;
}

/*スライダー*/

.slide-items {
  width: 100%;
  height: 100%;
  padding: 40px 10px;
  position: relative;
}

.slide-items img {
  width: 100%;
  object-fit: cover;
}

.slick-dotted.slick-slider {
  padding: 0;
}

.slide-items.slick-initialized.slick-slider.slick-dotted {
  margin-bottom: 0;
}

.slick-slide {
  margin: 10px;
  padding: 32px 12px 28px;
  background: #fff;
}
.slick-slide:hover {
  opacity: 0.9;
}
.slick-slide h3 {
  margin: 20px 0 5px;
  line-height: 1.6;
}

.slick-slide .date {
  font-size: 0.8rem;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}

.slick-slide .txt p {
  line-height: 1.6;
  font-size: 0.9rem;
}

.topics_data {
  margin-top: 10px;
}

.slick-slide .label {
  font-size: 0.75rem;
  background: #ccc;
  padding: 2px 3px;
  font-weight: bold;
  margin-right: 5px;
}

.news-inner img {
  display: block;
  object-fit: cover;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
  opacity: 0;
}
.slick-track .slick-slide img {
  opacity: 1;
}
.slick-slide img.noimg {
  object-fit: contain;
}
/* slider-bar */

.progress {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90%;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  transform: translateX(-50%);
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #fff, #fff);
  transition: width 0.6s ease;
}

/* 記事関係 */
.post-list .textbox a {
  line-height: 1.7;
}

/* 404 */
.p-404 {
  margin-top: 54px;
  padding-inline: var(--padding-x);
}

.p-404_txt {
  text-align: center;
  font-size: 3rem;
  color: var(--color-gold);
}
.p-404_info {
  font-size: 1.75rem;
  text-align: center;
  line-height: 1.7;
  margin-top: 40px;
}
.p-404_link {
  margin: 40px auto 64px;
  display: block;
  width: fit-content;
  font-size: 1rem;
  padding: 1rem 5rem;
  font-weight: 400;
  color: var(--color-white);
  border-radius: 3px;
}
@media screen and (max-width: 800px) {
  .p-404 {
    margin-top: 54px;
    padding-inline: var(--padding-x-tb);
  }
  .p-404_txt {
    font-size: 2.75rem;
  }
  .p-404_info {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 400px) {
  .p-404 {
    margin-top: 54px;
    padding-inline: var(--padding-x-sp);
  }
}

/* c-about */
.c-about-container {
  display: flex;
  gap: 10%;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .c-about-container {
    gap: 32px;
  }
}
@media screen and (max-width: 960px) {
  .c-about-container {
    flex-direction: column;
    gap: 40px;
  }
}
.c-about-wrap {
  width: 49.5%;
}
@media screen and (min-width: 1600px) {
  .c-about-wrap.mt {
    margin-top: 3%;
  }
}
.c-about-catch {
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-black);
}

@media screen and (max-width: 960px) {
  .c-about-wrap {
    width: 100%;
  }
  .c-about-wrap .box-txt {
    width: 100%;
  }
  .c-about-catch {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

/* u-parts */
.u-mt-txt-m {
  margin-top: 1rem;
}

/* contact */
@media screen and (max-width: 820px) {
  .p-contact .c-box_inner {
    padding-inline: 0;
  }
}
.p-contact_container {
  padding: 4rem 2rem calc(4rem + 2px);
  border-radius: 29px;
}
@media screen and (max-width: 820px) {
  .p-contact_container {
    padding: 2.5 0 calc(2.5rem + 2px);
    border-radius: 29px;
  }
}
.p-contact_2column {
  display: flex;
  gap: 1rem;
  margin-top: var(--txt-mt-m);
}
@media screen and (max-width: 820px) {
  .p-contact_2column {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-contact .c-heading {
  width: 48%;
}
@media screen and (max-width: 820px) {
  .p-contact .c-heading {
    width: 100%;
    margin-inline: auto;
  }
  .p-contact .c-heading-bg {
    width: 100%;
    display: block;
  }
  .p-contact .c-head_2 {
    transform: translateX(-50%);
    left: 50%;
    width: 100%;
    text-align: center;
  }
}
.p-contact .c-heading::before {
  background-color: var(--color-yellow);
}
.p-contact .c-heading::after {
  background-color: var(--color-yellow);
}
@media screen and (max-width: 820px) {
  .p-contact .c-heading::before,
  .p-contact .c-heading::after {
    background-color: inherit;
  }
}
.p-contact_txtBox {
  width: 60%;
}
.p-contact_txtBox .txt-center {
  text-align: left;
}
.p-contact_btn {
  width: 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-contact_speech-txt_wrap {
  width: 90%;
}
.p-contact_btn-container {
  width: 90%;
}
@media screen and (max-width: 820px) {
  .p-contact_txtBox {
    width: 100%;
  }
  .p-contact_txtBox .txt-center {
    text-align: center;
  }
  .p-contact_btn {
    width: 100%;
  }
}

.p-contact_btn-inner {
  display: block;
}
.p-contact_btn-inner:not(:first-child) {
  margin-top: 0.875rem;
}
.p-contact_btn-inner {
  max-width: 400px;
}
@media screen and (max-width: 820px) {
  .p-contact_btn-inner {
    margin-inline: auto;
  }
}
.p-contact_btn-wrap {
  background: var(--color-white);
  padding: 17px 26px 18px;
  font-size: 1.125rem;
  color: var(--color-pink-red);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.p-contact_btn-wrap:hover {
  opacity: 0.7;
}

.p-contact_btn-wrap svg {
  padding-top: 1px;
}
.p-contact_speech-txt {
  font-size: 1rem;
  position: relative;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}
.p-contact_speech-txt::before,
.p-contact_speech-txt::after {
  position: absolute;
  top: -2px;
  height: 1.5rem;
  content: "";
}
.p-contact_speech-txt::before {
  border-left: solid 1px;
  left: -20px;
  transform: rotate(-30deg);
}
.p-contact_speech-txt::after {
  border-right: solid 1px;
  right: -11px;
  transform: rotate(30deg);
}
@media screen and (max-width: 480px) {
  .p-contact_speech-txt {
    font-size: 0.875rem;
  }
}
.p-contact_btn-inner {
  margin-top: 1rem;
}
.p-contact_tel-txt {
  font-size: 200%;
  font-weight: bold;
  display: block;
  margin-top: 1.125rem;
  letter-spacing: 0.07em;
  width: fit-content;
}
@media screen and (max-width: 820px) {
  .p-contact_tel-txt {
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-contact_tel-txt {
    font-size: 160%;
  }
}
.p-contact_tel-txt.c-txt-white.c-decoLine::after {
  background-color: var(--color-white);
}
.p-contact_reserve {
  margin-top: 0.875rem;
}
.link-txt {
  margin-left: 6px;
}
