@charset "UTF-8";
:root {
  --vw375: 0.2666666667vw; /* 100 / 375 */
  --vw600: 0.1666666667vw; /* 100 / 600 */
  --vw768: 0.1302083333vw; /* 100 / 768 */
  --vw1100: 0.0909090909vw; /* 100 / 1100 */
  --vw1440: 0.0694444444vw; /* 100 / 1440 */
  --vw1600: 0.0625vw; /* 100 / 1600 */
}

/* --------------------------------
  A (more) Modern CSS Reset
-------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

img {
  vertical-align: top;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

/* --------------------------------

  基本スタイル

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #000000;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  background: #fff;
}

@media screen and (max-width: 1099.98px) {
  html.is-nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* --------------------------------

  l-wrapper

-------------------------------- */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .l-wrapper {
    overflow: visible;
  }
}

/* --------------------------------

  l-header

-------------------------------- */
.l-header__logo {
  z-index: 101;
}
@media screen and (max-width: 1099.98px) {
  .l-header__logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    place-content: center;
    background-color: #fff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  }
}
@media screen and (min-width: 1100px), print {
  .l-header__logo {
    position: absolute;
    top: 0;
    left: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    z-index: 1002;
  }
  .is-fixed .l-header__logo {
    position: fixed;
    top: -10rem;
    height: 10rem;
    place-content: center;
    transform: translateY(100px);
    transition: transform 0.3s ease;
    z-index: 1002;
  }
}
.l-header__logo-illust {
  max-width: 6rem;
}
@media screen and (min-width: 360px), print {
  .l-header__logo-illust {
    max-width: 8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-header__logo-illust {
    max-width: 23rem;
    background-color: #F4F8FF;
    border-radius: 5rem;
  }
}
@media screen and (min-width: 1440px), print {
  .l-header__logo-illust {
    max-width: 26rem;
  }
}
.l-header__logo-illust img {
  height: auto;
}
.l-header__logo-sitename {
  width: 13rem;
}
@media screen and (min-width: 360px), print {
  .l-header__logo-sitename {
    width: 15rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-header__logo-sitename {
    width: 20rem;
    padding-top: 4.3rem;
  }
}
@media screen and (min-width: 1440px), print {
  .l-header__logo-sitename {
    width: 22.4rem;
    padding-top: 4.3rem;
  }
}
.l-header__logo-sitename a {
  display: block;
  text-decoration: none;
}
.l-header__logo-sitename img {
  height: auto;
}
@media screen and (min-width: 1100px), print {
  .l-header__nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 16.5rem;
    padding: 0;
    place-content: end;
    z-index: 1001;
  }
  .is-fixed .l-header__nav {
    position: fixed;
    left: 0;
    right: 0;
    top: -16.5rem;
    height: 16.5rem;
    transform: translateY(165px);
    padding: 0;
    transition: transform 0.3s ease;
  }
  .l-header__nav::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 12rem;
    background-color: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    z-index: -1;
  }
}
@media screen and (min-width: 1100px), print {
  .l-header__tel {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .l-header__tel {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 910;
    transition: opacity 0.3s ease;
  }
  .l-header__tel::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.5rem;
    background-color: #0044B9;
    margin: auto;
  }
  .l-header__tel:hover {
    opacity: 0.8;
  }
  .l-header__tel a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
  }
  .l-header__tel a::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: 17px;
    height: 17px;
    background: url("../img/base/icon-tel_wht.svg") no-repeat center/contain;
  }
  .l-header__tel a::after {
    content: "TEL";
    position: absolute;
    left: 0;
    bottom: 16px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1;
  }
}
.l-header__contact {
  position: fixed;
  z-index: 101;
}
@media screen and (min-width: 768px), print {
  .l-header__contact {
    right: 0;
    bottom: 8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-header__contact {
    right: 0;
    top: 22.5rem;
    bottom: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .l-header__contact {
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-header__contact-item {
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 8rem;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item {
    width: 12rem;
    height: 12rem;
    border-radius: 100% 100% 0 100%;
  }
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item--line {
    margin-bottom: 1.5rem;
  }
}
.l-header__contact-item--line .l-header__contact-link {
  background-color: #06C755;
  padding-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item--line .l-header__contact-link {
    padding-top: 4.5rem;
  }
}
.l-header__contact-item--line .l-header__contact-link::before {
  content: "";
  position: absolute;
  background: url("../img/base/icon-line.png") no-repeat center/contain;
  border-radius: 2rem;
  top: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item--line .l-header__contact-link::before {
    top: 1rem;
    width: 5.3rem;
    height: 5.3rem;
  }
}
@media screen and (max-width: 767.98px) {
  .l-header__contact-item--line .l-header__contact-link::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.l-header__contact-item--line .l-header__contact-label {
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item--line .l-header__contact-label {
    font-size: 1.3rem;
  }
}
.l-header__contact-item--line .l-header__contact-title {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item--line .l-header__contact-title {
    font-size: 1.8rem;
  }
}
.l-header__contact-item--mail .l-header__contact-link {
  background-color: #4C87EC;
  padding-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item--mail .l-header__contact-link {
    padding-top: 3.5rem;
  }
}
.l-header__contact-item--mail .l-header__contact-link::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 2rem;
  background: url("../img/base/icon-mail_wht.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item--mail .l-header__contact-link::before {
    width: 3.2rem;
    height: 2.3rem;
    top: 2.8rem;
  }
}
.l-header__contact-item--mail .l-header__contact-label {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item--mail .l-header__contact-label {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
}
.l-header__contact-item--mail .l-header__contact-title {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .l-header__contact-item--mail .l-header__contact-title {
    font-size: 1.4rem;
  }
}
.l-header__contact-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  place-content: center;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-header__contact-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
.l-header__contact-label {
  display: block;
}
.l-header__contact-title {
  display: block;
}

/* --------------------------------

  l-footer

-------------------------------- */
.l-footer {
  position: relative;
  background-color: #0044B9;
  border-radius: 8rem 8rem 0 0;
  padding: 0 2rem;
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px), print {
  .l-footer {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .l-footer {
    border-radius: 30rem 30rem 0 0;
    padding: 0 4rem;
  }
}
.l-footer::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: -6rem;
  width: 70px;
  height: 130px;
  background: url("../img/top/illust_04.png") no-repeat center/contain;
  z-index: 0;
}
@media screen and (min-width: 640px), print {
  .l-footer::before {
    left: 1.5rem;
    top: -3rem;
    width: 100px;
    height: 150px;
  }
}
@media screen and (min-width: 1100px), print {
  .l-footer::before {
    width: 150px;
    height: 250px;
    left: 2rem;
    top: -3rem;
  }
}
@media screen and (min-width: 1440px), print {
  .l-footer::before {
    width: 207px;
    height: 370px;
    left: 3rem;
    top: -5rem;
  }
}
.l-footer::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: -4rem;
  width: 110px;
  height: 90px;
  background: url("../img/top/illust_05.png") no-repeat center/contain;
  z-index: 0;
}
@media screen and (min-width: 640px), print {
  .l-footer::after {
    right: 1.5rem;
    top: -3rem;
    width: 140px;
    height: 120px;
  }
}
@media screen and (min-width: 1100px), print {
  .l-footer::after {
    width: 200px;
    height: 180px;
    right: 2rem;
    top: -4rem;
  }
}
@media screen and (min-width: 1440px), print {
  .l-footer::after {
    width: 279px;
    height: 230px;
    right: 3rem;
    top: -5rem;
  }
}
.l-footer__inner {
  max-width: 127rem;
  width: 100%;
  margin-inline: auto;
  padding: 5rem 0 4rem 0;
}
@media screen and (min-width: 1100px), print {
  .l-footer__inner {
    padding: 7.5rem 0 6rem 0;
  }
}
.l-footer__copyright {
  position: relative;
  height: 6rem;
  place-content: center;
  text-align: center;
  padding: 0 2rem;
  margin-inline: -2rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px), print {
  .l-footer__copyright {
    padding: 0 4rem;
    margin-inline: -4rem;
  }
}
.l-footer__copyright small {
  color: #0044B9;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media screen and (min-width: 1100px), print {
  .l-footer__copyright small {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .l-footer__copyright span {
    display: none;
  }
}

/* --------------------------------

  l-main

-------------------------------- */
.l-main {
  flex: 1;
  padding-bottom: 7rem;
}
@media screen and (min-width: 768px), print {
  .l-main {
    padding-bottom: 9rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-main {
    padding-bottom: 5rem;
  }
}

/* --------------------------------

  l-inner

-------------------------------- */
.l-inner {
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
}
.l-inner::after {
  content: "";
  display: table;
  clear: both;
}
.l-inner--wide {
  max-width: 1230px;
}

/* --------------------------------

  c-button

-------------------------------- */
/* --------------------------------

  c-link-button

-------------------------------- */
.c-link-button {
  position: relative;
  display: inline-block;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.15em 3.5em 1.15em 2em;
  border-radius: 10em;
  text-decoration: none;
}
@media screen and (min-width: 1100px), print {
  .c-link-button {
    font-size: 1.6rem;
  }
}
.c-link-button--brown {
  background-color: #6F4708;
}
.c-link-button--blue {
  background-color: #0044B9;
}
.c-link-button--wht {
  background-color: #fff;
  color: #0044B9;
}
.c-link-button--line {
  background-color: #06c755;
}
.c-link-button.c-link-button--wht::before {
  background: url("../img/base/icon-arrow_right_blue.svg") no-repeat center/contain;
}
.c-link-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: url("../img/base/icon-arrow_right_wht.svg") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .c-link-button::before {
    right: 2.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

a.c-link-button {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) {
  a.c-link-button:where(:any-link, :enabled, summary):hover {
    background-color: #0044B9;
    color: #fff;
  }
}
@media (hover: hover) {
  a.c-link-button--blue:where(:any-link, :enabled, summary):hover {
    background-color: #4C87EC;
    color: #fff;
  }
}
@media (hover: hover) {
  a.c-link-button--wht:where(:any-link, :enabled, summary):hover {
    background-color: #FFC800;
    color: #0044B9;
  }
}
@media (hover: hover) {
  a.c-link-button--line:where(:any-link, :enabled, summary):hover {
    background-color: #06c755;
    opacity: 0.8;
  }
}

/* --------------------------------
  c-global-contact
-------------------------------- */
.c-global-contact__item--tel .tel-link {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  font-size: 2.8rem;
  color: #0044B9;
  font-weight: 900;
  padding-left: 1.1em;
  text-decoration: none;
}
@media screen and (min-width: 1100px), print {
  .c-global-contact__item--tel .tel-link {
    font-size: 3.1rem;
  }
}
.c-global-contact__item--tel .tel-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  background: url("../img/base/icon-tel_blue.svg") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .c-global-contact__item--tel .tel-link::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-global-contact__add {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (min-width: 1100px), print {
  .c-global-contact__add {
    margin-top: 0.3rem;
  }
}

/* --------------------------------

  c-gnav

-------------------------------- */
@media screen and (max-width: 1099.98px) {
  .c-gnav {
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: -30rem;
    width: 30rem;
    height: 100%;
    z-index: 1000;
    transition: left 0.3s ease, opacity 0.3s ease;
  }
  .is-nav-open .c-gnav {
    left: 0;
    pointer-events: all;
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .c-gnav__container {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__container {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 0 3rem 0;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
  }
}
.c-gnav__info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__info {
    margin-bottom: 0.8rem;
    padding-right: 2.6rem;
    flex-direction: row;
    gap: 3.5rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__info {
    padding-top: 2.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-gnav__logo {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__logo {
    padding-top: 1rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__logo-illust {
    max-width: 18rem;
    margin-inline: auto;
    margin-bottom: 1rem;
  }
  .c-gnav__logo-illust img {
    height: auto;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__logo-sitename {
    max-width: 20rem;
    margin-inline: auto;
  }
}
.c-gnav-sns {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.c-gnav-sns__item {
  max-width: 2.7rem;
}
.c-gnav-sns__link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .c-gnav-sns__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
.c-gnav__menu {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 6.5rem 1.5rem 2rem 1.5rem;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    padding: 0 2.5rem 0 13rem;
    background-color: #0044B9;
    border-radius: 2rem 0 0 2rem;
  }
}
@media screen and (min-width: 1440px), print {
  .c-gnav__menu {
    gap: 3.5rem;
    padding: 0 3.5rem 0 16rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__menu {
    background: #0044B9;
  }
}
.c-gnav__menu::before {
  content: "";
  position: absolute;
  background: url("../img/top/illust_01.png") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__menu::before {
    width: 120px;
    height: 108px;
    top: -2rem;
    left: 0.5rem;
  }
}
@media screen and (min-width: 1440px), print {
  .c-gnav__menu::before {
    width: 149px;
    height: 124px;
    top: -3.8rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__menu::before {
    width: 60px;
    height: 60px;
    top: 0.2rem;
    right: 1rem;
  }
}
.c-gnav__item {
  position: relative;
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__item {
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__item:first-child {
    border-top: 1px solid #fff;
  }
}
.c-gnav__title {
  position: relative;
  display: block;
  padding: 0 0 0 4.2rem;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__title {
    padding: 3.6rem 0 0.5rem 0;
  }
}
.c-gnav__title::before {
  content: "";
  position: absolute;
  width: 3.3rem;
  height: 3rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__title::before {
    width: 3.6rem;
    height: 3rem;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__title::before {
    left: 0;
    top: 0;
    bottom: 0;
    margin-block: auto;
  }
}
.c-gnav__item--about .c-gnav__title::before {
  background: url("../img/base/icon-shop_wht.svg") no-repeat center/contain;
}
.c-gnav__item--items .c-gnav__title::before {
  background: url("../img/base/icon-bag_wht.svg") no-repeat center/contain;
}
.c-gnav__item--voice .c-gnav__title::before {
  background: url("../img/base/icon-good_wht.svg") no-repeat center/contain;
}
.c-gnav__item--purchase .c-gnav__title::before {
  background: url("../img/base/icon-box_wht.svg") no-repeat center/contain;
}
.c-gnav__item--faq .c-gnav__title::before {
  background: url("../img/base/icon-faq_wht.svg") no-repeat center/contain;
}
.c-gnav__title::after {
  content: "";
  position: absolute;
  width: 3.3rem;
  height: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__title::after {
    width: 3.6rem;
    height: 3rem;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__title::after {
    left: 0;
    top: 0;
    bottom: 0;
    margin-block: auto;
  }
}
.c-gnav__item--about .c-gnav__title::after {
  background: url("../img/base/icon-shop_kiiro.svg") no-repeat center/contain;
}
.c-gnav__item--items .c-gnav__title::after {
  background: url("../img/base/icon-bag_kiiro.svg") no-repeat center/contain;
}
.c-gnav__item--voice .c-gnav__title::after {
  background: url("../img/base/icon-good_kiiro.svg") no-repeat center/contain;
}
.c-gnav__item--purchase .c-gnav__title::after {
  background: url("../img/base/icon-box_kiiro.svg") no-repeat center/contain;
}
.c-gnav__item--faq .c-gnav__title::after {
  background: url("../img/base/icon-faq_kiiro.svg") no-repeat center/contain;
}
.c-gnav__label {
  position: relative;
  line-height: 1.05;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__label {
    display: block;
    padding: 0;
    place-content: center;
    text-align: center;
    height: 10rem;
    font-size: 1.6rem;
    padding: 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__label {
    display: block;
    font-size: 1.6rem;
    padding: 0 0 0 1rem;
    height: 6rem;
    place-content: center;
  }
}
.c-gnav__label::before {
  content: "";
  position: absolute;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__label::before {
    width: 1.2rem;
    height: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.3rem;
    background: url("../img/base/icon-arrow_bottom_wht.svg") no-repeat center/contain;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__label::before {
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #fff url("../img/base/icon-plus.svg") no-repeat center/50%;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
  }
}
.c-gnav__link {
  position: relative;
  line-height: 1.05;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__link {
    display: block;
    text-align: center;
    place-content: center;
    height: 10rem;
    font-size: 1.6rem;
    padding: 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__link {
    display: block;
    font-size: 1.6rem;
    height: 6rem;
    padding: 0 0 0 1rem;
    place-content: center;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__link::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: #fff url("../img/base/icon-arrow2_right_blue.svg") no-repeat center/50%;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
  }
}
@media screen and (hover: hover) and (min-width: 1100px), print and (hover: hover) {
  .c-gnav__link:where(:any-link, :enabled, summary):hover {
    color: #FFC800;
  }
}
@media screen and (hover: hover) and (min-width: 1100px), print and (hover: hover) {
  .c-gnav__link:where(:any-link, :enabled, summary):hover .c-gnav__title::after {
    opacity: 1;
  }
}
.c-gnav__dropdown {
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__dropdown {
    height: 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 1100px), print {
  .c-gnav__dropdown {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 25rem;
    z-index: -1;
    opacity: 0;
    padding: 0;
    overflow: hidden;
  }
}
.c-gnav__dropdown.is-active {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__dropdown.is-active {
    height: auto;
    overflow: visible;
  }
}
@media screen and (min-width: 1100px), print {
  .c-gnav__dropdown.is-active {
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .c-gnav__dropdown-container {
    background-color: rgba(76, 135, 236, 0.9);
    border-radius: 1rem;
    padding: 1rem;
  }
}
.c-gnav__submenu {
  display: block;
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__submenu {
    padding: 0 0 2rem 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__submenu-item {
    border-top: 1px solid #4C87EC;
  }
}
.c-gnav__submenu-link {
  position: relative;
  display: block;
  text-align: left;
  place-content: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  height: 5rem;
  letter-spacing: 0.05em;
  background-color: transparent;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 0;
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__submenu-link {
    padding-left: 3rem;
    background-color: #fff;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  .c-gnav__submenu-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 0.5rem solid #161616;
    transition: border 0.3s ease;
  }
}
@media screen and (min-width: 1100px), print {
  .c-gnav__submenu-link {
    font-size: 1.8rem;
    height: 6rem;
    color: #fff;
    text-align: center;
    border-radius: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
}
@media screen and (hover: hover) and (max-width: 1099.98px) {
  .c-gnav__submenu-link:where(:any-link, :enabled, summary):hover {
    color: #0044B9;
  }
  .c-gnav__submenu-link:where(:any-link, :enabled, summary):hover::before {
    border-left-color: #0044B9;
  }
}
@media screen and (hover: hover) and (min-width: 1100px), print and (hover: hover) {
  .c-gnav__submenu-link:where(:any-link, :enabled, summary):hover {
    color: #fff;
    background-color: #0044B9;
  }
}
.c-gnav__toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 6rem;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .c-gnav__toggle {
    position: relative;
    width: 100%;
    height: 10rem;
    margin-bottom: -10rem;
    background: transparent;
    z-index: 30;
  }
}
@media screen and (min-width: 1100px), print {
  .c-gnav__toggle:hover + .c-gnav__label {
    color: #FFC800;
  }
  .c-gnav__toggle:hover + .c-gnav__label::before {
    background: url("../img/base/icon-arrow_bottom_kiiro.svg") no-repeat center/contain;
  }
}
@media screen and (min-width: 1100px), print {
  .c-gnav__toggle:hover + .c-gnav__label .c-gnav__title::after {
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .c-gnav__toggle.is-active + .c-gnav__label {
    color: #FFC800;
  }
  .c-gnav__toggle.is-active + .c-gnav__label::before {
    transform: translateX(-50%) rotate(180deg);
    background: url("../img/base/icon-arrow_bottom_kiiro.svg") no-repeat center/contain;
  }
}
@media screen and (max-width: 1099.98px) {
  .c-gnav__toggle.is-active + .c-gnav__label {
    color: #FFC800;
  }
  .c-gnav__toggle.is-active + .c-gnav__label::before {
    background: #FFC800 url("../img/base/icon-minus.svg") no-repeat center/50%;
  }
}
.c-gnav__toggle.is-active + .c-gnav__label .c-gnav__title::after {
  opacity: 1;
}
.c-gnav {
  /* ハンバーガーメニューボタン */
}
.c-gnav-button--open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  z-index: 1011;
  opacity: 1;
  pointer-events: all;
}
.is-nav-open .c-gnav-button--open {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 1100px), print {
  .c-gnav-button--open {
    display: none;
  }
}
.c-gnav-button--open::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.5rem;
  background-color: #0044B9;
  margin: auto;
}
.c-gnav-button--open::after {
  content: "MENU";
  position: absolute;
  left: 0;
  bottom: 16px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  font-family: "M PLUS 1", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c-gnav-button--close {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .c-gnav-button--close {
    display: none;
  }
}
.is-nav-open .c-gnav-button--close {
  opacity: 1;
}
.c-gnav-button--close::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  margin: auto;
}
.c-gnav-button--close::after {
  content: "CLOSE";
  position: absolute;
  left: 0;
  bottom: 16px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #0044B9;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c-gnav-button--close .c-gnav-button__icon {
  width: 2.8rem;
  background-color: transparent;
}
.c-gnav-button--close .c-gnav-button__icon::before, .c-gnav-button--close .c-gnav-button__icon::after {
  margin-top: 0;
  background-color: #0044B9;
}
.c-gnav-button--close .c-gnav-button__icon::before {
  transform: rotate(30deg);
}
.c-gnav-button--close .c-gnav-button__icon::after {
  transform: rotate(-30deg);
}
.c-gnav-button__icon {
  display: block;
  position: absolute;
  top: -15px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 2.8rem;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
.c-gnav-button__icon::before, .c-gnav-button__icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.c-gnav-button__icon::before {
  margin-top: -6px;
}
.c-gnav-button__icon::after {
  margin-top: 6px;
}
.c-gnav-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 999;
}
@media screen and (min-width: 1100px), print {
  .c-gnav-overlay {
    display: none;
  }
}
.is-nav-open .c-gnav-overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* --------------------------------

  c-heading

-------------------------------- */
.c-heading {
  position: relative;
  display: block;
}
.c-heading--primary {
  position: relative;
  text-align: center;
  color: #0044B9;
  padding-bottom: 2rem;
}
@media screen and (min-width: 1100px), print {
  .c-heading--primary {
    padding-bottom: 3rem;
  }
}
.c-heading--primary::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 15rem;
  height: 1px;
  background-color: #6F4708;
  margin-inline: auto;
}
@media screen and (min-width: 1100px), print {
  .c-heading--primary::before {
    width: 30rem;
  }
}
.c-heading--primary .c-heading__en {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 1rem;
  padding-inline: 1em;
}
@media screen and (min-width: 1100px), print {
  .c-heading--primary .c-heading__en {
    font-size: 2.8rem;
  }
}
.c-heading--primary .c-heading__en::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 2.5rem;
  background-color: #0044B9;
  transform: rotate(-20deg);
}
@media screen and (min-width: 1100px), print {
  .c-heading--primary .c-heading__en::before {
    height: 3.5rem;
  }
}
.c-heading--primary .c-heading__en::after {
  content: "";
  position: absolute;
  right: 0.1em;
  bottom: 0;
  width: 1px;
  height: 2.5rem;
  background-color: #0044B9;
  transform: rotate(20deg);
}
@media screen and (min-width: 1100px), print {
  .c-heading--primary .c-heading__en::after {
    height: 3.5rem;
  }
}
.c-heading--primary .c-heading__ja {
  display: block;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .c-heading--primary .c-heading__ja {
    font-size: 3.6rem;
  }
}
.c-heading__h2 {
  line-height: 1.35;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0044B9;
  text-align: center;
  border-bottom: 1px solid #f3dfbf;
}
@media screen and (min-width: 768px), print {
  .c-heading__h2 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading__h2 {
    font-size: 3.6rem;
  }
}
.c-heading__h3 {
  margin-bottom: 2rem;
  padding: 0.4rem 1rem 0.4rem 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  font-size: 2.1rem;
  color: #0044B9;
  border-left: 2px solid currentColor;
}
.c-heading__h3:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .c-heading__h3 {
    margin-bottom: 3rem;
    padding: 0.5rem 1rem 0.5rem 2rem;
    font-size: 2.6rem;
  }
  .c-heading__h3:not(:first-child) {
    margin-top: 8rem;
  }
}
.c-heading__h4 {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 400;
  font-size: 1.8rem;
  border-bottom: 2px solid #eee;
}
.c-heading__h4::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 15rem;
  height: 2px;
  background-color: #0044B9;
}
.c-heading__h4:not(:first-child) {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px), print {
  .c-heading__h4 {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    font-size: 2rem;
  }
  .c-heading__h4::before {
    width: 22rem;
  }
  .c-heading__h4:not(:first-child) {
    margin-top: 5rem;
  }
}
.c-heading + .c-heading__h4 {
  margin-top: 3rem;
}
.c-heading__inner {
  display: inline-block;
  vertical-align: top;
  margin-bottom: -1px;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #6F4708;
}
@media screen and (min-width: 768px), print {
  .c-heading__inner {
    padding-bottom: 2.5rem;
  }
}
.c-heading__text {
  font-weight: 400;
  font-size: 0.5em;
  color: #000000;
}

/* --------------------------------
  c-list
-------------------------------- */
.c-list--primary li {
  position: relative;
  padding-left: 1.25em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .c-list--primary li {
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.05em;
    padding-left: 1.5em;
  }
}
.c-list--primary li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-color: #FFC800;
  border-radius: 100%;
}
@media screen and (min-width: 1100px), print {
  .c-list--primary li::before {
    width: 1.4rem;
    height: 1.4rem;
    top: 0.65em;
  }
}
.c-list--secondary li {
  position: relative;
  padding-left: 1.1em;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (min-width: 1100px), print {
  .c-list--secondary li {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
  }
}
.c-list--secondary li:not(:last-child) {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 1100px), print {
  .c-list--secondary li:not(:last-child) {
    margin-bottom: 1em;
  }
}
.c-list--secondary li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 100%;
  background-color: #333;
}

/* --------------------------------
  c-check-list
-------------------------------- */
.c-check-list__item {
  position: relative;
  color: #0044B9;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.15;
  padding-left: 2.2em;
  -webkit-text-stroke: 3px #ffffff;
  paint-order: stroke;
}
@media screen and (min-width: 768px), print {
  .c-check-list__item {
    letter-spacing: 0.05em;
    font-size: 2.4rem;
  }
}
.c-check-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 2.2rem;
  background: url("../img/base/icon-check_kiiro.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px), print {
  .c-check-list__item::before {
    width: 4.5rem;
    height: 4rem;
  }
}
.c-check-list__item:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .c-check-list__item:not(:last-child) {
    margin-bottom: 3rem;
  }
}

/* --------------------------------

  c-news-list

-------------------------------- */
.c-news-list--column .c-news-item {
  grid-template-columns: 1fr;
}
.c-news-list__item:not(:last-child) {
  margin-bottom: 2rem;
}
.c-news-item {
  display: grid;
  align-items: center;
  grid-template-columns: 8rem 15rem 1fr;
  gap: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .c-news-item {
    gap: 2rem;
    grid-template-columns: 8rem 15rem 1fr;
  }
}
@media screen and (min-width: 1100px), print {
  .c-news-item {
    gap: 3rem;
    grid-template-columns: 9rem 25rem 1fr;
  }
}
.c-news-item__link {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
  word-break: break-all;
  word-wrap: break-word;
  color: #000000;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .c-news-item__link:where(:any-link, :enabled, summary):hover {
    color: #0044B9;
    text-decoration: underline;
  }
}
.c-news-item__date {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000000;
}
@media screen and (min-width: 1100px), print {
  .c-news-item__date {
    font-size: 1.6rem;
  }
}
.c-news-item__category {
  display: grid;
  height: 3rem;
  color: #fff;
  background-color: #4C87EC;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border-radius: 0.5rem;
  place-content: center;
}
.c-news-item__category a {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.c-news-item__category a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px), print {
  .c-news-item__category {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-news-item__category {
    font-size: 1.4rem;
    height: 3.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-news-item__title {
    grid-column: 1/-1;
  }
}

/* c-news-thumb */
.c-news-thumb-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 1.5rem;
}
@media screen and (min-width: 768px), print {
  .c-news-thumb-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 2.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-news-thumb-list {
    gap: 5rem 4rem;
  }
}
.c-news-thumb-list--lg {
  gap: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .c-news-thumb-list--lg {
    gap: 2.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-news-thumb-list--lg {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}
.c-news-thumb-item__link {
  display: block;
  color: #000;
  text-decoration: none;
  line-height: 1.4;
}
.c-news-thumb-item__image {
  display: block;
  position: relative;
  border-radius: 1rem;
  background-color: #f6f6f6;
  box-shadow: 0 0 10px rgba(33, 94, 0, 0.08);
  overflow: hidden;
}
.c-news-thumb-item__image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 4px solid #0044B9;
  opacity: 0;
  transition: scale 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .c-news-thumb-item__image::after {
    border-width: 5px;
  }
}
.c-news-thumb-item__image img {
  aspect-ratio: 340/270;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: scale 0.3s ease, opacity 0.3s ease;
}
.c-news-thumb-item__date {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .c-news-thumb-item__date {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-news-thumb-item__date {
    margin-top: 1.8rem;
    font-size: 1.6rem;
  }
}
.c-news-thumb-item__title {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 1100px), print {
  .c-news-thumb-item__title {
    margin-top: 1.2rem;
    line-height: 1.5;
    font-size: 1.6rem;
  }
}
.c-news-thumb-item__link:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .c-news-thumb-item__link:hover:where(:any-link, :enabled, summary):hover {
    color: #0044B9;
  }
  .c-news-thumb-item__link:hover:where(:any-link, :enabled, summary):hover .c-news-thumb-item__image img {
    scale: 1.05;
    opacity: 0.8;
  }
  .c-news-thumb-item__link:hover:where(:any-link, :enabled, summary):hover .c-news-thumb-item__image::after {
    opacity: 1;
  }
  .c-news-thumb-item__link:hover:where(:any-link, :enabled, summary):hover .c-news-thumb-item__title {
    font-weight: 700;
  }
}

/* WP ページネーション */
.c-pagination {
  display: block;
  margin-top: 5rem;
}
.c-pagination__links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination__numbers {
  display: block;
  margin: 0 0.2rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background-color: #444;
  transition: background-color 0.25s;
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .c-pagination__numbers {
    margin: 0.2rem;
    font-size: 1.4rem;
  }
}
.c-pagination__numbers:hover {
  text-decoration: none;
}
.c-pagination__numbers[href]:hover,
.c-pagination .is-current {
  background-color: #0044B9;
}
.c-pagination__screenreader {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.c-pagetitle {
  position: relative;
  overflow: hidden;
  margin-top: 6rem;
  z-index: 0;
}
@media screen and (min-width: 1100px), print {
  .c-pagetitle {
    margin-top: 12rem;
  }
}
.c-pagetitle__container {
  width: 100%;
  height: 18rem;
  background: url("../img/base/page-title.webp") no-repeat center/cover;
  padding: 0 2rem;
  place-content: center;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .c-pagetitle__container {
    height: 25rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-pagetitle__container {
    height: 31.4rem;
  }
}
.c-pagetitle__name {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  background-color: #ffffff;
  color: #0044B9;
  border-radius: 10em;
  padding: 1.5rem 2.5rem;
  z-index: 1;
}
@media screen and (min-width: 768px), print {
  .c-pagetitle__name {
    font-size: 3rem;
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-pagetitle__name {
    font-size: 5rem;
    padding: 3rem 5.5rem;
  }
}

/* --------------------------------

  c-pagetop

-------------------------------- */
.c-pagetop {
  display: block;
  position: fixed;
  right: 1rem;
  bottom: 9rem;
  width: 4rem;
  height: 4rem;
  text-align: center;
  overflow: hidden;
  border-radius: 0.5rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-pagetop {
    position: fixed;
    border-radius: 0.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 5rem;
    height: 5rem;
  }
}
.is-fixed .c-pagetop {
  opacity: 1;
  pointer-events: auto;
}
.c-pagetop__link {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  border-radius: 0;
  background-color: #0044B9;
  transition-property: background-color;
  transition-duration: 0.2s;
}
@media (hover: hover) {
  .c-pagetop__link:where(:any-link, :enabled, summary):hover {
    color: #fff;
    text-decoration: none;
    background-color: #4C87EC;
  }
  .c-pagetop__link:where(:any-link, :enabled, summary):hover::before {
    border-color: #fff;
  }
}
.c-pagetop__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  transition-property: border-color;
  transition-duration: 0.2s;
}
@media screen and (min-width: 768px), print {
  .c-pagetop__link::before {
    top: 0.9rem;
    width: 1.3rem;
    height: 1.3rem;
  }
}
.c-pagetop__icon {
  display: none;
}

/* --------------------------------

  c-table

-------------------------------- */
th,
td {
  border: 0;
}

/* 共通テーブル */
.c-table {
  display: block;
  margin-inline: -4px;
  line-height: 1.5;
}
.c-table tbody {
  display: block;
}
.c-table tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  border-bottom-width: 1px;
  border-style: solid;
}
.c-table th {
  padding: 2.5rem 1rem;
  font-weight: 500;
  font-size: 1.8rem;
  border-color: #0044B9;
}
.c-table td {
  padding: 2.5rem 5rem;
  border-color: #F6F6F6;
}
.c-table .tel-link[href] {
  color: currentColor;
  text-decoration: none;
}
.c-table .tel-link[href]:hover {
  color: #4C87EC;
  text-decoration: underline;
}
.c-table tr:first-child th,
.c-table tr:first-child td {
  border-top-width: 1px;
  border-top-style: solid;
}
@media screen and (max-width: 1099.98px) {
  .c-table td {
    padding: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-table {
    margin-inline: 0;
  }
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table tr + tr {
    margin-top: 5rem;
  }
  .c-table th,
  .c-table td {
    border-top-width: 1px;
    border-bottom: none;
  }
  .c-table th {
    width: auto !important;
    padding: 1.5rem 1rem;
  }
  .c-table td {
    padding: 1.5rem 1rem 0;
    text-align: center;
  }
}

/* --------------------------------

  c-tag-list

-------------------------------- */
/* タグ一覧 */
.c-tag-list__container {
  margin-top: 5rem;
}
.c-tag-list__title {
  height: 6rem;
  font-size: 2rem;
  background-color: #e7f0ff;
}
.c-tag-list__icon {
  aspect-ratio: 1/1;
  display: block;
  width: 2.4rem;
  margin: 0.2ch 1.2rem 0 -1rem;
}
.c-tag-list__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.8rem;
  margin: 0;
  padding: 2rem;
  list-style-type: none;
}
.c-tag-list__item a {
  display: block;
  padding: 1.2rem 1.4rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 3rem;
  color: #0044B9;
  border: 1px solid #0044B9;
  background-color: #fff;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}
.c-tag-list__item a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #0044B9;
}
.c-tag-list__item.is-current a {
  color: #fff;
  background-color: #0044B9;
}
@media screen and (min-width: 1100px), print {
  .c-tag-list {
    position: sticky;
    top: 20rem;
  }
  .c-tag-list__container {
    width: 28rem;
    margin: 0 0 0 3rem;
  }
  .c-tag-list__items {
    padding: 2.5rem 1rem;
  }
}
@media screen and (min-width: 2600px), print {
  .c-tag-list {
    top: 16rem;
  }
}

/* 投稿画面下用 */
.c-tag-list--post {
  margin-top: 3rem;
}
.c-tag-list--post + .p-news-detail__back {
  margin-top: 3rem;
}
@media screen and (min-width: 1100px), print {
  .c-tag-list--post .c-tag-list__title {
    width: 14rem;
    height: auto;
  }
  .c-tag-list--post .c-tag-list__items {
    flex: 1;
    padding: 2rem;
  }
}

/* --------------------------------

  アニメーション

-------------------------------- */
.u-anime-fadein {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-filter 1s ease;
  transition: filter 1s ease, opacity 0.8s ease, transform 0.8s ease;
  transition: filter 1s ease, opacity 0.8s ease, transform 0.8s ease, -webkit-filter 1s ease;
}
.u-anime-fadein.is-active {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}
.u-anime-slide-right {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-filter 1s ease;
  transition: filter 1s ease, opacity 0.8s ease, transform 0.8s ease;
  transition: filter 1s ease, opacity 0.8s ease, transform 0.8s ease, -webkit-filter 1s ease;
}
.u-anime-slide-right.is-active {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  transform: translateX(0);
}
.u-anime-delay--sm {
  transition-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.u-anime-delay--md {
  transition-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.u-anime-delay--lg {
  transition-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

/* MV アニメーション */
.is-anime-active .u-mv-anime-fadein {
  transform: translateY(-50px);
  opacity: 0;
  -webkit-animation-name: fadein;
  animation-name: fadein;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadein {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* u-color */
.u-color-dark {
  color: #000;
}
.u-color-hover {
  color: #4C87EC;
}
.u-color-base {
  color: #0044B9;
}
.u-color-main {
  color: #0044B9;
}
.u-color-sub1 {
  color: #FFC800;
}
.u-color-sub2 {
  color: #A9CCE8;
}
.u-color-text {
  color: #000000;
}
.u-color-white {
  color: #fff;
}
.u-color-danger {
  color: #ff8000;
}
.u-color-red {
  color: #E90000;
}
.u-color-brown {
  color: #6F4708;
}
.u-color-green {
  color: #03973F;
}

/* 背景色 */
.u-bg-color-dark {
  background-color: #000;
}
.u-bg-color-hover {
  background-color: #4C87EC;
}
.u-bg-color-base {
  background-color: #0044B9;
}
.u-bg-color-main {
  background-color: #0044B9;
}
.u-bg-color-sub1 {
  background-color: #FFC800;
}
.u-bg-color-sub2 {
  background-color: #A9CCE8;
}
.u-bg-color-sub4 {
  background-color: #6F4708;
}
.u-bg-color-white {
  background-color: #fff;
}
.u-bg-color-black {
  background-color: #000;
}
.u-bg-color-gray2 {
  background-color: #F6F6F6;
}
.u-bg-color-light {
  background-color: #f4f8ff;
}
.u-bg-color-light2 {
  background-color: #fff5e6;
}
.u-bg-color-light3 {
  background-color: #e1f9e1;
}
.u-bg-color-light4 {
  background-color: #f8f2e8;
}
.u-bg-color-brown {
  background-color: #6F4708;
}
.u-bg-color-green {
  background-color: #03973F;
}

/* u-display */
.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-flex {
  display: flex;
}
.u-d-inline {
  display: inline;
}
@media screen and (min-width: 480px), print {
  .u-d-sm-none {
    display: none;
  }
  .u-d-sm-block {
    display: block;
  }
  .u-d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px), print {
  .u-d-md-none {
    display: none;
  }
  .u-d-md-block {
    display: block;
  }
  .u-d-md-flex {
    display: flex;
  }
}
@media screen and (min-width: 1100px), print {
  .u-d-lg-none {
    display: none;
  }
  .u-d-lg-block {
    display: block;
  }
  .u-d-lg-inline {
    display: inline;
  }
  .u-d-lg-flex {
    display: flex;
  }
}
@media screen and (min-width: 1600px), print {
  .u-d-xl-none {
    display: none;
  }
  .u-d-xl-block {
    display: block;
  }
  .u-d-xl-flex {
    display: flex;
  }
}

/* テキスト改行系 */
@media screen and (max-width: 1099.98px) {
  .u-br-pc {
    display: none;
  }
}

@media screen and (min-width: 1100px), print {
  .u-br-sp {
    display: none;
  }
}

/* u-layout */
/* float 回り込み防止 */
.u-clearfix::after {
  content: "";
  clear: both;
  display: block;
}

/* flex系 レイアウト */
.u-flex-1 {
  flex: 1;
  min-width: 0;
}

.u-justify-content-center {
  justify-content: center;
}

.u-align-items-center {
  align-items: center;
}

.u-align-items-end {
  align-items: flex-end;
}

.u-flex-row-reverse {
  flex-direction: row-reverse;
}

.u-font-feature-settings {
  font-feature-settings: "palt" 1;
}

/* アンカー位置調整 */
.u-anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -101px;
  margin-bottom: 100px;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .u-anchor-point::before {
    margin-top: -201px;
    margin-bottom: 200px;
  }
}

/* 画像を囲う要素 */
.u-img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

/* 画像をトリミング */
.u-img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* 画像を角丸にする */
.u-img-radius {
  border-radius: 1rem;
}
.u-img-radius-lg {
  border-radius: 1rem;
}
@media screen and (min-width: 1100px), print {
  .u-img-radius-lg {
    border-radius: 2rem;
  }
}

/* コンテンツを角丸にする */
.u-box-radius {
  border-radius: 1rem;
}
@media screen and (min-width: 1100px), print {
  .u-box-radius {
    border-radius: 1.5rem;
  }
}
.u-box-radius-lg {
  border-radius: 1rem;
}
@media screen and (min-width: 1100px), print {
  .u-box-radius-lg {
    border-radius: 2rem;
  }
}
.u-box-radius-xl {
  border-radius: 2.5rem;
}
@media screen and (min-width: 1100px), print {
  .u-box-radius-xl {
    border-radius: 5rem;
  }
}
.u-box-radius__lg {
  border-radius: 2rem;
}
@media screen and (min-width: 1100px), print {
  .u-box-radius__lg {
    border-radius: 3rem;
  }
}

/* box-shadow */
.u-box-shadow {
  box-shadow: 0 0 10px rgba(198, 177, 158, 0.25);
}
.u-box-shadow--blue {
  box-shadow: 0 0 6px 0 rgba(0, 118, 198, 0.3);
}

/* Google Maps */
.u-gmap-area {
  position: relative;
}
.u-gmap-area::before {
  content: "";
  display: block;
  padding-top: 38rem;
}
@media screen and (min-width: 1100px), print {
  .u-gmap-area::before {
    padding-top: 50rem;
  }
}
.u-gmap-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* list-style: none; */
.u-list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-mt-sm {
  margin-top: 8px !important;
}

.u-mb-sm {
  margin-bottom: 8px !important;
}

.u-ml-sm {
  margin-left: 8px !important;
}

.u-mr-sm {
  margin-right: 8px !important;
}

.u-mx-sm {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.u-my-sm {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-mt-md {
  margin-top: 16px !important;
}

.u-mb-md {
  margin-bottom: 16px !important;
}

.u-ml-md {
  margin-left: 16px !important;
}

.u-mr-md {
  margin-right: 16px !important;
}

.u-mx-md {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.u-my-md {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-mt-lg {
  margin-top: 24px !important;
}

.u-mb-lg {
  margin-bottom: 24px !important;
}

.u-ml-lg {
  margin-left: 24px !important;
}

.u-mr-lg {
  margin-right: 24px !important;
}

.u-mx-lg {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.u-my-lg {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-mt-xl {
  margin-top: 32px !important;
}

.u-mb-xl {
  margin-bottom: 32px !important;
}

.u-ml-xl {
  margin-left: 32px !important;
}

.u-mr-xl {
  margin-right: 32px !important;
}

.u-mx-xl {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.u-my-xl {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-mx-auto {
  margin-inline: auto;
}

.u-my-auto {
  margin-block: auto;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-pt-sm {
  padding-top: 8px !important;
}

.u-pb-sm {
  padding-bottom: 8px !important;
}

.u-pl-sm {
  padding-left: 8px !important;
}

.u-pr-sm {
  padding-right: 8px !important;
}

.u-px-sm {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.u-py-sm {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-pt-md {
  padding-top: 16px !important;
}

.u-pb-md {
  padding-bottom: 16px !important;
}

.u-pl-md {
  padding-left: 16px !important;
}

.u-pr-md {
  padding-right: 16px !important;
}

.u-px-md {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.u-py-md {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-pt-lg {
  padding-top: 24px !important;
}

.u-pb-lg {
  padding-bottom: 24px !important;
}

.u-pl-lg {
  padding-left: 24px !important;
}

.u-pr-lg {
  padding-right: 24px !important;
}

.u-px-lg {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.u-py-lg {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-pt-xl {
  padding-top: 32px !important;
}

.u-pb-xl {
  padding-bottom: 32px !important;
}

.u-pl-xl {
  padding-left: 32px !important;
}

.u-pr-xl {
  padding-right: 32px !important;
}

.u-px-xl {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.u-py-xl {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* テキスト位置 */
.u-text-left, .u-text-start {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right, .u-text-end {
  text-align: right;
}
@media screen and (min-width: 1100px), print {
  .u-text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .u-text-lg-center {
    text-align: center;
  }
}

/* テキストインデント */
.u-text-indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 下層ページ テキスト */
.u-text-body-md {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .u-text-body-md {
    font-size: 1.6rem;
  }
}
.u-text-body-sm {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.u-text-body-lg {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .u-text-body-lg {
    font-size: 1.8rem;
  }
}
.u-text-body-xl {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .u-text-body-xl {
    font-size: 2rem;
  }
}
.u-text-body-xxl {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .u-text-body-xxl {
    font-size: 2.2rem;
  }
}
.u-text-body-ultra {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .u-text-body-ultra {
    font-size: 2.4rem;
  }
}

/* フォントサイズ */
.u-fs-md {
  font-size: 1.6rem;
}
.u-fs-sm {
  font-size: 1.4rem;
}
.u-fs-lg {
  font-size: 1.8rem;
}
.u-fs-xl {
  font-size: 2rem;
}

/* 行間 */
.u-lh-xs {
  line-height: 1.35;
}
.u-lh-sm {
  line-height: 1.5;
}
.u-lh-base {
  line-height: 1.8;
}
.u-lh-lg {
  line-height: 2;
}

/* 太さ */
.u-fw-light {
  font-weight: 300;
}
.u-fw-normal {
  font-weight: 400;
}
.u-fw-medium {
  font-weight: 500;
}
.u-fw-semibold {
  font-weight: 600;
}
.u-fw-bold {
  font-weight: 700;
}
.u-fw-exbold {
  font-weight: 800;
}
.u-fw-black {
  font-weight: 900;
}

/* フォントファミリー */
.u-ft-gothic {
  font-family: "Lato", sans-serif;
  transform: rotate(0.05deg);
}
.u-ft-mincho {
  font-family: "Zen Old Mincho", serif;
}

/* 折り返し禁止 */
.u-text-nowrap {
  white-space: nowrap;
}

/* 三点リーダー 1行 */
.u-text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* アンダーライン */
.u-text-underline {
  text-decoration: underline;
}

/* テキストマーカー */
.u-text-marker {
  display: inline;
  background: linear-gradient(transparent 60%, #ff6 60%);
}

/* --------------------------------

  トップページ

-------------------------------- */
/* p-loading */
.p-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  text-align: center;
  color: #fff;
  background: #fff;
  transition: opacity 1.5s ease;
}
.p-loading.is-fadeout {
  opacity: 0;
  pointer-events: none;
}
.p-loading__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24rem;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease;
}
@media screen and (min-width: 768px), print {
  .p-loading__inner {
    width: 24rem;
  }
}
.p-loading__inner.is-fadeout {
  opacity: 0;
}
.p-loading__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.p-loading__logo img {
  width: auto;
  height: auto;
}
.p-loading__logo.js-anime-fadeup {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* p-home-mv */
.p-home-mv {
  position: relative;
  margin-top: 6rem;
  z-index: 0;
}
@media screen and (min-width: 1100px), print {
  .p-home-mv {
    margin-top: 12rem;
  }
}
.p-home-mv__image {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-home-mv__image {
    aspect-ratio: 500/734;
  }
}
@media screen and (min-width: 768px), print {
  .p-home-mv__image::before {
    content: "";
    display: block;
    padding-top: 60%;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-mv__image::before {
    padding-top: 90rem;
  }
}
.p-home-mv__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-home-mv__content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.p-home-mv__catch {
  display: inline-block;
  background-color: #ffffff;
  border-radius: 10em;
  padding: 2rem 3.5rem 1.8rem 3.5rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #4C87EC;
  font-size: 2.6rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .p-home-mv__catch {
    font-size: 3.2rem;
    padding: 2rem 5rem 1.5rem 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-mv__catch {
    font-size: 4.4rem;
    letter-spacing: 0.15em;
    padding: 2rem 9rem 1.5rem 9rem;
  }
}
.p-home-mv__catch-point {
  position: relative;
  font-size: 3.8rem;
  color: #0044B9;
  padding: 0.15em 0.25em;
  display: block;
}
@media screen and (min-width: 768px), print {
  .p-home-mv__catch-point {
    font-size: 4.2rem;
    display: inline;
    padding: 0 0.25em;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-mv__catch-point {
    font-size: 5.8rem;
  }
}
.p-home-mv__catch-point::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-51%);
  width: 120px;
  height: 14px;
  background: url("../img/top/mv_text_deco.png") no-repeat center/contain;
}
@media screen and (min-width: 768px), print {
  .p-home-mv__catch-point::before {
    width: 130px;
    height: 18px;
    top: 0.3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-mv__catch-point::before {
    width: 190px;
    height: 21px;
  }
}

/* p-home-items */
.p-home-items {
  position: relative;
  padding: 1.5rem 2rem;
  background: rgba(243, 223, 191, 0.9);
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .p-home-items {
    padding: 1.5rem 4rem;
  }
}
.p-home-items__slider {
  margin: 0 -2rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-items__slider {
    margin: 0 -4rem;
  }
}
.p-home-items__lead {
  color: #6F4708;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1.4rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-items__lead {
    font-size: 1.6rem;
  }
}
.p-home-items__action {
  text-align: center;
  margin-top: 1.5rem;
}

/* p-home-about */
.p-home-about {
  position: relative;
  padding: 5rem 2rem 12rem 2rem;
  background-color: #ffffff;
}
@media screen and (min-width: 1100px), print {
  .p-home-about {
    padding: 9.5rem 4rem 8rem 4rem;
  }
}
.p-home-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80rem;
  background-image: url("../img/top/sky_bg.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.p-home-about__inner {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}
.p-home-about__container {
  position: relative;
  padding: 2.5rem 2rem 3rem 2rem;
  border-radius: 4rem;
  background-color: #ffffff;
}
@media screen and (min-width: 1100px), print {
  .p-home-about__container {
    padding: 3rem 15rem;
    border-radius: 10em;
  }
}
@media screen and (min-width: 1440px), print {
  .p-home-about__container {
    padding: 3rem 10rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .p-home-about__container {
    max-width: 46rem;
    margin-inline: auto;
  }
}
.p-home-about__container::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 130px;
  background: url("../img/top/illust_02.png") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .p-home-about__container::before {
    width: 160px;
    height: 250px;
    top: -3rem;
    left: 0;
  }
}
@media screen and (min-width: 1440px), print {
  .p-home-about__container::before {
    width: 221px;
    height: 319px;
    top: -3rem;
    left: -13rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .p-home-about__container::before {
    bottom: -9.5rem;
    left: 0;
  }
}
.p-home-about__container::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 120px;
  background: url("../img/top/illust_03.png") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .p-home-about__container::after {
    width: 200px;
    height: 180px;
    bottom: -1rem;
    right: 0;
  }
}
@media screen and (min-width: 1440px), print {
  .p-home-about__container::after {
    width: 278px;
    height: 257px;
    bottom: -4rem;
    right: -14rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .p-home-about__container::after {
    bottom: -10rem;
    right: 0;
  }
}
.p-home-about__lead {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0044B9;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 480px), print {
  .p-home-about__lead {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-about__lead {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 1440px), print {
  .p-home-about__lead {
    font-size: 3.2rem;
  }
}
.p-home-about__heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 1.3rem;
}
@media screen and (min-width: 480px), print {
  .p-home-about__heading {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-about__heading {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1440px), print {
  .p-home-about__heading {
    font-size: 4.4rem;
  }
}
.p-home-about__heading-num {
  font-size: 3.2rem;
}
@media screen and (min-width: 480px), print {
  .p-home-about__heading-num {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-about__heading-num {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1440px), print {
  .p-home-about__heading-num {
    font-size: 6rem;
  }
}
.p-home-about__description {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0044B9;
}
@media screen and (min-width: 1100px), print {
  .p-home-about__description {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1440px), print {
  .p-home-about__description {
    font-size: 2.2rem;
  }
}

/* p-home-news */
.p-home-news {
  padding: 0 2rem 6rem 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-news {
    padding: 0 4rem 12rem 4rem;
  }
}
.p-home-news__inner {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}
.p-home-news__header {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-news__header {
    margin-bottom: 5rem;
  }
}
.p-home-news__action {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .p-home-news__action {
    margin-top: 5rem;
  }
}

/* p-home-voice */
.p-home-voice {
  padding: 0 2rem 5rem 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-voice {
    padding: 0 4rem 10rem 4rem;
  }
}
.p-home-voice__header {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-voice__header {
    margin-bottom: 2rem;
  }
}
.p-home-voice__action {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .p-home-voice__action {
    margin-top: 5rem;
  }
}
.p-home-voice__slider {
  margin-inline: -2rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-voice__slider {
    margin-inline: -4rem;
  }
}

/* p-home-contact */
.p-home-contact {
  padding: 4rem 2rem 5rem 2rem;
  border-radius: 8rem;
  background-color: #F6F6F6;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-contact {
    padding: 6rem 4rem 7rem 4rem;
    margin-bottom: 6rem;
    border-radius: 10em;
  }
}
.p-home-contact__heading {
  margin-inline: auto;
  max-width: 45rem;
}
@media screen and (min-width: 768px), print {
  .p-home-contact__heading {
    max-width: 70rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-contact__heading {
    max-width: none;
  }
}
.p-home-contact__heading img {
  margin-inline: auto;
}
.p-home-contact__container {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  gap: 1.5rem;
  max-width: 32rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px), print {
  .p-home-contact__container {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-contact__container {
    margin-top: 4rem;
  }
}
.p-home-contact__item {
  height: 15rem;
  border-radius: 2rem;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .p-home-contact__item {
    height: 17rem;
    border-radius: 10em;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-contact__item {
    height: 20rem;
  }
}
.p-home-contact__item--tel .p-home-contact__link {
  background-color: #6F4708;
}
.p-home-contact__item--tel .p-home-contact__title::before {
  background-image: url("../img/base/icon-tel_wht.svg");
}
.p-home-contact__item--mail .p-home-contact__link {
  background-color: #4C87EC;
}
.p-home-contact__item--mail .p-home-contact__title::before {
  background-image: url("../img/base/icon-mail_wht.svg");
}
.p-home-contact__item--line .p-home-contact__link {
  background-color: #03973F;
}
.p-home-contact__item--line .p-home-contact__link:hover {
  background-color: #03973F;
  opacity: 0.8;
}
.p-home-contact__item--line .p-home-contact__title::before {
  background-image: url("../img/base/icon-line.png");
}
.p-home-contact__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  place-content: center;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  padding: 1.5rem;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .p-home-contact__link {
    padding: 1.5rem 3rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-contact__link {
    padding: 1.5rem 4rem;
  }
}
@media (hover: hover) {
  .p-home-contact__link:where(:any-link, :enabled, summary):hover {
    background-color: #0044B9;
  }
}
.p-home-contact__title {
  position: relative;
  display: block;
  line-height: 1.2;
  padding-top: 4.5rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-contact__title {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-contact__title {
    padding-top: 7.5rem;
  }
}
.p-home-contact__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 1100px), print {
  .p-home-contact__title::before {
    height: 4rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-contact__title::before {
    height: 6rem;
  }
}
.p-home-contact__title-ja {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 1.3rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 1100px), print {
  .p-home-contact__title-ja {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-contact__title-ja {
    font-size: 2.8rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.1rem;
  }
}
.p-home-contact__title-en {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1100px), print {
  .p-home-contact__title-en {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-contact__title-en {
    font-size: 2.2rem;
  }
}

/* p-home-purchase */
.p-home-purchase {
  position: relative;
  padding: 5rem 2rem 7rem 2rem;
  background-color: #F4F8FF;
  border-radius: 8rem;
}
@media screen and (min-width: 768px), print {
  .p-home-purchase {
    border-radius: 10rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase {
    padding: 10rem 4rem 14rem 4rem;
    border-radius: 30rem;
  }
}
.p-home-purchase__inner {
  max-width: 50rem;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .p-home-purchase__inner {
    max-width: 126rem;
    border-radius: 2rem;
  }
}
.p-home-purchase__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .p-home-purchase__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.p-home-purchase__header {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__header {
    margin-bottom: 5rem;
  }
}
.p-home-purchase__item {
  position: relative;
  background-color: #0044B9;
  padding-bottom: 9rem;
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-home-purchase__item {
    border-radius: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__item {
    padding-bottom: 11rem;
  }
}
.p-home-purchase__item--shop .p-home-purchase__heading-title::before {
  width: 90px;
  height: 70px;
  background-image: url("../img/top/icon_ph_shop.svg");
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__item--shop .p-home-purchase__heading-title::before {
    width: 90px;
    height: 70px;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__item--shop .p-home-purchase__heading-title::before {
    width: 120px;
    height: 100px;
  }
}
.p-home-purchase__item--visit .p-home-purchase__heading-title::before {
  width: 95px;
  height: 60px;
  background-image: url("../img/top/icon_ph_visit.svg");
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__item--visit .p-home-purchase__heading-title::before {
    width: 95px;
    height: 60px;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__item--visit .p-home-purchase__heading-title::before {
    width: 128px;
    height: 87px;
  }
}
@media screen and (max-width: 1099.98px) {
  .p-home-purchase__item--visit .p-home-purchase__heading-title::before {
    top: 1.5rem;
  }
}
.p-home-purchase__item--delivery .p-home-purchase__heading-title::before {
  width: 80px;
  height: 77px;
  background-image: url("../img/top/icon_ph_delivery.svg");
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__item--delivery .p-home-purchase__heading-title::before {
    width: 80px;
    height: 77px;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__item--delivery .p-home-purchase__heading-title::before {
    width: 103px;
    height: 100px;
  }
}
.p-home-purchase__item--line .p-home-purchase__heading-title::before {
  width: 85px;
  height: 75px;
  background-image: url("../img/top/icon_ph_line.svg");
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__item--line .p-home-purchase__heading-title::before {
    width: 85px;
    height: 75px;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__item--line .p-home-purchase__heading-title::before {
    width: 110px;
    height: 100px;
  }
}
.p-home-purchase__action {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  padding-inline: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__action {
    bottom: 2.5rem;
  }
}
.p-home-purchase__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  letter-spacing: 0.05em;
  height: 21rem;
  line-height: 1.35;
  padding: 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__heading {
    height: 13rem;
    align-items: flex-end;
    flex-direction: row;
    line-height: 1.1;
    padding: 3.5rem 2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__heading {
    height: 16rem;
  }
}
.p-home-purchase__heading-title {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
  padding-top: 2em;
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__heading-title {
    font-size: 4.5rem;
    padding-left: 2.5em;
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__heading-title {
    font-size: 6rem;
  }
}
.p-home-purchase__heading-title::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__heading-title::before {
    left: 0;
    top: 50%;
    transform: translateY(-55%);
  }
}
@media screen and (max-width: 1099.98px) {
  .p-home-purchase__heading-title::before {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}
.p-home-purchase__heading-label {
  color: #BCD3F9;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__heading-label {
    padding-left: 1rem;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__heading-label {
    font-size: 3.2rem;
  }
}
.p-home-purchase__subheading {
  position: relative;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #6F4708;
  padding-left: 2.2em;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__subheading {
    font-size: 2rem;
    padding-left: 2.5em;
  }
}
.p-home-purchase__subheading--check::before {
  background: url("../img/top/icon_ph_check.svg") no-repeat center/contain;
}
.p-home-purchase__subheading--good::before {
  background: url("../img/top/icon_ph_good.svg") no-repeat center/contain;
}
.p-home-purchase__subheading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  width: 2.8rem;
  height: 2.8rem;
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__subheading::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.p-home-purchase__list {
  display: grid;
  gap: 0;
}
@media screen and (min-width: 1100px), print {
  .p-home-purchase__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.5rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__list {
    gap: 0 1.5rem;
  }
}
.p-home-purchase__list-item {
  position: relative;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 1em;
}
.p-home-purchase__list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__list-item {
    font-size: 1.6rem;
  }
}
.p-home-purchase__body {
  padding: 0 0.5rem;
  border-top: 1px dashed #F4F8FF;
}
.p-home-purchase__lead {
  color: #ffffff;
  line-height: 1.2;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 1.2rem 0;
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__lead {
    font-size: 1.6rem;
  }
}
.p-home-purchase__content {
  background-color: #F6F6F6;
  border-radius: 1rem;
  padding: 1.5rem;
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__content {
    padding: 3rem;
  }
}
.p-home-purchase__content-item:not(:last-child) {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #6F4708;
}
@media screen and (min-width: 1280px), print {
  .p-home-purchase__content-item:not(:last-child) {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

/* p-home-menu */
.p-home-menu {
  position: relative;
  padding: 5rem 2rem;
}
.p-home-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 150rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../img/top/about_bg.webp");
  z-index: -1;
}
@media screen and (min-width: 1100px), print {
  .p-home-menu::before {
    height: 181rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-menu {
    padding: 12rem 4rem 7rem 4rem;
  }
}
.p-home-menu__header {
  margin-bottom: 4rem;
}
@media screen and (min-width: 1100px), print {
  .p-home-menu__header {
    margin-bottom: 8rem;
  }
}
.p-home-menu-sns {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-home-menu-sns {
    gap: 3.5rem;
  }
}
.p-home-menu-sns__item {
  max-width: 4rem;
}
@media screen and (min-width: 768px), print {
  .p-home-menu-sns__item {
    max-width: none;
  }
}
.p-home-menu-sns__link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-home-menu-sns__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
.p-home-menu-action {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  margin-inline: auto;
  max-width: 35rem;
}
@media screen and (min-width: 768px), print {
  .p-home-menu-action {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
    max-width: 70rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-menu-action {
    margin-bottom: 7.5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5rem 1.5rem;
    max-width: none;
  }
}
.p-home-menu-action__link {
  display: block;
  width: 100%;
  height: 10rem;
  text-align: center;
  place-content: center;
  text-decoration: none;
  border-radius: 10em;
  background-color: #4C87EC;
  color: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px), print {
  .p-home-menu-action__link {
    height: 12rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-menu-action__link {
    height: 15rem;
  }
}
@media (hover: hover) {
  .p-home-menu-action__link:where(:any-link, :enabled, summary):hover {
    background-color: #0044B9;
  }
}
.p-home-menu-action__ja {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  padding-bottom: 1.3rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-home-menu-action__ja {
    font-size: 2.8rem;
    padding-bottom: 1.7rem;
    margin-bottom: 1.3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-menu-action__ja {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-menu-action__ja {
    font-size: 3.6rem;
  }
}
.p-home-menu-action__ja::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4rem;
  right: 4rem;
  height: 1px;
  background-color: #ffffff;
}
.p-home-menu-action__en {
  display: block;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px), print {
  .p-home-menu-action__en {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-menu-action__en {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-menu-action__en {
    font-size: 2.2rem;
  }
}

/* --------------------------------

  p-footer

-------------------------------- */
.p-footer-nav {
  background-color: #4C87EC;
  padding: 3rem 2rem;
  margin-inline: -2rem;
}
@media screen and (min-width: 1100px), print {
  .p-footer-nav {
    padding: 5.5rem 4rem;
    margin-inline: -4rem;
  }
}
.p-footer-nav__inner {
  max-width: 32rem;
  width: 100%;
  margin-inline: auto;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-nav__inner {
    max-width: 60rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-footer-nav__inner {
    grid-template-columns: repeat(2, 1fr);
    max-width: 110rem;
    gap: 2rem;
  }
}
.p-footer-nav__area--primary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-nav__area--primary {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.p-footer-nav__area--secondary {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #ffffff;
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-nav__area--secondary {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-footer-nav__group {
  padding: 2rem 2.5rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-nav__group:first-child {
    border-right: 1px solid #ffffff;
  }
}
@media screen and (max-width: 767.98px) {
  .p-footer-nav__group:first-child {
    border-bottom: 1px solid #ffffff;
  }
}
.p-footer-nav__heading {
  color: #ffffff;
  line-height: 1.2;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 2rem;
}
.p-footer-nav__item:not(:last-child) {
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-nav__item:not(:last-child) {
    margin-bottom: 1.8rem;
  }
}
.p-footer-nav__link {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  padding-left: 1.5em;
  font-family: "Noto Sans JP", sans-serif;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .p-footer-nav__link:where(:any-link, :enabled, summary):hover {
    color: #FFC800;
  }
}
.p-footer-nav__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/base/icon-arrow3_right_blue.svg") no-repeat center/contain;
}
.p-footer-shop__name {
  position: relative;
  display: block;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  border-bottom: 0.3rem solid #BCD3F9;
  text-wrap: inherit;
}
@media screen and (min-width: 1100px), print {
  .p-footer-shop__name {
    border-bottom: 0.5rem solid #BCD3F9;
  }
}
.p-footer-shop__link {
  display: inline;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #0044B9;
}
@media screen and (min-width: 1100px), print {
  .p-footer-shop__link {
    font-size: 2rem;
  }
}
@media (hover: hover) {
  .p-footer-shop__link:where(:any-link, :enabled, summary):hover {
    text-decoration: none;
  }
}
.p-footer-shop__row {
  display: grid;
  align-items: center;
  grid-template-columns: 8rem 1fr;
  gap: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
}
.p-footer-shop__row:not(:last-child) {
  margin-bottom: 1rem;
}
.p-footer-shop__term {
  display: block;
  background-color: #4C87EC;
  color: #ffffff;
  border-radius: 10em;
  font-size: 1.4rem;
  height: 2.7rem;
  text-align: center;
  place-content: center;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.p-footer-shop__desc {
  line-height: 1.35;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1100px), print {
  .p-footer-shop__desc {
    font-size: 1.6rem;
  }
}
.p-footer-shop__desc .tel-link {
  text-decoration: none;
  color: #000000;
}
.p-footer-shop__desc-small {
  font-size: 1rem;
  display: block;
}
@media screen and (min-width: 1100px), print {
  .p-footer-shop__desc-small {
    font-size: 1.2rem;
    display: inline;
  }
}
.p-footer-shops {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-shops {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-footer-shops__item {
  position: relative;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-shops__item {
    padding: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-footer-shops__item {
    padding: 4rem;
    border-radius: 2rem;
  }
}
.p-footer-shops__item--main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-shops__item--main {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2.5rem;
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 1100px), print {
  .p-footer-shops__item--main {
    gap: 5rem;
  }
}
.p-footer-sns {
  grid-column: 1/-1;
  background-color: #F6F6F6;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-sns {
    flex-direction: row;
    gap: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-footer-sns {
    border-radius: 3rem;
    padding: 2.3rem 2rem;
  }
}
.p-footer-sns--absolute {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-sns--absolute {
    padding: 0;
    background-color: transparent;
    z-index: 0;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    margin-top: 0;
  }
}
.p-footer-sns__text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0044B9;
}
@media screen and (min-width: 768px), print {
  .p-footer-sns__text {
    margin-left: 2.5rem;
    margin-right: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-footer-sns__text {
    font-size: 1.6rem;
  }
}
.p-footer-sns__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-footer-sns__list {
    gap: 2rem;
  }
}
.p-footer-sns__item {
  max-width: 3rem;
}
.p-footer-sns__link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-footer-sns__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
.p-footer-catch {
  max-width: 100rem;
  margin-inline: auto;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1100px), print {
  .p-footer-catch {
    margin-bottom: 6rem;
  }
}
.p-footer-catch__heading {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1100px), print {
  .p-footer-catch__heading {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 1440px), print {
  .p-footer-catch__heading {
    font-size: 5.5rem;
  }
}
.p-footer-catch__accent {
  position: relative;
  display: inline-block;
  font-size: 4.5rem;
  padding-inline: 0.15em;
}
@media screen and (min-width: 1100px), print {
  .p-footer-catch__accent {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1440px), print {
  .p-footer-catch__accent {
    font-size: 7.3rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .p-footer-catch__accent {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
.p-footer-catch__accent::before {
  content: "";
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 16px;
  background: url("../img/top/footer_catch_accent.png") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .p-footer-catch__accent::before {
    width: 200px;
    height: 20px;
    top: -1.2rem;
  }
}
@media screen and (min-width: 1440px), print {
  .p-footer-catch__accent::before {
    width: 238px;
    height: 26px;
  }
}
.p-footer-catch__lead {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.1em;
  padding: 1.5rem 0 1.6rem 0;
  color: #ffffff;
  text-align: center;
  border-top: 1px solid #4C87EC;
  border-bottom: 1px solid #4C87EC;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1100px), print {
  .p-footer-catch__lead {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1440px), print {
  .p-footer-catch__lead {
    font-size: 2.2rem;
  }
}

/* --------------------------------

  下層ページ 共通

-------------------------------- */
/* 下層ページセクション */
.p-secondary {
  padding: 5rem 2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .p-secondary {
    padding: 10rem 4rem;
  }
}
.p-secondary__header {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1100px), print {
  .p-secondary__header {
    margin-bottom: 5rem;
  }
}

/* お知らせ一覧 */
.p-news-list__more, .p-news-list__back {
  margin-top: 3rem;
}
/* お知らせ詳細 */
.p-news-detail__meta {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1100px), print {
  .p-news-detail__meta {
    margin-bottom: 3rem;
  }
}
.p-news-detail__date {
  display: block;
  width: 10.2ch;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px), print {
  .p-news-detail__date {
    width: 11.4ch;
  }
}
@media screen and (min-width: 1100px), print {
  .p-news-detail__date {
    width: 11.8ch;
    font-size: 1.6rem;
  }
}
.p-news-detail__category {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  margin-right: 1em;
  height: 3rem;
  padding: 0 1rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  background-color: #4C87EC;
}
.p-news-detail__category a {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.p-news-detail__category a:hover {
  text-decoration: none;
}
@media screen and (min-width: 1100px), print {
  .p-news-detail__category {
    height: 3.5rem;
    padding: 0 2.6rem;
    font-size: 1.4rem;
  }
}
.p-news-detail__body {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (min-width: 768px), print {
  .p-news-detail__body {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.p-news-detail__body h3 {
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem 0.4rem 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  font-size: 2.1rem;
  color: #0044B9;
  border-left: 2px solid currentColor;
}
@media screen and (min-width: 768px), print {
  .p-news-detail__body h3 {
    margin-bottom: 2rem;
    padding: 0.5rem 1rem 0.5rem 2rem;
    font-size: 2.6rem;
  }
}
.p-news-detail__body h4 {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 400;
  font-size: 1.8rem;
  border-bottom: 2px solid #eee;
}
.p-news-detail__body h4::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 15rem;
  height: 2px;
  background-color: #0044B9;
}
@media screen and (min-width: 768px), print {
  .p-news-detail__body h4 {
    font-size: 2rem;
  }
  .p-news-detail__body h4::before {
    width: 22rem;
  }
}
.p-news-detail__body h3 + h4 {
  margin-top: 3rem;
}
.p-news-detail__body img {
  display: inline-block;
  vertical-align: top;
}
.p-news-detail__body .btn {
  position: relative;
  display: inline-block;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.15em 3.5em 1.15em 2em;
  border-radius: 10em;
  text-decoration: none;
  background-color: #0044B9;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .p-news-detail__body .btn {
    font-size: 1.6rem;
  }
}
.p-news-detail__body .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: url("../img/base/icon-arrow_right_wht.svg") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .p-news-detail__body .btn::before {
    right: 2.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (hover: hover) {
  .p-news-detail__body a.btn:hover:where(:any-link, :enabled, summary):hover {
    background-color: #4C87EC;
    color: #fff;
  }
}
.p-news-detail__body table {
  width: 100%;
}
.p-news-detail__body th,
.p-news-detail__body td {
  padding: 1rem;
}
.p-news-detail__body th {
  font-weight: 400;
  color: #fff;
  background-color: #0044B9;
}
.p-news-detail__body td {
  border: 1px solid #bbb;
}
.p-news-detail__back {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-news-detail__back {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-news-detail__back {
    margin-top: 9rem;
  }
}

/* 選ばれる3つのポイント */
.p-feature__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 3rem;
  counter-reset: feature_list;
}
.p-feature__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0px;
}
.p-feature__heading {
  display: grid;
  place-content: center;
  position: relative;
  line-height: 1.35;
  font-size: 1.9rem;
  padding: 6rem 1ch 0;
}
.p-feature__counter {
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 5rem;
  margin: auto;
}
.p-feature__counter-icon {
  display: block;
  width: 100%;
}
.p-feature__counter::before {
  counter-increment: feature_list;
  content: counter(feature_list, decimal-leading-zero);
  display: grid;
  place-content: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 0.65ch;
  color: #fff;
  letter-spacing: 0.05em;
}
.p-feature__img {
  padding: 1.5rem;
}
.p-feature__img img {
  width: 100%;
}
.p-feature__title {
  line-height: 1.35;
  font-size: 1.6rem;
}
.p-feature__text {
  padding: 0.75rem 2.2rem 2.5rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .p-feature__list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1.5rem;
    grid-row-gap: 0px;
  }
}
@media screen and (min-width: 1100px), print {
  .p-feature__list {
    grid-column-gap: 2.5rem;
  }
  .p-feature__heading {
    font-size: 2.2rem;
  }
  .p-feature__title {
    font-size: 1.8rem;
  }
  .p-feature__text {
    font-size: 1.6rem;
  }
}

/* ご挨拶・スタッフ紹介 */
.p-staff__img {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-staff__img {
    margin: 0.5ch 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-staff__img {
    margin-left: 4rem;
  }
}

/* 会社概要 */
.p-outline th {
  width: 20rem;
}
/* 店舗案内 */
.p-shop-intro__title {
  font-size: 2.2rem;
}
.p-shop-intro__text {
  margin-top: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-shop-intro__title {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-shop-intro__title {
    font-size: 3rem;
  }
}

/* 店舗案内 */
.p-shop-nav {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
}
.p-shop-nav__link {
  display: flex;
  flex-direction: row-reverse;
  max-width: 48rem;
  height: 100%;
  margin-inline: auto;
  line-height: 1.5;
  text-decoration: none;
}
.p-shop-nav__link:hover .p-shop-nav__img img {
  transform: scale(1.05);
}
.p-shop-nav__link:hover .p-shop-nav__label {
  background-color: #4C87EC;
}
.p-shop-nav__link:hover .p-shop-nav__label::after {
  transform: translateY(0.3rem);
}
.p-shop-nav__img {
  aspect-ratio: 180/153;
  display: block;
  width: 40%;
  position: relative;
  border-radius: 0 1rem 1rem 0;
  overflow: hidden;
}
.p-shop-nav__img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.p-shop-nav__label {
  display: grid;
  place-content: center;
  position: relative;
  padding: 2.5rem 0 3.4rem;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 1rem 0 0 1rem;
  transition: background-color 0.3s;
}
.p-shop-nav__label::after {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  width: 1.2rem;
  margin: auto;
  background: url("../img/pages/shop/icon-arrow_bottom_wht.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px), print {
  .p-shop-nav {
    grid-template-columns: repeat(3, 1fr);
    padding: 3rem;
  }
  .p-shop-nav__link {
    flex-direction: column;
    max-width: none;
    margin-inline: 0;
  }
  .p-shop-nav__img {
    aspect-ratio: 320/200;
    width: auto;
    border-radius: 1rem 1rem 0 0;
  }
  .p-shop-nav__label {
    place-content: center left;
    padding: 2rem 0.5rem 3rem 3.5rem;
    text-align: left;
    border-radius: 0 0 1rem 1rem;
  }
  .p-shop-nav__label::before {
    content: "";
    display: block;
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 3px;
    height: calc(100% - 5rem);
    background-color: #bcd3f9;
  }
  .p-shop-nav__label::after {
    bottom: 1.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-shop-nav {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }
  .p-shop-nav__label {
    padding: 2rem 1rem 4rem 5.5rem;
    line-height: 1.35;
    font-size: 2.2rem;
  }
  .p-shop-nav__label::before {
    left: 3.5rem;
    height: calc(100% - 6rem);
  }
  .p-shop-nav__label::after {
    bottom: 1.4rem;
  }
}

/* ３店合同SNS */
.p-shop-sns {
  margin-top: 3rem;
  border-radius: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-shop-sns {
    margin-top: 5rem;
    border-radius: 10em;
  }
}
/* 店舗情報 */
.p-shop-info__side {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}
.p-shop-info__outline th {
  width: 15rem;
}
.p-shop-info__map {
  background-color: #eee;
}
.p-shop-info__more {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px), print {
  .p-shop-info__side {
    width: 30rem;
    max-width: none;
    margin: 0.8ch 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-shop-info__side {
    width: 50rem;
    margin-left: 4rem;
  }
  .p-shop-info__text {
    font-size: 1.8rem;
  }
  .p-shop-info__outline th {
    width: 20rem;
  }
}

/* 店舗画像 */
.p-shop-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-shop-gallery {
    grid-column-gap: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-shop-gallery {
    grid-column-gap: 3rem;
    margin-top: 5rem;
  }
}

/* アクセス */
.p-shop-access__row + .p-shop-access__row {
  margin-top: 1.5rem;
}
.p-shop-access__title {
  display: grid;
  place-content: center;
  width: 8rem;
  height: 3rem;
  margin: 0 auto 0.5rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px), print {
  .p-shop-access__row + .p-shop-access__row {
    margin-top: 0.8rem;
  }
  .p-shop-access__title {
    margin: 0;
  }
  .p-shop-access__text {
    margin-left: 2rem;
  }
}
/* その他のサービス */
@media screen and (min-width: 768px), print {
  .p-other-service-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-other-service-nav .p-shop-nav__link {
    flex-direction: row-reverse;
  }
  .p-other-service-nav .p-shop-nav__img {
    width: 12rem;
    border-radius: 0 1rem 1rem 0;
  }
  .p-other-service-nav .p-shop-nav__label {
    padding: 2rem 0.5rem 3rem 3.5rem;
    border-radius: 1rem 0 0 1rem;
  }
  .p-other-service-nav .p-shop-nav__label::before {
    height: calc(100% - 5rem);
  }
  .p-other-service-nav .p-shop-nav__label::after {
    bottom: 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-other-service-nav .p-shop-nav__img {
    width: 18rem;
  }
  .p-other-service-nav .p-shop-nav__label {
    padding: 3rem 0.5rem 3rem 5rem;
    border-radius: 1rem 0 0 1rem;
  }
  .p-other-service-nav .p-shop-nav__label::before {
    top: 3rem;
    left: 3rem;
    height: calc(100% - 6rem);
  }
}

/* フルールドフォレ　公式インスタグラム */
.p-fleur_de_foret-sns {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
}
.p-fleur_de_foret-sns__title {
  line-height: 1.5;
}
.p-fleur_de_foret-sns__insta {
  width: 3rem;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px), print {
  .p-fleur_de_foret-sns {
    padding: 2rem 2.5rem;
    text-align: left;
  }
  .p-fleur_de_foret-sns__insta {
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1100px), print {
  .p-fleur_de_foret-sns {
    padding: 2.5rem 4rem;
  }
}

/* パンフレットのダウンロードはこちら */
.p-shop-download {
  margin-top: 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-shop-download {
    margin-top: 3rem;
  }
}

/* 買取品目 */
.p-items-intro__header {
  position: relative;
  margin-bottom: 3rem;
}
.p-items-intro__heading {
  padding: 3rem 1rem 2rem;
  font-size: 2.4rem;
  border-radius: 2rem;
}
.p-items-intro__shop {
  font-size: 1.2em;
}
.p-items-intro__img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -2rem;
  pointer-events: none;
}
.p-items-intro__img .img {
  display: block;
  height: auto;
}
.p-items-intro__img .img-01 {
  width: 12rem;
}
.p-items-intro__img .img-02 {
  width: 15rem;
}
@media screen and (min-width: 768px), print {
  .p-items-intro__header {
    margin-bottom: 5rem;
    padding: 5rem 0 2rem;
  }
  .p-items-intro__heading {
    padding: 3rem 0;
    font-size: 2.8rem;
    border-radius: 10em;
  }
  .p-items-intro__img {
    display: block;
    margin-bottom: 0;
  }
  .p-items-intro__img .img {
    position: absolute;
  }
  .p-items-intro__img .img-01 {
    bottom: 0;
    left: 0;
  }
  .p-items-intro__img .img-02 {
    right: 0;
    bottom: 2rem;
  }
  .p-items-intro__shop {
    margin-right: 0.5ch;
    font-size: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .p-items-intro__header {
    padding: 0 0 7rem;
  }
  .p-items-intro__heading {
    font-size: 3.6rem;
  }
  .p-items-intro__img .img-01 {
    width: 17.9rem;
  }
  .p-items-intro__img .img-02 {
    width: 23.4rem;
  }
}

/* 買取できるもの */
.p-valid-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.p-valid-items__img {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-valid-items__img img {
  width: 100%;
  height: auto;
  border-radius: 1rem 1rem 0 0;
}
.p-valid-items__caption {
  flex: 1;
  display: grid;
  place-content: center;
  padding: 1.2rem 1ch;
  line-height: 1.2;
  border-radius: 0 0 1rem 1rem;
}
@media screen and (min-width: 768px), print {
  .p-valid-items {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 3rem;
  }
  .p-valid-items__caption {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-valid-items {
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 2.5rem;
    grid-row-gap: 3.5rem;
  }
  .p-valid-items__caption {
    font-size: 2rem;
  }
}

/* 買取できないもの */
.p-invalid-items {
  padding: 0 2rem 10rem;
}
.p-invalid-items li + li {
  margin-top: 1rem;
}
.p-invalid-items li {
  position: relative;
  line-height: 1.5;
  padding-left: 2.9rem;
}
.p-invalid-items li::before {
  aspect-ratio: 1/1;
  content: "";
  display: block;
  position: absolute;
  top: 0.5ch;
  left: 0;
  width: 1.4rem;
  background: url(../img/pages/items/icon.svg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  .p-invalid-items {
    max-width: 80rem;
    margin: auto;
    padding: 0;
  }
  .p-invalid-items li + li {
    margin-top: 1.5rem;
  }
  .p-invalid-items li {
    padding-left: 4.8rem;
  }
  .p-invalid-items li::before {
    top: 0.4ch;
    width: 1.8rem;
  }
}
/* 査定・買取 */
.p-purchase-intro {
  padding-bottom: 0;
}
.p-purchase-intro__target {
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .p-purchase-intro__target {
    font-size: 2rem;
  }
}

/* 査定・買取の特徴 */
.p-purchase-feature__item + .p-purchase-feature__item {
  margin-top: 5rem;
}
.p-purchase-feature__img {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .p-purchase-feature__item + .p-purchase-feature__item {
    margin-top: 8rem;
  }
  .p-purchase-feature__img {
    width: 25rem;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-purchase-feature__item {
    position: relative;
    min-height: 21rem;
    padding-right: 34rem;
  }
  .p-purchase-feature__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 31rem;
    margin: 0;
  }
}

/* 査定・買取の流れ */
.p-purchase-flow__list {
  counter-reset: purchase_flow;
  padding-top: 4.4rem;
}
.p-purchase-flow__item {
  padding: 5rem 2rem 2rem;
}
.p-purchase-flow__item + .p-purchase-flow__item {
  margin-top: 6.5rem;
}
.p-purchase-flow__title {
  margin-bottom: 1.5rem;
  line-height: 1.35;
  font-size: 2.2rem;
}
.p-purchase-flow__count {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7rem;
  margin: -8.5rem auto 1.5rem;
  padding: 0 0 0.25ch 0;
  line-height: 1.2;
  font-size: 1.4rem;
  border-radius: 100%;
}
.p-purchase-flow__count::before {
  content: "STEP";
  display: block;
}
.p-purchase-flow__count::after {
  counter-increment: purchase_flow;
  content: counter(purchase_flow, decimal-leading-zero);
  display: block;
  line-height: 1;
  font-size: 1.8em;
}
.p-purchase-flow__img {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .p-purchase-flow__img {
    width: 25rem;
    margin: 0.5ch 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-purchase-flow__list {
    max-width: 95rem;
    margin-inline: auto;
    padding-top: 4.4rem;
  }
  .p-purchase-flow__item {
    padding: 6rem 4.5rem 3rem;
  }
  .p-purchase-flow__item + .p-purchase-flow__item {
    margin-top: 9.4rem;
  }
  .p-purchase-flow__title {
    margin-bottom: 2.5rem;
    font-size: 3.2rem;
  }
  .p-purchase-flow__count {
    width: 8.8rem;
    margin: -10.4rem auto 2rem;
    font-size: 2rem;
  }
  .p-purchase-flow__img {
    width: 31rem;
    margin-left: 3rem;
  }
}

/* 査定・買取の流れ */
.p-purchase-note {
  margin-top: 3rem;
  padding: 2.5rem;
}
.p-purchase-note__head {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 4rem;
  line-height: 1.3;
  font-size: 1.8rem;
}
.p-purchase-note__head::before {
  aspect-ratio: 35/30;
  content: "";
  display: block;
  position: absolute;
  top: -0.3rem;
  left: -0.5rem;
  width: 2.8rem;
  background: url(../img/base/icon-check_brown.svg) center no-repeat;
  background-size: cover;
}
.p-purchase-note__list {
  list-style-type: "・";
}
.p-purchase-note__list li {
  margin-left: 1em;
  padding-left: 0.5em;
  line-height: 1.5;
}
.p-purchase-note__list li + li {
  margin-top: 0.5rem;
}
.p-purchase-note__list--note {
  list-style-type: "※";
}
.p-purchase-note__list--note li {
  padding-left: 0.1em;
}
.p-purchase-note__list + .p-purchase-note__list {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px), print {
  .p-purchase-note__list + .p-purchase-note__list {
    margin-top: 0;
    margin-left: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-purchase-note {
    padding: 3.5rem;
  }
  .p-purchase-note__head {
    margin-bottom: 2.5rem;
    padding-left: 5rem;
    font-size: 2rem;
  }
  .p-purchase-note__head::before {
    width: 3.5rem;
  }
  .p-purchase-note__list + .p-purchase-note__list {
    margin-left: 4rem;
  }
}

/* こんな方におすすめ！ */
.p-purchase-recommended {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1.5rem -2.5rem 0;
}
.p-purchase-recommended__col {
  width: 50%;
  padding: 0 1.5rem 2.5rem 0;
}
.p-purchase-recommended__title {
  margin-bottom: 1rem;
  line-height: 1.35;
  font-size: 1.8rem;
}
.p-purchase-recommended__img {
  margin-bottom: 1rem;
}
.p-purchase-recommended__text {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .p-purchase-recommended__col {
    width: 33.33333%;
  }
  .p-purchase-recommended__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-purchase-recommended {
    margin: 0 -3rem -3rem 0;
  }
  .p-purchase-recommended__col {
    padding: 0 3rem 3rem 0;
  }
}

/* LINE査定・買取の流れ */
.p-purchase-line__mv {
  margin-top: 3rem;
}
.p-purchase-line__id {
  margin-top: 1.5rem;
}
.p-purchase-line__more {
  margin-bottom: -2rem;
  padding: 3rem 0;
}
@media screen and (min-width: 768px), print {
  .p-purchase-line__mv {
    margin-top: 4rem;
  }
  .p-purchase-line__more {
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-purchase-line__more {
    margin-top: 3rem;
  }
}

/* よくあるご質問 */
.p-faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-faq-nav {
    gap: 2rem;
    padding: 3rem;
  }
}
@media screen and (max-width: 639.98px) {
  .p-faq-nav {
    flex-direction: column;
  }
  .p-faq-nav__link {
    max-width: 44ch;
    margin-inline: auto;
  }
  .p-faq-nav .c-link-button {
    display: block;
    line-height: 1.4;
  }
}

/* よくある質問 */
.p-faq__row {
  padding: 2.5rem 2rem;
  border-radius: 2rem;
}
.p-faq__row + .p-faq__row {
  margin-top: 2rem;
}
.p-faq__icon {
  display: grid;
  place-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-right: 1.6rem;
  font-size: 2rem;
}
.p-faq__icon-q {
  padding: 0 0.1ch 0.2ch 0;
  border-radius: 100%;
}
.p-faq__icon-a {
  padding: 0 0 0.1ch 0;
  border-radius: 1.2rem;
}
.p-faq__question {
  line-height: 1.2;
  font-size: 1.8rem;
}
.p-faq__answer {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-faq__row {
    border-radius: 2.4rem;
  }
  .p-faq__row + .p-faq__row {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-faq__row {
    padding: 3.2rem;
  }
  .p-faq__question {
    font-size: 2rem;
  }
  .p-faq__answer {
    margin-top: 3rem;
  }
}

/* --------------------------------

  swiper

-------------------------------- */
.swiper-pagination {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: flex;
  justify-content: flex-end;
  padding: 0 1.5rem 0 0;
}
@media screen and (min-width: 480px), print {
  .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
}
@media screen and (min-width: 1440px), print {
  .swiper-pagination {
    padding: 0 2rem 1.5rem 0;
  }
}
@media screen and (max-width: 479.98px) {
  .swiper-pagination {
    display: none;
  }
}
.swiper-pagination-bullet {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #A9CCE8;
  opacity: 1;
}
@media screen and (min-width: 1100px), print {
  .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.swiper-pagination-bullet-active {
  background-color: #0B41B1;
}
.swiper.items-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper.items-swiper .items-slide {
  width: 175px !important;
  height: 125px !important;
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
}
.swiper.items-swiper .items-slide__image img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}
.swiper.items-swiper .items-slide__image-title {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 400;
  height: 2.5rem;
  place-content: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #6F4708;
}
.swiper.voice-swiper {
  padding-top: 2.5rem;
}
@media screen and (min-width: 1280px), print {
  .swiper.voice-swiper {
    padding-top: 4rem;
  }
}
.swiper.voice-swiper .voice-slide {
  width: 100%;
  height: 100%;
}
.swiper.voice-swiper .voice-slide__link {
  display: block;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .swiper.voice-swiper .voice-slide__link:where(:any-link, :enabled, summary):hover {
    color: #0044B9;
  }
  .swiper.voice-swiper .voice-slide__link:where(:any-link, :enabled, summary):hover .voice-slide__image::before {
    opacity: 1;
  }
  .swiper.voice-swiper .voice-slide__link:where(:any-link, :enabled, summary):hover .voice-slide__image img {
    border-color: #0044B9;
  }
}
.swiper.voice-swiper .voice-slide__title {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 1.5rem;
  padding-inline: 0.5rem;
}
@media screen and (min-width: 1100px), print {
  .swiper.voice-swiper .voice-slide__title {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}
.swiper.voice-swiper .voice-slide__image {
  position: relative;
  aspect-ratio: 300/350;
}
.swiper.voice-swiper .voice-slide__image::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: -0.8rem;
  width: 80px;
  height: 90px;
  background: url("../img/top/voice_hov_check.png") no-repeat center/contain;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1280px), print {
  .swiper.voice-swiper .voice-slide__image::before {
    width: 115px;
    height: 121px;
    top: -3.5rem;
    left: -1.2rem;
  }
}
.swiper.voice-swiper .voice-slide__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  border: 5px solid transparent;
  transition: border-color 0.3s ease;
}
