@charset "UTF-8";

:root {
  --txt: #2B2723;
  --dotsActive: #2C2723;
  --primary: #00A1D0;
  --brown: #62554B;
  --contact-bg: #F7F7F5;
}

/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
svg {
  max-width: 100%;
  max-height: 100%;
}

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

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  padding: 10px 0 16.6px;
  background-color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.3s all;
}

.c-header--shadow {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.c-header__head {
  font-size: 1.2rem;
  font-weight: 500;
  left: 0.05em;
  line-height: 2.33;
  max-width: 90%;
  margin: 0 17px;
}

.c-header__head span {
  display: inline-block;
}

.c-header__body {
  padding: 0 36px 0 16px;
  display: flex;
  justify-content: space-between;
}

.c-header__logo {
  max-width: 181px;
}

.c-header__logo a {
  display: flex;
}

.c-header__logo a svg {
  width: 181px;
}

.c-header__shop {
  margin-left: 29px;
}

.c-header__shop a {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-family: "Alata", sans-serif;
  letter-spacing: 0.05em;
  border: 1px solid var(--txt);
  padding: 7px 24px;
  transition: 0.3s all ease-in-out;
}

.c-header__shop a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.c-header__menu {
  display: flex;
  align-items: baseline;
}

/* .c-header__menu nav, */
.c-header__menu .menu {
  display: flex;
  align-items: baseline;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  gap: 40px;
}

.c-header__menu .menu>li {
  position: relative;
}

.c-header__menu .menu>li>a {
  padding: 10px 0;
}

.c-header__menu .sub-menu {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  background: #fff;
  width: 200px;
  border-top: 5px solid var(--primary);
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
}

.c-header__menu .menu>li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
}

.c-header__menu .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #E5E5E5;
}

.c-header__menu .sub-menu a {
  display: block;
  padding: 15px 10px;
}

.c-header__menu .menu a {
  transition: 0.3s all ease-in-out;
}

.c-header__menu .menu a:hover {
  color: var(--primary);
}

.c-header__sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .c-header {
    padding-top: 0;
    padding-bottom: 0;
  }

  .c-header__head {
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid #F5F5F5;
  }

  .c-header__menu {
    display: none;
  }

  .c-header__logo {
    max-width: 50%;
    padding-left: 12.5px;
  }

  .c-header__logo svg {
    width: 181px;
  }

  .c-header__body {
    padding: 0;
    align-items: center;
    border-bottom: 1px solid #F5F5F5;
  }

  .c-header__sp {
    display: flex;
  }

  .c-header__spShop {
    background-color: var(--primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: "Alata", sans-serif;
    letter-spacing: 0.05em;
    line-height: 1;
    padding: 8px 10.5px;
    gap: 5px;
  }

  .c-header__spBar {
    width: 52px;
    border: none;
    outline: none;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .c-header__spBar .box {
    width: 63.4%;
    height: 54%;
    position: relative;
  }

  .c-header__spBar .box span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #60554C;
    border-radius: 20px;
    position: absolute;
    transition: 0.3s all ease-in-out;
  }

  .c-header__spBar .box span:nth-child(1) {
    top: 0;
  }

  .c-header__spBar .box span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
  }

  .c-header__spBar .box span:nth-child(3) {
    bottom: 0;
  }

  .c-header__spBar.is-actived .box span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }

  .c-header__spBar.is-actived .box span:nth-child(2) {
    opacity: 0;
  }

  .c-header__spBar.is-actived .box span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
  }

  .c-header__spMenu {
    display: none;
    position: absolute;
    z-index: 100;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 100%);
    overflow-y: scroll;
    bottom: 0;
    left: 0;
    padding-bottom: 23px;
    transform: translate(0, 100%);
  }

  .c-header__spMenu .main>li {
    font-size: 1.7rem;
    font-weight: 700;
    padding: 15.5px 25px;
    position: relative;
  }

  .c-header__spMenu .js-toggle::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f0ab';
    position: absolute;
    right: 20px;
    top: 15.5px;
    /* 		transform: translatey(-50%); */
  }

  .c-header__spMenu .js-toggle.is-actived::before {
    content: '\f0aa';
  }

  .c-header__spMenu .main>li button {
    --size: 55px;
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 0;
    width: var(--size);
    height: var(--size);
  }

  .c-header__spMenu .main>li button svg {
    width: 18.5px;
    transform: rotate(90deg);
    transition: 0.3s all;
  }

  .c-header__spMenu .main>li:first-child {
    background-color: #F7F7F5;
  }

  .c-header__spMenu .main>li:nth-child(even) {
    background-color: #F0F0EC;
  }

  .c-header__spMenu .main>li ul {
    font-weight: 400;
    list-style-type: "-";
    padding-left: 13px;
    padding-top: 20px;
    letter-spacing: 0;
    display: none;
  }

  .c-header__spMenu .main>li ul li:not(:last-child) {
    margin-bottom: 21px;
  }

  .c-header__spMenu .main>li.is-actived svg {
    transform: rotate(-90deg);
  }

  .c-header__spMenu .c-footer__btnItem {
    border: 2px solid #C2BBB5;
  }

  .c-header__shop {
    margin-left: 0;
  }
}

/* Main menu
------------------------------------------------------------*/
/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer__fixedBtn {
  display: none;
}

.c-footer__topBtn {
  display: block;
  position: sticky;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  font-weight: 500;
  outline: none;
  border: none;
  padding: 11px;
  background-color: #ECECE6;
  color: var(--dotsActive);
  cursor: pointer;
  transition: 0.3s all;
  z-index: 8;
}

.c-footer__topBtn:hover {
  background-color: var(--primary);
  color: #fff;
}

.c-footer__head {
  background: url(../img/footer_bg_01.png) no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 457px;
  margin: 0 auto;
}

.c-footer__head h3 {
  width: 900px;
  max-width: 100%;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 3.3rem;
  left: 0;
  line-height: 1.2;
}

.c-footer__body {
  --bodyBox: 1200px;
  background: url(../img/footer_body_bg.png) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 53px 0 47px;
}

.c-footer__body::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8588235294);
  z-index: -1;
}

.c-footer__content {
  display: flex;
  align-items: center;
  width: var(--bodyBox);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-footer__contentLeft,
.c-footer__contentRight {
  flex: 1;
}

.c-footer__contentLeft .u-logoAttr {
  --mainColor: #fff;
  --subColor: #fff;
  width: 267px;
}

.c-footer__contentRight {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 12%;
}

.c-footer__contentRight .main {
  list-style-image: url(../img/liststyle_image.svg);
  letter-spacing: 0;
}

.c-footer__contentRight .main>li {
  padding-left: 10px;
}

.c-footer__contentRight .main>li:not(:last-child) {
  margin-bottom: 30px;
}

.c-footer__contentRight .main>li>a {
  font-size: 1.5rem;
  font-weight: 700;
}

.c-footer__contentRight .main>li ul {
  list-style-type: "-";
  margin-top: 13px;
  padding-left: 13px;
}

.c-footer__contentRight .main>li ul li {
  font-size: 1.3rem;
  font-weight: 500;
}

.c-footer__contentRight .main>li ul li:not(:last-child) {
  margin-bottom: 14px;
}

.c-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 267px;
  border: 1px solid #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.3;
  padding: 6px;
  transition: 0.3s all ease-in-out;
  margin-top: 24px;
}

.c-footer__social svg {
  display: inline-block;
  margin-right: 5px;
}

.c-footer__social:hover {
  color: var(--txt);
  background-color: #fff;
}

.c-footer__btn {
  width: 900px;
  max-width: 100%;
  margin: 33px auto 0;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.c-footer__btnItem {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
  background-color: #fff;
  color: var(--txt);
  padding: 21px 10px 19px;
  position: relative;
  gap: 2.5%;
}

.c-footer__btnItem span {
  display: inline-block;
}

.c-footer__btnItem--shop {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  font-size: 2.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #ECECE6 url(../img/footer_btn_bg_01.png) no-repeat center;
  background-size: cover;
}

.c-footer__btnItem--contact {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  background-color: #fff;
  letter-spacing: 0;
  transition: 0.3s all ease-in-out;
}

.c-footer__btnItem--contact:hover {
  background-color: var(--primary);
  color: #fff;
}

.c-footer__foot {
  background-color: var(--dotsActive);
  color: #fff;
  padding: 28px 0;
}

.c-footer__footContent {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-footer__footContent h6 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.c-footer__footContent ul {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 6%;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.05em;
  width: 37%;
}

@media screen and (max-width: 767px) {
  .c-footer__fixedBtn {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    transition: 0.3s all;
  }

  .c-footer__fixedBtn--hidden {
    transform: translate(0, 100%);
  }

  .c-footer__fixedBtn a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .c-footer__fixedBtn a:first-child {
    font-family: "Alata", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    background-color: #ECECE6;
    padding: 18px 5px;
  }

  .c-footer__fixedBtn a:last-child {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0;
    padding: 15px 5px;
    background-color: #fff;
  }

  .c-footer__head {
    padding: 33.5px 25px;
    align-items: flex-start;
    height: 269px;
    background-position: center right;
    background-image: url(../img/footer_bg_01_sp.png);
  }

  .c-footer__head h3 {
    font-size: 2.5rem;
  }

  .c-footer__content {
    flex-wrap: wrap;
  }

  .c-footer__contentLeft,
  .c-footer__contentRight {
    flex: unset;
    width: 100%;
  }

  .c-footer__contentLeft {
    text-align: center;
    padding-bottom: 31px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  }

  .c-footer__contentLeft h2 {
    max-width: 57.86%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-footer__contentRight {
    padding: 21px 0 0;
    display: block;
    width: 650px;
    max-width: 90%;
    margin: 0 auto;
  }

  .c-footer__contentRight .main {
    padding-left: 20px;
  }

  .c-footer__contentRight .main:not(:last-child) {
    margin-bottom: 17px;
  }

  .c-footer__contentRight .main>li {
    font-size: 1.7rem;
  }

  .c-footer__contentRight .main>li ul li {
    font-size: 1.5rem;
  }

  .c-footer__contentRight .main>li:not(:last-child) {
    margin-bottom: 17px;
  }

  .c-footer__social {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .c-footer__body {
    padding: 21px 0 26px;
    background-image: url(../img/footer_body_bg_sp.png);
  }

  .c-footer__btn {
    border-radius: 0;
    flex-wrap: wrap;
  }

  .c-footer__btnItem {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 7px;
  }

  .c-footer__btnItem--shop {
    font-size: 2.5rem;
  }

  .c-footer__btnItem--shop svg {
    display: none;
  }

  .c-footer__btnItem--contact {
    margin-top: 13.5px;
    font-size: 2.1rem;
    padding: 24px 10px 22px;
  }

  .c-footer__foot {
    padding: 20px 0 16px;
  }

  .c-footer__footContent {
    flex-direction: column-reverse;
  }

  .c-footer__footContent ul {
    width: 90%;
    font-size: 1rem;
    justify-content: flex-start;
  }

  .c-footer__footContent h6 {
    width: 90%;
    margin-top: 10px;
    text-align: left;
  }
}

@media screen and (max-width: 370px) {
  .c-footer__fixedBtn a:first-child {
    font-size: 1.7rem;
  }

  .c-footer__fixedBtn a:last-child {
    font-size: 1.3rem;
    gap: 5px;
  }
}

/* fonts
------------------------------------------------------------*/
@font-face {
  font-family: "YuGothic";
  src: url(../fonts/YuGothL_0.ttc);
  font-weight: 300;
}

@font-face {
  font-family: "YuGothic";
  src: url(../fonts/YuGothR_0.ttc);
  font-weight: 400;
}

@font-face {
  font-family: "YuGothic";
  src: url(../fonts/YuGothM_0.ttc);
  font-weight: 500;
}

@font-face {
  font-family: "YuGothic";
  src: url(../fonts/YuGothB.ttc);
  font-weight: 700;
}

/* layout
------------------------------------------------------------*/
body {
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--txt);
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-container {
  width: 1050px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-container {
    padding: 0 10px;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.c-title {
  text-align: center;
}

.c-title h5 {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-family: "Alata", sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  color: #BABABA;
}

.c-title h3 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.46;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 22px;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .c-title h5 {
    font-size: 1.9rem;
  }

  .c-title h3 {
    font-size: 2.5rem;
    margin-top: 5px;
  }
}

.c-btn {
  --bg: #fff;
  display: block;
  background-color: var(--bg);
  width: 250px;
  max-width: 80%;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-family: "Alata", sans-serif;
  line-height: 1;
  position: relative;
  transition: 0.3s all ease-in-out;
  border: 1px solid var(--txt);
  text-align: center;
  padding: 13px 10px;
  margin: 0 auto;
}

.c-btn svg {
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translate(0, -50%);
}

.c-btn:hover {
  --bg: var(--primary);
  color: #fff;
  border-color: var(--bg);
}

.c-btn:hover svg {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 1.7rem;
    width: 270px;
    padding: 14px 10px;
  }
}

.c-btn2 {
  --c: var(--dotsActive);
  --bg: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: block;
  width: 250px;
  border: 1px solid var(--c);
  color: var(--c);
  background: var(--bg);
  padding: 7.5px 5px;
  transition: 0.3s all;
  position: relative;
  text-align: center;
}

.c-btn2::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a9";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  font-size: 1.1rem;
}

.c-btn2:hover {
  color: var(--bg);
  background-color: var(--c);
  border-color: var(--c);
}

.c-btn2.dark-theme {
  --c: #fff;
  --bg: var(--dotsActive);
  border-color: var(--bg) !important;
}

@media screen and (max-width: 767px) {
  .c-btn2 {
    font-size: 1.7rem;
  }
}

.c-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 5%;
}

.c-services a {
  display: block;
  width: 27.8%;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 4.4%;
}

.c-services a:hover img {
  transform: scale(1.2);
}

.c-services a figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.c-services a figure::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.c-services a figure::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #2B2723);
}

.c-services a figure img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all;
}

.c-services a figcaption {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 6.3%;
  transform: translate(-50%, 0);
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 2.22;
  text-align: center;
  width: 90%;
}

.c-services a figcaption span {
  display: inline-block;
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .c-services {
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    justify-content: space-between;
    gap: 0;
    position: relative;
  }

  .c-services a {
    width: 47.69%;
  }

  .c-services a figcaption {
    font-size: 1.4rem;
    line-height: 1.25;
  }
}

.c-slider {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  padding: 100px 0 100px;
}

.c-slider__image {
  position: relative;
  transition: 0.3s all;
  border-radius: 20px;
  overflow: hidden;
}

.c-slider__image::before {
  content: "";
  display: block;
  padding-bottom: 53.92%;
}

.c-slider__image img {
  position: absolute;
  top: 0;
  left: 0;
}

.c-slider .swiper-slide-active {
  z-index: 2;
}

.c-slider .swiper-slide-active .c-slider__image {
  transform: scale(1.15);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1098039216);
}

.c-slider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.c-slider .swiper-pagination-bullet {
  margin: 0 !important;
}

.c-slider .swiper-pagination-bullet-active {
  width: 25px;
  height: 25px;
  border-radius: 0;
  background: url(../img/slider_active_dot.svg) no-repeat center;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .c-slider {
    padding: 40px 0 75px;
  }

  .c-slider__image {
    border-radius: 10px;
  }

  .c-slider .swiper-slide-active .c-slider__image {
    transform: scale(1.2);
  }

  .c-slider .swiper-pagination {
    gap: 17px;
  }
}

.c-btn-list {
  padding: 40px 0;
}

.c-btn-list__box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.72%;
}

.c-btn-list__item,
.c-btn-list__longItem {
  background: no-repeat center;
  background-size: cover;
  display: flex;
  border-radius: 10px;
}

.c-btn-list__item .txt h3,
.c-btn-list__longItem .txt h3 {
  font-family: "Alata", sans-serif;
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5;
}

.c-btn-list__item .txt h5,
.c-btn-list__longItem .txt h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.05em;
}

.c-btn-list__item {
  width: 49.14%;
  justify-content: space-between;
  align-items: center;
  padding: 59px 44px 62px 43px;
  height: 100%;
}

.c-btn-list__longItem {
  background-image: url(../img/online_shop_banner_pc.png);
  background-color: #ECECE6;
  margin-top: 1.5%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 43px 20px 45px 20px;
}

.c-btn-list__longItem .txt {
  text-align: center;
}

.c-btn-list__longItem .txt h5 {
  margin-top: 5px;
}

.c-btn-list__longItem .txt p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.9;
}

.c-btn-list__contact {
  --borderRight: 48px;
  background: #fff url(../img/contact_btn_bg.png) no-repeat left center;
  background-size: auto 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid var(--txt);
  border-right-width: var(--borderRight) !important;
  border-radius: 15px;
  margin-top: 5.3%;
  padding: 47px 20px 45px;
  position: relative;
}

.c-btn-list__contact h3 {
  text-align: right;
  font-family: "Alata", sans-serif;
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5;
  flex: 1;
  padding-right: 3.3%;
}

.c-btn-list__contact p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.26;
  width: calc(50% - 38px);
}

.c-btn-list__contact svg {
  position: absolute;
  color: #fff;
  top: 50%;
  right: calc(var(--borderRight) / 2 * -1);
  transform: translate(50%, -50%);
}

@media screen and (max-width: 768px) {
  .c-btn-list__box {
    width: 650px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-btn-list__item {
    width: 100%;
    min-height: 103px;
    padding: 13px 16.5px 16px 17.5px;
  }

  .c-btn-list__item .txt {
    width: 50%;
  }

  .c-btn-list__item .txt h3 {
    font-size: 2.6rem;
  }

  .c-btn-list__item .txt h5 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .c-btn-list__item .txt h5 span {
    display: inline-block;
  }

  .c-btn-list__item:not(:first-child) {
    margin-top: 5%;
  }

  .c-btn-list__longItem {
    background-image: url(../img/online_shop_banner_sp.png);
    margin-top: 6.3%;
    padding: 41px 20px 55px;
  }

  .c-btn-list__longItem .txt {
    width: 69.69%;
  }

  .c-btn-list__longItem .txt h3 {
    font-size: 3.1rem;
  }

  .c-btn-list__longItem .txt h5 {
    font-size: 1.5rem;
    line-height: 1.23;
  }

  .c-btn-list__longItem .txt h5 span {
    display: inline-block;
  }

  .c-btn-list__longItem .txt p {
    font-size: 1.3rem;
    line-height: 1.34;
    margin-top: 5px;
  }

  .c-btn-list__contact {
    --borderRight: 24px;
    background-image: url(../img/contact_btn_bg_sp.png);
    flex-wrap: wrap;
    justify-content: flex-end;
    background-size: auto 100%;
    border-width: 3px;
    padding: 13px 20px 11px;
  }

  .c-btn-list__contact svg {
    width: 16.5px;
  }

  .c-btn-list__contact h3,
  .c-btn-list__contact p {
    width: 58.12%;
    text-align: left;
    flex: unset;
  }

  .c-btn-list__contact h3 {
    font-size: 2.6rem;
  }

  .c-btn-list__contact p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

.c-pageHead {
  padding: 36px 0px;
}

.c-pageHead__bg {
  background: #000 no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 222px;
  width: 1740px;
  max-width: 90.7%;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}

.c-pageHead__bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: -1;
}

.c-pageHead h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.2;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .c-pageHead {
    padding: 14.5px 0px;
  }

  .c-pageHead__bg {
    min-height: 129px;
  }

  .c-pageHead h2 {
    font-size: 2.5rem;
  }
}

.c-pageDesc {
  position: relative;
  z-index: 2;
  padding: 56px 0 440px;
  text-align: center;
  background: url(../img/pageDesc_bg.png) no-repeat center bottom 5%;
}

.c-pageDesc h5 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
}

.c-pageDesc h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  margin-top: 15px;
  margin-bottom: 6px;
}

.c-pageDesc h4 {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}

.c-pageDesc p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.9;
  margin-top: 17.5px;
}

.c-pageDesc__msgBox {
  --triangle: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-bottom: calc(var(--triangle) * 2);
}

.c-pageDesc__msgBox h6 {
  --bg: var(--brown);
  width: 35.16%;
  background-color: var(--bg);
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.26;
  padding: 10px 5px;
  border-radius: 50px;
  position: relative;
}

.c-pageDesc__msgBox h6::before {
  content: "";
  position: absolute;
  display: block;
  border: calc(var(--triangle) / 2) solid transparent;
  border-top: var(--triangle) solid var(--bg);
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}

.c-pageDesc__msgBox h6:nth-child(odd) {
  transform: translate(-40%, 0);
}

.c-pageDesc__msgBox h6:nth-child(even) {
  --bg: #80746C;
  transform: translate(40%, 0);
}

.c-pageDesc__msgBox h6:not(:first-child) {
  position: relative;
  margin-top: -1%;
  z-index: -1;
}

.c-pageDesc__underline {
  margin-bottom: 5px;
}

.c-pageDesc__obj {
  position: absolute;
  z-index: -1;
}

.c-pageDesc__obj--1 {
  top: 9%;
  left: 18%;
  max-width: 12.7%;
  min-width: 130px;
}

.c-pageDesc__obj--2 {
  right: 17%;
  top: 19%;
  max-width: 10.83%;
  min-width: 115px;
}

.c-pageDesc__obj--3 {
  top: 5%;
  right: 20%;
  max-width: 13%;
}

.c-pageDesc__obj--4 {
  top: 39%;
  left: 21%;
  max-width: 4.47%;
}

.c-pageDesc__obj--5 {
  top: 22%;
  left: 23%;
  max-width: 9.8%;
  min-width: 120px;
}

.c-pageDesc__obj--6 {
  right: 25%;
  top: 15%;
}

.c-pageDesc__obj--7 {
  right: 30%;
  top: 25%;
}

.c-pageDesc__obj--8 {
  top: 9%;
  left: 17%;
}

.c-pageDesc__obj--9 {
  top: 26%;
  left: 21%;
}

.c-pageDesc__obj--10 {
  top: 15%;
  right: 24%;
}

.c-pageDesc--2 {
  background: url(../img/pageDesc_bg.png) no-repeat center bottom 5%, url(../img/cloud_bg_01.svg) no-repeat left 24% top, url(../img/cloud_bg_02.svg) no-repeat right 23% top;
  background-size: auto, 15%, 12%;
}

.c-pageDesc--noBg {
  padding: 56px 0 83px;
  background-image: none;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .c-pageDesc__obj--1 {
    left: 80px;
  }

  .c-pageDesc__obj--2 {
    right: 60px;
  }

  .c-pageDesc__obj--3 {
    right: 90px;
  }

  .c-pageDesc__obj--4 {
    left: 90px;
  }

  .c-pageDesc__obj--5 {
    left: 20px;
  }

  .c-pageDesc__obj--6 {
    right: 50px;
  }

  .c-pageDesc__obj--7 {
    right: 25px;
  }

  .c-pageDesc__obj--8 {
    left: 40px;
    max-width: 15%;
  }

  .c-pageDesc__obj--9 {
    left: 20px;
    top: 39%;
    max-width: 11%;
  }

  .c-pageDesc__obj--10 {
    right: 40px;
    top: 0;
    max-width: 9%;
  }
}

@media screen and (max-width: 767px) {
  .c-pageDesc {
    padding: 3px 0 150px;
    background-size: 210%;
    background-position: left 10% bottom;
  }

  .c-pageDesc h5 {
    font-size: 1.6rem;
  }

  .c-pageDesc h3 {
    font-size: 2.7rem;
  }

  .c-pageDesc h4 {
    font-size: 2.2rem;
  }

  .c-pageDesc p {
    font-size: 1.6rem;
    text-align: left;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .c-pageDesc__msgBox h6 {
    width: 50%;
    min-width: 150px;
    max-width: 250px;
    font-size: 1.2rem;
    padding: 20px 20px;
  }

  .c-pageDesc__listObj {
    margin: 26px auto 0;
    display: flex;
    justify-content: center;
    max-width: 500px;
    width: 90%;
    align-items: center;
    gap: 20px;
    overflow: hidden;
  }

  .c-pageDesc__obj {
    position: static;
    min-width: unset;
    max-width: 100%;
  }

  .c-pageDesc__obj--5 {
    max-width: 30%;
  }

  .c-pageDesc__obj--6,
  .c-pageDesc__obj--7 {
    max-width: 25%;
  }

  .c-pageDesc__obj--8,
  .c-pageDesc__obj--9 {
    max-width: 30%;
  }

  .c-pageDesc__obj--10 {
    max-width: 20%;
  }

  .c-pageDesc--2 {
    background-size: 210%, 15%, 12%;
  }

  .c-pageDesc--noBg {
    padding: 3px 0 87px;
  }
}

.c-contact {
  background-color: var(--contact-bg);
  position: relative;
  z-index: 2;
}

.c-contact__box {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
}

.c-contact__img {
  width: 40.52%;
  position: relative;
}

.c-contact__img::before {
  content: "";
  display: block;
  padding-bottom: 44.21%;
}

.c-contact__img img {
  position: absolute;
  top: 0;
  left: 0;
}

.c-contact__txt {
  flex: 1;
  max-width: 632px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-contact__txt .content {
  width: 100%;
  max-width: 525px;
}

.c-contact__txt p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.56;
}

.c-contact__txt nav {
  display: flex;
  margin-top: 27.5px;
}

.c-contact__txt nav a {
  width: 47.6%;
}

.c-contact__obj {
  position: absolute;
  z-index: 2;
}

.c-contact__obj--1 {
  top: 7%;
  left: 37.7%;
}

.c-contact__obj--2 {
  bottom: 14%;
  left: 36.3%;
}

.c-contact__obj--3 {
  right: 20.5%;
  bottom: 13%;
  z-index: -1;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .c-contact__obj--3 {
    right: 2%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .c-contact__img {
    min-height: 200px;
  }

  .c-contact__obj--1 {
    max-width: 8%;
    top: 2%;
    left: 35.7%;
  }

  .c-contact__obj--2 {
    max-width: 7%;
    bottom: 2%;
    left: 37.3%;
  }

  .c-contact__obj--3 {
    max-width: 9%;
    bottom: unset;
    top: 1%;
    right: 3%;
  }
}

@media screen and (max-width: 767px) {
  .c-contact__box {
    flex-wrap: wrap;
  }

  .c-contact__img {
    width: 100%;
  }

  .c-contact__img::before {
    padding-bottom: 48.4%;
  }

  .c-contact__txt {
    flex: unset;
    width: 86.67%;
    margin: 23.5px auto 0;
    padding-bottom: 20px;
  }

  .c-contact__obj {
    position: static;
  }

  .c-contact__objList {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 26.5px;
  }

  .c-contact__obj--3 {
    width: 50%;
    max-width: 327px;
  }

  .c-contact__obj--1,
  .c-contact__obj--2 {
    width: 25%;
    max-width: 140px;
  }

  .c-contact nav {
    flex-wrap: wrap;
  }

  .c-contact nav .c-btn {
    width: 83.07%;
  }

  .c-contact nav .c-btn:not(:last-child) {
    margin-bottom: 14px;
  }
}

.c-pagination {
  --borderColor: #E5E5E5;
  --size: 61px;
  text-align: center;
  padding: 20px 0;
}

.c-pagination__box {
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  border-radius: 60px;
  border: 1px solid var(--borderColor);
  overflow: hidden;
}

.c-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Alata", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  width: var(--size);
  height: var(--size);
  transition: 0.3s all;
  background-color: #fff;
  -moz-user-select: none;
  user-select: none;
}

.c-pagination .page-numbers.first,
.c-pagination .page-numbers.prev,
.c-pagination .page-numbers.next,
.c-pagination .page-numbers.last {
  color: var(--primary);
}

.c-pagination .page-numbers.dots {
  background-color: #fff !important;
  color: var(--txt) !important;
}

.c-pagination .page-numbers:hover,
.c-pagination .page-numbers.current {
  background-color: #F7F7F5;
  color: var(--primary);
}

.c-pagination .page-numbers:not(:last-child) {
  border-right: 1px solid var(--borderColor);
}

@media screen and (max-width: 767px) {
  .c-pagination {
    --size: 30px;
  }

  .c-pagination .page-numbers {
    font-size: 1.6rem;
  }

  .c-pagination .page-numbers svg {
    max-width: 50%;
  }

  .c-pagination .page-numbers.prev svg,
  .c-pagination .page-numbers.next svg {
    max-width: 25%;
  }
}

.c-singleControl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 78px 0 0;
}

.c-singleControl__redirect {
  min-width: 12.7%;
}

.c-singleControl__redirect a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-singleControl__redirect span {
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .c-singleControl {
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    padding: 40px 0 0;
  }

  .c-singleControl .c-btn {
    margin-top: 30px;
    order: 3;
    width: 100%;
  }
}

.woocommerce form.c-form .form-row {
  padding: 0;
  margin: 0;
}

.c-form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-form__row--3 {
  flex-wrap: wrap;
}

.c-form__row--3 .c-form__label {
  margin-bottom: 30px;
}

.c-form__row--3 .c-form__input {
  width: 100%;
}

.c-form__row--textarea {
  align-items: flex-start;
}

.c-form__row--textarea .c-form__label {
  padding-top: 15.5px;
}

div[data-id="pickUp_dropOff_area"] > .c-form__row,
div[data-id="pickUp_dropOff_detail_area"] > .c-form__row,
div[data-id="usage_pickUp_area"] > .c-form__row,
div[data-id="numberCare_area"] > .c-form__row,
div[data-id="pickUpTime_area"] > .c-form__row,
.c-form__row:not(:last-child) {
  margin-bottom: 36px;
}

.c-form__label {
  width: 40%;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.mw_wp_form .c-form__label--required::after,
.c-form__label--required p::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  background: url(../img/mark.png) no-repeat center;
  background-size: 100%;
  margin-left: 11px;
}

.c-form__input {
  width: 59.5%;
}

.c-form__input .text {
  width: 100%;
  border: 1px solid #EBEBEB;
  border-radius: 5px;
  background-color: #F7F7F5;
  color: var(--dotsActive);
  font-weight: 700;
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  /* font-weight: 500; */
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  outline: none;
  padding: 15.5px 10px;
}

.c-form__petAmount > p {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.c-form__acceptance {
  margin-top: 66px;
  text-align: center;
}

.c-form__acceptance .mwform-checkbox-field-text {
  display: none;
}

.c-form__acceptance .label a {
  color: var(--primary);
  font-weight: 700;
}

.c-form__section {
  padding: 40px 0;
  border-top: 3px solid var(--primary);
}

.c-form__section > h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 36px;
}

.c-form__submit {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.c-form__submit .button {
  position: relative;
  cursor: pointer;
}

.c-form__submit .button .c-btn {
  max-width: 100%;
}

.c-form__submit .button svg {
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translate(0, -50%);
}

.c-form__submit .button:hover svg {
  color: #fff;
}

.c-form__petBox {
  border: 2px dashed var(--txt);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
}

.c-form__petBox .row,
.c-form__petBox .row .part {
  display: flex;
  align-items: baseline;
  /* flex-wrap: wrap; */
  gap: 15px;
}

.c-form__petBox .row:not(:last-child) {
	margin-bottom: 25px;
}

.c-form__petBox .row .part {
  flex: 1;
}

.c-form__petBox .row .part p {
  white-space: nowrap;
}

.c-form__petBox .row .part p:nth-child(2) {
  flex: 1;
}

.c-form__petBox .row1 .part:first-child{
  max-width: 25%;
}

.c-form__petBox .row .text {
  flex: 1;
}

.c-form__petBox + .c-form__petBox {
  margin-top: 40px;
}

.mw_wp_form_confirm .c-form__acceptance,
.mw_wp_form_confirm form>p,
.mw_wp_form_complete form>p {
  display: none;
}

.c-form__completed {
  text-align: center;
  padding: 40px 25px;
  border: 2px dashed var(--primary);
  border-radius: 20px;
  margin-top: 100px;
}

.c-form__completed h3 {
  font-size: 3rem;
  text-shadow: rgb(0, 161, 208) 3px 0px 0px, rgb(0, 161, 208) 2.83487px 0.981584px 0px, rgb(0, 161, 208) 2.35766px 1.85511px 0px, rgb(0, 161, 208) 1.62091px 2.52441px 0px, rgb(0, 161, 208) 0.705713px 2.91581px 0px, rgb(0, 161, 208) -0.287171px 2.98622px 0px, rgb(0, 161, 208) -1.24844px 2.72789px 0px, rgb(0, 161, 208) -2.07227px 2.16926px 0px, rgb(0, 161, 208) -2.66798px 1.37182px 0px, rgb(0, 161, 208) -2.96998px 0.42336px 0px, rgb(0, 161, 208) -2.94502px -0.571704px 0px, rgb(0, 161, 208) -2.59586px -1.50383px 0px, rgb(0, 161, 208) -1.96093px -2.27041px 0px, rgb(0, 161, 208) -1.11013px -2.78704px 0px, rgb(0, 161, 208) -0.137119px -2.99686px 0px, rgb(0, 161, 208) 0.850987px -2.87677px 0px, rgb(0, 161, 208) 1.74541px -2.43999px 0px, rgb(0, 161, 208) 2.44769px -1.73459px 0px, rgb(0, 161, 208) 2.88051px -0.838247px 0px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  margin-bottom: 20px;
}

.c-form__completed p {
  font-size: 1.6rem;
  line-height: 2
}

@media screen and (max-width: 767px) {
  .c-form {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-form__row {
    flex-wrap: wrap;
  }

  .c-form__row:not(:last-child) {
    margin-bottom: 15px;
  }

  .c-form__label,
  .c-form__input {
    width: 100%;
  }

  .c-form__input {
    margin-top: 10px;
  }

  .c-form__input .text {
    font-size: 1.6rem;
  }

  .c-form__acceptance {
    margin-top: 30px;
  }
}

.c-form__group {
  display: flex;
  /* align-items: baseline; */
  align-items: center;
  width: 59.5%;
  gap: 10px;
  flex-wrap: wrap;
}

.c-form__group .item {
  flex: 1;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  max-width: calc(50% - 5px);
}

.c-form__group .item p {
  width: 100%;
}

.c-form__group .item.full {
  flex: unset;
  max-width: 100%;
}

.c-form__group .text {
  width: 100%;
  border: 1px solid #EBEBEB;
  border-radius: 5px;
  background-color: #F7F7F5;
  color: #ACA7A3;
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  outline: none;
  padding: 15.5px 10px;
}

.c-form__postCodeBtn {
  display: inline-block;
  background-color: var(--brown);
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4.5px 16.5px;
  cursor: pointer;
}

.c-form__password {
  width: 100%;
  position: relative;
}

.c-form__password:not(:last-child) {
  margin-bottom: 33px;
}

.c-form__password span {
  position: absolute;
  min-width: 29px;
  height: 100%;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border: none;
  outline: none;
  background-color: transparent;
}

.c-form__row--2 {
  flex-direction: column;
}

.c-form__row--2 .c-form__input,
.c-form__row--2 .c-form__group {
  width: 100%;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .c-form__group {
    width: 100%;
  }

  .c-form__petBox {
    padding: 20px 10px;
  }

  .c-form__petBox .row1 {
    flex-direction: column;
  }

  .c-form__petBox .row1 .part:first-child {
    max-width: unset;
  }

  .c-form__petBox .row2 {
    flex-wrap: wrap;
  }

  .c-form__petBox .row2 .part:last-child {
    flex: unset;
    width: 100%;
  }
}

.c-other {
  padding: 40px 0;
}

.c-other__title {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 58px;
  z-index: 2;
}

.c-other__title::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #E8E8E8;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: -1;
}

.c-other__title h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1.46;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-right: 44px;
}

.c-other__title h4 span {
  font-family: "Alata", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #BABABA;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 35px;
}

.c-other__item,
.c-other__longItem {
  background: no-repeat center;
  background-size: cover;
  display: flex;
  border-radius: 10px;
}

.c-other__item .txt h3,
.c-other__longItem .txt h3 {
  font-family: "Alata", sans-serif;
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5;
}

.c-other__item .txt h4,
.c-other__longItem .txt h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--dotsActive);
}

.c-other__item .txt h5,
.c-other__longItem .txt h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.05em;
}

.c-other__item {
  width: 49.14%;
  justify-content: space-between;
  align-items: center;
  padding: 39px 44px 42px 43px;
  min-height: 207px;
  min-height: 107px;
}

.c-other__box {
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1.72%;
}

.c-other__box--2 {
  width: 900px;
  gap: 4.9%;
}

.c-other__box--2 .c-other__item {
  width: 47.55%;
  margin-bottom: 34px;
}

.c-other__longItem {
  background-image: url(../img/online_shop_banner_pc.png);
  background-color: #ECECE6;
  margin-top: 1.5%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 43px 20px 45px 20px;
}

.c-other__longItem .txt {
  text-align: center;
}

.c-other__longItem .txt h5 {
  margin-top: 5px;
}

.c-other__longItem .txt p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.9;
}

.c-other__contact {
  --borderRight: 48px;
  background: #fff url(../img/contact_btn_bg.png) no-repeat left center;
  background-size: auto 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid var(--txt);
  border-right-width: var(--borderRight) !important;
  border-radius: 15px;
  margin-top: 5.3%;
  padding: 47px 20px 45px;
  position: relative;
}

.c-other__contact h3 {
  text-align: right;
  font-family: "Alata", sans-serif;
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5;
  flex: 1;
  padding-right: 3.3%;
}

.c-other__contact p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.26;
  width: calc(50% - 38px);
}

.c-other__contact svg {
  position: absolute;
  color: #fff;
  top: 50%;
  right: calc(var(--borderRight) / 2 * -1);
  transform: translate(50%, -50%);
}

.c-other__footer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-top: 63px;
}

.c-other__footer li {
  padding: 0 17px;
  position: relative;
}

.c-other__footer li:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

@media screen and (max-width: 767px) {
  .c-other {
    padding: 10px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .c-other__title {
    margin-bottom: 17px;
  }

  .c-other__title::before {
    display: none;
  }

  .c-other__title h4 {
    font-size: 2.5rem;
  }

  .c-other__title h4 span {
    font-size: 1.9rem;
  }

  .c-other__box {
    width: 650px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-other__box--2 .c-other__item {
    width: 100%;
    margin-bottom: 0;
  }

  .c-other__item {
    width: 100%;
    min-height: 103px;
    padding: 13px 16.5px 16px 17.5px;
  }

  .c-other__item .txt {
    width: 50%;
  }

  .c-other__item .txt h3 {
    font-size: 2.5rem;
  }

  .c-other__item .txt h4 {
    font-size: 2.2rem;
  }

  .c-other__item .txt h5 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .c-other__item .txt h5 span {
    display: inline-block;
  }

  .c-other__item:not(:first-child) {
    margin-top: 5%;
  }

  .c-other__longItem {
    background-image: url(../img/online_shop_banner_sp.png);
    margin-top: 6.3%;
    padding: 41px 20px 55px;
  }

  .c-other__longItem .txt {
    width: 69.69%;
  }

  .c-other__longItem .txt h3 {
    font-size: 3.1rem;
  }

  .c-other__longItem .txt h4 {
    font-size: 2.2rem;
  }

  .c-other__longItem .txt h5 {
    font-size: 1.5rem;
    line-height: 1.23;
  }

  .c-other__longItem .txt h5 span {
    display: inline-block;
  }

  .c-other__longItem .txt p {
    font-size: 1.3rem;
    line-height: 1.34;
    margin-top: 5px;
  }

  .c-other__contact {
    --borderRight: 24px;
    background-image: url(../img/contact_btn_bg_sp.png);
    flex-wrap: wrap;
    justify-content: flex-end;
    background-size: auto 100%;
    border-width: 3px;
    padding: 13px 20px 11px;
  }

  .c-other__contact svg {
    width: 16.5px;
  }

  .c-other__contact h3,
  .c-other__contact p {
    width: 58.12%;
    text-align: left;
    flex: unset;
  }

  .c-other__contact h3 {
    font-size: 2.6rem;
  }

  .c-other__contact p {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .c-other__footer {
    flex-direction: column;
    align-items: center;
    margin: 32.5px 0 22.5px;
  }

  .c-other__footer li::after {
    display: none !important;
  }
}

.c-simpTable {
  color: var(--dotsActive);
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin-top: 40px;
}

.c-simpTable:not(:first-child) {
  margin-bottom: 30px;
}

.c-simpTable:not(:last-child) {
  margin-bottom: 50px;
}

.c-simpTable table {
  min-width: 300px;
}

.c-simpTable table,
.c-simpTable  tr,
.c-simpTable th,
.c-simpTable td {
  border-collapse: collapse;
  border: 1px solid var(--brown)
}

.c-simpTable th {
  background-color: var(--contact-bg);
}

.c-simpTable th,
.c-simpTable td {
  padding: 10px;
}

.c-simpTable--w100 table {
  width: 100%;
}

.c-simpTable--no_border *{
  border: none!important;
}

.c-simpTable--no_border th {
  font-weight: 400;
  background-color: initial;
}

.c-simpTable .empty,
.c-table .empty {
  background-image: linear-gradient(to bottom right, transparent 49.5%, var(--brown) 49.5%, var(--brown) 50.5%, transparent 50.5%);
}

@media screen and (max-width: 800px) {
  .c-simpTable {
    overflow-x: scroll;
  }
    
  .c-simpTable--w100 table {
      min-width: 800px;
  }
}

.c-table {
  width: 100%;
  color: var(--dotsActive);
  letter-spacing: 0.05em;
}

.c-table * {
  border-collapse: collapse;
}

.c-table table {
  width: 100%;
}

.c-table thead th p {
  background-color: var(--brown);
  border-radius: 10px 10px 0 0;
  color: #fff;
  padding: 18px 10px;
  width: 95%;
  margin: 0 auto;
}

.c-table tbody tr {
  border-top: 1px dashed #DCD8D4;
}

/* .c-table tbody tr:nth-child(odd), */
.c-table tbody tr.border-top {
  border-top: 1px solid var(--brown) !important;
}

/* .c-table tbody tr:nth-child(even), */
.c-table tbody tr.border {
  border-bottom: 1px solid var(--brown);
}

.c-table tbody th {
  font-size: 1.5rem;
  background-color: var(--contact-bg);
  padding: 34px 10px 28px;
  border-right: 1px solid #DDD8D4;
  border-left: none;
}

.c-table tbody th:nth-child(2) {
  border-bottom: 1px solid #DDD8D4;
}

.c-table tbody td {
  font-family: "Alata", sans-serif;
  font-size: 2.2rem;
  line-height: 1.8;
  border-right: 1px dashed #DCD8D4;
}

.c-table tbody td:last-child {
  border-right: none;
}

@media screen and (max-width: 767px) {
  .c-table {
    overflow-x: scroll;
  }

  .c-table table {
    width: 800px;
  }
}

.c-solutions {
  padding: 70px 0 100px;
}

.c-solutions__list {
  width: 935px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 5.405%;
  margin-top: 50px;
}

.c-solutions__item {
  width: 29.73%;
}

.c-solutions__item h5 {
  --background: var(--brown);
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #fff;
  background-color: var(--background);
  border-radius: 50px;
  padding: 17px 10px;
  position: relative;
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-solutions__item h5::before {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  bottom: 0;
  transform: translate(0, 100%);
  border-top: 17px solid var(--background);
  border-left: 8.5px solid transparent;
  border-right: 8.5px solid transparent;
}

.c-solutions__item figure {
  border-radius: 20px;
  overflow: hidden;
}

.c-solutions__item figcaption {
  text-align: center;
  padding: 18px 15px 20px;
  position: relative;
}

.c-solutions__item figcaption h4 {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--dotsActive);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 5.5px 5px;
  min-width: 59.71%;
  max-width: 85%;
}

.c-solutions__item figcaption h4::after {
  --size: 16px;
  content: "";
  display: block;
  width: var(--size);
  height: var(--size);
  background: url(../img/serviceDetail_dot.png) no-repeat center;
  background-size: 100% 100%;
}

.c-solutions__item figcaption p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.c-solutions__image {
  position: relative;
}

.c-solutions__image::before {
  content: "";
  display: block;
  padding-bottom: 80.57%;
}

.c-solutions__image img {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .c-solutions {
    padding: 20px 0 41px;
  }

  .c-solutions__list {
    flex-wrap: wrap;
    width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
  }

  .c-solutions__item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .c-solutions__item:not(:last-child) {
    margin-bottom: 35px;
  }

  .c-solutions__item figure {
    display: flex;
    width: 100%;
    border-radius: 15px;
  }

  .c-solutions__item h5 {
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding: 10px;
  }

  .c-solutions__item figcaption {
    flex: 1;
    text-align: left;
  }

  .c-solutions__item figcaption h4 {
    position: static;
    transform: none;
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    font-size: 1.8rem;
  }

  .c-solutions__item figcaption p {
    font-size: 1.5rem;
    line-height: 1.43;
  }

  .c-solutions__image {
    width: 37.06%;
  }
}

.c-servicePhoto {
  padding: 60px 0 103px;
}

@media screen and (max-width: 767px) {
  .c-servicePhoto {
    padding: 40px 0;
  }
}

.c-serviceFlow {
  padding: 84px 0 104px;
  background: url(../img/repeat_dots_bg.png) var(--contact-bg) repeat center;
}

.c-serviceFlow__list {
  margin-top: 70px;
}

@media screen and (max-width: 1050px) {
  .c-serviceFlow__list {
    padding: 0 20px;
  }
}

.c-serviceFlow__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-serviceFlow__item:not(:last-child) {
  margin-bottom: 64px;
}

.c-serviceFlow__image {
  position: relative;
  border-radius: 10px;
  width: 28%;
}

.c-serviceFlow__image::before {
  content: "";
  display: block;
  padding-bottom: 73.8%;
}

.c-serviceFlow__image img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
}

.c-serviceFlow__image svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translate(-30%, -40%);
}

.c-serviceFlow__txt {
  width: 66.44%;
}

.c-serviceFlow__txt h4 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.56;
}

.c-serviceFlow__txt p {
  margin-top: 17px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-serviceFlow__txt p span {
  color: #fff;
  background-color: #7b6a56;
  display: inline-block;
  padding: 5px 10px;
  margin: 10px 0;
  font-size: 1.2rem;
}

.c-serviceFlow__txt p a {
  color: var(--primary);
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-serviceFlow {
    padding: 47px 0 25px;
  }

  .c-serviceFlow__list {
    margin-top: 30px;
  }

  .c-serviceFlow__item {
    flex-wrap: wrap;
  }

  .c-serviceFlow__item:not(:last-child) {
    margin-bottom: 50px;
  }

  .c-serviceFlow__list {
    padding-top: 50px;
  }

  .c-serviceFlow__image,
  .c-serviceFlow__txt {
    width: 100%;
  }

  .c-serviceFlow__image svg {
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
  }

  .c-serviceFlow__image::before {
    padding-bottom: 56.14%;
  }

  .c-serviceFlow__txt {
    padding: 17px 0;
  }

  .c-serviceFlow__txt h4 {
    font-size: 1.7rem;
    text-align: center;
  }

  .c-serviceFlow__txt p {
    font-size: 1.5rem;
  }
}

.c-serviceVoice {
  padding: 77px 0 110px;
}

.c-serviceVoice__list {
  display: flex;
  width: 1000px;
  max-width: 100%;
  margin: 54px auto 0;
  flex-wrap: wrap;
  gap: 4.7%;
}

.c-serviceVoice__item {
  width: 30.2%;
}

.c-serviceVoice__item figcaption {
  margin-top: 18px;
}

.c-serviceVoice__item h4 {
  font-size: 1.5rem;
}

.c-serviceVoice__item ul {
  margin-top: 44px;
}

.c-serviceVoice__item ul li {
  display: flex;
  align-items: baseline;
}

.c-serviceVoice__item ul li :not(:last-child) {
  margin-bottom: 10px;
}

.c-serviceVoice__item ul h6 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dotsActive);
  background-color: #F7F7F5;
  line-height: 1;
  border-radius: 9px;
  padding: 3px 15px;
  margin-right: 10px;
}

.c-serviceVoice__item ul p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-serviceVoice__img {
  position: relative;
}

.c-serviceVoice__img::before {
  content: "";
  display: block;
  padding-bottom: 74.83%;
}

.c-serviceVoice__img img {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .c-serviceVoice {
    padding: 18.5px 0 42px;
  }

  .c-serviceVoice__list {
    max-width: 100%;
    overflow-x: scroll;
    flex-wrap: nowrap;
  }

  .c-serviceVoice__item {
    min-width: 234px;
  }

  .c-serviceVoice__item ul h6 {
    padding: 3px 10px;
  }

  .c-serviceVoice__item ul p {
    font-size: 1.2rem;
  }
}

.c-servicePrivilege {
  padding: 67px 0 55px;
}

.c-servicePrivilege__list {
  width: 900px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  counter-reset: privilege;
  margin-left: auto;
  margin-right: auto;
}

.c-servicePrivilege__item {
  counter-increment: privilege;
  width: 50%;
  text-align: center;
  padding: 69px;
  position: relative;
}

.c-servicePrivilege__item h5 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  background: var(--brown);
  color: #fff;
  border-radius: 50px;
  padding: 8px 5px;
  width: 61.7%;
  margin: 0 auto 44px;
}

.c-servicePrivilege__item h5::after {
  content: "0" counter(privilege);
  font-size: 3rem;
  font-family: "Alata", sans-serif;
  font-weight: 400;
}

.c-servicePrivilege__item h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 40px;
}

.c-servicePrivilege__item p {
  margin-top: 11px;
}

.c-servicePrivilege__image {
  position: relative;
}

.c-servicePrivilege__image::before {
  content: "";
  display: block;
  padding-bottom: 43.11%;
}

.c-servicePrivilege__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-servicePrivilege__notice {
  margin: 0 auto;
  border: 1px solid #d5d2cf;
  padding: 28.5px 25px 20px;
  background-color: #fff;
}

.c-servicePrivilege__notice h5 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 17.5px;
}

.c-servicePrivilege__notice p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-servicePrivilege__notice a {
  color: var(--primary);
  font-weight: 700;
}

.c-servicePrivilege__notice p:not(:last-child) {
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {

  .c-servicePrivilege__item:nth-child(1)::before,
  .c-servicePrivilege__item:nth-child(3)::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 0;
    height: 61.06%;
    border-right: 1px dashed var(--txt);
  }

  .c-servicePrivilege__item:nth-child(3)::after,
  .c-servicePrivilege__item:nth-child(4)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 0;
    width: 78.4%;
    border-top: 1px dashed var(--txt);
  }
}

@media screen and (max-width: 767px) {
  .c-servicePrivilege {
    padding: 25px 0;
  }

  .c-servicePrivilege__list {
    justify-content: center;
  }

  .c-servicePrivilege__item {
    width: 90%;
    margin: 0 auto;
    padding: 25px 15px;
  }

  .c-servicePrivilege__item:not(:last-child) {
    border-bottom: 1px dashed var(--txt);
  }

  .c-servicePrivilege__item h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }

  .c-servicePrivilege__item h4 {
    font-size: 2.1rem;
  }

  .c-servicePrivilege__item p {
    font-size: 1.4rem;
  }

  .c-servicePrivilege__notice {
    padding: 7.5px 12.5px 10px;
  }

  .c-servicePrivilege__notice h5 {
    font-size: 1.4rem;
  }

  .c-servicePrivilege__notice p {
    font-size: 1.2rem;
  }
}

.c-serviceSchedule {
  padding: 105px 0 132px;
}

.c-serviceSchedule .c-title {
  margin-bottom: 30px;
}

.c-serviceScheduleList {
  margin: 77px auto 97px;
  width: 900px;
  max-width: 100%;
}

.c-serviceScheduleItem {
  --spaceTop: 40px;
  --spaceLeft: 50px;
  --size: 21px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.c-serviceScheduleItem:not(:last-child) {
  padding-bottom: 64px;
}

.c-serviceScheduleItem:not(:last-child) .p-service1__part1Left::before {
  top: calc(var(--spaceTop) + 10px);
  left: calc(var(--size) / 2);
  width: 1px;
  height: 100%;
  background-color: #BABABA;
  transform: translate(-50%, 0);
}

.c-serviceScheduleLeft {
  width: 52.66%;
  box-sizing: border-box;
  padding: var(--spaceTop) 20px 20px var(--spaceLeft);
}

.c-serviceScheduleLeft::after,
.c-serviceScheduleLeft::before {
  content: "";
  display: block;
  position: absolute;
}

.c-serviceScheduleLeft::after {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: var(--brown);
  top: calc(var(--spaceTop) + 10px);
  left: 0;
}

.c-serviceScheduleLeft h4 {
  font-family: "Alata", sans-serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.05em;
  margin-bottom: 13px;
}

.c-serviceScheduleLeft h5 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.56;
  margin-bottom: 13px;
}

.c-serviceScheduleLeft p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-serviceScheduleRight {
  width: 38.44%;
  position: relative;
}

.c-serviceScheduleRight::before {
  content: "";
  display: block;
  padding-bottom: 64.16%;
}

.c-serviceScheduleRight::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 10px solid #E5E5E5;
  z-index: 2;
  box-sizing: border-box;
}

.c-serviceScheduleRight img {
  position: absolute;
  top: 0;
  left: 0;
}

.c-serviceScheduleNotice {
  border: 1px solid #B7B4B0;
  padding: 46px 70px 50px;
  width: 900px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-serviceScheduleNotice h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.83;
  text-align: center;
  margin-bottom: 46px;
}

.c-serviceScheduleNotice ul {
  display: flex;
  /* justify-content: center; */
  flex-wrap: wrap;
  gap: calc(25% / 3);
}

.c-serviceScheduleNotice ul li {
  width: 25%;
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
}

.c-serviceScheduleNotice ul li .img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 19px;
}

.c-serviceScheduleNotice ul li .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.c-serviceScheduleNotice ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
}

.c-serviceScheduleNotice p {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-serviceSchedule {
    padding: 40px 0;
  }

  .c-serviceScheduleList {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .c-serviceScheduleItem {
    flex-wrap: wrap;
    padding-left: var(--spaceLeft);
  }

  .c-serviceScheduleItem:not(:last-child) {
    padding-bottom: 30px;
  }

  .c-serviceScheduleLeft,
  .c-serviceScheduleRight {
    width: 100%;
  }

  .c-serviceScheduleLeft {
    padding-left: 0;
  }

  .c-serviceScheduleLeft h4 {
    font-size: 2.8rem;
  }

  .c-serviceScheduleNotice {
    padding: 25px 15px 30px;
  }

  .c-serviceScheduleNotice ul {
    gap: 20px;
  }

  .c-serviceScheduleNotice ul li {
    min-width: 130px;
    margin-bottom: 20px;
  }

  .c-serviceScheduleNotice ul li p {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------------------
other
------------------------------------------------------------*/
.c-fit,
.c-contain {
  width: 100%;
  height: 100%;
}

.c-fit {
  -o-object-fit: cover;
  object-fit: cover;
}

.c-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

/*
------------------------------------------------------------*/
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.p-top__head {
  background: url(../img/top-head_bg.png) repeat-x center, linear-gradient(to bottom, #fff, #F7F7F5, #fff);
}

.p-top1 {
  padding: 37px 0 0;
  position: relative;
}

.p-top1__obj {
  position: absolute;
  z-index: 2;
  max-width: 30%;
}

.p-top1__obj--1 {
  top: 16.6%;
  left: 3.8%;
  max-width: 16%;
}

.p-top1__obj--2 {
  right: 3.6%;
  top: 8%;
  max-width: 13%;
}

.p-top1__obj--3 {
  bottom: 29%;
  right: 3.2%;
  max-width: 9%;
  min-width: 100px;
}

.p-top1__obj--4 {
  left: 7.3%;
  bottom: 4.8%;
  max-width: 16%;
  min-width: 100px;
}

.p-top1__image {
  max-width: 1740px;
  width: 90.6vw;
  margin: 0 auto;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.p-top1__image::before {
  content: "";
  display: block;
  padding-bottom: 50.05%;
}

.p-top1__image img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-top1__slider {
  position: relative;
  overflow: initial;
}

.p-top1__desc {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  background-color: #57483C;
  border-radius: 30px;
  padding: 68px 39px;
  position: absolute;
  bottom: -1%;
  right: 3.8%;
  z-index: 2;
  text-align: center;
}

.p-top1__desc h3,
.p-top1__desc h4 {
  font-weight: 500;
}

.p-top1__desc h3 {
  font-size: 4.2rem;
  line-height: 1;
}

.p-top1__desc h4 {
  margin-top: 17px;
  font-size: 3rem;
  line-height: 0.9;
}

.p-top1 .swiper-pagination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: 0;
  transform: translate(0, 37%);
}

.p-top1 .swiper-pagination-bullet {
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  opacity: 1;
  color: #fff;
}

.p-top1 .swiper-pagination-bullet-active {
  color: var(--dotsActive);
}

.p-top1 .swiper-pagination-bullet:not(:last-child) {
  margin-bottom: 11px;
}

.p-top1 .swiper-pagination-bullet:nth-child(odd) {
  margin-right: 40px;
}

.p-top1 .swiper-pagination-bullet:nth-child(even) {
  margin-left: 40px;
}

.p-top1 .swiper-pagination-bullet:nth-child(even) svg {
  transform: scaleX(-1);
}

.p-top2 {
  padding: 112px 0 47px;
}

.p-top2 .c-title h3 {
  margin-top: 43px;
}

.p-top2__box {
  background-color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 20px;
  text-align: center;
  position: relative;
}

.p-top2__boxBorderTop,
.p-top2__boxBorderBottom,
.p-top2__boxBorderCorner {
  position: absolute;
}

.p-top2__boxBorderTop {
  top: 0;
  left: 0;
  height: calc(39.56% - 61px);
  width: calc(83% - 57px);
  border-top: 2px solid var(--txt);
  border-left: 2px solid var(--txt);
}

.p-top2__boxBorderCorner {
  top: 0;
  right: 0;
  width: calc(14.8% - 52px);
  height: calc(63.63% - 1px);
  border-top: 2px solid var(--txt);
  border-right: 2px solid var(--txt);
}

.p-top2__boxBorderBottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(52.51% - 61px);
  border-bottom: 2px solid var(--txt);
  border-left: 2px solid var(--txt);
}

.p-top2__boxBorderBottom::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 2px);
  height: 21%;
  border-right: 2px solid var(--txt);
}

.p-top2__obj {
  position: absolute;
}

.p-top2__obj--bird {
  top: -4%;
  right: 10%;
}

.p-top2__obj--neko {
  top: 32%;
  left: -5.6%;
}

.p-top2__obj--shiba {
  bottom: 13.3%;
  right: -1.5%;
}

.p-top2__desc {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.667;
  margin-top: 46px;
}

.p-top3 {
  padding: 20px 0 129px;
  background: url(../img/cloud_bg_01.svg) no-repeat left top, url(../img/cloud_bg_02.svg) no-repeat right 20%;
}

.p-top3__list {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 103px auto 63px;
  gap: 10.3%;
  counter-reset: point_step;
}

.p-top3__item {
  text-align: center;
  position: relative;
  width: 26.3%;
  counter-increment: point_step;
}

.p-top3__item svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -59%);
  z-index: 2;
}

.p-top3__item svg text {
  font-size: 2.9rem;
  font-family: "Alata", sans-serif;
  letter-spacing: 0.05em;
}

.p-top3__item svg text::after {
  content: counter(point_step);
  display: inline-block;
  color: inherit;
}

.p-top3__item h5 {
  position: absolute;
}

.p-top3__item p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 24px;
  line-height: 1.3;
}

.p-top3__image {
  position: relative;
  border-radius: 50%;
  border: 1px dashed var(--txt);
}

.p-top3__image::before {
  content: "";
  display: block;
  padding-bottom: 100%;
  border-radius: inherit;
}

.p-top3__image img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
}

.p-top3 .c-btn {
  width: 250px;
}

.p-top4 {
  background: url(../img/top4_bg.png) no-repeat top center, gradient(to bottom, transparent 50%, #f7f7f5 25%, transparent );
  background-size: 100% auto;
  padding: 100px 0 40px;
  position: relative;
}

.p-top4__desc {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-top: 39px;
}

.p-top4__obj {
  position: absolute;
}

.p-top4__obj--1 {
  top: -7.3%;
  left: 18.7%;
}

.p-top4__obj--2 {
  top: -3%;
  right: 25.5%;
}

.p-top4__obj--3 {
  top: 3.8%;
  left: 26.5%;
}

.p-top4__obj--4 {
  bottom: 47.3%;
  left: 18%;
}

.p-top4__obj--5 {
  bottom: 39.5%;
  right: 22%;
}

.p-top4 .c-title h3 {
  margin-top: 10px;
}

.p-top4 .c-title h3 span {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
  display: inline-block;
}

.p-top4 .c-btn {
  margin-top: 64px;
}

.p-top4 .c-slider {
  margin-top: 74px;
}

.p-top .c-other {
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.p-top5 {
  padding: 130px 0 80px;
  background: url(../img/top5_bg.png) no-repeat top center, linear-gradient(to bottom, transparent 50%, #F7F7F5 50%);
  background-size: 100% 50%, 100%;
  margin-top: -2.7%;
  position: relative;
}

.p-top5__obj {
  position: absolute;
}

.p-top5__obj--1 {
  top: 15.5%;
  left: 10%;
}

.p-top5__obj--2 {
  top: -2.5%;
  right: 16.8%;
}

.p-top5__box {
  max-width: 900px;
  margin: 52px auto 0;
  display: flex;
  justify-content: space-between;
}

.p-top5__social {
  width: 46.4%;
  /* min-height: 613px; */
  /* background-color: gray; */
}

.p-top5__newsList {
  width: 45.2%;
}

.p-top5__newsList nav a {
  display: block;
  padding: 0 23px 18px 0;
  border-bottom: 1px solid #E5E5E5;
  transition: 0.3s all;
}

.p-top5__newsList nav a p {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #A2A2A2;
}

.p-top5__newsList nav a h4 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.p-top5__newsList nav a h4 span {
  flex: 1;
  display: block;
  padding-right: 10px;
}

.p-top5__newsList nav a h4 svg {
  color: var(--primary);
}

.p-top5__newsList nav a:not(:first-child) {
  padding-top: 29px;
}

.p-top5__newsList nav a:hover {
  opacity: 0.6;
}

.p-top5__newsList .c-btn {
  margin-top: 42px;
}

.p-top5__image {
  text-align: center;
  margin-top: 58px;
}

@media screen and (max-width: 1500px) {
  .p-top1__obj--3 {
    bottom: 36%;
  }

  .p-top5__obj--1 {
    left: 2%;
  }

  .p-top5__obj--2 {
    top: 7%;
    right: 5.8%;
  }
}

@media screen and (max-width: 1200px) {
  .p-top1__desc {
    border-radius: 15px;
    padding: 30px 15px;
  }

  .p-top1__desc h3 {
    font-size: 2.5rem;
  }

  .p-top1__desc h4 {
    font-size: 1.8rem;
  }

  .p-top2 {
    padding-inline: 15px;
  }

  .p-top2__obj--neko {
    left: -1%;
    max-width: 14.1%;
  }

  .p-top2__obj--shiba {
    max-width: 14.5%;
  }

  .p-top3__list {
    width: calc(100% - 20px);
  }

  .p-top4 {
    background-size: 100% 85%;
  }

  .p-top4__obj--1 {
    max-width: 22.7%;
  }

  .p-top4__obj--2 {
    max-width: 18%;
  }

  .p-top4__obj--3 {
    left: 21.5%;
    max-width: 17%;
  }

  .p-top4__obj--4 {
    bottom: 25.3%;
    left: 6%;
    max-width: 20%;
  }

  .p-top4__obj--5 {
    bottom: 23.5%;
    right: 10%;
    max-width: 15%;
  }

  .p-top .c-other {
    max-width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
  }

  .p-top .c-other__item {
    padding: 39px 34px 42px 33px;
  }
}

@media screen and (max-width: 767px) {
  .p-top1__image {
    border-radius: 15px;
    width: 86.5vw;
  }

  .p-top1__image::before {
    padding-bottom: 148%;
  }

  .p-top1__obj--1,
  .p-top1__obj--2 {
    display: none;
  }

  .p-top1__obj--3 {
    top: 14%;
    left: 0;
    bottom: unset;
    right: unset;
  }

  .p-top1__obj--4 {
    left: unset;
    right: 3%;
    bottom: 25%;
  }

  .p-top1__desc {
    border-radius: 15px 0 0 15px;
    bottom: 7%;
    right: 0;
    padding: 7.5px 12.5px 15px;
    width: 96%;
  }

  .p-top1__desc h3 {
    font-size: 2.5rem;
  }

  .p-top1__desc h4 {
    font-size: 1.8rem;
    margin-top: 5px;
  }

  .p-top2 .c-title h3 {
    margin-top: 8.5px;
  }

  .p-top2 .c-title h3 span {
    display: inline-block;
  }

  .p-top2__obj--bird {
    max-width: 17.8%;
    right: 12%;
  }

  .p-top2__obj--neko {
    top: unset;
    left: unset;
    bottom: -2%;
    right: 0;
    transform: translate(15%, 0);
    max-width: 24%;
  }

  .p-top2__obj--shiba {
    top: unset;
    left: unset;
    bottom: -3%;
    right: 21%;
    max-width: 34.76%;
  }

  .p-top2__box {
    padding: 22px 12px 32.5%;
    max-width: 95.6%;
    text-align: center;
  }

  .p-top2__boxBorderTop {
    width: 65.57%;
    height: 100%;
  }

  .p-top2__boxBorderCorner {
    width: 8.75%;
    height: 89.5%;
  }

  .p-top2__boxBorderBottom {
    border-left: none;
    width: 44%;
  }

  .p-top2__boxBorderBottom::before {
    display: none;
  }

  .p-top2__desc {
    margin-top: 18px;
    line-height: 1.5em;
    text-align: center;
  }

  .p-top3 {
    padding-bottom: 114px;
  }

  .p-top3__list {
    flex-wrap: wrap;
    width: 650px;
    max-width: 90.67%;
    margin: 23.5px auto 42px;
  }

  .p-top3__item {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .p-top3__item p {
    flex: 1;
    text-align: left;
    font-size: 1.5rem;
    padding-left: 3%;
  }

  .p-top3__item svg {
    max-width: 44.8%;
    top: 0;
    left: 0;
    transform: translate(-15%, 0);
  }

  .p-top3__item:nth-child(even) {
    flex-direction: row-reverse;
    padding-padding-left: 0;
    padding-padding-right: 3%;
  }

  .p-top3__image {
    width: 40.46%;
  }

  .p-top4 {
    padding: 81px 0 28px;
    background-size: auto 90%;
  }

  .p-top4__obj--1 {
    max-width: 36.5%;
    left: 10%;
    top: 0;
    transform: translate(0, -50%);
  }

  .p-top4__obj--2 {
    max-width: 37%;
    right: 10%;
    top: 0;
    transform: translate(0, -50%);
  }

  .p-top4__obj--3 {
    display: none;
  }

  .p-top4__obj--4 {
    max-width: 35.84%;
    left: unset;
    right: 11%;
    bottom: 11%;
  }

  .p-top4__obj--5 {
    max-width: 26.15%;
    right: 3%;
    bottom: 0;
  }

  .p-top4__desc {
    width: 650px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-top4__desc {
    margin-top: 18px;
    font-size: 1.6rem;
    text-align: left;
  }

  .p-top4 .c-btn {
    margin-top: 36px;
  }

  .p-top4 .c-slider {
    margin-top: 44px;
  }

  .p-top .c-other {
    padding: 0;
  }

  .p-top5 {
    background-size: auto 51%, 100%;
    margin-top: 103px;
    padding: 88px 0;
  }

  .p-top5__obj {
    transform: translate(0, -50%);
  }

  .p-top5__obj--1 {
    max-width: 32.8%;
    top: 0;
    left: 15%;
  }

  .p-top5__obj--2 {
    max-width: 29.7%;
    top: 0;
    right: 20%;
  }

  .p-top5__box {
    flex-wrap: wrap;
    width: 650px;
    max-width: 100%;
    margin-top: 26.5px;
  }

  .p-top5__social,
  .p-top5__newsList {
    width: 100%;
  }

  .p-top5__social {
    min-height: 476px;
  }

  .p-top5__newsList {
    margin-top: 40px;
  }

  .p-top5__newsList nav a {
    padding: 0 0 18px 0;
  }

  .p-top5__newsList nav a:not(:first-child) {
    padding-top: 16px;
  }

  .p-top5__newsList nav a p {
    font-size: 1.2rem;
  }

  .p-top5__newsList nav a h4 {
    font-size: 1.7rem;
    margin-top: 4px;
  }

  .p-top5__newsList .c-btn {
    display: none;
  }

  .p-top5__image {
    display: none;
  }
}

.p-about .c-pageDesc h3 {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 0;
}

.p-about1 {
  background: url(../img/about1_bg.png) no-repeat top center;
  background-size: 100%;
  padding: 266px 0 127px;
  counter-reset: service_no;
  position: relative;
}

.p-about1__list {
  width: 1000px;
  max-width: 100%;
  margin: 100px auto 0;
}

.p-about1__item {
  counter-increment: service_no;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.p-about1__itemImg {
  position: relative;
  width: 47.9%;
  border-radius: 20px;
}

.p-about1__itemImg::before {
  content: "";
  display: block;
  padding-bottom: 76.4%;
}

.p-about1__itemImg img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
}

.p-about1__itemTxt {
  width: 50%;
  text-align: center;
  padding-right: 5%;
}

.p-about1__itemTxt .head {
  width: 73%;
  margin: 0 auto;
  position: relative;
}

.p-about1__itemTxt .head::before {
  content: "";
  position: absolute;
  display: block;
  width: 45px;
  height: 45px;
  background: url(../img/about_service_left.svg) no-repeat center;
  background-size: 100%;
  top: 0;
  left: 0;
  transform: translateY(-76%);
}

.p-about1__itemTxt h4 {
  font-size: 3.4rem;
  font-family: "Alata", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #BABABA;
}

.p-about1__itemTxt h4::after {
  content: counter(service_no);
}

.p-about1__itemTxt h5 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.67;
  font-weight: 700;
  margin-top: 17px;
}

.p-about1__itemTxt p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.86;
  margin-top: 15px;
}

.p-about1__item:nth-child(even) {
  flex-direction: row-reverse;
}

.p-about1__item:nth-child(even) .p-about1__itemTxt {
  padding-right: 0;
}

.p-about1__item:nth-child(even) .p-about1__itemTxt .head::before {
  top: 0;
  left: unset;
  right: 0;
  background-image: url(../img/about_service_right.svg);
}

.p-about1__item:not(:last-child) {
  margin-bottom: 61px;
}

.p-about1__obj {
  position: absolute;
}

.p-about1__obj--1 {
  top: -3.3%;
  left: 23.9%;
}

.p-about1__obj--2 {
  top: -0.8%;
  left: 39.5%;
}

.p-about1__obj--3 {
  top: 2.6%;
  right: 38.7%;
}

.p-about1__obj--4 {
  top: -2%;
  right: 22.7%;
}

.p-about1__obj--5 {
  right: -5%;
  bottom: 0;
  z-index: -1;
}

.p-about1__obj--6 {
  left: -5%;
  top: 0.1%;
  z-index: -1;
}

.p-about1__obj--7 {
  bottom: 11%;
  right: 44.7%;
  z-index: 2;
}

.p-about1__obj--8 {
  left: 43.7%;
  bottom: -2.6%;
  z-index: 2;
}

.p-about1__obj--9 {
  top: -14.9%;
  right: -5%;
  z-index: 2;
}

.p-about2 {
  background: url(../img/about2_bg.png) #F7F7F5 repeat center;
  padding: 73px 0 83px;
  position: relative;
  z-index: 2;
}

.p-about2__obj {
  position: absolute;
  z-index: -1;
}

.p-about2__obj--1 {
  bottom: 8%;
  left: 18.5%;
}

.p-about2__obj--2 {
  bottom: 9.5%;
  right: 19%;
}

.p-about2 .c-title h3 {
  margin-top: 11px;
  line-height: 1.2;
}

.p-about2 .c-title h3 span {
  font-size: 1.6rem;
}

@media screen and (max-width: 1200px) {
  .p-about1__obj--1 {
    left: 5%;
  }

  .p-about1__obj--4 {
    right: 5%;
    max-width: 25%;
  }

  .p-about1__obj--5 {
    max-width: 15%;
    bottom: unset;
    top: 0;
    right: 0;
  }

  .p-about1__obj--6 {
    left: 0;
    max-width: 14%;
  }

  .p-about1__obj--7 {
    bottom: -3%;
    right: 40%;
  }

  .p-about1__obj--8 {
    bottom: 0;
    left: 37.7%;
  }

  .p-about1__obj--9 {
    right: 0;
    max-width: 17%;
  }

  .p-about1__list {
    overflow: hidden;
  }

  .p-about2__obj--1 {
    left: 5%;
    bottom: 1%;
    z-index: -1;
    max-width: 20%;
  }

  .p-about2__obj--2 {
    bottom: 1%;
    right: 5%;
    max-width: 15%;
  }
}

@media screen and (max-width: 767px) {
  .p-about .c-pageDesc {
    padding: 3px 0 87px;
  }

  .p-about .c-pageDesc h3 {
    font-size: 2.7rem;
  }

  .p-about1 {
    padding: 126px 0 30px;
  }

  .p-about1__obj--1 {
    max-width: 50%;
    width: 200px;
    left: 0;
  }

  .p-about1__obj--2 {
    max-width: 10.4%;
    left: unset;
    right: 24%;
    top: 0.5%;
  }

  .p-about1__obj--3 {
    display: none;
  }

  .p-about1__obj--4 {
    max-width: 23.86%;
    top: -2%;
    right: 0;
  }

  .p-about1__obj--5 {
    max-width: 25.6%;
    bottom: unset;
    top: 28.5%;
    z-index: 2;
  }

  .p-about1__obj--6 {
    z-index: 2;
    max-width: 20.6%;
    top: 44%;
    left: 0;
  }

  .p-about1__obj--8 {
    max-width: 20.26%;
    top: 41%;
    right: 0;
    left: unset;
  }

  .p-about1__obj--7,
  .p-about1__obj--9 {
    display: none;
  }

  .p-about1__item {
    flex-wrap: wrap;
  }

  .p-about1__itemImg,
  .p-about1__itemTxt {
    width: 100%;
  }

  .p-about1__itemImg {
    order: 1;
    max-height: 250px;
  }

  .p-about1__itemImg::before {
    padding-bottom: 60.61%;
  }

  .p-about1__itemTxt {
    order: 2;
    margin-top: 12.5px;
    padding: 0 !important;
  }

  .p-about1__itemTxt .head::before {
    width: 22.5px;
    height: 22.5px;
    top: 15%;
    left: 20%;
  }

  .p-about1__itemTxt h4 {
    font-size: 3.7rem;
  }

  .p-about1__itemTxt h5 {
    font-size: 1.8rem;
    margin-top: 2px;
    line-height: 1.2;
  }

  .p-about1__itemTxt p {
    line-height: 1.375;
    text-align: left;
    font-size: 1.6rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-about1__item:nth-child(even) .p-about1__itemTxt .head::before {
    top: 15%;
    right: 20%;
  }

  .p-about1__item:not(:last-child) {
    margin-bottom: 38.5px;
  }

  .p-about1__list {
    margin-top: 21.5px;
  }

  .p-about2 {
    padding: 30px 0 26.5px;
  }

  .p-about2 .c-services {
    margin-top: 29px;
  }

  .p-about2__obj {
    position: static;
    max-width: 50%;
  }

  .p-about2__objList {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
  }
}

.p-news {
  background: url(../img/archive_bg_02.png) no-repeat center bottom 200px, url(../img/archive_bg_01.png) no-repeat bottom center;
  background-size: auto, 100% 330px;
  padding-bottom: 450px;
}

.p-news1 {
  padding: 52px 0;
}

.p-news1__list {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 50px;
}

.p-news1__item {
  display: flex;
  align-items: baseline;
  position: relative;
  padding: 24.5px 0;
  border-bottom: 1px solid #E5E5E5;
}

.p-news1__item:not(:first-child) {
  margin-top: 30px;
}

.p-news1__itemTag {
  font-family: "Alata", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
  width: 9.6%;
  text-align: center;
  display: block;
  padding: 7px 5px;
  border: 1px solid var(--txt);
  margin-right: 33px;
}

.p-news1__itemDate {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #A2A2A2;
  margin-right: 22px;
}

.p-news1__itemTitle {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  width: 64.2%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-news1__item svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  color: var(--primary);
}

@media screen and (max-width: 767px) {
  .p-news {
    background-position: center bottom 80px, bottom center;
    background-size: 80%, 100% 120px;
    padding-bottom: 200px;
  }

  .p-news1 {
    padding: 0;
  }

  .p-news1__list {
    margin-bottom: 25px;
  }

  .p-news1__item {
    flex-wrap: wrap;
  }

  .p-news1__itemTag {
    width: auto;
    font-size: 1.2rem;
    padding: 5px;
    margin-right: 15px;
  }

  .p-news1__itemTitle {
    width: 100%;
    font-size: 1.7rem;
    margin-top: 10px;
  }

  .p-news1__itemDate {
    font-size: 1.2rem;
  }

  .p-news1__item svg {
    display: none;
  }

  .p-news1__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-single {
  padding-bottom: 450px;
  background: url(../img/archive_bg_02.png) no-repeat center bottom 200px, url(../img/archive_bg_01.png) no-repeat bottom center;
  background-size: auto, 100% 330px;
}

.p-single__content {
  padding: 47px 0;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}

.p-single__title {
  text-align: center;
  padding-bottom: 36px;
}

.p-single__title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-top: 23px;
}

.p-single__title p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #A2A2A2;
  line-height: 1.6;
  margin-top: 23px;
}

.p-single__main {
  padding: 53px 0 52px;
  border-top: 2px solid #C2BBB5;
  border-bottom: 2px solid #C2BBB5;
  position: relative;
}

.p-single__main::before,
.p-single__main::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #60554C;
}

.p-single__main::before {
  top: 0;
  left: 0;
  transform: translate(0, -100%);
}

.p-single__main::after {
  bottom: 0;
  right: 0;
  transform: translate(0, 100%);
}

.p-single__main h3 {
  font-size: 2rem;
}

.p-single__main h4 {
  font-size: 1.8rem;
}

.p-single__main h3,
.p-single__main h4 {
  margin-bottom: 30px;
}

.p-single__main p {
  line-height: 2.2;
  font-weight: 500;
}

.p-single__main p:not(:last-child) {
  margin-bottom: 31.5px;
}

@media screen and (max-width: 767px) {
  .p-single {
    background-position: center bottom 80px, bottom center;
    background-size: 80%, 100% 120px;
    padding-bottom: 200px;
  }

  .p-single__content {
    padding: 20px 0 60px;
  }

  .p-single__title {
    padding-bottom: 30px;
  }

  .p-single__title h2 {
    font-size: 2.5rem;
    margin-top: 10px;
  }

  .p-single__title p {
    margin-top: 15px;
  }

  .p-single__main {
    padding-inline: 10px;
  }

  .p-single__main h3,
  .p-single__main h4 {
    margin-bottom: 15px;
  }

  .p-single__main p:not(:last-child) {
    margin-bottom: 15px;
  }
}

.p-contact {
  padding: 0 0 127px;
}

.p-contact__content {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  padding: 57px 0 0;
}

.p-contact__desc,
.p-contact__notice {
  text-align: center;
}

.p-contact__desc {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: calc(100% - 40px);
  margin: 26px auto 0;
}

.p-contact__notice {
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.9;
  font-weight: 500;
  margin-top: 4px;
}

.p-contact .c-form {
  margin-top: 74px;
}

@media screen and (max-width: 768px) {
  .p-contact__notice {
    font-size: 1rem;
  }
}

.p-kindergd {
  padding-bottom: 40px;
}

.p-kindergd .c-addition__section {
  background-color: #fff;
  border: 1px solid #d5d2cf;
  padding: 28.5px 25px 20px;
  margin-top: 60px!important;
}

.p-kindergd1 {
  padding: 70px 0 100px;
}

.p-kindergd1__list {
  width: 935px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 5.405%;
  margin-top: 50px;
}

.p-kindergd1__item {
  width: 29.73%;
}

.p-kindergd1__item h5 {
  --background: var(--brown);
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #fff;
  background-color: var(--background);
  border-radius: 50px;
  padding: 17px 10px;
  position: relative;
  margin-bottom: 36px;
}

.p-kindergd1__item h5::before {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  bottom: 0;
  transform: translate(0, 100%);
  border-top: 17px solid var(--background);
  border-left: 8.5px solid transparent;
  border-right: 8.5px solid transparent;
}

.p-kindergd1__item figure {
  border-radius: 20px;
  overflow: hidden;
}

.p-kindergd1__item figcaption {
  text-align: center;
  padding: 18px 15px 20px;
  position: relative;
}

.p-kindergd1__item figcaption h4 {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--dotsActive);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 5.5px 5px;
  min-width: 59.71%;
  max-width: 85%;
}

.p-kindergd1__item figcaption h4::after {
  --size: 16px;
  content: "";
  display: block;
  width: var(--size);
  height: var(--size);
  background: url(../img/serviceDetail_dot.png) no-repeat center;
  background-size: 100% 100%;
}

.p-kindergd1__item figcaption p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-kindergd1__image {
  position: relative;
}

.p-kindergd1__image::before {
  content: "";
  display: block;
  padding-bottom: 80.57%;
}

.p-kindergd1__image img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-kindergd2 {
  padding: 105px 0 124px;
}

.p-kindergd2__desc {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.67;
  margin-top: 32px;
}

.p-kindergd2__list {
  margin: 74px 0 57px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.865%;
}

.p-kindergd2__item {
  width: 30.09%;
  margin-bottom: 68px;
  text-align: center;
}

.p-kindergd2__item figcaption {
  padding: 26px 0 26px;
}

.p-kindergd2__item h4 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.56;
  padding-bottom: 16px;
  position: relative;
}

.p-kindergd2__item h4:before {
  content: "";
  display: block;
  position: absolute;
  width: 52px;
  height: 2px;
  background-color: #C4BBB4;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.p-kindergd2__item p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.53;
  letter-spacing: 0.05em;
  margin-top: 19px;
}

.p-kindergd2__image {
  position: relative;
}

.p-kindergd2__image::before {
  content: "";
  display: block;
  padding-bottom: 95.46%;
}

.p-kindergd2__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-kindergd2__slogan {
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
}

.p-kindergd2__slogan span {
  display: inline-block;
  padding: 0 60px;
  background: url(../img/svDetail_slogan_left.png) no-repeat center left, url(../img/svDetail_slogan_right.png) no-repeat center right;
}

.p-kindergd3 {
  padding: 108px 0 103px;
}

.p-kindergd5 {
  padding: 77px 0 110px;
}

.p-kindergd5__list {
  display: flex;
  width: 1000px;
  max-width: 100%;
  margin: 54px auto 0;
  flex-wrap: wrap;
  gap: 4.7%;
}

.p-kindergd5__item {
  width: 30.2%;
}

.p-kindergd5__item figcaption {
  margin-top: 18px;
}

.p-kindergd5__item h4 {
  font-size: 1.5rem;
}

.p-kindergd5__item ul {
  margin-top: 44px;
}

.p-kindergd5__item ul li {
  display: flex;
  align-items: baseline;
}

.p-kindergd5__item ul li :not(:last-child) {
  margin-bottom: 10px;
}

.p-kindergd5__item ul h6 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dotsActive);
  background-color: #F7F7F5;
  line-height: 1;
  border-radius: 9px;
  padding: 3px 15px;
  margin-right: 10px;
}

.p-kindergd5__item ul p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-kindergd5__img {
  position: relative;
}

.p-kindergd5__img::before {
  content: "";
  display: block;
  padding-bottom: 74.83%;
}

.p-kindergd5__img img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-kindergd6 {
  padding: 67px 0 55px;
}

.p-kindergd6__list {
  width: 900px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  counter-reset: privilege;
}

.p-kindergd6__item {
  counter-increment: privilege;
  width: 50%;
  text-align: center;
  padding: 69px;
  position: relative;
}

.p-kindergd6__item h5 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  background: var(--brown);
  color: #fff;
  border-radius: 50px;
  padding: 8px 5px;
  width: 61.7%;
  margin: 0 auto 44px;
}

.p-kindergd6__item h5::after {
  content: "0" counter(privilege);
  font-size: 3rem;
  font-family: "Alata", sans-serif;
  font-weight: 400;
}

.p-kindergd6__item h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 40px;
}

.p-kindergd6__item p {
  margin-top: 11px;
}

.p-kindergd6__image {
  position: relative;
}

.p-kindergd6__image::before {
  content: "";
  display: block;
  padding-bottom: 43.11%;
}

.p-kindergd6__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-kindergd6__notice {
  margin: 0 auto;
  border: 1px solid #D5D2CF;
  padding: 28.5px 25px 20px;
}

.p-kindergd6__notice h5 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 17.5px;
}

.p-kindergd6__notice p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-kindergd6__notice p:not(:last-child) {
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {

  .p-kindergd6__item:nth-child(1)::before,
  .p-kindergd6__item:nth-child(3)::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 0;
    height: 61.06%;
    border-right: 1px dashed var(--txt);
  }

  .p-kindergd6__item:nth-child(3)::after,
  .p-kindergd6__item:nth-child(4)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 0;
    width: 78.4%;
    border-top: 1px dashed var(--txt);
  }
}

@media screen and (max-width: 767px) {
  .p-kindergd .c-pageDesc__obj {
    display: none;
  }

  .p-kindergd .c-pageDesc__obj--1 {
    position: static;
    display: block;
    max-width: 100%;
  }

  .p-kindergd1 {
    padding: 20px 0 41px;
  }

  .p-kindergd1__list {
    flex-wrap: wrap;
    width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
  }

  .p-kindergd1__item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .p-kindergd1__item:not(:last-child) {
    margin-bottom: 35px;
  }

  .p-kindergd1__item figure {
    display: flex;
    width: 100%;
    border-radius: 15px;
  }

  .p-kindergd1__item h5 {
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding: 10px;
  }

  .p-kindergd1__item figcaption {
    flex: 1;
    text-align: left;
  }

  .p-kindergd1__item figcaption h4 {
    position: static;
    transform: none;
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    font-size: 1.8rem;
  }

  .p-kindergd1__item figcaption p {
    font-size: 1.5rem;
    line-height: 1.43;
  }

  .p-kindergd1__image {
    width: 37.06%;
  }

  .p-kindergd2 {
    padding: 25px 0 46.5px;
  }

  .p-kindergd2__desc {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
  }

  .p-kindergd2__list {
    width: 450px;
    max-width: 100%;
    margin: 20px auto;
    gap: unset;
    justify-content: space-between;
  }

  .p-kindergd2__item {
    width: 46.13%;
    margin-bottom: 27px;
  }

  .p-kindergd2__item h4 {
    font-size: 1.7rem;
    padding-bottom: 5px;
  }

  .p-kindergd2__item p {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 13.5px;
  }

  .p-kindergd2__item figcaption {
    padding: 16.5px 0;
  }

  .p-kindergd2__image {
    border-radius: 5px;
    overflow: hidden;
  }

  .p-kindergd2__slogan {
    font-size: 1.65rem;
  }

  .p-kindergd3 {
    padding: 40px 0;
  }

  .p-kindergd5 {
    padding: 18.5px 0 42px;
  }

  .p-kindergd5__list {
    max-width: 100%;
    overflow-x: scroll;
    flex-wrap: nowrap;
  }

  .p-kindergd5__item {
    min-width: 234px;
  }

  .p-kindergd5__item ul h6 {
    padding: 3px 10px;
  }

  .p-kindergd5__item ul p {
    font-size: 1.2rem;
  }

  .p-kindergd6 {
    padding: 25px 0;
  }

  .p-kindergd6__list {
    justify-content: center;
  }

  .p-kindergd6__item {
    width: 90%;
    margin: 0 auto;
    padding: 25px 15px;
  }

  .p-kindergd6__item:not(:last-child) {
    border-bottom: 1px dashed var(--txt);
  }

  .p-kindergd6__item h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }

  .p-kindergd6__item h4 {
    font-size: 2.1rem;
  }

  .p-kindergd6__item p {
    font-size: 1.4rem;
  }

  .p-kindergd6__notice {
    padding: 7.5px 12.5px 10px;
  }

  .p-kindergd6__notice h5 {
    font-size: 1.4rem;
  }

  .p-kindergd6__notice p {
    font-size: 1.2rem;
  }
}

.p-price-list .c-pageDesc {
  padding: 50px 0;
  background: url(../img/cloud_bg_01.svg) no-repeat top 10% left 18%, url(../img/cloud_bg_02.svg) no-repeat top 20% right 15%;
  background-size: 13%, 10%;
}

.p-price-list__content {
  padding: 102px 0 33px;
  position: relative;
  z-index: 2;
  text-align: center;
  background: url(../img/about1_bg.png) no-repeat center top;
}

.p-price-list__desc {
  margin-top: 37px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-price-list__tab {
  margin-top: 80px;
}

.p-price-list__tabHead {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 35px;
}

.p-price-list__tabHead button {
  border: none;
  outline: none;
  color: var(--dotsActive);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0;
  padding: 6px 13px;
  background-color: transparent;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s all;
}

.p-price-list__tabHead .is-actived button {
  color: #fff;
  background-color: var(--brown);
  padding: 6px 38px;
}

.p-price-list__tabHead button:hover {
  color: var(--brown);
  border-color: var(--brown);
  background-color: #fff;
}

.p-price-list__tabContent {
  margin-top: 45px;
  border: 10px solid #EBEBEB;
  background-color: #fff;
  padding: 40px 40px 175px;
}

.p-price-list__tabTitle {
  text-align: center;
  color: var(--dotsActive);
  margin-bottom: 76px;
}

.p-price-list__tabTitle h3 {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-price-list__tab .title {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 40px;
}

.p-price-list__tab .title::before {
  content: "";
  display: block;
  position: absolute;
  width: 52px;
  height: 2px;
  background-color: #C4BBB4;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.p-price-list__tab .c-table {
  margin-top: 40px;
}

.p-price-list__tab .notice {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 12px;
}

.p-price-list__tab .part:not(:last-child) {
  margin-bottom: 54px;
}

.p-price-list__tab .part .main_desc:not(:last-child) {
  margin-bottom: 40px;
}

.p-price-list__obj {
  position: absolute;
}

.p-price-list__obj--1 {
  top: -5%;
  left: 21%;
}

.p-price-list__obj--2 {
  top: 2%;
  right: 23%;
}

@media screen and (max-width: 767px) {
  .p-price-list .c-pageDesc {
    background-size: 45%, 30%;
    padding: 5px 0 80px;
  }

  .p-price-list__obj--1 {
    top: -1.5%;
    left: 9%;
    max-width: 35%;
  }

  .p-price-list__obj--2 {
    top: 0%;
    right: 8%;
    max-width: 25%;
  }

  .p-price-list__tabHead {
    flex-wrap: wrap;
  }

  .p-price-list__tabContent {
    padding: 30px 20px 80px;
  }

  .p-price-list__tabTitle {
    margin-bottom: 30px;
  }
}

.p-access__main {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 0;
}

.p-access__table {
  border-top: 2px solid var(--brown);
  margin: 65px auto 0;
}

.p-access__table li {
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 30px;
}

.p-access__table li h5 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  width: 13.22%;
}

.p-access__content {
  width: 67.22%;
}

.p-access__content p {
  font-size: 1.4rem;
  font-weight: 500;
}

.p-access__content p b {
  font-size: 1.5rem;
}

.p-access__content iframe {
  margin-top: 37px;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .p-access__table {
    margin-top: 30px;
  }

  .p-access__table li {
    flex-direction: column;
    padding: 15px;
  }

  .p-access__table li h5 {
    width: 100%;
    margin-bottom: 30px;
  }

  .p-access__content {
    width: 100%;
  }
}

.p-service1 .c-solutions {
  padding-bottom: 20px;
}

.p-service1 .p-kindergd2 {
  padding-top: 20px;
  padding-bottom: 0;
}

.p-service1 .p-kindergd2__list {
  margin-bottom: 0;
}

.p-service1__banner {
  text-align: center;
  padding-top: 40px;
}

.p-service1__banner02 {
  text-align: center;
  padding-bottom: 40px;
}

.p-service1__banner03 {
  text-align: center;
}

.p-service1__part1 {
  padding: 105px 0 132px;
}

.p-service1__part1List {
  margin: 77px auto 97px;
  width: 900px;
  max-width: 100%;
}

.p-service1__part1Item {
  --spaceTop: 40px;
  --spaceLeft: 50px;
  --size: 21px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.p-service1__part1Item:not(:last-child) {
  padding-bottom: 64px;
}

.p-service1__part1Item:not(:last-child) .p-service1__part1Left::before {
  top: calc(var(--spaceTop) + 10px);
  left: calc(var(--size) / 2);
  width: 1px;
  height: 100%;
  background-color: #bababa;
  transform: translate(-50%, 0);
}

.p-service1__part1Left {
  width: 52.66%;
  box-sizing: border-box;
  padding: var(--spaceTop) 20px 20px var(--spaceLeft);
}

.p-service1__part1Left::after,
.p-service1__part1Left::before {
  content: "";
  display: block;
  position: absolute;
}

.p-service1__part1Left::after {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: var(--brown);
  top: calc(var(--spaceTop) + 10px);
  left: 0;
}

.p-service1__part1Left h4 {
  font-family: "Alata", sans-serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.05em;
  margin-bottom: 13px;
}

.p-service1__part1Left h5 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.56;
  margin-bottom: 13px;
}

.p-service1__part1Left p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-service1__part1Right {
  width: 38.44%;
  position: relative;
}

.p-service1__part1Right::before {
  content: "";
  display: block;
  padding-bottom: 64.16%;
}

.p-service1__part1Right::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 10px solid #e5e5e5;
  z-index: 2;
  box-sizing: border-box;
}

.p-service1__part1Right img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-service1__part1Notice {
  border: 1px solid #b7b4b0;
  padding: 46px 70px 50px;
}

.p-service1__part1Notice h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.83;
  text-align: center;
  margin-bottom: 46px;
}

.p-service1__part1Notice ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7.6933333333%;
}

.p-service1__part1Notice ul li {
  width: 19.23%;
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
}

.p-service1__part1Notice ul li .img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 19px;
}

.p-service1__part1Notice ul li .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.p-service1__part1Notice ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-service1__part1Notice p {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
}

.p-service3__schedule {
  padding: 105px 0 50px;
}

.p-service3__scheduleList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
  /* width: 755px; */
  max-width: 100%;
  margin: 65px auto 0;
}

.p-service3__scheduleList figure {
  width: 30%;
  margin-bottom: 10%;
}

.p-service3__scheduleList figure div {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.p-service3__scheduleList figure div::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.p-service3__scheduleList figure div img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-service3__scheduleList figcaption {
  text-align: center;
  margin-top: 26px;
}

.p-service3__scheduleList figcaption h4 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.65;
  padding-bottom: 17px;
  margin-bottom: 19px;
  position: relative;
}

.p-service3__scheduleList figcaption h4::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  height: 2px;
  width: 52px;
  background-color: #c4bbb4;
}

.p-service3__scheduleList figcaption p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-service3__scheduleNotice {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 0;
  border: 1px solid #b7b4b0;
  padding: 43px 41px 41px;
}

.p-service3__scheduleNotice h4 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.p-service3__scheduleNotice ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-service3__scheduleNotice li {
  width: 47.79%;
  padding: 26px 16px 20px;
  background-color: #f7f7f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  margin-top: 28px;
}

.p-service3__scheduleNotice li::before {
  content: url(../img/mark_checked.svg);
  display: inline-block;
  width: 15px;
  height: 11px;
}

.p-service3__scheduleNotice p {
  width: 65.84%;
  font-weight: 700;
  line-height: 1.3;
}

.p-service4 {
  max-width: 100%;
  overflow: hidden;
}

.p-service4__desc {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.67;
  margin-top: 32px;
  margin-bottom: 73px;
}

.p-service4__schedule {
  position: relative;
  z-index: 2;
}

.p-service4__schedule .l-container {
  position: relative;
  padding: 84px 0 184px;
}

.p-service4__schedule .c-title {
  margin-bottom: 30px;
}

.p-service4__scheduleBox {
  border: 1px solid #b7b4b0;
  padding: 46px 70px 25px;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}

.p-service4__scheduleBox:not(:last-child) {
  margin-bottom: 55px;
}

.p-service4__scheduleBox h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.83;
  text-align: center;
  margin-bottom: 46px;
  padding-bottom: 15px;
  position: relative;
}

.p-service4__scheduleBox h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 52px;
  background-color: #C4BBB4;
  border-radius: 30px;
  transform: translateX(-50%);
}

.p-service4__scheduleBox h4 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.p-service4__scheduleBox h4:not(:last-child) {
  margin-bottom: 60px;
}

.p-service4__scheduleBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7.6933333333%;
}

.p-service4__scheduleBox ul.center {
  justify-content: center;
}

.p-service4__scheduleBox ul li {
  /* width: 19.23%; */
  width: 28%;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

.p-service4__scheduleBox ul li .img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 19px;
}

.p-service4__scheduleBox ul li .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.p-service4__scheduleBox ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-service4__scheduleBox p {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
}

.p-service4__scheduleNotice {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625;
  margin-top: 91px;
}

.p-service4__scheduleObj {
  position: absolute;
  z-index: -1;
}

.p-service4__scheduleObj--1 {
  bottom: 5%;
  left: -2%;
  max-width: 13%;
}

.p-service4__scheduleObj--2 {
  bottom: 5%;
  right: 3%;
  max-width: 10%;
}

.p-service4__scheduleObj--3 {
  bottom: 9%;
  right: -6%;
  max-width: 8%;
}

@media screen and (min-width: 768px) and (max-width: 1050px) {
  .p-service4__scheduleObj--3 {
    right: 0;
  }
}

@media screen and (max-width: 767px) {

  .p-service1 .c-pageDesc__obj--2,
  .p-service1 .c-pageDesc__obj--3,
  .p-service1 .c-pageDesc__obj--4 {
    display: none;
  }

  .p-service1__part1 {
    padding: 40px 0;
  }

  .p-service1__part1List {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .p-service1__part1Item {
    flex-wrap: wrap;
    padding-left: var(--spaceLeft);
  }

  .p-service1__part1Item:not(:last-child) {
    padding-bottom: 30px;
  }

  .p-service1__part1Left,
  .p-service1__part1Right {
    width: 100%;
  }

  .p-service1__part1Left {
    padding-left: 0;
  }

  .p-service1__part1Left h4 {
    font-size: 2.8rem;
  }

  .p-service1__part1Notice {
    padding: 25px 15px 30px;
  }

  .p-service1__part1Notice ul {
    gap: 20px;
  }

  .p-service1__part1Notice ul li {
    min-width: 130px;
    margin-bottom: 20px;
  }

  .p-service1__part1Notice ul li p {
    font-size: 1.2rem;
  }

  .p-service3__scheduleList {
    justify-content: space-between;
    gap: unset;
    width: 755px;
  }
  
  .p-service3__scheduleList figure {
    width: 45%;
    margin-bottom: 10%;
  }

  .p-service3__schedule {
    padding: 40px 0 50px;
  }

  .p-service3__scheduleNotice {
    padding: 33px 15px 41px;
  }

  .p-service3__scheduleNotice h4 {
    font-size: 1.8rem;
  }

  .p-service3__scheduleNotice li {
    width: 100%;
    margin-top: 14px;
  }

  .p-service3__scheduleNotice li p {
    font-size: 1.2rem;
  }

  .p-service4 .c-pageDesc__obj {
    max-width: 50%;
  }

  .p-service4 .c-pageDesc__obj--3,
  .p-service4 .c-pageDesc__obj--4 {
    display: none;
  }

  .p-service4__schedule .l-container {
    padding: 40px 0;
  }

  .p-service4__scheduleBox {
    padding: 25px 15px 30px;
  }

  .p-service4__scheduleBox:not(:last-child) {
    margin-bottom: 30px;
  }

  .p-service4__scheduleBox ul {
    gap: 20px;
    justify-content: space-around !important;
  }

  .p-service4__scheduleBox ul li {
    min-width: 130px;
    margin-bottom: 20px;
  }

  .p-service4__scheduleBox ul li p {
    font-size: 1.2rem;
  }

  .p-service4__scheduleNotice {
    margin-top: 40px;
  }

  .p-service4__scheduleListObj {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }

  .p-service4__scheduleObj {
    position: static;
  }

  .p-service4__scheduleObj--1 {
    max-width: 30%;
  }

  .p-service4__scheduleObj--2,
  .p-service4__scheduleObj--3 {
    max-width: 15%;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.u-logoAttr {
  --mainColor: #00A1D0;
  --subColor: #C3C3C3;
}

/*# sourceMappingURL=style.css.map */
.c-header2 {
  padding: 10px 0 16.6px;
  background-color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.3s all;
}

.c-header2--shadow {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.c-header2__head {
  font-size: 1.2rem;
  font-weight: 500;
  left: 0.05em;
  line-height: 2.33;
  max-width: 90%;
  margin: 0 17px;
}

.c-header2__head span {
  display: inline-block;
}

.c-header2__logo {
  max-width: 181px;
}

.c-header2__logo a {
  display: flex;
}

.c-header2__logo a svg {
  width: 181px;
}

.c-header2__body {
  padding: 0 36px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-header2__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.c-header2__menu nav {
  display: flex;
  gap: 20px;
}

.c-header2__menu nav a {
  display: flex;
  transition: 0.3s all;
}

.c-header2__menu nav a:hover {
  color: var(--primary);
}

.c-header2__bar {
  --color: var(--txt);
  outline: none;
  border: 1px solid var(--color);
  padding: 13px 10px;
  width: 44px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
  background-color: #fff;
  cursor: pointer;
}

.c-header2__bar:hover {
  --color: var(--primary);
}

.c-header2__bar .icon {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-header2__bar .icon span {
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--color);
  transition: 0.3s all;
  left: 0;
}

.c-header2__bar .icon span:nth-child(1) {
  top: 0;
}

.c-header2__bar .icon span:nth-child(2) {
  bottom: 0;
}

.c-header2__bar.is-actived .icon span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}

.c-header2__bar.is-actived .icon span:nth-child(2) {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
}

.c-header2__sp {
  display: flex;
}

.c-header2__spShop {
  background-color: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Alata", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 8px 10.5px;
  gap: 5px;
}

.c-header2__spBar {
  width: 52px;
  border: none;
  outline: none;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-header2__spBar .box {
  width: 63.4%;
  height: 54%;
  position: relative;
}

.c-header2__spBar .box span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #60554C;
  border-radius: 20px;
  position: absolute;
  transition: 0.3s all ease-in-out;
}

.c-header2__spBar .box span:nth-child(1) {
  top: 0;
}

.c-header2__spBar .box span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.c-header2__spBar .box span:nth-child(3) {
  bottom: 0;
}

.c-header2__spBar.is-actived .box span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.c-header2__spBar.is-actived .box span:nth-child(2) {
  opacity: 0;
}

.c-header2__spBar.is-actived .box span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}

.c-header2__spMenu {
  display: none;
  position: absolute;
  z-index: 100;
  background-color: #fff;
  width: 100%;
  height: calc(100vh - 100%);
  overflow-y: scroll;
  bottom: 0;
  left: 0;
  padding-bottom: 23px;
  transform: translate(0, 100%);
}

.c-header2__spMenu .main>li {
  font-size: 1.7rem;
  font-weight: 700;
  padding: 15.5px 25px;
  position: relative;
}

.c-header2__spMenu .main>li button {
  --size: 55px;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
  width: var(--size);
  height: var(--size);
}

.c-header2__spMenu .main>li button svg {
  width: 18.5px;
  transform: rotate(90deg);
  transition: 0.3s all;
}

.c-header2__spMenu .main>li:first-child {
  background-color: #F7F7F5;
}

.c-header2__spMenu .main>li:nth-child(even) {
  background-color: #F0F0EC;
}

.c-header2__spMenu .main>li ul {
  font-weight: 400;
  list-style-type: "-";
  padding-left: 13px;
  padding-top: 20px;
  letter-spacing: 0;
  display: none;
}

.c-header2__spMenu .main>li ul li:not(:last-child) {
  margin-bottom: 21px;
}

.c-header2__spMenu .main>li.is-actived svg {
  transform: rotate(-90deg);
}

.c-header2__spMenu .c-footer__btn {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.c-header2__spMenu .c-footer__btnItem {
  border: 2px solid #C2BBB5;
}

.c-header2__spMenu .js-toggle::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f0ab';
  position: absolute;
  right: 20px;
  top: 15.5px;
  /* 		transform: translatey(-50%); */
}

@media screen and (max-width: 1000px) {
  .c-header2 {
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 0;
  }

  .c-header2__head {
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid #F5F5F5;
  }

  .c-header2__logo {
    max-width: 50%;
    padding-left: 12.5px;
  }

  .c-header2__logo svg {
    width: 181px;
  }

  .c-header2__menu {
    gap: 17.5px;
  }

  .c-header2__menu nav {
    gap: 17.5px;
  }

  .c-header2__body {
    padding: 7px 0 6px;
  }
}

.c-pageTitle {
  padding: 8px 16px;
  display: flex;
  align-items: baseline;
  background-color: #F7F7F5;
  gap: 40px;
}

.c-pageTitle h5,
.c-pageTitle p {
  letter-spacing: 0.05em;
}

.c-pageTitle h5 {
  font-size: 1.3rem;
  color: #2C2723;
  display: flex;
  align-items: baseline;
}

.c-pageTitle h5 svg {
  color: var(--brown);
}

.c-pageTitle h5 span {
  display: inline-block;
  margin-left: 5px;
}

.c-pageTitle p {
  font-family: "Alata", sans-serif;
  color: #BABABA;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.c-breadcrumb {
  padding: 14px 16px;
}

.c-breadcrumb ul {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.c-breadcrumb ul li {
  font-size: 1.3rem;
  font-weight: 500;
}

.c-breadcrumb ul li:not(:last-child) {
  padding-right: 26px;
  position: relative;
}

.c-breadcrumb ul li:not(:last-child)::before {
  content: "▶";
  color: var(--primary);
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translate(50%, -50%);
  font-size: 0.8rem;
}

.c-breadcrumb ul li span {
  color: #C4BBB4;
}

.p-shop1 {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #FAFAFA;
}

.p-shop1__image {
  width: 63.95%;
  max-height: 805px;
  position: relative;
}

.p-shop1__image::before {
  content: "";
  display: block;
  padding-bottom: 65.55%;
}

.p-shop1__image img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-shop1__content {
  color: var(--dotsActive);
  flex: 1;
  max-width: 435px;
}

.p-shop1__content h4 {
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  line-height: 1.34;
  margin-bottom: 30.5px;
}

.p-shop1__content h2 {
  font-size: 5.5rem;
  letter-spacing: 0.05em;
  line-height: 1.33;
  padding: 22px 0 26px;
  border-top: 1px solid #DCD8D4;
  border-bottom: 1px solid #DCD8D4;
  margin-bottom: 31.5px;
}

.p-shop1__content p {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 700;
}

.p-shop1__content a {
  display: block;
  width: 270px;
  color: #fff;
  background-color: var(--dotsActive);
  border-radius: 24px;
  padding: 11px 10px 10px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-top: 41px;
}

.p-shop2 {
  padding: 73px 0 30px;
}

.p-shop2 .swiper-slide {
  text-align: center;
}

.p-shop2__box {
  position: relative;
  width: 1130px;
  max-width: 100%;
  margin: 0 auto;
}

.p-shop2__navigation {
  position: absolute;
  display: flex;
  z-index: 2;
  top: 50%;
  -moz-user-select: none;
  user-select: none;
}

.p-shop2__navigation.prev {
  left: 0;
  transform: translate(0, -50%);
}

.p-shop2__navigation.next {
  right: 0;
  transform: translate(0, -50%);
}

.p-shop3 {
  padding: 37px 0 87px;
  text-align: center;
}

.p-shop3 h3 {
  font-size: 3rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.46;
  letter-spacing: 0;
}

.p-shop3 h3 span {
  display: inline-block;
}

.p-shop3 p {
  font-weight: 700;
  margin-top: 37px;
}

.p-shop3__listBtn {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-top: 49.5px;
}

.p-shop4 {
  background: url(../img/about1_bg.png) no-repeat top center;
  padding: 100px 0 59px;
}

.p-shop4__box {
  position: relative;
}

.p-shop4__slider {
  margin-top: 90px;
}

.p-shop4__navigation {
  position: absolute;
  display: flex;
  z-index: 2;
  top: 50%;
  -moz-user-select: none;
  user-select: none;
  font-size: 5rem;
  color: #fff;
  text-shadow: var(--primary) 3px 0px 0px, var(--primary) 2.83487px 0.981584px 0px, var(--primary) 2.35766px 1.85511px 0px, var(--primary) 1.62091px 2.52441px 0px, var(--primary) 0.705713px 2.91581px 0px, var(--primary) -0.287171px 2.98622px 0px, var(--primary) -1.24844px 2.72789px 0px, var(--primary) -2.07227px 2.16926px 0px, var(--primary) -2.66798px 1.37182px 0px, var(--primary) -2.96998px 0.42336px 0px, var(--primary) -2.94502px -0.571704px 0px, var(--primary) -2.59586px -1.50383px 0px, var(--primary) -1.96093px -2.27041px 0px, var(--primary) -1.11013px -2.78704px 0px, var(--primary) -0.137119px -2.99686px 0px, var(--primary) 0.850987px -2.87677px 0px, var(--primary) 1.74541px -2.43999px 0px, var(--primary) 2.44769px -1.73459px 0px, var(--primary) 2.88051px -0.838247px 0px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}

.p-shop4__navigation:hover {
  color: var(--primary);
}

.p-shop4__navigation.prev {
  left: 5%;
  transform: translate(0, -50%);
}

.p-shop4__navigation.next {
  right: 5%;
  transform: translate(0, -50%);
}

.p-shop4 .c-btn2 {
  margin: 80px auto 0;
}

.p-shop5 {
  padding: 59px 0;
  background-color: #fcfcfb;
}

.p-shop5__list {
  --item: 30.8%;
  gap: calc((100% - var(--item) * 3) / 2);
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}

.p-shop5__btn {
  display: flex;
  align-items: center;
  width: var(--item);
  border: 2px solid #DCD8D4;
  padding: 15.5px 20px;
  gap: 15px;
  position: relative;
  transition: 0.3s all;
  margin-bottom: 32px;
}

.p-shop5__btn:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.p-shop5__btn::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a9";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  font-size: 1.2rem;
}

.p-shop5__btnIcon {
  width: 20%;
  text-align: center;
}

.p-shop5__btn span {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-shop1 {
    flex-wrap: wrap;
    gap: 14.5px;
  }

  .p-shop1__image,
  .p-shop1__content {
    width: 100%;
  }

  .p-shop1__content {
    text-align: center;
    width: 90%;
    flex: unset;
    margin: 0 auto;
  }

  .p-shop1__content h4 {
    font-size: 1.8rem;
  }

  .p-shop1__content h2 {
    font-size: 4.1rem;
  }

  .p-shop1__content p {
    font-size: 1.2rem;
  }

  .p-shop1__content a {
    margin: 13.5px auto 0;
    font-size: 1.5rem;
    padding: 7px 10px 6px;
    width: 239px;
  }

  .p-shop2 {
    padding: 15.5px 0;
  }

  .p-shop2__navigation {
    width: 20px;
  }

  .p-shop3 {
    padding: 14px 0 106px;
  }

  .p-shop3 h3 {
    line-height: 1.08;
  }

  .p-shop3 p {
    margin-top: 15px;
  }

  .p-shop3__listBtn {
    margin-top: 27px;
    flex-wrap: wrap-reverse;
    gap: 15px;
  }

  .p-shop3__listBtn a {
    max-width: 75%;
  }

  .p-shop4 {
    padding: 80px 0 0;
  }

  .p-shop4 .c-btn2 {
    margin: 30px auto 0;
  }

  .p-shop5 {
    padding: 59px 0 23px;
  }

  .p-shop5__list {
    --item: 31.7%;
    margin-top: 18px;
  }

  .p-shop5__btn {
    flex-direction: column;
    padding: 10px 6.5px;
    margin-bottom: calc((100% - var(--item) * 3) / 2);
  }

  .p-shop5__btn::before {
    display: none;
  }

  .p-shop5__btnIcon {
    width: 80%;
    height: 39px;
    display: flex;
    justify-content: center;
  }

  .p-shop5__btnIcon img {
    height: 100%;
  }

  .p-shop5__btn span {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 3px;
    width: 100%;
  }

  .p-shop5__btn span::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0a9";
    font-size: 1rem;
  }
}

.p-login1 {
  padding: 73px 0 111.7px;
  background: url(../img/login_left_bg.png) no-repeat center left 15%, url(../img/login_right_bg.png) no-repeat top 15% right 10%;
}

.p-login1 .c-btn2 {
  margin: 0 auto;
}

.p-login1__desc,
.p-login1__btn {
  text-align: center;
}

.p-login1__desc {
  margin-bottom: 59px;
}

.p-login1__btn {
  margin-top: 54px;
}

.p-login1__box {
  width: 650px;
  max-width: 100%;
  background-color: var(--contact-bg);
  padding: 53px 57px 64px;
  margin: 0 auto;
}

.p-login1__input {
  position: relative;
}

.p-login1__input input {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 5px;
  padding: 18.5px 15px;
  padding-right: 40px;
  border: 1px solid #EBEBEB;
}

.p-login1__input span {
  position: absolute;
  min-width: 29px;
  height: 100%;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border: none;
  outline: none;
  background-color: transparent;
}

.p-login1__remember {
  text-align: center;
  margin-bottom: 18px;
}

.p-login1__button {
  text-align: center;
}

.p-login1__button .c-btn2 {
  margin-bottom: 14px;
}

.p-login1__row:not(:last-child) {
  margin-bottom: 40px;
}

.p-login1__row img {
  margin-left: 30px;
}

.p-login1__row p {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-login1__row .p-login1__input .show-password-input {
  top: 50%;
  transform: translate(0, -50%);
}

.p-login1__register {
  margin-top: 57px;
}

.p-login2 {
  background: url(../img/top4_bg.png) no-repeat top center, linear-gradient(to bottom, #f7f7f5, transparent) bottom center no-repeat;
  background-size: 100% 40%, 100% 60%;
  padding: 234px 0 140px;
}

.p-login2__btn {
  text-align: center;
  margin-top: 56px;
}

.p-login2 .c-form {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 56px 55px 28px;
  border-radius: 15px;
}

.p-login2 .c-form__submit {
  margin-top: 71px;
}

.p-login2 .c-form .c-title {
  margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
  .p-login1 {
    padding: 40px 0;
  }

  .p-login1__box {
    padding: 30px 15px;
  }

  .p-login2 {
    padding: 100px 0 60px;
  }

  .p-login2 .c-form {
    padding: 40px 15px 40px;
    max-width: 90%;
  }

  .p-login2 .c-form .c-title {
    margin-bottom: 30px;
  }
}

.p-listProd__head {
  padding: 60px 0 0;
  position: relative;
  z-index: 3;
}

.p-listProd__head h4 {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  padding-bottom: 9.5px;
  border-bottom: 1px solid #DDD;
  margin-bottom: 21px;
}

.p-listProd__main {
  padding: 13px 0 116px;
}

.p-listProd__main .c-pagination {
  margin-top: 117px;
}

.p-listProd__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.88%;
}

.p-listProd__list .c-osusume {
  width: 22.09%;
  margin-top: 71px;
}

@media screen and (max-width: 1000px) {
  .p-listProd .c-filter {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .p-listProd .c-filter__item {
    width: 45%;
  }

  .p-listProd .c-filter__item:first-child {
    width: 100%;
  }

  .p-listProd .c-osusume {
    width: 31%;
    margin-top: 45px;
  }

  .p-listProd__list {
    gap: 3.5%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-listProd__main {
    padding-bottom: 60px;
  }

  .p-listProd__list {
    justify-content: space-between;
  }

  .p-listProd .c-osusume {
    width: 45%;
    margin-top: 30px;
  }

  .p-listProd .c-pagination {
    margin-top: 60px;
  }
}

.c-filter {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.c-filter__item {
  width: 33.81%;
}

.c-filter__item p {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dotsActive);
  line-height: 1;
  margin-bottom: 5px;
}

.c-filter__item select {
  width: 100%;
}

.c-osusume__image {
  display: block;
  position: relative;
  /* overflow: hidden; */
  border-radius: 10px;
}

.c-osusume__image::before {
  content: "";
  display: block;
  padding-bottom: 74.89%;
  border-radius: inherit;
}

.c-osusume__image img.attachment-woocommerce_thumbnail,
.c-osusume__image img.woocommerce-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.c-osusume__image img.onsale {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 4%;
  min-width: 40px;
  transform: translate(-70%);
  z-index: 2;
}

.c-osusume figcaption {
  padding: 13px 0 0;
  color: var(--dotsActive);
}

.c-osusume h5 {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #62554B;
  display: inline-block;
  line-height: 1;
  padding: 4px 18px;
  margin-bottom: 10px;
}

.c-osusume h4 {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.c-osusume p {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  margin-top: 27px;
}

.c-osusume p del {
  font-size: 1.2rem;
}

/* .c-osusume:hover .c-osusume__image img.attachment-woocommerce_thumbnail {
    transform: scale(1.1);
  } */

@media screen and (max-width: 767px) {
  .c-osusume__image {
    border-radius: 5px;
  }

  .c-osusume__image img.onsale {
    left: 5%;
  }

  .c-osusume h5 {
    font-size: 1rem;
  }

  .c-osusume h4 {
    font-size: 1.4rem;
    line-height: 1.07;
  }

  .c-osusume p {
    margin-top: 10px;
    font-size: 1.7rem;
  }
}

.c-custom-select {
  --bg: #F7F7F5;
  --border: #EBEBEB;
  position: relative;
}

.c-custom-select select {
  display: none;
}

.c-custom-select__options {
  border: 1px solid var(--border);
}

.c-custom-select__options.hidden {
  display: none;
}

.c-custom-select__input,
.c-custom-select__options {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  text-align: left;
}

.c-custom-select__input {
  position: relative;
  border: 1px solid #EBEBEB;
  background-color: var(--bg);
  color: #62554B;
  padding: 17.5px 10px;
}

.c-custom-select__input::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}

.c-custom-select__options {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100%;
  background-color: var(--bg);
  z-index: 2;
}

.c-custom-select__options div {
  cursor: pointer;
  -moz-user-select: none;
  user-select: none;
  padding: 13.5px 10px;
}

.c-custom-select__options div:nth-child(odd) {
  background-color: #fff;
}

.c-custom-select__options div:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

@media screen and (min-width: 1000px) {
  .c-custom-select--short .c-custom-select__input {
    width: 25%;
  }
}

.p-detailProd1 {
  padding: 90px 0 101px;
}

.p-detailProd1 .l-container {
  display: flex;
}

.p-detailProd1__left,
.p-detailProd1__right {
  width: 50%;
}

.p-detailProd1__right {
  padding-left: 57px;
}

.p-detailProd1__right h5 span {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  background-color: var(--brown);
  text-align: center;
  color: #fff;
  line-height: 1;
  display: inline-block;
  padding: 4.5px 17.5px;
}

.p-detailProd1__right h3 {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  line-height: 1.23;
  margin-top: 18px;
}

.p-detailProd1__right h4 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.26;
  margin-top: 14.5px;
}

.p-detailProd1__right h4 del {
  font-size: 1.5rem;
  opacity: 0.8;
}

.p-detailProd1__right h4>span:not(.woocommerce-Price-amount) {
  display: inline-block;
  font-size: 1.8rem;
  margin-left: 10px;
}

.p-detailProd1__image {
  position: relative;
}

.p-detailProd1__image::before {
  content: "";
  display: block;
  padding-bottom: 73.81%;
}

.p-detailProd1__image img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-detailProd1__thumb {
  margin-top: 27px;
}

.p-detailProd1__tab {
  margin-top: 36px;
}

.p-detailProd1__cartBox {
  margin-top: 54px;
  background-color: var(--contact-bg);
  color: var(--dotsActive);
  padding: 36px 32px 39px 32px;
}

.p-detailProd1__cartBox h3 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.p-detailProd1__cartBox h3>span:not(.woocommerce-Price-amount) {
  font-size: 1.8rem;
}

.p-detailProd1__cartBox li {
  display: flex;
  align-items: baseline;
}

.p-detailProd1__cartBox li:not(:last-child) {
  margin-bottom: 17px;
}

.p-detailProd1__cartBox li h5 {
  width: 25%;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.p-detailProd1__cartBox li .content {
  flex: 1;
}

.p-detailProd1__cartBox li .content .c-custom-select {
  max-width: 240px;
  margin-left: auto;
  margin-right: 0;
}

.p-detailProd1__cartBox li .content .c-custom-select__input {
  background-color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  padding: 9.5px 10px;
}

.p-detailProd1__cartBox li .content input[type=reset] {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
  font-weight: 500;
  border: none;
  outline: none;
  background-color: transparent;
}

.p-detailProd1__cartBox li .content.right {
  text-align: right;
}

.p-detailProd1__cartBox .single_add_to_cart_button {
  font-size: 1.6rem;
  display: block;
  width: 80%;
  max-width: 270px;
  margin: 37px auto 0;
  background-color: var(--dotsActive);
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  border: none;
  outline: none;
  border-radius: 24px;
}

@media screen and (max-width: 767px) {
  .p-detailProd1 {
    padding: 30px 0 60px;
  }

  .p-detailProd1 .l-container {
    flex-wrap: wrap;
  }

  .p-detailProd1__left,
  .p-detailProd1__right {
    width: 100%;
  }

  .p-detailProd1__right {
    padding: 30px 0 0;
  }

  .p-detailProd1__right h3 {
    font-size: 1.8rem;
  }

  .p-detailProd1__right h4 {
    font-size: 2.5rem;
  }

  .p-detailProd1__right h4 span {
    font-size: 1.4rem;
  }

  .p-detailProd1__cartBox {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-otherProd__title {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  padding-bottom: 9.5px;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 37px;
}

.c-otherProd__list {
  --item: 22.09%;
  flex-wrap: wrap;
  padding-bottom: 195px;
  display: flex;
  gap: calc((100% - var(--item) * 4) / 3);
}

.c-otherProd__list .c-osusume {
  width: var(--item);
}

@media screen and (max-width: 767px) {
  .c-otherProd__list {
    --item: 45%;
    margin-top: 18px;
    gap: calc(100% - var(--item) * 2);
    padding-bottom: 60px;
  }

  .c-otherProd__list .c-osusume {
    margin-top: 20px;
  }

  .c-otherProd__btn {
    flex-direction: column;
    padding: 10px 6.5px;
    margin-bottom: calc((100% - var(--item) * 3) / 2);
  }

  .c-otherProd__btn::before {
    display: none;
  }

  .c-otherProd__btnIcon {
    width: 80%;
    height: 39px;
    display: flex;
    justify-content: center;
  }

  .c-otherProd__btnIcon img {
    height: 100%;
  }

  .c-otherProd__btn span {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 3px;
    width: 100%;
  }

  .c-otherProd__btn span::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0a9";
    font-size: 1rem;
  }
}

.p-detailProd1__tab .c-js-tab__head {
  display: flex;
}

.p-detailProd1__tab .c-js-tab__head li {
  padding: 0 27px;
  position: relative;
}

.p-detailProd1__tab .c-js-tab__head li:first-child {
  padding-left: 0;
}

.p-detailProd1__tab .c-js-tab__head li:last-child {
  padding-right: 0;
}

.p-detailProd1__tab .c-js-tab__head li:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 17px;
  background-color: #EAE9E4;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.p-detailProd1__tab .c-js-tab__head li button {
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #DBDBDB;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.p-detailProd1__tab .c-js-tab__head li:hover button,
.p-detailProd1__tab .c-js-tab__head li.is-actived button {
  color: var(--dotsActive);
}

.p-detailProd1__tab .c-js-tab__content {
  margin-top: 18px;
}

.c-js-tab__content {
  display: none;
}

.c-js-tab__content[data-content="0"] {
  display: block;
}

.p-detailProd1__tab .c-js-tab__content p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
}

.p-detailProd1__tab .c-js-tab__content li {
  display: flex;
  line-height: 1.3;
}

.p-detailProd1__tab .c-js-tab__content li:not(:last-child) {
  margin-bottom: 27px;
}

.p-detailProd1__tab .c-js-tab__content li h5 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  width: 25%;
  box-sizing: border-box;
  padding-right: 20px;
}

.p-detailProd1__tab .c-js-tab__content li p {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 500;
}

.c-catList {
  padding: 248px 0 106px;
  background: url(../img/top5_bg.png) no-repeat top center;
  background-size: cover;
  position: relative;
}

.c-catList__list {
  --item: 30.8%;
  gap: calc((100% - var(--item) * 3) / 2);
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}

.c-catList__btn {
  display: flex;
  align-items: center;
  width: var(--item);
  border: 2px solid #DCD8D4;
  padding: 15.5px 20px;
  gap: 15px;
  position: relative;
  transition: 0.3s all;
  margin-bottom: 32px;
  background-color: #fff;
}

.c-catList__btn:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.c-catList__btn::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a9";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  font-size: 1.2rem;
}

.c-catList__btnIcon {
  width: 20%;
  text-align: center;
}

.c-catList__btn span {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  font-weight: 700;
}

.c-catList__obj {
  position: absolute;
  pointer-events: none;
}

.c-catList__obj--1 {
  top: 4%;
  left: 19%;
  max-width: 5.6%;
  min-width: 70px;
}

.c-catList__obj--2 {
  top: -2%;
  left: 29%;
  max-width: 12.13%;
  min-width: 100px;
}

.c-catList__obj--3 {
  top: -10%;
  right: 31%;
  max-width: 11.45%;
  min-width: 120px;
}

.c-catList__obj--4 {
  top: -5%;
  right: 18%;
  max-width: 7.81%;
  min-width: 100px;
}

.c-catList .c-btn {
  margin-top: 76px;
}

@media screen and (max-width: 1000px) {
  .c-catList {
    padding: 150px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .c-catList {
    padding: 60px 0 40px;
  }

  .c-catList__list {
    --item: 31.7%;
    margin-top: 18px;
  }

  .c-catList__obj--1 {
    top: 0%;
    left: 0;
  }

  .c-catList__obj--4 {
    top: -7%;
    right: 0;
  }

  .c-catList__obj--2,
  .c-catList__obj--3 {
    display: none;
  }

  .c-catList__btn {
    flex-direction: column;
    padding: 10px 6.5px;
    margin-bottom: calc((100% - var(--item) * 3) / 2);
  }

  .c-catList__btn::before {
    display: none;
  }

  .c-catList__btnIcon {
    width: 80%;
    height: 39px;
    display: flex;
    justify-content: center;
  }

  .c-catList__btnIcon img {
    height: 100%;
  }

  .c-catList__btn span {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 3px;
    width: 100%;
  }

  .c-catList__btn span::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0a9";
    font-size: 1rem;
  }
}

.p-cart1__item {
  display: flex;
  border: 1px solid #E5E5E5;
}

.p-cart1__item:not(:last-child) {
  margin-bottom: 34.6px;
}

.p-cart1__item .main {
  width: 84%;
  display: flex;
  padding: 36px 16px 30px 29px;
}

.p-cart1__image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 33.03%;
}

.p-cart1__image::before {
  content: "";
  display: block;
  padding-bottom: 74.8%;
}

.p-cart1__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-cart1__content {
  flex: 1;
  box-sizing: border-box;
  padding-left: 39px;
}

.p-cart1__content h4,
.woocommerce-cart-form__cart-item .product-detail h4 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.27;
  margin-bottom: 21px;
}

.p-cart1__content li,
.woocommerce-cart-form__cart-item .product-detail li {
  display: flex;
  align-items: center;
}

.p-cart1__content li:not(:last-child),
.woocommerce-cart-form__cart-item .product-detail li:not(:last-child) {
  margin-bottom: 11px;
}

.p-cart1__content li h5,
.woocommerce-cart-form__cart-item .product-detail li h5 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  width: 15%;
  padding-right: 10px;
}

.p-cart1__content li p,
.woocommerce-cart-form__cart-item .product-detail li p {
  font-size: 1.8rem;
  font-weight: 500;
}

.p-cart1__content li p>span:not(.woocommerce-Price-amount) {
  font-size: 1.3rem;
}

.p-cart1__content li h6 {
  font-size: 2.3rem;
  letter-spacing: 0.05em;
}

.p-cart1__content li h6>span:not(.woocommerce-Price-amount) {
  font-size: 1.5rem;
}

/* .p-cart1__content li select {
    border-radius: 5px;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    font-weight: 500;
    padding: 6.5px 5px;
  } */
.p-cart1__content .c-custom-select {
  width: 18%;
  min-width: 150px;
}

.p-cart1__content .c-custom-select__input {
  padding: 8px 10px;
}

.p-cart1__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16%;
  border-left: 1px solid #E5E5E5;
}

.p-cart1__btn .remove_btn {
  background-color: var(--brown);
  color: #fff;
  border: 1px solid var(--brown);
  outline: none;
  font-size: 1.6rem;
  width: 100px;
  text-align: center;
  border-radius: 24px;
  padding: 2.5px 5px;
}

.p-cart1__back {
  text-align: center;
  margin-top: 58px;
}

.p-cart1__back a {
  display: block;
  color: #fff;
  background-color: var(--brown);
  max-width: 270px;
  padding: 9px 5px;
  margin: 0 auto;
  border-radius: 24px;
}

.p-cart1__update {
  display: none;
}

.p-cart2 {
  padding: 87px 0 152px;
}

.p-cart2__box {
  background-color: var(--contact-bg);
  padding: 40px 57px;
}

.p-cart2__box .subtotal {
  padding-bottom: 36px;
  border-bottom: 1px solid #DCD8D4;
}

.p-cart2__box .shipping {
  padding-top: 34.5px;
}

.p-cart2__box .row {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.p-cart2__box .title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-cart2__box .content {
  width: 25%;
  padding-left: 70px;
  min-width: 230px;
}

.p-cart2__box .content h3 {
  font-size: 3rem;
}

.p-cart2__box .content h3 span {
  font-size: 2rem;
}

.p-cart2__box .tag {
  color: #fff;
  background-color: var(--brown);
  max-width: 143px;
  margin: 20px auto 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 24px;
  font-weight: 700;
}

.p-cart2__box .tag span {
  display: inline-block;
  margin-left: 5px;
}

.p-cart2__box .total {
  background-color: #fff;
  padding: 20px 26px;
  margin-top: 33px;
}

.p-cart2__listBtn {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-top: 49.5px;
}

.p-cart3 {
  padding-bottom: 125px;
}

.p-cart3__otherShip {
  margin-top: 36.8px;
}

.p-cart3__section {
  width: 45.33%;
  margin-bottom: 75px;
}

.p-cart3__section--full {
  width: 100%;
}

.p-cart3__addition {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 120px auto 0;
}

#order_review .p-cart3__addition {
  margin-top: 0;
}

.p-cart3__desire {
  display: flex;
  align-items: baseline;
  width: 85%;
  margin: 0 auto;
}

.p-cart3__desire:not(:last-child) {
  margin-bottom: 33px;
}

.p-cart3__desire h5 {
  width: 30%;
  font-size: 1.5rem;
  padding-right: 10px;
}

.p-cart3__desire select {
  width: 70%;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 17.5px 10px;
  border: 1px solid #EBEBEB;
  border-radius: 5px;
}

.p-cart3__msg {
  width: 100%;
  background-color: transparent;
  border: 1px solid transparent;
  outline: none;
  border-radius: 5px;
  transition: 0.3s all;
  padding: 10px 5px;
}

.p-cart3__msg:focus,
.p-cart3__msg:hover {
  background-color: var(--contact-bg);
  border-color: #EBEBEB;
}

.p-cart3__payment {
  width: 85%;
  margin: 36px auto 0;
}

.p-cart3__paymentItem {
  margin-top: 5px;
}

.p-cart3__paymentItem label {
  display: flex;
  align-items: flex-start;
}

.p-cart3__paymentItem span {
  display: inline-block;
  padding-left: 10px;
  font-weight: 700;
}

.p-cart3__paymentItem span img {
  margin-top: 5px;
}

.p-cart3__paymentItem:not(:last-child) {
  margin-bottom: 33px;
}

.p-cart3__paymentBox {
  background-color: var(--contact-bg);
  padding: 18px 17px 29px;
  margin-top: 22px;
}

.p-cart3__paymentBox h4 {
  margin-bottom: 24.5px;
}

.p-cart3__paymentBox input {
  padding: 17.5px 10px;
  font-size: 1.4rem;
  border-radius: 5px;
  border: 1px solid #EBEBEB;
}

.p-cart3__paymentBox input:not([type=radio]):not([type=checkbox]) {
  width: 100%;
}

.p-cart3__paymentRow {
  margin-bottom: 30.5px;
}

.p-cart3__paymentRow h5 {
  font-size: 1.5rem;
}

.p-cart3__paymentRow h5.is-required::after {
  content: "必 須";
  display: inline-block;
  margin-left: 10px;
  color: var(--primary);
  font-size: 1.2rem;
}

.p-cart3__payment .creditInput {
  position: relative;
}

.p-cart3__payment .creditInput input {
  padding-right: 60px;
}

.p-cart3__payment .creditInput img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.p-cart3__cartItem {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #EAE9E4;
}

.p-cart3__cartItem:not(:first-child) {
  margin-top: 30px;
}

.p-cart3__cartImg {
  position: relative;
  width: 34.65%;
  border-radius: 10px;
  overflow: hidden;
}

.p-cart3__cartImg::before {
  content: "";
  display: block;
  padding-bottom: 74.48%;
}

.p-cart3__cartImg img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-cart3__cartContent {
  width: 61.71%;
}

.p-cart3__cartContent h4 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.p-cart3__cartContent h5 {
  font-size: 1.8rem;
}

.p-cart3__cartContent h5 span {
  font-size: 1.3rem;
}

.p-cart3__cartContent h6 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.p-cart3__cartPrice {
  padding: 13.5px 0 19px;
}

.p-cart3__cartPrice:not(:last-child) {
  border-bottom: 1px solid #EAE9E4;
}

.p-cart3__cartPrice li {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.p-cart3__cartPrice li p {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-cart3__cartPrice li h4 {
  width: 50%;
  min-width: 150px;
  text-align: right;
  font-size: 2.5rem;
}

.p-cart3__cartPrice li h4 span {
  font-size: 1.7rem;
  font-weight: 500;
}

.p-cart4 {
  text-align: center;
  padding-bottom: 387px;
  background: url(../img/complete_order_bg.png) no-repeat center bottom;
  background-size: 100%;
}

.p-cart4__image {
  margin: 0 auto;
}

.p-cart4 h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin-top: 37px;
}

.p-cart4 p {
  margin-top: 39px;
}

.p-cart4 .c-btn2 {
  margin: 45.5px auto 0;
}

@media screen and (max-width: 767px) {
  .p-cart1__item {
    flex-wrap: wrap;
    padding-bottom: 20px;
  }

  .p-cart1__item .main {
    padding: 15px;
    width: 100%;
    align-items: flex-start;
  }

  .p-cart1__content {
    padding-left: 15px;
  }

  .p-cart1__content h4 {
    font-size: 1.4rem;
  }

  .p-cart1__content li p {
    font-size: 1.4rem;
  }

  .p-cart1__content li h5 {
    width: 30%;
  }

  .p-cart1__content li h6 {
    font-size: 1.8rem;
  }

  .p-cart1__content li h6 span {
    font-size: 1.2rem;
  }

  .p-cart1__content li select {
    font-size: 1.2rem;
  }

  .p-cart1__btn {
    width: 100%;
    border-left: none;
  }

  .p-cart2 {
    padding: 40px 0 60px;
  }

  .p-cart2__box {
    padding: 20px 20px;
  }

  .p-cart2__box .title {
    width: 30%;
    font-size: 1.6rem;
  }

  .p-cart2__box .content {
    width: 70%;
    padding-left: 30px;
    min-width: unset;
  }

  .p-cart2__box .content h3 {
    font-size: 2.5rem;
  }

  .p-cart2__box .content h3 span {
    font-size: 1.2rem;
  }

  .p-cart2__box .content p {
    font-size: 1.2rem;
  }

  .p-cart2__listBtn {
    margin-top: 27px;
    flex-wrap: wrap-reverse;
    gap: 15px;
  }

  .p-cart2__listBtn a {
    max-width: 75%;
  }

  .p-cart3 {
    padding-bottom: 60px;
  }

  .p-cart3__section {
    width: 100%;
    margin-bottom: 40px;
  }

  .p-cart3__addition {
    margin-top: 60px;
  }

  .p-cart3__otherShip {
    margin-top: 20px;
  }

  .p-cart3__desire:not(:last-child) {
    margin-bottom: 25px;
  }

  .p-cart3__desire select {
    padding: 8px 10px;
  }

  .p-cart3__paymentBox input {
    padding: 8px 10px;
  }

  .p-cart3__acceptance label {
    font-size: 1.2rem;
  }

  .p-cart3__cartImg {
    min-height: 100px;
  }

  .p-cart3__cartContent h4,
  .p-cart3__cartContent h6 {
    font-size: 1.2rem;
  }

  .p-cart4 {
    padding-bottom: 150px;
  }

  .p-cart4__image {
    max-width: 40%;
  }

  .p-cart4 h4 {
    font-size: 2rem;
    margin-top: 20px;
  }

  .p-cart4 .c-btn2 {
    margin-top: 30px;
  }
}

.c-cartProgress {
  padding: 109px 0 89.6px;
}

.c-cartProgress__list {
  display: flex;
  justify-content: center;
  gap: 31px;
}

.c-cartProgress__list li {
  flex: 1;
  max-width: 27.2%;
  text-align: center;
  padding-bottom: 27.5px;
  font-weight: 700;
  color: #C4BBB4;
  font-size: 1.8rem;
  border-bottom: 1px solid #EAE9E4;
  line-height: 1;
  -moz-user-select: none;
  user-select: none;
}

.c-cartProgress__list li.is-actived {
  color: var(--dotsActive);
  border-bottom: 3px solid var(--primary);
}

@media screen and (max-width: 767px) {
  .c-cartProgress {
    padding: 60px 0 40px;
  }

  .c-cartProgress__list {
    gap: 20px;
  }

  .c-cartProgress__list li {
    padding-bottom: 15px;
    font-size: 1.4rem;
  }
}

.c-ecForm__box {
  background-color: var(--contact-bg);
  max-width: 1000px;
  margin: 0 auto;
  padding: 68px 69px 57px;
  border-radius: 15px;
}

.c-ecForm__box--shipping {
  margin-top: 36.8px;
}

.c-ecForm__box .c-ecForm__title {
  margin-bottom: 56px;
}

.c-ecForm__row {
  display: flex;
  /* align-items: baseline; */
  align-items: center;
  justify-content: space-between;
}

.c-ecForm__row:not(:last-child) {
  margin-bottom: 33px;
}

.c-ecForm__label {
  width: 30%;
  font-size: 1.5rem;
  font-weight: 700;
}

.c-ecForm__label.is-required p::after {
  content: "必 須";
  color: var(--primary);
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 12px;
}

.c-ecForm__input,
.c-ecForm__group {
  width: 62.89%;
}

.c-ecForm__input input,
.c-ecForm__input select,
span.select2-selection__rendered,
.c-ecForm__group input,
.c-ecForm__group select {
  width: 100%;
  border: 1px solid #EBEBEB;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 5px;
  padding: 18.5px 10px;
}

.c-ecForm__input input:not(:last-child),
.c-ecForm__input select:not(:last-child),
.c-ecForm__group input:not(:last-child),
.c-ecForm__group select:not(:last-child) {
  margin-bottom: 16px;
}

.c-ecForm__group {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.c-ecForm__group .item {
  flex: 1;
  display: flex;
  align-items: baseline;
  align-items: center;
  max-width: calc(50% - 5px);
}

.c-ecForm__group .item>span {
  display: inline-block;
  padding-right: 10px;
}

.c-ecForm__title {
  position: relative;
  padding-bottom: 19.6px;
  font-size: 1.8rem;
  margin-bottom: 33px;
}

.c-ecForm__title::before,
.c-ecForm__title::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
}

.c-ecForm__title::before {
  width: 100%;
  height: 1px;
  background-color: #EAE9E4;
}

.c-ecForm__title::after {
  width: 40%;
  max-width: 200px;
  height: 2px;
  background-color: #479FCB;
  transform: translateY(50%);
}

.c-ecForm__acceptance {
  text-align: center;
}

.c-ecForm__acceptance p {
  font-size: 1.3rem;
  margin-bottom: 13px;
}

.c-ecForm__acceptance label {
  font-weight: 700;
}

.c-ecForm__acceptance label.is-required span::after {
  content: "必 須";
  color: var(--primary);
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 12px;
}

.c-ecForm__acceptance input {
  margin-right: 16.8px;
}

.c-ecForm__submit {
  margin-top: 38px;
}

.c-ecForm__submit .btn {
  --c: var(--dotsActive);
  --bg: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: block;
  width: 250px;
  color: var(--c);
  background: var(--bg);
  transition: 0.3s all;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.c-ecForm__submit .btn input {
  width: 100%;
  padding: 7.5px 5px;
  border: 1px solid var(--c);
  color: var(--c);
  outline: none;
  background-color: transparent;
  transition: 0.3s all;
  float: unset !important;
}

.c-ecForm__submit .btn::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a9";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  font-size: 1.1rem;
}

.c-ecForm__submit .btn:hover {
  color: var(--bg);
  background-color: var(--c);
  border-color: var(--c);
}

.c-ecForm__submit .btn:hover input {
  color: var(--bg);
}

.c-ecForm__postCodeBtn {
  display: inline-block;
  background-color: var(--brown);
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4.5px 16.5px;
  cursor: pointer;
}

.c-ecForm__country .select2-container .select2-selection--single {
  height: auto;
}

.c-ecForm__country .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1;
}

.c-ecForm__country .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translate(0, -50%);
}

.c-ecForm__box .form-row {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  .c-ecForm__title {
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .c-ecForm__box {
    padding: 25px 15px 30px;
  }

  .c-ecForm__box .c-ecForm__title {
    margin-bottom: 25px;
  }

  .c-ecForm__row {
    flex-wrap: wrap;
  }

  .c-ecForm__row:not(:last-child) {
    margin-bottom: 15px;
  }

  .c-ecForm__label,
  .c-ecForm__input,
  .c-ecForm__group {
    width: 100%;
  }

  .c-ecForm__label {
    margin-bottom: 15px;
  }

  .c-ecForm__group {
    gap: 5px;
  }

  .c-ecForm__group .item {
    max-width: 100%;
  }

  .c-ecForm__input input,
  .c-ecForm__input input,
  .c-ecForm__input select,
  .span.select2-selection__rendered,
  .c-ecForm__group input,
  .c-ecForm__group select,
  .c-ecForm__group input,
  .c-ecForm__group select {
    padding: 8px 10px;
  }
}

.p-mypage__editCompleted {
  padding-bottom: 60px;
}

.p-mypage__menu {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #DDDDDD;
}

.p-mypage__menu nav {
  display: flex;
  justify-content: center;
  padding: 53px 50px 16.5px;
  gap: calc((100% - 600px) / 5);
}

.p-mypage__menu a {
  width: 100px;
  display: block;
  text-align: center;
}

.p-mypage__menu a span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}

.p-mypage__menu a:hover .image,
.p-mypage__menu a.is-active .image {
  background-color: var(--brown);
}

.p-mypage__menu .image {
  --size: 60px;
  position: relative;
  width: var(--size);
  height: var(--size);
  background: #C4BBB4 no-repeat center;
  /* background-size: 60%; */
  border-radius: 50%;
  margin: 0 auto;
  transition: 0.3s all;
}

.p-mypage__menu .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-mypage__box {
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  overflow: hidden;
}

.p-mypage__box:not(:last-child) {
  margin-bottom: 30px;
}

.p-mypage__box .head {
  background-color: #FAFAFA;
  border-bottom: 1px solid #E5E5E5;
  padding: 11.5px 19px;
}

.p-mypage__box .head h5 {
  font-size: 1.8rem;
}

.p-mypage__box .main {
  padding: 18px 19px 22px;
}

.p-mypage__box .main p {
  font-size: 1.6rem;
  font-weight: 500;
}

.p-mypage__box .listBtn {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-top: 18px;
}

.p-mypage__box .listBtn a {
  color: #62554B;
  font-size: 1.5rem;
}

.p-mypage__box .listBtn button {
  border: 1px solid #BABABA;
  background-color: #fff;
  border-radius: 13px;
  color: #BABABA;
  text-align: center;
  width: 101px;
  transition: 0.3s all;
}

.p-mypage__box .listBtn button:hover {
  background-color: #BABABA;
  color: #fff;
}

.p-mypage__content {
  text-align: center;
  padding: 78px 0 125px;
}

.p-mypage__content h3 {
  font-size: 2.4rem;
  padding-bottom: 21px;
  margin-bottom: 26px;
  position: relative;
}

.p-mypage__content h3::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 52px;
  border-radius: 30px;
  background-color: #C4BBB4;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.p-mypage__content p {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

.p-mypage__content .c-btn2 {
  margin: 51px auto 0;
}

.p-mypage__avt {
  --size: 139px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 19.6px;
  overflow: hidden;
}

.p-mypage__avt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-mypage__history1 {
  padding: 91px 0 114px;
  text-align: center;
}

.p-mypage__history1 h3 {
  font-size: 2.4rem;
}

.p-mypage__history1 .c-btn2 {
  margin: 77px auto 0;
}

.p-mypage__history2 {
  padding: 104px 0;
}

.p-mypage__historyItem {
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  overflow: hidden;
}

.p-mypage__historyItem:not(:last-child) {
  margin-bottom: 30px;
}

.p-mypage__historyItem .head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  background-color: #FAFAFA;
  border-bottom: 1px solid #E5E5E5;
  padding: 11.5px 19px;
}

.p-mypage__historyItem .head h5 {
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px 10px;
  background-color: #DBDBDB;
  width: 93px;
  text-align: center;
}

.p-mypage__historyItem .head p {
  font-size: 1.5rem;
  font-weight: 500;
}

.p-mypage__historyItem .head p b {
  font-size: 1.8rem;
  display: inline-block;
  margin-left: 10px;
}

.p-mypage__historyItem .main {
  display: flex;
  justify-content: space-between;
  padding: 18px 19px 22px;
}

.p-mypage__historyItem .image {
  width: 29.66%;
  position: relative;
  min-height: 100px;
}

.p-mypage__historyItem .image::before {
  content: "";
  display: block;
  padding-bottom: 75.78%;
}

.p-mypage__historyItem .image img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-mypage__historyItem .txt {
  width: 68.25%;
}

.p-mypage__historyItem .txt h3 {
  font-size: 2rem;
  margin-bottom: 13px;
}

.p-mypage__historyItem .txt p {
  font-size: 1.5rem;
}

.p-mypage__historyItem .txt p b {
  font-size: 1.8rem;
  margin-left: 10px;
  display: inline-block;
}

.p-mypage__historyBtn {
  margin-top: 90px;
  text-align: center;
}

.p-mypage__addBtn {
  display: flex;
  width: 270px;
  gap: 5px;
  background-color: var(--dotsActive);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 24px;
  justify-content: center;
  align-items: baseline;
  text-align: center;
  margin: 0 auto;
  padding: 8px 5px;
}

.p-mypage__emptyMsg {
  text-align: center;
  padding: 80px 0 106px;
  font-size: 2.4rem;
}

.p-mypage__address {
  padding: 66px 0 104px;
}

.p-mypage__addressDesc {
  text-align: center;
  margin: 50px;
}

.p-mypage__addressContent {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}

.p-mypage__addressTitle {
  font-size: 2.2rem;
}

.p-mypage__addressTitle svg {
  display: inline-block;
  margin-right: 10px;
}

.p-mypage__addressForm {
  padding: 77px 0 120px;
}

.p-mypage__addressForm .c-title {
  margin-bottom: 55px;
}

.p-mypage__addressForm .c-btn2 {
  margin: 46px auto 0;
}

.p-mypage__address1 {
  padding-bottom: 105px;
}

.p-mypage__address2 .addAddressBtn {
  display: flex;
  width: 270px;
  gap: 5px;
  background-color: var(--dotsActive);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 24px;
  justify-content: center;
  align-items: baseline;
  text-align: center;
  margin: 37px auto 0;
  padding: 8px 5px;
}

.p-mypage__address2 .p-mypage__addressTitle {
  margin-bottom: 26px;
}

.p-mypage__address2 .p-mypage__box:not(:last-child) {
  margin-bottom: 30px;
}

.p-mypage__method1 {
  padding-bottom: 110px;
}

.p-mypage__method2 {
  padding: 74px 0 90px;
}

.p-mypage__method2 .box {
  max-width: 100%;
  width: 900px;
  margin: 0 auto;
  background-color: #FAFAFA;
  border-radius: 15px;
  padding: 56px 55px 49px;
}

.p-mypage__method2 .box2 {
  margin-top: 41px;
  background-color: #fff;
  padding: 40.3px 43px 42px;
}

.p-mypage__method2 .c-btn2 {
  margin: 46px auto 0;
}

.p-mypage__submit input {
  display: block;
  width: 270px;
  max-width: 100%;
  margin: 56px auto 0;
  padding: 9.5px 10px;
  font-size: 1.6rem;
  background-color: var(--dotsActive);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 24px;
  font-weight: 700;
}

.p-mypage__editBox {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--contact-bg);
  border-radius: 15px;
  padding: 56px 55px 60px;
}

.p-mypage__editBox .c-title {
  margin-bottom: 60px;
}

.p-mypage__editHead {
  font-size: 22px;
  position: relative;
  z-index: 2;
  margin-bottom: 44px;
}

.p-mypage__editHead::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #F0F0F0;
  top: 50%;
  left: 0;
  z-index: -1;
}

.p-mypage__editHead p {
  display: inline-flex;
  align-items: baseline;
  background-color: var(--contact-bg);
  padding-right: 20px;
}

.p-mypage__editHead p svg {
  margin-right: 10px;
}

.p-mypage__editForm {
  padding: 74px 0 116px;
}

.p-mypage__edit .c-form .text {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-mypage__menu {
    max-width: 100%;
    overflow-x: scroll;
  }

  .p-mypage__menu nav {
    width: 700px;
  }

  .p-mypage__content {
    padding: 40px 0 60px;
  }

  .p-mypage__history1 {
    padding: 60px 0;
  }

  .p-mypage__history1 .c-btn2 {
    margin-top: 40px;
  }

  .p-mypage__historyItem .head {
    gap: 10px;
    padding: 8px 10px;
    justify-content: space-between;
  }

  .p-mypage__historyItem .head h5 {
    font-size: 1.2rem;
    padding: 4px 5px;
    width: 80px;
  }

  .p-mypage__historyItem .head p {
    font-size: 1rem;
  }

  .p-mypage__historyItem .head p span {
    display: none;
  }

  .p-mypage__historyItem .head p b {
    font-size: 1.2rem;
  }

  .p-mypage__historyItem .main {
    align-items: flex-start;
  }

  .p-mypage__historyItem .txt h3 {
    font-size: 1.2rem;
  }

  .p-mypage__historyItem .txt p {
    font-size: 1.2rem;
  }

  .p-mypage__historyItem .txt p b {
    font-size: 1.4rem;
  }

  .p-mypage__historyBtn {
    margin-top: 40px;
  }

  .p-mypage__emptyMsg {
    padding: 40px 0 60px;
    font-size: 1.8rem;
  }

  .p-mypage__addressForm {
    padding: 40px 0;
  }

  .p-mypage__addressForm .c-title {
    margin-bottom: 25px;
  }

  .p-mypage__method1 {
    padding-bottom: 60px;
  }

  .p-mypage__editForm {
    padding: 40px 0;
  }
}

img.c-sold-out {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: 80%;
  max-height: 80%;
  z-index: 2;
  object-fit: contain;
}

/* --- 06/21 --- */
.woocommerce-cart-form__cart-item .product-detail {
  width: 65%;
}

.woocommerce-cart-form__cart-item .product-detail .quantity {
  width: 100px;
  max-width: 100%;
}

.woocommerce-cart-form__cart-item .product-detail .quantity .c-custom-select__input {
  padding: 8px 10px;
}

.p-cart__empty {
  padding: 0 0 200px;
}

.p-cart__emptyImg {
  max-width: 80%;
  width: 500px;
  margin: 0 auto;
  opacity: 0.5;
}

.p-cart__emptyBtn {
  margin-top: 30px;
  text-align: center;
}

.p-cart__emptyBtn>a {
  display: block;
  max-width: 280px;
  background-color: #57483C;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 15px;
  padding: 20px 10px;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto;
  transition: 0.3s all ease-in-out;
}

.p-cart__emptyBtn>a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .p-cart__empty {
    padding: 0 0 100px;
  }
}

.woocommerce-MyAccount-content {
  padding: 40px 0 100px;
}

.woocommerce-MyAccount-content .woocommerce-order-details {
  margin-top: 40px !important;
}

.woocommerce form.c-ecForm .show-password-input {
  top: 50%;
  transform: translate(0, -50%);
}

form.c-ecForm .password-input input {
  margin-bottom: 0;
}

.p-login2 .woocommerce-privacy-policy-text {
  display: none;
}

.p-page__content {
  padding: 100px 0 200px;
}

.p-page__box {
  border: 3px dashed #00a1d0;
  border-radius: 20px;
  padding: 40px;
  line-height: 1.8;
  font-size: 1.6rem;
}

.p-page__box h4 {
  margin: 25px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  color: #00a1d0;
  line-height: 1.3;
}

.p-page__box a {
  font-weight: 700;
  font-style: italic;
}

.adjustment {
  margin-top: -110px;
}

@media screen and (max-width: 767px) {
  .adjustment {
    margin: 0;
    padding: 5px 0;
  }
}

#add_payment_method #payment.p-cart3__section,
.woocommerce-cart #payment.p-cart3__section,
.woocommerce-checkout #payment.p-cart3__section {
  background: transparent;
  border-radius: 0;
}

#add_payment_method #payment.p-cart3__section ul.payment_methods,
.woocommerce-cart #payment.p-cart3__section ul.payment_methods,
.woocommerce-checkout #payment.p-cart3__section ul.payment_methods {
  padding: 0;
  border-bottom: none;
}

#add_payment_method #payment.p-cart3__section div.payment_box,
.woocommerce-cart #payment.p-cart3__section div.payment_box,
.woocommerce-checkout #payment.p-cart3__section div.payment_box {
  background: var(--contact-bg);
  color: #2C2723;
  font-weight: 500;
  border-radius: 0;
  margin-top: 12px;
}

#add_payment_method #payment.p-cart3__section div.payment_box::before,
.woocommerce-cart #payment.p-cart3__section div.payment_box::before,
.woocommerce-checkout #payment.p-cart3__section div.payment_box::before {
  display: none;
}

#wc-stripe-cc-form .form-row-first,
#wc-stripe-cc-form .form-row-last {
  float: unset;
  width: 100%;
}

#wc-stripe-cc-form .form-row {
  margin-bottom: 0 !important;
}

#stripe-payment-data label {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

#wc-stripe-cc-form .form-row label .required {
  font-size: 0;
}

#wc-stripe-cc-form .form-row label .required::before {
  content: "必 須";
  color: var(--primary);
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 12px;
}

#stripe-payment-data fieldset {
  border: none !important;
}

#stripe-payment-data .woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated label {
  font-size: 1.4rem !important;
  font-weight: 500 !important;
}

.p-mypage .woocommerce-Addresses {
  margin-top: 40px;
}

.p-mypage .woocommerce-Address {
  border: 2px dashed #c4bbb4;
  padding: 20px 40px 40px;
  position: relative;
}

.p-mypage .woocommerce-Address-title h3 {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: rgb(196, 187, 180) 3px 0px 0px, rgb(196, 187, 180) 2.83487px 0.981584px 0px, rgb(196, 187, 180) 2.35766px 1.85511px 0px, rgb(196, 187, 180) 1.62091px 2.52441px 0px, rgb(196, 187, 180) 0.705713px 2.91581px 0px, rgb(196, 187, 180) -0.287171px 2.98622px 0px, rgb(196, 187, 180) -1.24844px 2.72789px 0px, rgb(196, 187, 180) -2.07227px 2.16926px 0px, rgb(196, 187, 180) -2.66798px 1.37182px 0px, rgb(196, 187, 180) -2.96998px 0.42336px 0px, rgb(196, 187, 180) -2.94502px -0.571704px 0px, rgb(196, 187, 180) -2.59586px -1.50383px 0px, rgb(196, 187, 180) -1.96093px -2.27041px 0px, rgb(196, 187, 180) -1.11013px -2.78704px 0px, rgb(196, 187, 180) -0.137119px -2.99686px 0px, rgb(196, 187, 180) 0.850987px -2.87677px 0px, rgb(196, 187, 180) 1.74541px -2.43999px 0px, rgb(196, 187, 180) 2.44769px -1.73459px 0px, rgb(196, 187, 180) 2.88051px -0.838247px 0px;
}

.p-mypage .woocommerce-Address-title a {
  font-size: 0;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s all ease-in-out;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c4bbb4;
  color: #fff;
}

.p-mypage .woocommerce-Address-title a:hover {
  opacity: 0.7
}

.p-mypage .woocommerce-Address-title a::before {
  content: '\f5ad';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.8rem
}

.p-mypage .woocommerce-Address address {
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-mypage .woocommerce-Address {
    padding: 20px;
  }

  .p-mypage .woocommerce-Addresses {
    margin-top: 30px
  }

  .p-mypage .woocommerce-Address+.woocommerce-Address {
    margin-top: 30px;
  }
}

#edit_address.c-ecForm__box .form-row-last,
#edit_address.c-ecForm__box .form-row-first {
  width: 47% !important;
}

#edit_address.c-ecForm__box .form-row label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

#edit_address.c-ecForm__box .select2-container .select2-selection--single {
  height: auto;
}

#edit_address.c-ecForm__box span.select2-selection__rendered {
  padding-top: 12.5px;
  padding-bottom: 12.5px;
  border: 1px solid #EBEBEB;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 5px;
}

#edit_address.c-ecForm__box .form-row input {
  border: 1px solid #EBEBEB;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 5px;
  padding: 18.5px 10px;
}

#edit_address.c-ecForm__box .woocommerce-address-fields__field-wrapper {
  margin-bottom: 50px;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
  margin-bottom: 10px;
}

.p-mypage__withdrawal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 500px;
  max-width: 70%;
  border-radius: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  box-shadow: 1px 1px 15px #F7F7F5;
  display: none;
  z-index: 99;
}

.c-blackBg {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  top: 0;
  left: 0;
  z-index: 98;
  display: none;
}

.p-mypage__withdrawal h3 {
  background-color: var(--primary);
  color: #fff;
  padding: 20px 10px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-mypage__withdrawalObj {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(30%, 30%);
  pointer-events: none;
}

.p-mypage__withdrawal .cnt {
  padding: 30px 10px 40px;
}

.p-mypage__withdrawal .cnt nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 30px;
}

.p-mypage__withdrawal .cnt nav span,
.p-mypage__withdrawal .cnt nav p {
  display: block;
  width: 35%;
  cursor: pointer;
}

.p-mypage__withdrawal .cnt nav span,
.p-mypage__withdrawal .cnt nav p a {
  border: 2px solid;
  padding: 5px;
}

.p-mypage__withdrawal .cnt nav p a {
  display: block;
  color: tomato;
  border-color: tomato;
  transition: 0.3s all ease-in-out;
}

.p-mypage__withdrawal .cnt nav p a:hover {
  color: #fff;
  background-color: tomato;
}

.p-mypage__withdrawal .cnt nav p a.disabled {
  border-color: gray;
  background-color: gray;
  color: #fff;
  pointer-events: none;
  cursor: default;
}

.p-mypage__withdrawal .cnt small {
  display: block;
  margin-top: 20px;
  font-size: 1.4rem;
  color: tomato;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .p-mypage__withdrawal {
    max-width: 90%;
    font-size: 1.4rem;
  }

  .p-mypage__withdrawal .cnt nav {
    justify-content: space-around;
  }

  .p-mypage__withdrawal .cnt nav span, .p-mypage__withdrawal .cnt nav p {
    width: 45%;
  }

  .p-mypage__withdrawal .cnt small {
    font-size: 1.2rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-mypage__withdrawalObj {
    width: 35%;
    max-width: 150px;
    transform: translate(30%, 35%);
  }
}

.p-404__cnt {
  padding: 100px 0;
  text-align: center;
}

.p-404__cnt h3 {
  font-size: 2.5rem;
  opacity: 0.7;
  margin-bottom: 80px;
}

.p-404__cnt h3 span {
  display: inline-block;
}

.p-404__cnt .c-btn2 {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-404__cnt {
    padding: 60px 0;
    text-align: center;
  }
  
  .p-404__cnt h3 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

.p-service02__banner {
  padding: 40px 0;
  text-align: center;
}

.p-service02__banner .image + .image {
  margin-top: 10px;
}

.c-addition,
.p-service3__addition {
  padding: 30px 0;
}

.c-addition__section,
.p-service3__additionSec {
  /* max-width: 650px; */
  margin: 0 auto;
}

.c-addition__section + .c-addition__section,
.p-service3__additionSec + .p-service3__additionSec {
  margin-top: 20px;
}

.c-addition__section h3,
.p-service3__additionSec h3,
.c-rowTitle {
  margin-bottom: 15px;
  font-size: 2rem;
  padding-bottom: 3px;
  letter-spacing: 0.1em;
  border-bottom: 3px solid var(--primary);
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-service3__additionCont a,
.p-service3__additionCont strong,
.p-service3__additionCont b {
  color: var(--primary);
  font-weight: 700;
}

.c-addition__section h3::before,
.c-rowTitle::before{
  content: "";
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    background: url(../img/slider_active_dot.svg) no-repeat center;
    background-size: 100%;
    margin-right: 11px;
}

.c-addition__section h4,
.p-service3__additionSec h4 {
  margin: 10px 0;
  font-size: 1.6rem;
  color: var(--primary);
}

.c-addition__section img,
.p-service3__additionSec img {
  max-width: 100%;
  margin: 20px auto;
  display: block;
}

.c-addition__section h5,
.p-service3__additionSec h5 {
  color: #fff;
  background-color: #7b6a56;
  display: inline-block;
  padding: 5px 10px;
  margin: 10px 0;
}

.c-addition a,
.c-addition__content a {
  color: var(--primary);
  font-weight: 700;
}

.p-service2 .c-serviceSchedule {
  padding-bottom: 60px;
}

.p-eng1 {
  padding: 40px 0 70px;
}

.p-eng1 h4 {
  color: var(--primary);
  margin: 20px 0 30px;
}

.p-eng1 a {
  color: var(--primary);
  font-weight: 700;
}

.p-eng1 h4::before {
  content: '●';
  display: inline-block;
  margin-right: 10px;
}

.p-eng__sect:not(:last-child) {
  margin-bottom: 45px;
}

.p-eng__box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 80%;
  max-width: 700px;
  min-width: 300px;
  margin: 30px auto;
  background-color: #ecece6;
  color: var(--dotsActive);
  font-weight: 500;
  padding: 30px;
  border: 2px dashed var(--primary);
  border-radius: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-eng__box p {
  width: 75%;
}

.p-eng__box img {
  width: calc(25% - 15px);
  object-fit: contain;
}

.p-eng .c-simpTable {
  margin: 25px 0 35px;
}

.p-eng .red {
  color: red;
  font-weight: 500;
}

.c-form__date {
  display: flex;
  gap: 10px;
}

.c-form__date .part {
  display: flex;
  align-items: baseline;
  gap: 5px;
  max-width: 30%;
}

.c-form__date .part:not(:last-child) {
  margin-bottom: 25px;
}

.c-form__date .part p {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.c-form__date .part .text {
  max-width: 280px;
}

/* .c-form__date--unify .part .text {
  width: 70px;
}  */

.c-form__input .notice {
  color: red;
  font-weight: 700;
  font-size: 1.2rem;
}
@media screen and (max-width: 541px){
	.c-header__head {
    text-align: left;
}
}

.c-form__petBox .row2 .text,
.c-form__date .part .text:not(#postcode) {
  width: 70px;
}

.c-form__petBox .row2 .part {
  flex: unset;
}

.c-form__date {
  position: relative
}

.c-form__date .wpcf7-form-control-wrap {
  position: static;
}

.c-form__date .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(0, 0);
}