@charset "UTF-8";
/* ==============================
Foundation
================================= */
/*
---
name: index
category:
  - object
  - object/foundation/index
---
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/*
---
name: index
category:
  - object
  - object/global/index
---
*/
/*
---
name: variable
category:
  - global/variable
---

変数 設定

*/
/*
---
name: mixin
category:
  - global/mixin
---

*/
/*
---
name: base
category:
  - foundation/base
---

基本設定

*/
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NotoSerifJP-Regular.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/NotoSerifJP-Bold.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/RobotoSlab-Regular.ttf) format("truetype");
  font-display: swap;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #333333;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 0;
    font-size: 1.6rem;
  }
}
body.is-fixed {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}
body.modal-fixed {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

a {
  transition-duration: 0.4s;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

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

p {
  margin-top: 0;
}

.pcNone {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

.spNone {
  display: block;
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

/* ==============================
Layout
================================= */
/*
---
name: index
category:
  - object
  - object/layout/index
---
*/
/*
---
name: block
category:
  - object
  - object/layout/block
---

block

*/
.l-block--orange {
  background-color: #FF8F33;
}
.l-block--lightyellow {
  background-color: #FFFBE3;
}
.l-block--lightorange {
  background-color: #FAF6ED;
}
.l-block--white {
  background-color: #fff;
}
.l-block--left {
  margin-left: calc(50% - 50vw);
  padding: 0 0 0 calc(50vw - 50%);
}
.l-block--right {
  margin-right: calc(50% - 50vw);
  padding: 0 calc(50vw - 50%) 0 0;
}
.l-block__inner--pattern1 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .l-block__inner--pattern1 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/*
---
name: container
category:
  - object
  - object/layout/container
---

container

*/
.l-container {
  max-width: 1160px;
  width: 100%;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/*
---
name: header
category:
  - object
  - object/layout/header
---

ヘッダー全体

*/
.l-header__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 20px;
}
@media (max-width: 1179px) {
  .l-header__inner {
    padding: 0 0 10px 20px;
  }
}
@media screen and (max-width: 1179px) and (max-width: 768px) {
  .l-header__inner {
    padding: 0 0 0 15px;
  }
}

/*
---
name: footer
category:
  - object
  - object/layout/footer
---

フッター全体。

*/
.l-footer__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 40px 60px 60px;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding: 45px 30px 50px;
  }
}

/*
---
name: section
category:
  - object
  - object/layout/section
---

section

*/
.l-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.l-section--pt0 {
  padding-top: 0;
}
.l-section--pb-lg {
  padding-bottom: 90px;
}
.l-section--under-slider {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .l-section--under-slider {
    margin-top: 20px;
  }
}
.l-section__block {
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .l-section__block {
    padding-top: 40px;
  }
}
.l-section__stack {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .l-section__stack {
    gap: 40px;
  }
}

/* ==============================
Object
================================= */
/*
Component
----------------------------- */
/*
---
name: index
category:
  - object
  - object/component/index
---
*/
/*
---
name: anchor
category:
  - object
  - object/component/anchor
---

固定ヘッダーのときのページ内リンクのアンカーのずれを解消するためのクラスです。

*/
.c-anchor {
  margin-top: -80px !important;
  padding-top: 80px !important;
}

/*
---
name: arrow
category:
  - object
  - object/component/arrow
---

矢印

*/
.c-arrow {
  position: relative;
  display: inline-block;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  transition: all 0.5s;
}
.c-arrow:before, .c-arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.5s;
}

/*
---
name: breadcrumb
category:
  - object
  - object/component/breadcrumb
---

パンくずナビ

*/
.c-breadcrumb {
  border-top: 1px solid #B2B2B2;
}
.c-breadcrumb__inner {
  max-width: 1120px;
  margin-inline: auto;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb__inner {
    width: 100%;
  }
}
.c-breadcrumb__list {
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
  margin-bottom: 0;
  margin-top: 0;
  padding: 15px 0;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb__list {
    padding: 15px 20px;
  }
}
.c-breadcrumb__list-item {
  list-style: none;
  position: relative;
  margin-left: 40px;
}
.c-breadcrumb__list-item a {
  text-decoration: underline;
}
.c-breadcrumb__list-item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  transform: translateY(-50%) rotate(-45deg);
  margin-left: 15px;
}

/*
---
name: button
category:
  - object
  - object/component/button
---

ボタン

*/
.c-button {
  position: relative;
  display: inline-block;
  width: 280px;
  background-image: linear-gradient(90deg, #ff811a 50%, #f6f271);
  color: #fff;
  padding: 15px;
  border-radius: 50px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .c-button {
    padding: 15px 20px;
    max-width: 100%;
    width: 100%;
  }
}
.c-button:hover {
  opacity: 0.5;
}
.c-button--center {
  text-align: center;
}
.c-button--left {
  text-align: left;
}
.c-button--right {
  text-align: right;
}
.c-button--solid {
  background-image: none;
  background: #FF811A;
}
.c-button--iconArrow:before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-button--iconArrow:before {
    width: 30px;
    height: 30px;
  }
}
.c-button--iconArrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #FF8F33;
  border-bottom: 2px solid #FF8F33;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c-button--iconArrow:after {
    right: 28px;
    width: 8px;
    height: 8px;
  }
}
.c-button--iconArrow-left:before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-button--iconArrow-left:before {
    left: 30px;
    width: 30px;
    height: 30px;
  }
}
.c-button--iconArrow-left:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #FF8F33;
  border-bottom: 2px solid #FF8F33;
  transform: translateY(-50%) rotate(135deg);
}
@media screen and (max-width: 768px) {
  .c-button--iconArrow-left:after {
    left: 26px;
    width: 10px;
    height: 10px;
  }
}
.c-button__pageLink {
  background: #fff;
  color: #333333;
  border: 1px solid #FF811A;
  padding: 10px;
  font-size: 1.4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-button__pageLink {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
}
.c-button__pageLink.c-button--iconArrow:before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #FF8F33;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-button__pageLink.c-button--iconArrow:before {
    right: 5px;
  }
}
.c-button__pageLink.c-button--iconArrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .c-button__pageLink.c-button--iconArrow:after {
    right: 22px;
  }
}

/*
---
name: grid
category:
  - object
  - object/component/grid
---

グリッド

*/
.c-grid {
  display: grid;
}
.c-grid--2columns01 {
  gap: 60px;
}
@media screen and (min-width: 992px) {
  .c-grid--2columns01.tb-1columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .c-grid--2columns01.tb-1columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-grid--2columns01 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .c-grid--2columns01 {
    gap: 30px;
  }
}
.c-grid--3columns {
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .c-grid--3columns.tb-2columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .c-grid--3columns.tb-2columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-grid--3columns.tb-2columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .c-grid--3columns.tb-1columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .c-grid--3columns.tb-1columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-grid--3columns.sp-2columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-grid--3columns.sp-2columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-grid--3columns.sp-2columns {
    gap: 30px 15px;
  }
}
.c-grid--4columns {
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .c-grid--4columns.tb-2columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .c-grid--4columns.tb-2columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-grid--4columns.tb-2columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-grid--4columns.sp-2columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
.c-grid.nogap {
  gap: 0;
}

/*
---
name: grid
category:
  - object
  - object/component/grid
---

メディアオブジェクト

*/
.c-media {
  display: flex;
}
.c-media--2columns-wrapper {
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-media--2columns-wrapper {
    gap: 30px;
  }
}
.c-media--2columns {
  gap: 60px;
}
@media screen and (max-width: 992px) {
  .c-media--2columns {
    flex-direction: column;
    gap: 20px;
  }
}
.c-media--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 992px) {
  .c-media--reverse {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .c-media--sp-reverse {
    flex-direction: column-reverse;
  }
}
.c-media__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.c-media__img img {
  border-radius: 12px;
}
.c-media__img--left {
  min-width: 380px;
}
@media screen and (max-width: 768px) {
  .c-media__img--left {
    min-width: auto;
  }
}
.c-media__img--right {
  min-width: 440px;
}
.c-media__img--right.access {
  min-width: 560px;
}
@media screen and (max-width: 768px) {
  .c-media__img--right.access {
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-media__img--right {
    min-width: auto;
  }
}
.c-media__title {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .c-media__title {
    margin-top: 30px;
  }
}
.c-media__text {
  width: 100%;
}
.c-media__text--wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-media__text--wrapper {
    gap: 30px;
  }
}

/*
---
name: hamburger
category:
  - object
  - object/component/hamburger
---

ハンバーガーメニュー

*/
.c-hamburgerBox {
  display: none;
}
@media (max-width: 1179px) {
  .c-hamburgerBox {
    display: block;
    position: relative;
    z-index: 300;
    align-self: flex-start;
  }
}

.c-hamburger {
  appearance: none;
  width: 70px;
  height: 70px;
  color: #fff;
  background-color: #FF811A;
  border: none;
  border-radius: 0 0 0 12px;
  position: relative;
  cursor: pointer;
}
.c-hamburger__bar {
  transform: translateX(-50%);
  left: 50%;
  top: 42%;
}
.c-hamburger__bar:before {
  top: -8px;
}
.c-hamburger__bar:after {
  bottom: -8px;
}
.c-hamburger__label::after {
  content: "MENU";
  font-size: 1.2rem;
  font-family: "Roboto Slab", serif;
  color: #fff;
  white-space: nowrap;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.06em;
}
.c-hamburger.is-active.c-hamburger__label::after {
  content: "CLOSE";
}

.c-hamburger__bar, .c-hamburger__bar:before, .c-hamburger__bar:after {
  transition: all 0.3s;
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #fff;
  display: block;
  cursor: pointer;
}

.c-hamburger.is-active .c-hamburger__bar {
  background-color: rgba(0, 0, 0, 0);
}
.c-hamburger.is-active .c-hamburger__bar:before {
  transform: rotate(-45deg);
  top: 50%;
}
.c-hamburger.is-active .c-hamburger__bar:after {
  transform: rotate(45deg);
  top: 50%;
}

/*
---
name: label
category:
  - object
  - object/component/label
---

ラベル

*/
.c-label {
  background-color: #333333;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  min-width: 70px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .c-label {
    font-size: 1.2rem;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.c-label--light {
  background-color: #999999;
}
.c-label--red {
  background-color: #CC0000;
}

/*
---
name: link
category:
  - object
  - object/component/link
---

リンク

*/
.c-link {
  color: #FF811A;
  text-decoration: underline;
  position: relative;
}
.c-link:hover {
  text-decoration: none;
}
.c-link--blank {
  position: relative;
}
.c-link--blank:after {
  content: url(/shared/images/common/icon-blank.png);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: 0;
}

/*
---
name: separate
category:
  - object
  - object/component/separate
---

区切り線

*/
.p-separate--01 {
  border-bottom: 1px dotted #000;
}

.p-separate--02 {
  border-bottom: 1.5px solid #B2B2B2;
}

.p-separate--03 {
  background-image: radial-gradient(circle, #FF811A 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 8px 3px;
}

/*
---
name: title
category:
  - object
  - object/component/title
---

各種タイトル

*/
.c-title {
  margin-top: 0;
  text-wrap: auto;
}

.c-title-01 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-title-01 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-title-01--sp-center {
    text-align: center;
  }
}
.c-title-01--box {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-title-01--box {
    margin-bottom: 30px;
  }
}

.c-title-02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-title-02 {
    margin-bottom: 30px;
  }
}
.c-title-02--pc-left {
  align-items: start;
}
@media screen and (max-width: 768px) {
  .c-title-02--pc-left {
    align-items: center;
  }
}
.c-title-02--jp {
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.5;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-title-02--jp {
    font-size: 2rem;
  }
}
.c-title-02--en {
  font-size: 2rem;
  font-family: "Roboto Slab", serif;
  color: #E95098;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .c-title-02--en {
    font-size: 1.4rem;
  }
}

.c-title-03 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.7;
  background-image: radial-gradient(circle, #FF811A 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 8px 3px;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-title-03 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.c-title-04 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #FF811A;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .c-title-04 {
    font-size: 1.8rem;
  }
}

.c-title-05 {
  font-size: 2.8rem;
  line-height: 1.7;
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .c-title-05 {
    font-size: 2rem;
    line-height: 1.5;
    display: block;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 143, 51, 0.3);
    margin-right: calc(50% - 50vw);
  }
}
.c-title-05__text {
  flex-shrink: 0;
}
.c-title-05__border {
  height: 2px;
  width: 100%;
  background-color: rgba(255, 143, 51, 0.3);
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .c-title-05__border {
    display: none;
  }
}

/*
Project
----------------------------- */
/*
---
name: index
category:
  - object
  - object/project/index
---
*/
/*
---
name: access
category:
  - object
  - object/project/access
---

アクセス

*/
.p-access__address {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-access__address {
    font-size: 1.8rem;
  }
}
.p-access__mapLink-wrapper {
  display: inline-block;
}
.p-access__mapLink {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333333;
  padding-bottom: 5px;
  border-bottom: 3px dotted #333333;
}
.p-access__inner {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-access__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-access__map {
  margin-top: 60px;
}
.p-access__map img {
  border-radius: 12px;
}
.p-access__image-item {
  text-align: center;
}
.p-access__image-item img {
  border-radius: 12px;
  display: inline-block;
}
.p-access__button {
  margin-top: 60px;
}

/*
---
name: box
category:
  - object
  - object/project/box
---

ボックス

*/
.p-box {
  position: relative;
}
.p-box__inner {
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .p-box__inner {
    padding: 50px 20px;
  }
}
.p-box--green {
  background-color: #FFFBE3;
}
.p-box--lightGreen {
  background-color: #FAF6ED;
}
.p-box--borderTitle .p-box__title {
  position: absolute;
  display: inline-block;
  writing-mode: vertical-rl;
  color: #E95098;
  font-size: 1.8rem;
  top: 60px;
  font-family: "Roboto Slab", serif;
}
@media screen and (max-width: 768px) {
  .p-box--borderTitle .p-box__title {
    writing-mode: inherit;
    font-size: 1.3rem;
    top: 10px;
    left: 30px;
  }
}
.p-box--borderTitle .p-box__line {
  width: 3px;
  height: 50px;
  display: inline-block;
  margin-top: 10px;
  margin-right: 5px;
  background-color: #E95098;
}
@media screen and (max-width: 768px) {
  .p-box--borderTitle .p-box__line {
    width: 30px;
    height: 3px;
    display: inline-block;
    margin-bottom: 3px;
    margin-left: 10px;
  }
}
.p-box--borderTitle .p-box__line:before {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 3px;
  height: 8px;
  display: inline-block;
  margin-top: 3px;
  background-color: #E95098;
}
@media screen and (max-width: 768px) {
  .p-box--borderTitle .p-box__line:before {
    width: 10px;
    height: 3px;
    bottom: 11px;
    right: -10px;
  }
}
.p-box--borderTitle .p-box__line:after {
  content: "";
  position: absolute;
  bottom: -23px;
  width: 3px;
  height: 5px;
  display: inline-block;
  background-color: #E95098;
}
@media screen and (max-width: 768px) {
  .p-box--borderTitle .p-box__line:after {
    width: 4px;
    height: 3px;
    bottom: 11px;
    right: -19px;
  }
}
.p-box--radius {
  border-radius: 9px;
}
.p-box--innerCircle {
  background-color: #fff;
}
.p-box--innerCircle:before {
  content: "";
  position: absolute;
  background: #FF811A;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  top: 15px;
  left: 15px;
}
.p-box--innerCircle:after {
  content: "";
  position: absolute;
  background: #FF811A;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  top: 15px;
  right: 15px;
}
.p-box--innerCircle .p-box__inner:before {
  content: "";
  position: absolute;
  background: #FF811A;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  bottom: 15px;
  left: 15px;
}
.p-box--innerCircle .p-box__inner:after {
  content: "";
  position: absolute;
  background: #FF811A;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  bottom: 15px;
  right: 15px;
}
.p-box__simpleBox {
  width: 100%;
  padding: 15px;
  background-color: #FBF4EE;
}
@media screen and (max-width: 768px) {
  .p-box__simpleBox {
    padding: 20px;
  }
}
.p-box__simpleBox .title {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 4px solid #FF811A;
}
@media screen and (max-width: 768px) {
  .p-box__simpleBox .title {
    font-size: 1.8rem;
  }
}

.p-borderBox {
  border: 6px solid rgba(255, 129, 26, 0.3);
}

.p-shadowBox {
  background-color: #fff;
  box-shadow: 3px 6px 15px rgba(255, 129, 26, 0.6);
}

/*
---
name: button
category:
  - object
  - object/project/button
---

ボタン

*/
.p-button {
  width: 100%;
}
.p-button--center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-button--center {
    width: 100%;
  }
}
.p-button--right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-button--right {
    width: 100%;
  }
}
.p-button--left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-button--left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-button.spNone {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-button.pcNone {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .p-button__pageLink-wrapper {
    gap: 20px;
  }
}

/*
---
name: card
category:
  - object
  - object/project/card
---

カード

*/
.p-card--orange {
  background-color: #FFD7A6;
}
.p-card--wrapper {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-card--wrapper {
    margin-top: 30px;
  }
}

.p-labelCard {
  position: relative;
  border-radius: 12px;
}
.p-labelCard__inner {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-labelCard__inner {
    padding: 20px;
  }
}
.p-labelCard__label {
  position: absolute;
  top: -13px;
  left: 0;
}
.p-labelCard__image {
  text-align: center;
  position: relative;
}
.p-labelCard__image img {
  border-radius: 9px;
}
.p-labelCard__image .icon {
  border-radius: inherit;
  position: absolute;
  bottom: 15px;
  right: 20px;
}
.p-labelCard__zoom-icon {
  display: block;
  position: relative;
}
.p-labelCard__zoom-icon::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(../images/common/modal-zoom.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 10px;
  bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-labelCard__zoom-icon::after {
    width: 30px;
    height: 30px;
  }
}
.p-labelCard__title {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-labelCard__title {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-top: 20px;
  }
}

.p-simpleCard__image {
  text-align: center;
}
.p-simpleCard__image img {
  border-radius: 12px;
  display: block;
}
.p-simpleCard__title {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-simpleCard__title {
    font-size: 1.4rem;
  }
}
.p-simpleCard__title--large {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-simpleCard__title--large {
    font-size: 1.8rem;
  }
}
.p-simpleCard__title--center {
  text-align: center;
}
.p-simpleCard__price {
  line-height: 1.3;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-simpleCard__price {
    font-size: 1.8rem;
  }
}
.p-simpleCard__text {
  margin-top: 20px;
}

/*
---
name: common
category:
  - object
  - object/project/common
---

共通パーツ

*/
.p-commonPayment__contents {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-commonPayment__contents {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
}
.p-commonPayment__text {
  width: 100%;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-commonPayment__text {
    font-size: 1.6rem;
  }
}
.p-commonPayment__text ul {
  font-weight: 500;
}
.p-commonPayment__button {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-commonPayment__button {
    width: 100%;
  }
}

.p-commonAccess {
  overflow: hidden;
}
.p-commonAccess__map {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-commonAccess__map {
    margin-top: 40px;
  }
}
.p-commonAccess__map iframe {
  width: 100%;
}
.p-commonAccess__contents {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-commonAccess__contents {
    margin-top: 30px;
  }
}
.p-commonAccess__area {
  display: flex;
  align-items: center;
  margin-top: 0;
}
.p-commonAccess__area span {
  display: inline-block;
  margin-left: 15px;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-commonAccess__area span {
    margin-left: 5px;
    font-size: 1.8rem;
  }
}
.p-commonAccess__info-item {
  margin-top: 20px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-commonAccess__info-item {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}
.p-commonAccess__title {
  display: inline-block;
  margin-top: 0;
  padding-bottom: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 3px solid #B2B2B2;
}
@media screen and (max-width: 768px) {
  .p-commonAccess__title {
    font-size: 1.8rem;
  }
}
.p-commonAccess__list {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-commonAccess__list {
    margin-top: 20px;
  }
}
.p-commonAccess__image {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 4%;
}
@media screen and (max-width: 768px) {
  .p-commonAccess__image {
    margin-top: 40px;
  }
}
.p-commonAccess__image img {
  border-radius: 12px 0 0 12px;
  height: 100%;
  object-fit: cover;
}
.p-commonAccess__button {
  margin-top: 40px;
}

.p-commonContact {
  overflow: hidden;
}
.p-commonContact__contents {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .p-commonContact__contents {
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
  }
}
.p-commonContact__item {
  flex-basis: 33%;
  text-align: center;
  border-right: 1.5px solid #B2B2B2;
}
@media screen and (max-width: 992px) {
  .p-commonContact__item {
    flex-basis: 100%;
    border-right: none;
    border-bottom: 1.5px solid #B2B2B2;
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
.p-commonContact__item:last-child {
  border-right: none;
}
@media screen and (max-width: 992px) {
  .p-commonContact__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.p-commonContact__item-method {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-commonContact__item-method {
    font-size: 1.6rem;
  }
}
.p-commonContact__item-method span {
  display: inline-block;
  margin-left: 10px;
}
.p-commonContact__item-number {
  color: #FF8F33;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-commonContact__item-number a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .p-commonContact__item-number {
    margin-top: 20px;
  }
}
.p-commonContact__item-note {
  margin-top: 10px;
}
.p-commonContact__item-button {
  margin-top: 50px;
}
.p-commonContact__item-button a {
  width: 80%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-commonContact__item-button a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-commonContact__item-button {
    margin-top: 30px;
  }
}
.p-commonContact .c-button {
  padding: 15px 30px;
}

.p-commonBnr__item {
  border: 2px solid #B2B2B2;
  border-radius: 12px;
  margin-top: 30px;
}
.p-commonBnr__item:first-child {
  margin-top: 90px;
}
.p-commonBnr__item img {
  width: 100%;
  border-radius: 12px;
}

.p-commonInformation {
  overflow: hidden;
}
.p-commonInformation__contents {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .p-commonInformation__contents {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 992px) {
  .p-commonInformation__calender iframe {
    width: 100%;
    height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .p-commonInformation__calender iframe {
    width: 100%;
    height: 325px;
  }
}
.p-commonInformation__facebook {
  width: 440px;
  margin-inline: auto;
}
@media screen and (max-width: 576px) {
  .p-commonInformation__facebook {
    width: 100% !important;
  }
}
.p-commonInformation__facebook .fb-page,
.p-commonInformation__facebook .fb-page span,
.p-commonInformation__facebook .fb-page span iframe {
  width: 100% !important;
  height: 600px !important;
}
@media screen and (max-width: 992px) {
  .p-commonInformation__facebook .fb-page,
  .p-commonInformation__facebook .fb-page span,
  .p-commonInformation__facebook .fb-page span iframe {
    width: 100% !important;
    height: 487px !important;
  }
}

.p-voice__item {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #B2B2B2;
  display: flex;
}
.p-voice__item:first-child {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-voice__item {
    flex-direction: column;
  }
}
.p-voice__item dd {
  margin-left: 0;
}
.p-voice__item-title {
  color: #FF811A;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-voice__item-title {
    flex-basis: 25%;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__item-content .text {
    margin-top: 15px;
  }
}
.p-voice__item-content .name {
  margin-top: 15px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-voice__item-content {
    flex-basis: 75%;
    flex-grow: 1;
  }
}
.p-voice__button {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-voice__button {
    margin-top: 40px;
  }
}

.p-commonOnline-shop__contents {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-commonOnline-shop__contents {
    flex-direction: column;
    margin-top: 30px;
  }
}
.p-commonOnline-shop__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .p-commonOnline-shop__item {
    gap: 30px;
  }
}
.p-commonOnline-shop__item:first-child {
  border-right: 1px solid #B2B2B2;
}
@media screen and (max-width: 768px) {
  .p-commonOnline-shop__item:first-child {
    border-right: none;
    border-bottom: 1px solid #B2B2B2;
    padding: 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-commonOnline-shop__item:last-child {
    padding: 40px 0 0;
  }
}

/*
---
name: faq
category:
  - object
  - object/project/faq
---

よくあるご質問

*/
.p-faq {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-faq {
    gap: 30px;
  }
}
.p-faq__inner {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-faq__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-faq__inner:focus-visible {
  border: 1px solid #B2B2B2;
}
.p-faq__category {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-faq__category {
    margin-bottom: 60px;
  }
}
.p-faq__category-wrap {
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  .p-faq__category-wrap {
    margin-left: 0;
  }
}
.p-faq__lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-faq__lead {
    margin-bottom: 30px;
  }
}
.p-faq__item {
  border-radius: 12px;
  border: 1px solid #B2B2B2;
  font-size: 1.8rem;
  font-weight: 500;
}
.p-faq__item.is-active {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.p-faq__item.is-active .p-faq-q {
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #B2B2B2;
}
@media screen and (max-width: 768px) {
  .p-faq__item {
    font-size: 1.6rem;
  }
}

.p-faq-q {
  display: block;
  cursor: pointer;
  background: #FFFBE3;
  border-radius: 12px;
}
.p-faq-q::-webkit-details-marker {
  display: none;
}
.p-faq-q__inner {
  padding-top: 35px;
  padding-right: 80px;
  padding-bottom: 35px;
  padding-left: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-faq-q__inner {
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 55px;
  }
}
.p-faq-q__inner:before {
  content: "Q";
  font-family: "Roboto Slab", serif;
  color: #fff;
  font-weight: bold;
  font-size: 2.8rem;
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 9px;
  text-align: center;
  background-color: #FF811A;
}
@media screen and (max-width: 768px) {
  .p-faq-q__inner:before {
    font-size: 2.1rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: 30px;
    left: 15px;
  }
}
.p-faq-q__inner .icon {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 100%;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
  margin-left: 20px;
}
.p-faq-q__inner .icon:before {
  content: "";
  width: 16px;
  height: 16px;
  border: 0;
  border-top: solid 2px #FF811A;
  border-right: solid 2px #FF811A;
  left: 0;
  transform: rotate(-45deg);
  display: inline-block;
  position: relative;
  top: 5px;
}
.p-faq-q__inner .icon.is-active {
  transform: rotate(180deg);
}

.p-faq-a {
  overflow: hidden;
}
.p-faq-a__inner {
  padding-top: 35px;
  padding-right: 80px;
  padding-bottom: 35px;
  padding-left: 140px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq-a__inner {
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 55px;
  }
}
.p-faq-a__inner:before {
  content: "A";
  font-family: "Roboto Slab", serif;
  color: #FF811A;
  font-weight: bold;
  font-size: 2.8rem;
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 9px;
  text-align: center;
  background-color: rgba(255, 129, 26, 0.3);
}
@media screen and (max-width: 768px) {
  .p-faq-a__inner:before {
    font-size: 2.1rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    left: 15px;
  }
}

/*
---
name: header
category:
  - object
  - object/project/header
---

ヘッダーの中身。

*/
.p-header {
  box-shadow: 0 3px 6px rgba(153, 153, 153, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  transition: all 0.3s;
}
.p-header p {
  margin-top: 0;
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1179px) {
  .p-header__inner {
    align-items: center;
    gap: 15px;
    padding-bottom: 5px;
  }
}
@media (max-width: 1179px) {
  .p-header__logo {
    flex-grow: 1;
  }
}
.p-header__logo-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: normal;
}
@media (max-width: 1179px) {
  .p-header__logo-text {
    font-size: 1rem;
    margin-bottom: 3px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-header__logo-text {
    padding-top: 0;
  }
}
.p-header__logo-image {
  font-size: 0;
}
.p-header__logo-image a {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-header__logo-image {
    width: 140px;
  }
}
.p-header__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1179px) {
  .p-header__contents {
    flex-shrink: 0;
  }
}
.p-header__guide {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1179px) {
  .p-header__guide {
    gap: 15px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1179px) and (max-width: 768px) {
  .p-header__guide {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-header__tel a[href^="tel:"] {
    pointer-events: none;
  }
}
.p-header__tel-number {
  font-family: "Roboto Slab";
  font-weight: bold;
  font-size: 2.7rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
.p-header__tel-number img {
  width: 20px;
}
@media (max-width: 1179px) {
  .p-header__tel-number img {
    width: 30px;
  }
}
.p-header__tel-number span {
  margin-left: 10px;
}
@media (max-width: 1179px) {
  .p-header__tel-number span {
    display: none;
  }
}
.p-header__tel-time {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-left: 32px;
}
@media (max-width: 1179px) {
  .p-header__tel-time {
    display: none;
  }
}
.p-header__tel-time span {
  display: block;
}
.p-header__contact-btn {
  display: flex;
  align-items: center;
  border: 3px solid rgba(255, 129, 26, 0.3);
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  color: #FF811A;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1179px) {
  .p-header__contact-btn {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-header__contact-btn {
    border: 2px solid rgba(255, 129, 26, 0.7);
  }
}
.p-header__contact-btn .contactText {
  margin-left: 10px;
}
@media (max-width: 1179px) {
  .p-header__contact-btn .contactText {
    display: none;
  }
}
.p-header__sns {
  display: flex;
  gap: 25px;
}
@media (max-width: 1179px) {
  .p-header__sns {
    display: none;
  }
}
@media (max-width: 1179px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav-list {
  margin-top: 20px;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: end;
}
.p-header__nav-item {
  list-style: none;
  border-right: 1.5px solid #999999;
  font-weight: 500;
}
.p-header__nav-item:last-child {
  border-right: none;
}
.p-header__nav-item:last-child a {
  padding-right: 0;
}
.p-header__nav-item a {
  color: #333333;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.5;
}
.p-header__nav-item a img {
  display: inline-block;
  padding-left: 5px;
}

body.is-fixed .p-header {
  background-color: #FFFBE3;
}

.p-drawer {
  position: absolute;
  z-index: 99;
  width: 100%;
  left: 0;
  background-color: #FFFBE3;
  padding: 25px 15px 150px 15px;
  overflow-y: scroll;
  height: calc(100vh - 5px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: margin-top 0.3s ease-out, opacity 0.3s ease, visibility 0.3s ease 0.3s;
  margin-top: -100%;
}
@media (min-width: 1180px) {
  .p-drawer {
    display: none;
  }
}
.p-drawer.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
  padding-top: 5px;
  margin-top: 0;
}
.p-drawer__inner {
  background-color: #fff;
  border-radius: 9px;
  padding: 20px 30px 30px;
}
.p-drawer__nav-list {
  padding-left: 0;
  margin: 0;
}
.p-drawer__nav-item {
  line-height: 1.5;
  font-weight: 400;
  border-bottom: 1px solid #B2B2B2;
  padding-top: 20px;
  padding-bottom: 20px;
  list-style: none;
  position: relative;
  font-weight: 500;
}
.p-drawer__nav-item:before {
  content: "";
  position: absolute;
  background-color: #FF811A;
  width: 9px;
  height: 9px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.p-drawer__nav-item span {
  font-size: 1.2rem;
  font-weight: normal;
  font-family: "Roboto Slab", serif;
  display: inline-block;
  margin-left: 15px;
}
.p-drawer__nav-item a {
  display: block;
  padding-left: 20px;
}
.p-drawer__nav-item a img {
  display: inline-block;
  padding-left: 5px;
}
.p-drawer__sns {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.p-drawer__guide {
  margin-top: 30px;
  background-color: #FAF6ED;
  border-radius: 6px;
  padding: 15px;
}
.p-drawer__guide-item {
  display: flex;
  align-items: start;
  gap: 15px;
}
.p-drawer__guide-item dd {
  font-weight: 500;
  margin-left: 0;
}
.p-drawer__guide-item.tel {
  margin-top: 10px;
}
.p-drawer__guide-item.tel dd {
  font-size: 2.4rem;
  line-height: 1;
}
.p-drawer__guide-item .c-label {
  min-width: 44px;
}

#pagetop.remove {
  opacity: 0;
  user-select: none;
}

.p-header {
  opacity: 1;
  transition: 0.5s;
  z-index: 100;
}

/*
---
name: slider
category:
  - object
  - object/project/slider
---

スライダー調整

*/
.style01 .splide-wrapper {
  position: relative;
}
.style01 .splide__slide .item {
  margin-inline: auto;
}
.style01 .splide__slide img {
  height: auto;
  width: 100%;
  border-radius: 12px;
}
.style01 .splide__pagination {
  bottom: -30px;
}
@media screen and (max-width: 768px) {
  .style01 .splide__pagination {
    bottom: -20px;
  }
}
.style01 .splide__arrow {
  width: 60px;
  height: 60px;
  background-color: #B2B2B2;
}
@media screen and (max-width: 768px) {
  .style01 .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.style01 .splide__arrow svg {
  fill: #fff;
  width: 18px;
  height: 18px;
}
.style01 .splide__pagination__page {
  background-color: transparent;
  border: 2px solid #B2B2B2;
  width: 12px;
  height: 12px;
  margin: 8px;
}
@media screen and (max-width: 768px) {
  .style01 .splide__pagination__page {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border: 1px solid #B2B2B2;
  }
}
.style01 .splide__pagination__page.is-active {
  background-color: #B2B2B2;
  transform: none;
}
.style01 .splide__arrow--prev {
  left: 17%;
}
@media screen and (max-width: 768px) {
  .style01 .splide__arrow--prev {
    left: 11%;
  }
}
.style01 .splide__arrow--next {
  right: 17%;
}
@media screen and (max-width: 768px) {
  .style01 .splide__arrow--next {
    right: 11%;
  }
}
.style01 .splide__pagination li {
  line-height: normal;
}

.style02 .splide__track {
  padding-top: 20px;
}
.style02 .splide__pagination {
  bottom: -30px;
}
.style02 .splide__arrow {
  width: 60px;
  height: 60px;
  background-color: #B2B2B2;
}
.style02 .splide__arrow svg {
  fill: #fff;
  width: 18px;
  height: 18px;
}
.style02 .splide__pagination__page {
  background-color: #fff;
  border: 2px solid #FF811A;
  width: 12px;
  height: 12px;
  margin: 8px;
}
.style02 .splide__pagination__page.is-active {
  background-color: #FF8F33;
  transform: none;
}
.style02 .splide__arrow--prev {
  left: 17%;
}
@media screen and (max-width: 768px) {
  .style02 .splide__arrow--prev {
    left: 6px;
  }
}
.style02 .splide__arrow--next {
  right: 17%;
}
@media screen and (max-width: 768px) {
  .style02 .splide__arrow--next {
    right: 6px;
  }
}

.splide.style02.is-initialized:not(.is-active) .splide__list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.style03.p-slider {
  border-radius: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  .style03.p-slider {
    width: 100%;
    border-radius: 0;
  }
}
.style03 .splide {
  display: flex;
}
.style03 .splide__track {
  border-radius: 0 0 15px 0;
}
.style03 .splide-wrapper {
  position: relative;
}
.style03 .splide__slide .item {
  margin-inline: auto;
}
.style03 .splide__slide img {
  height: 580px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .style03 .splide__slide img {
    height: 290px;
    border-radius: 0;
  }
}
.style03 .splide__pagination {
  position: static;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 0 35px;
}
@media screen and (max-width: 768px) {
  .style03 .splide__pagination {
    display: none;
  }
}
.style03 .splide__pagination__page {
  background-color: #fff;
  border: 2px solid #B2B2B2;
  width: 10px;
  height: 10px;
  margin: 8px;
}
.style03 .splide__pagination__page.is-active {
  background-color: #B2B2B2;
  transform: none;
}
.style03 .splide__arrow--prev {
  left: 17%;
}
@media screen and (max-width: 768px) {
  .style03 .splide__arrow--prev {
    left: 11%;
  }
}
.style03 .splide__arrow--next {
  right: 17%;
}
@media screen and (max-width: 768px) {
  .style03 .splide__arrow--next {
    right: 11%;
  }
}

/*
---
name: footer
category:
  - object
  - object/project/footer
---

フッターの中身。

*/
.p-footer {
  background-color: #333333;
  color: #fff;
}
.p-footer li {
  position: relative;
  list-style: none;
  line-height: 1.7;
}
.p-footer li > a {
  padding-left: 20px;
}
.p-footer li > a:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  margin-left: -20px;
}

.p-footer-main__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.p-footer-main__logoArea {
  grid-column: 1/6;
  grid-row: 1/1;
}
@media screen and (max-width: 992px) {
  .p-footer-main__logoArea {
    grid-column: 1/8;
    grid-row: 1/2;
  }
}
.p-footer-main__navArea {
  grid-column: 8/13;
  grid-row: 1/3;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .p-footer-main__navArea {
    justify-content: inherit;
    flex-direction: column;
    grid-column: 1/13;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 992px) {
  .p-footer-main__logo {
    align-self: center;
  }
}
.p-footer-main__logo span {
  font-size: 1.4rem;
  line-height: 1.4;
  display: inline-block;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .p-footer-main__logo span {
    font-size: 1.2rem;
  }
}
.p-footer-main__nav {
  display: grid;
  width: fit-content;
  column-gap: 60px;
  row-gap: 20px;
  grid-template-columns: repeat(2, auto);
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
  .p-footer-main__nav {
    grid-template-columns: repeat(1, auto);
    padding-left: 0;
    margin-top: 45px;
    row-gap: 0;
  }
}
@media screen and (max-width: 992px) {
  .p-footer-main__nav-item {
    margin-bottom: 15px;
    font-weight: 500;
  }
}
.p-footer-main__address {
  margin-top: 30px;
  grid-row: 2/3;
  grid-column: 1/8;
}
@media screen and (max-width: 992px) {
  .p-footer-main__address {
    margin-top: 10px;
    grid-column: 1/13;
    grid-row: 3/4;
    font-weight: 500;
  }
}
.p-footer-main__address-item {
  display: flex;
  margin-bottom: 10px;
}
.p-footer-main__address-item .title {
  display: inline-block;
  min-width: 9rem;
}
.p-footer-main__link {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .p-footer-main__link {
    margin-top: 30px;
    padding-bottom: 20px;
  }
}
.p-footer-main__news {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
@media screen and (max-width: 992px) {
  .p-footer-main__news {
    flex-direction: column;
    padding-left: 0;
  }
}
.p-footer-main__news-item {
  margin-left: 50px;
}
@media screen and (max-width: 992px) {
  .p-footer-main__news-item {
    margin-left: 0;
  }
}
@media screen and (max-width: 992px) {
  .p-footer-main__news-item:first-child {
    margin-bottom: 15px;
  }
}
.p-footer-main__sns {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .p-footer-main__sns {
    gap: 20px;
  }
}
.p-footer-sub {
  border-top: 1px solid #fff;
}
.p-footer-sub__nav {
  display: flex;
  gap: 20px;
  padding-left: 0;
}
@media screen and (max-width: 992px) {
  .p-footer-sub__nav {
    margin-top: 30px;
    margin-bottom: 20px;
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .p-footer-sub__nav-item {
    font-weight: 500;
  }
}
.p-footer-sub__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-footer-sub__inner {
    justify-content: inherit;
    align-items: inherit;
    flex-direction: column;
  }
}
.p-footer-sub__copyright {
  font-size: 1.2rem;
}
@media screen and (max-width: 992px) {
  .p-footer-sub__copyright {
    font-size: 1rem;
  }
}

/*
---
name: list
category:
  - object
  - object/project/list
---

リスト

*/
.p-list {
  padding-left: 0;
}
.p-list__item {
  margin-bottom: 10px;
}
.p-list--circle .p-list__item {
  position: relative;
  list-style: none;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-list--circle .p-list__item {
    padding-left: 15px;
  }
}
.p-list--circle .p-list__item:before {
  content: "";
  position: absolute;
  background: #FF811A;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  top: 10px;
  left: 0;
}
.p-list--pointed .p-list__item {
  position: relative;
  list-style: none;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-list--pointed .p-list__item {
    padding-left: 15px;
  }
}
.p-list--pointed .p-list__item:before {
  content: "";
  position: absolute;
  background: #FF811A;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: 11px;
  left: 3px;
}

/*
---
name: modal
category:
  - object
  - object/project/modal
---

モーダル

*/
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__image {
  max-width: 100%;
  max-height: 100%;
}

.modal__figure {
  position: relative;
}

.modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal__close {
    top: -40px;
  }
}

/*
---
name: news
category:
  - object
  - object/project/news
---

ニュース

*/
.p-news__inner {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-news__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-news__item {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #B2B2B2;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-news__item {
    padding-top: 30px;
    padding-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.p-news__item:first-child {
  padding-top: 0;
}
.p-news__item.detail {
  padding: 0;
  border-bottom: none;
}
.p-news__item-date {
  width: 8%;
  font-weight: bold;
  margin-right: 25px;
}
@media screen and (max-width: 992px) {
  .p-news__item-date {
    margin-right: 50px;
  }
}
@media screen and (max-width: 576px) {
  .p-news__item-date {
    width: 25%;
    margin-right: 0;
    font-size: 1.4rem;
  }
}
.p-news__item-category {
  margin-right: 60px;
}
.p-news__item-category span {
  display: block;
  width: 120px;
  border-radius: 50px;
  border: 1px solid #FF811A;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-news__item-category {
    font-size: 1.4rem;
    margin-right: 0;
  }
}
.p-news__item-article a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-news__item-article {
    flex-basis: 25%;
    flex-grow: 1;
  }
}
.p-news .p-pagination {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .p-news .p-pagination {
    margin-top: 60px;
  }
}

/*
---
name: service
category:
  - object
  - object/project/service
---

プラン・サービスページ

*/
.p-service-box {
  margin-top: 60px;
}
.p-service-box__contents {
  display: flex;
  gap: 80px;
  margin-top: 90px;
}
.p-service-box__contents:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-service-box__contents {
    flex-direction: column;
  }
}
.p-service-box__contents--flexEnd {
  align-items: flex-end;
}
.p-service-box__item {
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .p-service-box__item {
    flex-basis: 100%;
  }
}
.p-service-box__item-service {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-service-box__item-detail.image {
  height: 100%;
}
.p-service-box__item-detail.image img {
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.p-service-box__item-detail .p-button {
  margin-top: auto;
}
.p-service-box__price {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 400;
}
.p-service-box__price .large {
  font-size: 3.6rem;
}

.p-service-use {
  margin-top: 60px;
  padding-bottom: 60px;
}

.p-service-drink {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-service-drink {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.p-service-drink__contents {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-service-drink__contents {
    flex-direction: column;
    gap: 30px;
  }
}
.p-service-drink__title {
  font-size: 2.4rem;
}
.p-service-drink__image img {
  border-radius: 12px;
}

/*
---
name: table
category:
  - object
  - object/project/table
---

テーブル

*/
.p-table {
  width: 100%;
}
.p-table table {
  width: 100%;
  border-collapse: collapse;
}
.p-table table th, .p-table table td {
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .p-table table th, .p-table table td {
    padding: 20px 20px;
  }
}
.p-table table th {
  font-weight: 500;
}
.p-table table td {
  font-weight: normal;
}
.p-table--left {
  text-align: left;
}
.p-table--center {
  text-align: center;
}
.p-table--right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-table--spCenter {
    text-align: center;
  }
}
.p-table--separate th {
  border: 1px solid #B2B2B2;
}
.p-table--separate td {
  border: 1px solid #B2B2B2;
}
.p-table--borderBottom th {
  border-bottom: 2px solid #B2B2B2;
}
.p-table--borderBottom td {
  border-bottom: 1px solid #B2B2B2;
}
.p-table--borderBottomBefore th {
  position: relative;
}
.p-table--borderBottomBefore th:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92%;
  height: 2px;
  background-color: #B2B2B2;
}
@media screen and (max-width: 768px) {
  .p-table--borderBottomBefore th:before {
    width: 100%;
  }
}
.p-table--borderBottomBefore td {
  border-bottom: 1px solid #B2B2B2;
}
@media screen and (max-width: 768px) {
  .p-table--borderBottomBefore td {
    border-bottom: none;
  }
}
.p-table--thOrange th {
  background-color: #FFD9B9;
}
.p-table--thOrange td {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-table--spColum th, .p-table--spColum td {
    display: block;
    width: 100%;
  }
  .p-table--spColum tr:not(:last-child) td {
    border-top: none;
    border-bottom: none;
  }
  .p-table--spColum tr:last-child td {
    border-top: none;
  }
}
@media screen and (max-width: 992px) {
  .p-table--spScroll table {
    width: inherit;
  }
}
@media screen and (max-width: 992px) {
  .p-table--spScroll {
    overflow-x: auto;
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .p-table--spScroll table th, .p-table--spScroll table td {
    white-space: nowrap;
  }
}
.p-table__caption {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-table__caption {
    font-size: 1.4rem;
  }
}
.p-table__caption ul {
  margin-top: 20px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  position: relative;
}
.p-table__caption ul li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .p-table__caption ul li {
    text-indent: -1.3em;
    padding-left: 1.3em;
  }
}
.p-table__caption ul li::before {
  content: "※";
  margin-right: 5px;
}

/*
---
name: title
category:
  - object
  - object/project/title
---

タイトル

*/
.p-underTitle {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #FFFBE3;
  border-bottom: 5px solid #FF811A;
}
@media screen and (max-width: 768px) {
  .p-underTitle {
    height: 150px;
    border-bottom: 4px solid #FF811A;
  }
}
.p-underTitle__image img {
  width: 100%;
}
.p-underTitle__text {
  width: 100%;
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.p-underTitle__text--jp {
  margin: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-underTitle__text--jp {
    font-size: 2rem;
  }
}
.p-underTitle__text--en {
  margin: 0;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Roboto Slab", serif;
}
@media screen and (max-width: 768px) {
  .p-underTitle__text--en {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}

.p-categoryTitle {
  position: relative;
  border-bottom: 5px solid #FF811A;
}
.p-categoryTitle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-categoryTitle__image {
    height: 235px;
  }
}
.p-categoryTitle__text {
  min-width: 382px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FF811A;
  color: #fff;
  padding: 27px 44px 27px 80px;
  border-radius: 0 9px 0 0;
}
@media screen and (max-width: 768px) {
  .p-categoryTitle__text {
    min-width: auto;
    width: 100%;
    padding: 15px 25px;
    border-radius: 0;
  }
}
.p-categoryTitle__text--jp {
  margin-top: 0;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-categoryTitle__text--jp {
    font-size: 2rem;
  }
}
.p-categoryTitle__text--en {
  margin-top: 10px;
  font-family: "Roboto Slab", serif;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .p-categoryTitle__text--en {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}

.p-underText-top {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-underText-top {
    font-size: 1.6rem;
  }
}

/*
---
name: top
category:
  - object
  - object/project/top
---

トップページ

*/
.p-top-block01__inner {
  padding-bottom: 90px;
}

.p-top-latestNews {
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .p-top-latestNews {
    margin-left: -15px;
    margin-top: -115px;
  }
}
.p-top-latestNews .c-button {
  width: 520px;
}
@media screen and (max-width: 768px) {
  .p-top-latestNews .c-button {
    width: 90%;
  }
}
.p-top-latestNews--date {
  font-weight: bold;
  font-family: "Roboto Slab", serif;
  display: inline-block;
  padding-right: 40px;
}
.p-top-latestNews--title {
  font-weight: 400;
  display: inline-block;
}

.p-top-about {
  margin-top: 60px;
  overflow: hidden;
}
.p-top-about__contents {
  display: flex;
}
.p-top-about__text {
  max-width: 550px;
}
.p-top-about__image {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 4%;
}
@media screen and (max-width: 768px) {
  .p-top-about__image {
    display: none;
  }
}
.p-top-about__spImage {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top-about__spImage {
    display: block;
    margin-top: 60px;
  }
}

.p-top-news__contents {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 992px) {
  .p-top-news__contents {
    flex-direction: column;
    gap: 0;
  }
}
.p-top-news__article {
  flex-grow: 1;
}
.p-top-news__article .p-news__item {
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 5px;
}
@media screen and (max-width: 992px) {
  .p-top-news__article .p-news__item {
    flex-direction: column;
  }
}
.p-top-news__article .p-news__item:first-child {
  padding-top: 0;
}
.p-top-news__article .p-news__item-date {
  font-size: 1.6rem;
}
.p-top-news__article .p-news__item-article {
  margin-left: 50px;
}
@media screen and (max-width: 992px) {
  .p-top-news__article .p-news__item-article {
    margin-left: 0;
  }
}
.p-top-news__button {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .p-top-news__button {
    margin-top: 40px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-news__button--pc {
    display: none;
  }
}
.p-top-news__button--sp {
  display: none;
}
@media screen and (max-width: 992px) {
  .p-top-news__button--sp {
    display: block;
  }
}

.p-top-topContents {
  display: flex;
  align-items: start;
}
@media screen and (max-width: 992px) {
  .p-top-topContents {
    gap: 40px;
  }
}
.p-top-topContents--01 {
  justify-content: end;
}
@media screen and (max-width: 992px) {
  .p-top-topContents--01 {
    flex-direction: column-reverse;
  }
  .p-top-topContents--01 .p-top-topContents__img {
    padding-left: 25px;
  }
}
.p-top-topContents--02 {
  color: #fff;
  flex-direction: row-reverse;
  justify-content: start;
}
@media screen and (max-width: 992px) {
  .p-top-topContents--02 {
    flex-direction: column-reverse;
  }
  .p-top-topContents--02 .p-top-topContents__img {
    padding-right: 25px;
  }
}
.p-top-topContents__textBlock {
  width: 760px;
  padding: 0 70px;
}
@media screen and (max-width: 992px) {
  .p-top-topContents__textBlock {
    width: 100%;
    padding: 0 25px;
  }
}
.p-top-topContents__title {
  margin-top: 0;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .p-top-topContents__title {
    font-size: 2.1rem;
  }
}
.p-top-topContents__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-top-topContents__text {
    gap: 15px;
    margin-top: 30px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-topContents__img {
    box-sizing: border-box;
  }
  .p-top-topContents__img img {
    width: 100%;
    height: auto; /* ← 縦横比維持 */
    display: block;
  }
}

.p-top-service {
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-top-service {
    padding-bottom: 60px;
  }
}

.p-top-plan {
  margin-top: 60px;
}
.p-top-plan .c-button {
  width: 100%;
}

.p-top-guide__text {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-guide__text {
    flex-direction: column;
  }
}
.p-top-guide__list {
  list-style: none;
  margin-top: 0;
}
.p-top-guide__item {
  position: relative;
}
.p-top-guide__item:before {
  content: "※";
  position: absolute;
  left: -2rem;
}

/*
---
name: contact
category:
  - object
  - object/project/contact
---

お問い合わせ

*/
.p-contact__inner {
  width: 920px;
  margin-inline: auto;
}
@media screen and (max-width: 992px) {
  .p-contact__inner {
    width: 100%;
  }
}
.p-contact__title {
  margin-top: 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-contact__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .p-contact__title {
    text-align: left;
  }
}
.p-contact__text {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-contact__text {
    margin-top: 20px;
  }
}
.p-contact__toFaq {
  display: flex;
  padding-bottom: 60px;
  position: relative;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-contact__toFaq {
    flex-direction: column;
    padding-bottom: 50px;
    margin-bottom: 60px;
  }
}
.p-contact__toFaq:before {
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, #6EB92B 3px, transparent 3px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: right bottom;
  z-index: 50;
  width: 100%;
  height: 3px;
  bottom: 0;
}
.p-contact__toFaq p {
  margin-bottom: 30px;
}
.p-contact__item-title {
  font-weight: normal;
  font-size: 1.8rem;
  vertical-align: middle;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .p-contact__item-title {
    font-size: 1.6rem;
  }
}
.p-contact__item-title.textbox {
  vertical-align: top;
}
.p-contact__item-label {
  float: right;
  min-width: 58px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.p-contact__item-label.privacy {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-contact__item-label {
    float: inherit;
    margin-left: 15px;
  }
}
.p-contact textarea, .p-contact input[type=text], .p-contact input[type=email], .p-contact input[type=tel] {
  width: 100%;
  height: 60px;
  border: 1px solid #999999;
  padding: 18px 30px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-contact textarea, .p-contact input[type=text], .p-contact input[type=email], .p-contact input[type=tel] {
    padding: 15px;
  }
}
.p-contact textarea::placeholder, .p-contact input[type=text]::placeholder, .p-contact input[type=email]::placeholder, .p-contact input[type=tel]::placeholder {
  color: #B2B2B2;
}
.p-contact textarea {
  height: 320px;
}
.p-contact__radio {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-contact__radio {
    gap: 20px;
  }
}
.p-contact__radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 33px;
}
.p-contact__radio label:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: -2px;
  left: 0;
  background-color: #fff;
  border: 1px solid #999999;
  border-radius: 50%;
}
.p-contact__radio input[type=radio] {
  display: none;
}
.p-contact__radio input[type=radio]:checked + label:after {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  top: 5px;
  left: 6px;
  background-color: #333333;
  border-radius: 50%;
}
.p-contact__radio input[type=radio]:checked + label:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: -2px;
  left: 0;
  background-color: #fff;
  border: 3px solid #333333;
  border-radius: 50%;
}
.p-contact input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #999999;
  border-radius: 5px;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}
.p-contact input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 6px;
  transform: rotate(50deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}
.p-contact input[type=submit] {
  padding: 20px;
  width: 320px;
  color: #fff;
  background: #333333;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .p-contact input[type=submit] {
    width: 100%;
  }
}
.p-contact input[type=submit]:hover {
  opacity: 0.8;
}
.p-contact .p-table table th {
  padding-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .p-contact .p-table table th {
    padding: 0 0 15px;
  }
}
.p-contact .p-table table td {
  padding-bottom: 35px;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-contact .p-table table td {
    padding: 0 0 40px;
    width: 100%;
  }
}
.p-contact__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .p-contact__checkbox {
    justify-content: start;
    margin-left: -10px;
  }
}
.p-contact__privacy {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-contact__privacy {
    margin-top: 0;
  }
}
.p-contact__privacy-title {
  font-size: 1.8rem;
  font-weight: 500;
}
.p-contact__privacy-link {
  padding-right: 5px;
  text-decoration: underline;
  color: #333333;
}
.p-contact__privacy-link::after {
  content: "";
  position: relative;
  top: 2px;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  background-image: url(../images/common/icon-blank.png);
}
.p-contact__button {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .p-contact__button {
    margin-top: 50px;
  }
}
.p-contact__error {
  color: #CC0000;
}
.p-contact__preview table th {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .p-contact__preview table th {
    width: 100%;
  }
}
.p-contact__preview-button {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-contact__preview-button {
    flex-direction: column;
  }
}
.p-contact__preview-button input[type=button] {
  padding: 20px;
  width: 100px;
  color: #fff;
  background: #333333;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-contact__preview-button input[type=button] {
    width: 100%;
  }
}
.p-contact__preview-button input[type=submit] {
  padding: 20px;
  width: 100px;
  color: #333333;
  background: #fff;
  text-align: center;
  border: 1px solid #333333;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-contact__preview-button input[type=submit] {
    width: 100%;
  }
}

.p-agreement {
  margin-top: 70px;
  text-align: center;
}
.p-agreement__title {
  font-weight: bold;
  margin-bottom: 20px;
}
.p-agreement__text {
  margin-bottom: 20px;
}
.p-agreement__text a {
  border-bottom: 1px solid #666666;
  padding-bottom: 1px;
}
.p-agreement__button {
  margin-top: 90px;
}

/*
---
name: company
category:
  - object
  - object/project/company
---

会社情報

*/
.p-company__inner {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-company__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-company .p-table table th {
    text-align: left;
  }
}
.p-company .p-table table th, .p-company .p-table table td {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-company .p-table table th {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-company .p-table table td {
    padding-top: 15px;
  }
}

/*
---
name: pagination
category:
  - object
  - object/project/pagination
---

ページネーション

*/
.p-pagination__list {
  display: flex;
  list-style: none;
  justify-content: center;
  padding-left: 0;
  flex-wrap: wrap;
  gap: 10px;
}
.p-pagination__item a {
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  border-radius: 50%;
  transition-duration: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-pagination__item a {
    width: 30px;
    height: 30px;
  }
}
.p-pagination__item.item-number a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-family: "Roboto Slab", serif;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  .p-pagination__item.item-number a {
    font-size: 1.6rem;
  }
}
.p-pagination__item.item-number a:hover {
  color: #fff;
  background-color: #FF811A;
}
.p-pagination__item.current a {
  color: #fff;
  background-color: #FF811A;
  pointer-events: none;
}
.p-pagination__item.prev a {
  color: #B2B2B2;
  border: 1px solid #B2B2B2;
  position: relative;
}
.p-pagination__item.prev a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 9px;
  height: 9px;
  border-left: 2px solid #B2B2B2;
  border-top: 2px solid #B2B2B2;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .p-pagination__item.prev a:before {
    left: 16px;
  }
}
.p-pagination__item.next a {
  color: #B2B2B2;
  border: 1px solid #B2B2B2;
  position: relative;
}
.p-pagination__item.next a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #B2B2B2;
  border-bottom: 2px solid #B2B2B2;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .p-pagination__item.next a:before {
    right: 7px;
  }
}

/*
---
name: privacy
category:
  - object
  - object/project/privacy
---

プライバシーポリシー

*/
.p-privacy__inner {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-privacy__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-privacy__lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-privacy__lead {
    margin-bottom: 30px;
  }
}
.p-privacy__item {
  margin-bottom: 60px;
}
.p-privacy__item:last-child {
  margin-bottom: 0;
}

/*
---
name: products
category:
  - object
  - object/project/products
---

商品紹介

*/
.p-product__inner {
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-product__inner {
    padding-bottom: 60px;
  }
}
.p-product__connection {
  margin-top: 90px;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .p-product__connection {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.p-product__table--note {
  font-size: 1.2rem;
  margin-top: 15px;
}
.p-product__sales-price {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-product__sales-price {
    gap: 15px;
  }
}
.p-product__sales-price--price {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .p-product__sales-price--price {
    font-size: 2.4rem;
  }
}
.p-product__sales-price--price span {
  font-size: 1.6rem;
}

/*
Utility
----------------------------- */
/*
---
name: index
category:
  - object
  - object/utility/index
---
*/
/*
---
name: align
category:
  - object
  - object/utility/align
---

text-alignの設定

*/
.u-align-left {
  text-align: left !important;
}

.u-align-center {
  text-align: center !important;
}

.u-align-right {
  text-align: right !important;
}

.u-align-justify {
  text-align: justify !important;
}

@media screen and (min-width: 768px) {
  .u-md-align-left {
    text-align: left !important;
  }
  .u-md-align-center {
    text-align: center !important;
  }
  .u-md-align-right {
    text-align: right !important;
  }
  .u-md-align-justify {
    text-align: justify !important;
  }
}
@media screen and (max-width: 768px) {
  .u-sm-align-left {
    text-align: left !important;
  }
  .u-sm-align-center {
    text-align: center !important;
  }
  .u-sm-align-right {
    text-align: right !important;
  }
  .u-sm-align-justify {
    text-align: justify !important;
  }
}
/*
---
name: responsive-helper
category:
  - object
  - object/utility/responsive-helper
---

responsiveの設定

*/
@media screen and (min-width: 992px) {
  .u-lg-no {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-md-no {
    display: none;
  }
}

@media screen and (min-width: 576px) {
  .u-sm-no {
    display: none;
  }
}

.u-lg-block {
  display: none;
}
@media screen and (max-width: 992px) {
  .u-lg-block {
    display: block;
  }
}

.u-md-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-block {
    display: block;
  }
}

.u-sm-block {
  display: none;
}
@media screen and (max-width: 576px) {
  .u-sm-block {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

/*
---
name: spacing
category:
  - object
  - object/utility/spacing
---

spacingの設定

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

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

.u-mt-10 {
  margin-top: 1rem !important;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-mt-30 {
  margin-top: 3rem !important;
}

.u-mt-40 {
  margin-top: 4rem !important;
}

.u-mt-50 {
  margin-top: 5rem !important;
}

.u-mt-60 {
  margin-top: 6rem !important;
}

.u-mt-70 {
  margin-top: 7rem !important;
}

.u-mt-80 {
  margin-top: 8rem !important;
}

.u-mt-90 {
  margin-top: 9rem !important;
}

.u-mt-100 {
  margin-top: 10rem !important;
}

.u-mb-10 {
  margin-bottom: 1rem !important;
}

.u-mb-20 {
  margin-bottom: 2rem !important;
}

.u-mb-30 {
  margin-bottom: 3rem !important;
}

.u-mb-40 {
  margin-bottom: 4rem !important;
}

.u-mb-50 {
  margin-bottom: 5rem !important;
}

.u-mb-60 {
  margin-bottom: 6rem !important;
}

.u-mb-70 {
  margin-bottom: 7rem !important;
}

.u-mb-80 {
  margin-bottom: 8rem !important;
}

.u-mb-90 {
  margin-bottom: 9rem !important;
}

.u-mb-100 {
  margin-bottom: 10rem !important;
}

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

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

/*
---
name: text
category:
  - object
  - object/utility/text
---

テキスト設定

*/
.u-text-10 {
  font-size: 1rem !important;
}

.u-text-11 {
  font-size: 1.1rem !important;
}

.u-text-12 {
  font-size: 1.2rem !important;
}

.u-text-13 {
  font-size: 1.3rem !important;
}

.u-text-14 {
  font-size: 1.4rem !important;
}

.u-text-15 {
  font-size: 1.5rem !important;
}

.u-text-16 {
  font-size: 1.6rem !important;
}

.u-text-17 {
  font-size: 1.7rem !important;
}

.u-text-18 {
  font-size: 1.8rem !important;
}

.u-text-19 {
  font-size: 1.9rem !important;
}

.u-text-20 {
  font-size: 2rem !important;
}

.u-text-21 {
  font-size: 2.1rem !important;
}

.u-text-22 {
  font-size: 2.2rem !important;
}

.u-text-23 {
  font-size: 2.3rem !important;
}

.u-text-24 {
  font-size: 2.4rem !important;
}

.u-text-25 {
  font-size: 2.5rem !important;
}

.u-text-26 {
  font-size: 2.6rem !important;
}

.u-text-27 {
  font-size: 2.7rem !important;
}

.u-text-28 {
  font-size: 2.8rem !important;
}

.u-text-29 {
  font-size: 2.9rem !important;
}

.u-text-30 {
  font-size: 3rem !important;
}

.u-text-normal {
  font-weight: normal;
}

.u-text-medium {
  font-weight: 500;
}

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

.u-text-lh125 {
  line-height: 1.25;
}

.u-text-lh115 {
  line-height: 1.5;
}

.u-text-lh2 {
  line-height: 2 !important;
}

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

.u-text-orange {
  color: #FF811A;
}

/*
---
name: width
category:
  - object
  - object/utility/width
---

幅（width）

*/
.w5 {
  width: 5%;
}

.w6 {
  width: 6%;
}

.w7 {
  width: 7%;
}

.w8 {
  width: 8%;
}

.w9 {
  width: 9%;
}

.w10 {
  width: 10%;
}

.w11 {
  width: 11%;
}

.w12 {
  width: 12%;
}

.w13 {
  width: 13%;
}

.w14 {
  width: 14%;
}

.w15 {
  width: 15%;
}

.w16 {
  width: 16%;
}

.w17 {
  width: 17%;
}

.w18 {
  width: 18%;
}

.w19 {
  width: 19%;
}

.w20 {
  width: 20%;
}

.w21 {
  width: 21%;
}

.w22 {
  width: 22%;
}

.w23 {
  width: 23%;
}

.w24 {
  width: 24%;
}

.w25 {
  width: 25%;
}

.w26 {
  width: 26%;
}

.w27 {
  width: 27%;
}

.w28 {
  width: 28%;
}

.w29 {
  width: 29%;
}

.w30 {
  width: 30%;
}

.w31 {
  width: 31%;
}

.w32 {
  width: 32%;
}

.w33 {
  width: 33%;
}

.w34 {
  width: 34%;
}

.w35 {
  width: 35%;
}

.w36 {
  width: 36%;
}

.w37 {
  width: 37%;
}

.w38 {
  width: 38%;
}

.w39 {
  width: 39%;
}

.w40 {
  width: 40%;
}

.w41 {
  width: 41%;
}

.w42 {
  width: 42%;
}

.w43 {
  width: 43%;
}

.w44 {
  width: 44%;
}

.w45 {
  width: 45%;
}

.w46 {
  width: 46%;
}

.w47 {
  width: 47%;
}

.w48 {
  width: 48%;
}

.w49 {
  width: 49%;
}

.w50 {
  width: 50%;
}

.w51 {
  width: 51%;
}

.w52 {
  width: 52%;
}

.w53 {
  width: 53%;
}

.w54 {
  width: 54%;
}

.w55 {
  width: 55%;
}

.w56 {
  width: 56%;
}

.w57 {
  width: 57%;
}

.w58 {
  width: 58%;
}

.w59 {
  width: 59%;
}

.w60 {
  width: 60%;
}

.w61 {
  width: 61%;
}

.w62 {
  width: 62%;
}

.w63 {
  width: 63%;
}

.w64 {
  width: 64%;
}

.w65 {
  width: 65%;
}

.w66 {
  width: 66%;
}

.w67 {
  width: 67%;
}

.w68 {
  width: 68%;
}

.w69 {
  width: 69%;
}

.w70 {
  width: 70%;
}

.w71 {
  width: 71%;
}

.w72 {
  width: 72%;
}

.w73 {
  width: 73%;
}

.w74 {
  width: 74%;
}

.w75 {
  width: 75%;
}

.w76 {
  width: 76%;
}

.w77 {
  width: 77%;
}

.w78 {
  width: 78%;
}

.w79 {
  width: 79%;
}

.w80 {
  width: 80%;
}

.w81 {
  width: 81%;
}

.w82 {
  width: 82%;
}

.w83 {
  width: 83%;
}

.w84 {
  width: 84%;
}

.w85 {
  width: 85%;
}

.w86 {
  width: 86%;
}

.w87 {
  width: 87%;
}

.w88 {
  width: 88%;
}

.w89 {
  width: 89%;
}

.w90 {
  width: 90%;
}

.w91 {
  width: 91%;
}

.w92 {
  width: 92%;
}

.w93 {
  width: 93%;
}

.w94 {
  width: 94%;
}

.w95 {
  width: 95%;
}

.w96 {
  width: 96%;
}

.w97 {
  width: 97%;
}

.w98 {
  width: 98%;
}

.w99 {
  width: 99%;
}

.w100 {
  width: 100%;
}/*# sourceMappingURL=style.css.map */