@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --zIndex: 100;
  --zIndex-fixedCta: calc(var(--zIndex) * 1);
  --zIndex-header: calc(var(--zIndex) * 2);
  --zIndex-cover: calc(var(--zIndex) * 4);
  --zIndex-menu: calc(var(--zIndex) * 5);
  --zIndex-logo: calc(var(--zIndex) * 6);
  --zIndex-menuBtn: calc(var(--zIndex) * 7);
  --zIndex-overlay: calc(var(--zIndex) * 8);
  --color-main: #CDBE84;
  --color-accent: #F5BD45;
  --color-white: #fff;
  --color-black: #333;
  --color-text: #523F2E;
  --color-anchor: #B1995C;
  --light-gray: #F7F7F7;
  --light-gray-2: #FAFAFA;
  --color-logo: #004EA2;
  --bg-body: #FFF1D2;
  --bg-body-secondary: #131C31;
  --bg-body-tertiary: #9B0F10;
  --fontFamily-base: "Zen Old Mincho", serif;
  --fontFamily-accent: "Noto Sans JP", serif;
  --lineHeight-base: 1.5;
  --lineHeight-tight: 1.2;
  --lineHeight-loose: 2;
  --fontSize-base: 1.6rem;
  --fontWeight-base: 400;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --fontWeight-extrabold: 800;
  --fontColor-base: #333333;
}

/* base */
html {
  font-size: min(0.78125vw, 62.5%);
  scroll-behavior: smooth;
  scroll-padding-top: 8.4rem;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 7rem;
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: var(--fontFamily-base);
  font-size: var(--fontSize-base);
  font-weight: var(--fontWeight-base);
  line-height: var(--lineHeight-base);
  color: var(--fontColor-base);
}

@media screen and (max-width: 768px) {
	body{font-size:14px;}
}

a {
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* l-body */
.l-body.noScroll {
  overflow: hidden;
}

/* l-header */
.l-header {
  height: 8.4rem;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 7rem;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
}
.l-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--zIndex-header);
  background-color: rgba(255, 255, 255, 0.9);
}
.l-header__inner {
  height: 100%;
  padding: 0 9rem 0 1.6rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  background-color: var(--color-white);
    z-index: var(--zIndex-overlay);
}
.l-header__logo {
  width: 26.8rem;
  position: relative;
  z-index: var(--zIndex-logo);
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 20.8rem;
  }
}
.l-header__logo img {
  width: 100%;
}
.l-header__gnav {
  width: 50rem;
  height: calc(100% - 8.4rem);
  overflow-y: scroll;
  position: fixed;
  top: 8.4rem;
  right: -120%;
  background-color: var(--light-gray);
  z-index: var(--zIndex-menu);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .l-header__gnav {
    width: 100%;
    padding-top: 2rem;
	top: 7rem;
	height: calc(100% - 7rem);
  }
}
.l-header__gnav.menu_isOpen {
  right: 0;
}
.l-header__gnavInner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-header__gnavBody {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 6rem;
  padding-right: 6rem;
}

.l-header__gnavBody .c-ctaList{flex-wrap: wrap; justify-content: center; gap:3rem}
.l-header__gnavBody .c-ctaList__item:nth-child(1){width:100%;}
.l-header__gnavBody .c-ctaList__item:nth-child(2),
.l-header__gnavBody .c-ctaList__item:nth-child(3){width: 4rem;}
.l-header__gnavBody .c-ctaList__link--tel{padding:.9rem; background-color: #fff;}


@media screen and (max-width: 768px) {
  .l-header__gnavBody {
    padding: 0 2rem;
  }
  
  
}
.l-header__contactNav {
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .l-header__contactNav {
    margin-top: 4.6rem;
  }
}
.l-header__ctaNav {
  margin-top: 4rem;
}

.l-header__ctaNav .c-cta__link{box-shadow: none; outline:0px; font-size: 2rem;}

@media screen and (max-width: 768px) {
  .l-header__ctaNav {
    margin-top: 7rem;
  }
}
.l-header__ctaNav a {
  
}
.l-header__ctaNav a img {
  width: 100%;
}
.l-header__btn {
  position: absolute;  
  right: 2.8rem;
  z-index: var(--zIndex-menuBtn);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.m_menu{display: block}
.m_close{display: none}

.menu_open .m_menu{display: none}
.menu_open .m_close{display: block}

@media screen and (max-width: 768px) {
  .l-header__btn {
    font-size: 1rem;
    right: 1.6rem;
	text-align: center;
  }
}

/* l-footer */
.l-footer {
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .l-footer {
    margin-bottom: 5rem;
  }
}
.l-footer__logo {
  max-width: 31.3rem;
  padding: 4rem 0 2.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    max-width: 24.1rem;
    padding: 2.4rem 0;
  }
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__copy {
  font-size: 1.2rem;
  line-height: 2;
  font-weight: var(--fontWeight-medium);
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-logo);
}

/* l-inner */
.l-inner {
  width: 114.8rem;
  max-width: 100%;
  padding: 0 1.6rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-inner--spNoPadding {
    padding: 0;
  }
}

/* l-section */
.l-section {
  padding: 8rem 0 8rem;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: 5rem 0 6rem;
  }
}

/* c-site */
.c-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.c-site__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* c-gnav*/
.c-gnav__item {
  position: relative;
  border-bottom: 1px solid var(--color-main);
  margin-top: 2rem;
}
.c-gnav__link {
  display: block;
  font-size: 1.8rem;
  color: var(--color-black);
  padding: 1.5rem 0rem;
  position: relative;
}

.c-gnav__link:after{width:2.4rem; height:2.4rem; position: absolute; content:''; right:0px; background-image:url('../../assets/images/i_menu_arrow.png'); background-size: cover; 
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;}

.c-gnav__link:hover:after{background-image:url('../../assets/images/i_menu_arrow_brown.png');}

@media screen and (max-width: 768px) {
  .c-gnav__link {
    font-size: 1.6rem;
    padding: 1.6rem 0;
  }
  
  .c-gnav__link:after{}
}


.c-gnav__link.active::after {
  -webkit-transform: translate(0, -100%) rotate(-90deg);
          transform: translate(0, -100%) rotate(-90deg);
}
.c-gnav__en {
  display: block;
  font-size: 1.2rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .c-gnav__en {
    font-size: 1rem;
  }
}
.c-gnav__subnav {
  padding-left: 6rem;
  padding-bottom: 1.6rem;
  display: none;
}
.c-gnav__subnav.open {
  display: block;
}
.c-gnav__subnavLink {
  display: block;
  font-size: 2.8rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-main);
  padding: 1.2rem 0;
}

/* c-btnMenu*/
.c-btnMenu {
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer
}
@media screen and (max-width: 768px) {
  .c-btnMenu {
    width: 4.4rem;
    height: 3rem;
  }
}
.c-btnMenu span {
  display: inline-block;
  width: 87.5%;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btnMenu span {
    width: 68.1818181818%;
  }
}
.c-btnMenu span::before, .c-btnMenu span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btnMenu span::before {
  top: 1rem;
}
@media screen and (max-width: 768px) {
  .c-btnMenu span::before {
    top: 0.8rem;
  }
}
.c-btnMenu span::after {
  top: -1rem;
}
@media screen and (max-width: 768px) {
  .c-btnMenu span::after {
    top: -0.8rem;
  }
}

/* btnMenu_isOnがついた時のスタイル */
.c-btnMenu.btnMenu_isOn span {
  background-color: transparent;
}
.c-btnMenu.btnMenu_isOn span::before, .c-btnMenu.btnMenu_isOn span::after {
  top: 0;
}
.c-btnMenu.btnMenu_isOn span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btnMenu.btnMenu_isOn span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* c-btn */
/* c-ctaList*/
.c-ctaList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-ctaList {
    gap: 0.5rem;
    padding: 0.5rem;
  }
}
.c-ctaList__item:nth-child(1) {
  width: 18rem;
}
@media screen and (max-width: 768px) {
  .c-ctaList__item:nth-child(1) {
    width: 25rem;
  }
}
.c-ctaList__item:nth-child(2) {
  width: 22.6rem;
}
@media screen and (max-width: 768px) {
  .c-ctaList__item:nth-child(2) {
    width: 30.5rem;
  }
}
.c-ctaList__item:nth-child(3),
.c-ctaList__item:nth-child(4)
 {
  width: 3rem;
}

@media screen and (max-width: 768px) {
  .c-ctaList__item:nth-child(3) {
    width: 7rem;
  }
}
.c-ctaList__link {
  color: var(--fontColor-base);
  font-size: 1.4rem;
  font-weight: var(--fontWeight-medium);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-ctaList__link {
    font-size: 1.1rem;
  }
}
.c-ctaList__link--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  color: var(--bg-body-secondary);
  border: 1px solid var(--bg-body-secondary);
  padding: 0.6rem;
  transition: ease all .3s;
}

.c-ctaList__link--tel icon{display: block; width:1.6rem; height: 1.6rem; background-image:url('../../assets/images/i_phone_black.png'); background-size: cover}

.c-ctaList__link--tel:hover{color: #fff; border: 1px solid #131C31; background-color:#131C31}
.c-ctaList__link--tel:hover icon{background-image:url('../../assets/images/i_phone.png');}

@media screen and (max-width: 768px) {
  .c-ctaList__link--tel {
    padding: 1rem 0.4rem;
    gap: 0.8rem;
  }
}
.c-ctaList__link--tel img {
  width: 1.6rem;
}
.c-ctaList__link--web {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  color: var(--color-white);
  border: 1px solid var(--bg-body-secondary);
  background-color: var(--bg-body-secondary);
  padding: 0.6rem;
  transition: ease all .3s
}

.c-ctaList__link--web:hover{color:#131C31; border: 1px solid #131C31;  background-color: #fff}

.c-ctaList__link--web icon {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background-image: url(../../assets/images/i_envelop.png);
    background-size: cover;
}

.c-ctaList__link--web:hover icon{background-image: url(../../assets/images/i_envelop_black.png);}

.c-ctaList__link--web img {
  width: 1.6rem;
}

@media screen and (max-width: 768px) {
  .c-ctaList__link--web {
    padding: 1rem 0.4rem;
  }
}
.c-ctaList__link--line {
  display: block;
}
.c-ctaList__link--line img {
  width: 100%;
}

/* c-fixedCta */
.c-fixedCta {
  width: 100%;
  background-color: var(--color-white);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--zIndex-fixedCta);
}

.c-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--zIndex-cover);
}
.c-overlay.isOpen {
  display: block;
}

/* c-contactNav */
.c-contactNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-contactNav {
    gap: 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-contactNav__link {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.5;
  color: var(--fontColor-base);
}
.c-contactNav__link--tel {
  text-align: center;
  color: var(--bg-body-tertiary);
  padding-top: 1.1rem;
  position: relative;
  border: 1px solid;
  padding: 0.6rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.c-contactNav__link--line {
  width: 4rem;
  height: 4rem;
}
.c-contactNav__link--line img {
  width: 100%;
}

/* c-subnav */
.c-subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5rem 0px;
}
@media screen and (max-width: 768px) {
  .c-subnav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 3rem auto 3rem;
  }
}
.c-subnav__item:not(:first-child) {
  border-left: 1px solid var(--color-main);
  padding-left: 2rem;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .c-subnav__item:not(:first-child) {
    padding-left: 0;
    margin-left: 0;
  }
}
.c-subnav__link {
  display: block;
  color: var(--fontColor-base);  
  font-size: 1.6rem;  
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-subnav__link {
    font-size: 1.4rem;
    padding: 0 1.5rem;
  }
}

/* c-cta */
.c-cta__ttl {
  
  color: var(--color-text);
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1;
  text-align: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-cta__ttl {
    font-size: 1.6rem;
  }
}
.c-cta__ttl span {
  color: var(--bg-body-tertiary);
}
.c-cta{font-family: "Noto Serif JP", serif;}

.c-cta__link {
  display: block;
  background-color:#9B0F10;
  outline: 3px solid #ffffff;
  color:#fff;
  font-size: 2.8rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:2.2rem 0px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.3);
    box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.3);
	transition: ease all .3s
}

.c-cta__link:hover{background-color:#fff; color:#9B0F10; outline-color:#9B0F10}

.c-cta__link icon{width:3.2rem; height:3.2rem; background-image: url(../../assets/images/i_chat_white.png); background-size: cover; margin-right: 2rem;}
.c-cta__link:hover icon{background-image: url(../../assets/images/i_chat_red.png);}

@media screen and (max-width: 768px) {
  .c-cta__link {
    font-size: 2rem;
  }
  .c-cta__link icon{width:2.6rem; height: 2.6rem; margin-right:1.2rem}
}
.c-cta__link img {
  width: 100%;
}

/* c-plan*/
.c-plan__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-plan__tabItem {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  background-color: #eee;
  padding: 10px 0;
  cursor: pointer;
}
.c-plan__tabItem.active {
  background-color: #7fcce3;
}
.c-plan__contentItem {
  display: none;
}
.c-plan__contentItem.show {
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.p-present {
    background-color: #F3EFE1;
	border-top:10px transparent solid; border-image-source: url("../../assets/images/btn_sm.jpg");
  border-image-slice: 30;
  border-image-repeat: stretch; /* stretch | repeat | round */ 
}

.p-present__ttl {
  max-width: 79.5rem;
  margin: 0 auto;
}

.p-present__list {
    margin-top: 6.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;  
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;	
    gap: 3.5rem;
}

.p-present__item {
    -webkit-box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
    box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
}

.p-present__note {
    font-size: 1.6rem;
    line-height: 1.7;
    text-align: left;
    margin-top: 2.4rem;
	font-family: var(--fontFamily-accent);
}

@media screen and (max-width: 768px) {
  .p-present__note{font-size:1.4rem}
}
.p-present__ttl img {
  width: 100%;
}

/* c-reformMenu*/
.c-reformMenu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .c-reformMenu__header {
    
  }
}
.c-reformMenu__num {
  color: #131C31;
  font-size: 8rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-reformMenu__num {
    font-size: 4rem;
  }
}
.c-reformMenu__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  
  font-size: 3.2rem;
  font-weight: var(--fontWeight-semiBold);
  padding-left: 3.5rem;
  padding-top: 1rem;
  margin-left: 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-reformMenu__ttl {
    font-size: 2.2rem;
    padding-top: 0;
    padding-left: 1.6rem;
    margin-left: 1.6rem;
  }
}
.c-reformMenu__ttl::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 5.8rem;
  background-color: var(--color-text);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-reformMenu__ttl::before {
    height: 4rem;
  }
}
.c-reformMenu__tabArea {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-reformMenu__tabArea {
    margin-top: 2rem;
  }
}
.c-reformMenu__tabList {
  display: flex;
  justify-content: center;
  gap: 2rem
}

.c-reformMenu__tabList--2cols .c-reformMenu__tabItem{width:45.1rem; height:5.7rem}
.c-reformMenu__tabList--3cols .c-reformMenu__tabItem{width:29.6rem; height:5.7rem}

@media screen and (max-width:768px){
	.c-reformMenu__tabList--3cols{gap:1rem}
}
.c-reformMenu__tabItem {
  
}
.c-reformMenu__tabItem button {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  color: #333;
  font-family: var(--fontFamily-accent);
  border: 1px solid #DADADA;
  font-size: 1.7rem;
  font-weight: 300;
  border-radius: .8rem .8rem 0px 0px;
  text-align: center;
  background-color: var(--color-white);  
  padding: 1.1rem;
  position: relative;
  
}
@media screen and (max-width: 768px) {
  .c-reformMenu__tabItem button {
    min-height: 5rem;
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 0;
  }
  
.c-reformMenu__tabItem button.p-reformMenu__tabBtn{font-size:1.4rem}
#menu_02 .c-reformMenu__tabItem:nth-child(2) button.p-reformMenu__tabBtn,
#menu_02 .c-reformMenu__tabItem:nth-child(3) button.p-reformMenu__tabBtn{font-size:1.2rem}
}
@media screen and (max-width: 768px) {
  .c-reformMenu__tabItem button .sm {
    font-size: 1.2rem;
    
  }
}
@media screen and (max-width: 768px) {
  .c-reformMenu__tabItem button .md {
    font-size: 1.1rem;
  }
}
.c-reformMenu__tabItem.active button {
  background-color: #808080;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  
}
.c-reformMenu__contents {
  border-top: 1px #DADADA solid;
  background-color: var(--color-white);
  padding: 6rem 3.5rem;
  -webkit-box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
          box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
}
@media screen and (max-width: 768px) {
  .c-reformMenu__contents {
    padding: 2rem;
    
  }
}
.c-reformMenu__contentItem {
  display: none;
  position: relative;
}
.c-reformMenu__contentItem.show {
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* c-reformContent01*/
.c-reformContent01__list {
  display: flex;
 flex-wrap: wrap;
  gap: 2.3rem;
}

.c-reformContent01__list li{width:calc(50% - 2.3rem*1/2)}


@media screen and (max-width: 768px) {
  .c-reformContent01__list {gap: 3.5rem;}
  .c-reformContent01__list li{width:100%}
}
.c-reformContent01__list--1col {
  grid-template-columns: repeat(1, 1fr);
}
.c-reformContent01__item img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-reformContent01__item--01 {
    aspect-ratio: 303/411;
  }
}
@media screen and (max-width: 768px) {
  .c-reformContent01__item--02 {
    aspect-ratio: 303/428;
  }
}
@media screen and (max-width: 768px) {
  .c-reformContent01__item--03 {
    aspect-ratio: 303/422;
  }
}
@media screen and (max-width: 768px) {
  .c-reformContent01__item--04 {
    aspect-ratio: 303/428;
  }
}
@media screen and (max-width: 768px) {
  .c-reformContent01__item--05 {
    aspect-ratio: 303/442;
  }
}
@media screen and (max-width: 768px) {
  .c-reformContent01__item--06 {
    aspect-ratio: 303/443;
  }
}

/* c-reformContent02*/
.c-reformContent02{
  
}
.c-reformContent02__ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-reformContent02__ttl {
    font-size: 2rem;
  }
}
.c-reformContent02__ttl span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-reformContent02__ttl span {
    display: block;
    margin-top: 0.6rem;
  }
}
.c-reformContent02__tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.c-reformContent02__tagItem {
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 0.4rem 0.8rem;
  border: 1px solid;
}
.c-reformContent02__spec {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-reformContent02__spec {
    margin-top: 1rem;
  }
}
.c-reformContent02__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem 2.3rem;
  margin-top: 3.2rem;
}

.c-reformContent02__list .c-reformContent02__item{box-sizing: border-box; flex: 0 0 calc((100% - 3 * 2.3rem) / 4);}
.c-reformContent02__list .c-reformContent02__item:first-child{flex: 0 0 calc(50% - 1.15rem);}

#menu_04 .c-reformContent02__list .c-reformContent02__item{box-sizing: border-box; flex: 0 0 calc((100% - 3 * 2.3rem) / 4);}
#menu_04 .c-reformContent02__list .c-reformContent02__item:first-child{}
/*
.c-reformContent02__list .c-reformContent02__item:nth-child(2),
.c-reformContent02__list .c-reformContent02__item:nth-child(3){flex: 0 0 calc((50% - 2.3rem) / 2);}*/

@media screen and (max-width: 768px) {
  .c-reformContent02__list {
    display: block;
    
    gap: 2rem 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-reformContent02__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.2rem;
	margin-bottom: 3rem;
  }
  
  .c-reformContent02__item:last-child{margin-bottom:0px;}
}
@media screen and (max-width: 768px) {
  .c-reformContent02__item--small {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
    width: calc(50% - 0.6rem);
  }
}
.c-reformContent02__itemBody {
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-reformContent02__itemBody {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-reformContent02__imgArea {
    width: 14.5rem;
  }
}
.c-reformContent02__imgArea img {
  width: 100%;
}
.c-reformContent02__itemTtl {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
}
.c-reformContent02__itemTxt {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-reformContent02__itemTxt {
    font-size: 1.3rem;
  }
}

/* c-reformContent03*/
.c-reformContent03__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  .c-reformContent03__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2rem;
  }
}
.c-reformContent03__list--1col {
  grid-template-columns: repeat(1, 1fr);
}
.c-reformContent03__item img {
  width: 100%;
  height: auto;
}

/* c-reformContent04*/
.c-reformContent04__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  .c-reformContent04__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2rem;
  }
}

/* c-reformContent04*/
.c-reformContent05__imgArea {
  max-width: 49.8rem;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 768px) {
  .c-reformContent05__imgArea {
    aspect-ratio: 303/188;
    margin-bottom: 1.4rem;
  }
}
.c-reformContent05__tableArea {
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .c-reformContent05__tableArea {
    aspect-ratio: 303/212;
  }
}
@media screen and (max-width: 768px) {
  .c-reformContent05__tableWrap {
    width: 68rem;
  }
}

/* c-boxToggle*/
.c-boxToggle {
  background-color: var(--color-white);
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
          box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
}
.c-boxToggle__trigger {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.2rem;
  padding: 1.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__trigger {
    padding: 1.5rem 4rem 1.5rem 2rem;
    gap: 2rem;
  }
}
.c-boxToggle__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.8rem;
  font-weight: var(--fontWeight-medium);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__ttl {
    font-size: 1.6rem;
  }
}
.c-boxToggle__ttl::before {
  content: "";
  display: block;
  width: 1px;
  height: 6rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-boxToggle__cross {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  position: absolute;
  right: 3.4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-boxToggle__cross {
    width: 2.4rem;
    height: 2.4rem;
    right: 1.6rem;
  }
}
.c-boxToggle__cross::before, .c-boxToggle__cross::after {
  content: "";
  width: 1.9rem;
  height: 2px;
  background-color: var(--color-black);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-boxToggle__cross::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.c-boxToggle__icon {
  width: 4rem;
  height: 4rem;
}
.c-boxToggle__icon img {
  width: 100%;
}
.c-boxToggle__content {
  font-size: 1.6rem;
  font-weight: var(--fontWeight-medium);
  background-color: #F5F5F5;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
  padding: 0 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__content {
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 0 2rem;
    gap: 2rem;
  }
}
.c-boxToggle__content .c-boxToggle__icon {
  color: var(--color-white);
}
.c-boxToggle__contentTxt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-boxToggle__contentTxt a {
  color: var(--color-text);
  text-decoration: underline;
}
.c-boxToggle__contentTxt .sm {
  font-size: 1.2rem;
}
.c-boxToggle.is-active .c-boxToggle__trigger .c-boxToggle__cross::after {
  background-color: transparent;
}
.c-boxToggle.is-active .c-boxToggle__content {
  padding: 2.4rem 1.6rem;
  line-height: 1.6;
  height: auto;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-boxToggle.is-active .c-boxToggle__content {
    padding: 3rem 2rem;
  }
}

/* p-mv */
.p-mv {
  position: relative;
}

.p-mv-note{margin: .8rem 0px;}
.p-mv-note p {
    font-size: 1.2rem;
	color:var(--color-black);
    font-weight: var(--fontWeight-regular);
    line-height: 1.7;
    text-align: center;
	font-family: var(--fontFamily-accent);
}

@media screen and (max-width: 768px) {
  .p-mv__img {}  
  .p-mv-note p{ font-size: 1.1rem; text-align: left; font-family: var(--fontFamily-accent);}
}
.p-mv__img img {
  width: 100%;
}
.p-mv__bottom {
  padding: 2.4rem 0;
  background-color: var(--bg-body-secondary);
}
@media screen and (max-width: 768px) {
  .p-mv__bottom {
    padding: 1rem 0;
  }
}
.p-mv__bottomInner {
  max-width: 83.2rem;
  padding: 0 1.6rem;
  margin: 0 auto;
}
.p-mv__date {
  max-width: 52.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-mv__date {
    max-width: 22.4rem;
  }
}
.p-mv__date img {
  width: 100%;
}

/* p-campaign */
.p-campaign {
  
}
.p-campaign img {
  width: 100%;
}
.p-campaign__ttl {
  max-width: 82.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-campaign__ttl {
    
  }
}
.p-campaign__body {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__body {
    margin-top: 1.5rem;
  }
}

.p-campaign__main .p-campaign__mainImg:nth-child(2){margin-top:-2rem}

.p-campaign__main p {
  font-size: 1.4rem;
  font-weight: var(--fontWeight-medium);
  text-align: right;
  padding-right: 1.6rem;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__main p {
    font-size: 1.2rem;
    text-align: center;
    padding-right: 0;
    margin-top: initial;
  }
}
.p-campaign__main p a {
  color: var(--color-text);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .p-campaign__mainImg {
    margin: 0px -1.3rem 0px -2rem;
  }
}
.p-campaign__mainImg img {
  width: 100%;
}
.p-campaign__add {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__add {
    margin-top: 4rem;
  }
}
.p-campaign__add p {
  font-size: 1.4rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-campaign__add p {
    font-size: 1.2rem;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .p-campaign__addImg {
    aspect-ratio: 343/200;
  }
}
.p-campaign__addImg img {
  width: 100%;
}

.p-campaign__ctaArea {
    max-width: 72rem;
    margin: 7rem auto 0;
}

/* p-menu */
.p-menu {
  background-color:var(--light-gray-2);
}
.p-menu__ttl {
  max-width: 61.9rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-menu__ttl {
    
    max-width: 31.2rem;
  }
  
  .p-campaign__ctaArea{margin: 5rem auto 0;}
}
.p-menu__ttl img {
  width: 100%;
}
.p-menu__lead {
  font-family: var(--fontFamily-accent);
  font-size: 1.7rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-menu__lead {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}
.p-menu__anchorArea {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .p-menu__anchorArea {
    margin-top: 4rem;
    
  }
}
.p-menu__anchorList {
    margin: 0 auto;
    display: flex;    
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.p-menu__anchorList li{width:calc(33.33% - 2rem)}

@media screen and (max-width: 768px) {
  .p-menu__anchorList {
    
    gap: 1.6rem;
  }
  .p-menu__anchorList li{width:calc(50% - 1.6rem * 1/2);}
  .p-menu__anchorList li:last-child{width:100%}
}
.p-menu__anchorLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;  
  font-weight: var(--fontWeight-semiBold);
  border:1px solid var(--color-anchor);
  color: var(--color-anchor);
  background-color: var(--color-white);
  padding: 1.4rem 0.7rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(82, 63, 46, 0.25);
   box-shadow: 4px 4px 10px 0 rgba(82, 63, 46, 0.25);
}



@media screen and (max-width: 768px) {
  .p-menu__anchorLink {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.1;
    padding-top: 0.7rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.p-menu__anchorLink:hover {
  /*-webkit-box-shadow: none;
          box-shadow: none;
 		  
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);*/
   opacity: .6
}
.p-menu__anchorLink--plan {
  color: var(--color-white);
  background-color: #CDBE84;
  background-image:url("../../assets/images/btn_sm.jpg");
  border-color:transparent;
  background-size: cover;
}
.p-menu__anchorLink--plan .p-menu__anchorTxt {
  position: relative;  
}
@media screen and (max-width: 768px) {
  .p-menu__anchorLink--plan .p-menu__anchorTxt {
    padding-left: 0;
  }
}



.p-menu__body {
  margin-top: 7rem;
}
.p-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-menu__list {
    gap: 7rem;
  }
}
.p-menu__note {
  font-size: 1.2rem;
  font-family: var(--fontFamily-accent);
  line-height: 1.7;
  text-align: right;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-menu__note {
    font-size: 1.1rem;
    text-align: left;
    padding: 0 0rem;
    margin-top: 1.6rem;
	font-family: var(--fontFamily-accent);
	font-weight: 400
  }
}

.other-renovation-menu{border:1px #C2D1DA solid; font-size:1.6rem; margin-top: 4rem;}
.other-renovation-menu h4{font-size:2rem; font-weight: 500; text-align: center; background-color:#C2D1DA; padding: 2rem; display: flex;
    justify-content: center;
    align-items: center;}
.other-renovation-menu h4 icon{width:2.4rem; display: block; margin-right:.8rem}
.other-renovation-menu .other-renovation-menu-content{text-align: center; padding: 2rem;}
.other-renovation-menu .other-renovation-menu-content-links{font-size: 2rem; margin-bottom: 1.5rem; color:#B1995C}
.other-renovation-menu .other-renovation-menu-content-links a{color:#333;}

.support-msg-block{margin-top: 4rem}
.support-msg-block h4{font-size:2rem; font-weight: 500; text-align: center; background-color:#E6DFC2; padding: 1.466rem; display: flex;
    justify-content: center;
    align-items: center;}

.support-msg-block h4 icon{width:2.4rem; display: block; margin-right:.8rem}

@media screen and (max-width: 768px) {
	.other-renovation-menu{font-size: 1.4rem}
	.other-renovation-menu h4{font-size:1.7rem}
	.other-renovation-menu .other-renovation-menu-content-links{font-size: 1.6rem;}
	.support-msg-block h4{font-size:1.7rem}
}

/* p-plan */
.p-plan {
  
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 769px)
{
	.p-plan{
  padding-bottom: 15rem;}
}

.p-plan__img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-plan__img img {
  width: 100%;
}
.p-plan__img01 {
  max-width: 14.7rem;
  top: -2.6rem;
  left: calc(50% - 50rem);
}
@media screen and (max-width: 768px) {
  .p-plan__img01 {
    max-width: 7.8rem;
    left: -0.3rem;
    top: -2.4rem;
  }
}
.p-plan__img02 {
  max-width: 15.2rem;
  top: 18.6rem;
  left: calc(50% + 42rem);
}
@media screen and (max-width: 768px) {
  .p-plan__img02 {
    max-width: 8.9rem;
    left: auto;
    right: -1.8rem;
    top: 18.4rem;
  }
}
.p-plan__ttl {
  max-width: 48rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-plan__ttl {
   
    max-width: 28.8rem;
  }
}
.p-plan__ttl img {
  width: 100%;
}
.p-plan__lead {
  font-size: 2.2rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 1.7;
  text-align: center;
  margin-top: 2rem;
}

.p-plan__lead span{color:#9B0F10}
@media screen and (max-width: 768px) {
  .p-plan__lead {
    font-size: 1.6rem;
    margin-top: 3rem;
	font-weight: 600;
  }
  
  .p-plan__lead span{color:#9B0F10}
}
.p-plan__leadLine {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-color: #523F2E;
  text-decoration-thickness: 15%;
  text-underline-offset: 24%;
  text-underline-position: from-font;
}
@media screen and (max-width: 768px) {
  .p-plan__leadLine {
    text-decoration-thickness: 10%;
    text-underline-offset: 34%;
  }
}
.p-plan__list {
  margin-top: 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-plan__list {
    margin-top: 5.6rem;
  }
}
.p-plan__item {
   width:calc(50% - 2.5rem*1/2);
  -webkit-box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
          box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
}

.p-plan__item:last-child{width:100%;}

.p-plan__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
	.p-plan__item{width:100%;}
  
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 768px) {
  
}
.p-plan__note {
  font-size: 1.2rem;
  font-family: var(--fontFamily-accent);
  line-height: 1.7;
  text-align: right;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-plan__note {
    font-size: 1.2rem;
    text-align: left;
    margin-top: 1.6rem;
	font-family: var(--fontFamily-accent);
  }
}

/* p-gallery */
.p-gallery__ttl {
  max-width: 48rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-gallery__ttl {
    max-width: 28.8rem;
  }
}
.p-gallery__swiperArea {
  margin: 6.4rem auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-gallery__swiperArea {
    margin-top: 4rem;
  }
}
.p-gallery__swiperArea .swiper-button-prev,
.p-gallery__swiperArea .swiper-button-next {
  width: 3.1rem;
  height: 3.1rem;
  top: calc(50% - 9rem);
}
@media screen and (max-width: 768px) {
  .p-gallery__swiperArea .swiper-button-prev,
  .p-gallery__swiperArea .swiper-button-next {
    width: 2.4rem;
    height: 2.4rem;
    top: calc(50% - 1.6rem);
  }
}
.p-gallery__swiperArea .swiper-button-prev::after,
.p-gallery__swiperArea .swiper-button-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: red;
}
.p-gallery__swiperArea .swiper-button-prev {
  left: 0;
  right: auto;
}
@media screen and (max-width: 768px) {
  .p-gallery__swiperArea .swiper-button-prev {
    left: 0.6rem;
  }
}
.p-gallery__swiperArea .swiper-button-prev::after {
  background: url(../../assets/images/i_arrow_l.png) center/contain no-repeat;
}
.p-gallery__swiperArea .swiper-button-next {
  right: 0;
  left: auto;
}
@media screen and (max-width: 768px) {
  .p-gallery__swiperArea .swiper-button-next {
    right: 0.6rem;
  }
}
.p-gallery__swiperArea .swiper-button-next::after {
  background: url(../../assets/images/i_arrow_r.png) center/contain no-repeat;
}
.p-gallery__swiper {
  max-width: 92.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-gallery__swiper {
    max-width: 30.4rem;
  }
}
.p-gallery__swiper .swiper-slide {
  aspect-ratio: 924/554;
}
.p-gallery__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-gallery__swiperThumb {
  max-width: 92.4rem;
  margin: 1rem auto 0;
}
.p-gallery__swiperThumb .swiper-slide {
  aspect-ratio: 146/88;
}
.p-gallery__swiperThumb .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-gallery__note {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: right;
  margin: 2rem auto 0px;
    max-width: 92.6rem;
	font-family: var(--fontFamily-accent);
}
@media screen and (max-width: 768px) {
  .p-gallery__note {
    font-size: 1.2rem;
    margin-top: 1rem;
	text-align: center;
	font-family: var(--fontFamily-accent);
  }
}
.p-gallery__ctaArea {
  max-width: 72rem;
  margin: 6.6rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-gallery__ctaArea {
    max-width: 34.3rem;
    margin-top: 5.6rem;
  }
}

/* p-showroom */
.p-showroom {
  padding: 4rem 0 8rem;
  background-color: #ffe9bb;
}
@media screen and (max-width: 768px) {
  .p-showroom {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 768px) {
  .p-showroom__ban {
    aspect-ratio: 375/755;
  }
}
.p-showroom__ban img {
  width: 100%;
}
.p-showroom__ctaArea {
  max-width: 72rem;
  margin: 4.4rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-showroom__ctaArea {
    max-width: 34.3rem;
    margin-top: 4rem;
  }
}

/* p-solution */
.p-solution {
  background-color: var(--light-gray-2);
}
.p-solution__ttl {
  max-width: 72rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-solution__ttl {
    max-width: 28.8rem;
	margin-bottom: 5rem;
  }
}
.p-solution__ttl img {
  width: 100%;
}
.p-solution__body {
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-solution__body {
    margin-top: 4rem;
  }
}
.p-solution__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .p-solution__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-solution__list img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-solution__item:nth-child(1) {
    aspect-ratio: 343/349;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__item:nth-child(2) {
    aspect-ratio: 343/422;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__item:nth-child(3) {
    aspect-ratio: 343/417;
  }
}
.p-solution__ctaArea {
  max-width: 72rem;
  margin: 8.4rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-solution__ctaArea {
    max-width: 34.3rem;
    margin-top: 4rem;
  }
}

/* p-voice */
.p-voice {
  padding-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-voice {
    padding-top: 4rem;
  }
}
.p-voice__ttl {
  max-width: 28rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-voice__ttl {
    aspect-ratio: 196/100;
    max-width: 16.8rem;
  }
}
.p-voice__ttl img {
  width: 100%;
}
.p-voice__body {
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-voice__body {
    margin-top: 2.4rem;
  }
}
.p-voice__list {
  display: flex;
  flex-wrap: wrap;
  
}
.p-voice__list .p-voice__item{width:33.33%}

@media screen and (max-width: 768px) {
  .p-voice__list {
    
  }
  .p-voice__list .p-voice__item:first-child{width:100%}
  .p-voice__list .p-voice__item{width:50%}
}
.p-voice__list img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-voice__item:nth-child(1) {
    aspect-ratio: 343/474;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__item:nth-child(2) {
    aspect-ratio: 343/384;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__item:nth-child(3) {
    aspect-ratio: 343/384;
  }
}
.p-voice__note {
  font-size: 1.2rem;
  font-family: var(--fontFamily-accent);
  line-height: 1.7;
  text-align: right;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-voice__note {
    font-size: 1.1rem;
    margin-top: 1.6rem;
    text-align: left;
	font-family: var(--fontFamily-accent);
	font-weight: 400;
  }
}
.p-voice__comment {
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-voice__comment {
    margin-top: 4rem;
  }
}
.p-voice__commentList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-voice__commentList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-voice__commentList img {
  width: 100%;
}
.p-voice__commentItem {
 
}
@media screen and (max-width: 768px) {
  .p-voice__commentItem:nth-child(1) {
    aspect-ratio: 343/260;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__commentItem:nth-child(2) {
    aspect-ratio: 343/304;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__commentItem:nth-child(3) {
    aspect-ratio: 343/260;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__commentItem:nth-child(4) {
    aspect-ratio: 343/311;
  }
}

.p-event{border-top:10px #416792 solid; background-color:rgba(194,209,218, .08)}

.p-event__ttl{max-width: 36rem; margin: 0 auto;}
.p-event__body {
    margin-top: 6.4rem;
}

.p-event__List{display: flex; flex-wrap:wrap; gap: 8rem 4rem}
.p-event__Item{width:calc(50% - 4rem*1/2); position: relative; padding:0px 3rem 9rem}

.p-event__Item h4{width:fit-content; font-size:2.4rem;  margin:0px auto; text-align: center; font-weight: 600;}
.p-event__Item h4 span{border-bottom:2px #B1995C solid;}
.p-event__Item h4 span.hhtt{color:#9B0F10; border-bottom:none;}
.p-event__Item_content{margin-top: 2.5rem;}
.p-event__Item_content ul{display: flex; margin-bottom:1rem; align-items: center;}
.p-event__Item_content ul:last-child{margin-bottom:0px;}
.p-event__Item_content ul li:first-child{display: flex; align-items: center; width:11.5rem; font-weight: bold;}
.p-event__Item_content ul li:first-child icon{margin-right:.8rem}
.p-event__Item_content ul li{width:calc(100% - 9.2rem); line-height:170%;}
.p-event__Item .btn_comingsoon{font-weight: bold; position: absolute; bottom: 0px;
    left: 50%;
    transform: translate(-50%); display: block; width:27rem; height:6.4rem; background-color:#E0E0E0; color:#808080; transition: ease all .3s; display: flex; align-items: center; justify-content: center; margin:4rem auto 0px}
.p-event__Item .btn_comingsoon span:first-child{display: block; }
.p-event__Item .btn_comingsoon span:last-child{display:none;}

.p-event__Item .btn_comingsoon:after{display: none; width:2.4rem; height: 2.4rem; position: absolute; content:''; right:1.5rem; background-image:url('../../assets/images/i_new.png'); background-size: cover}

/*
.p-event__Item .btn_comingsoon:hover{background-color:#416792; color:#fff}
.p-event__Item .btn_comingsoon:hover span:first-child{display: none; }
.p-event__Item .btn_comingsoon:hover span:last-child{display: block; }
.p-event__Item .btn_comingsoon:hover:after{display: block}*/

@media screen and (min-width: 769px)
{
.p-event__Item:first-child:before,
.p-event__Item:nth-child(3):after{width:1px; height: 100%; background-color:#DADADA; position: absolute; content:''; right:-2rem; top:0px;}

.p-event__Item:first-child:after,
.p-event__Item:nth-child(2):after{width:100%; height: 1px; background-color:#DADADA; position: absolute; content:''; right:0px; bottom:-4rem;}
}

@media screen and (max-width: 768px) {
.p-event__ttl{max-width: 21.6rem;}
.p-event__List{gap: 4rem}	
.p-event__Item h4{font-size: 2rem}
.p-event__Item{width: 100%; padding-left: 0px; padding-right: 0px; }
.p-event__Item_content ul{margin-bottom: 0rem;}
.p-event__Item:after{width:100%; height: 1px; background-color:#DADADA; position: absolute; content:''; right:0px; bottom:-2.5rem;}
.p-event__Item:last-child:after{display: none;}
.p-event__Item .btn_comingsoon{width:20rem; height:4.8rem}
.p-event__Item .btn_comingsoon:after{width:1.8rem; height:1.8rem;}
}

/* p-faq */
.p-faq {
  background-color: #fff;
}
.p-faq__ttl {
  max-width: 28rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-faq__ttl {    
    max-width: 16.8rem;
  }
}
.p-faq__body {
  max-width: 80rem;
  margin: 6rem auto 0px;
}
@media screen and (max-width: 768px) {
  .p-faq__body {
    margin-top: 4rem;
  }
}
.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-faq__list {
    gap: 1.6rem;
  }
}

/* p-shop */
.p-shop {
  
  
}
.p-shop__h2ttl {
  max-width: 16rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-shop__h2ttl {
    aspect-ratio: 112/100;
    max-width: 9.6rem;
  }
}
.p-shop__h2ttl img {
  width: 100%;
}
.p-shop__body {
  padding: 6.4rem 4rem 5rem;
  background-color: var(--color-white);
  margin-top: 6rem;
  position: relative;
  -webkit-box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
    box-shadow: 0 5px 15px 0 rgba(82, 63, 46, 0.25);
}
@media screen and (max-width: 768px) {
  .p-shop__body {
    padding: 3.2rem 2.4rem 2.4rem;
    margin-top: 4rem;
  }
}
.p-shop__list {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 0;
}
@media screen and (max-width: 768px) {
  .p-shop__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-shop__item {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 4.2rem;
}

.p-shop__headtxt{background-color:#F5F7FB; font-size:1.2rem; font-weight: 500; margin-bottom: 1rem; text-align:center; color:#004EA2; padding: .6rem 0px}

@media screen and (max-width: 768px) {
  .p-shop__item {
    padding-bottom: 2.2rem;
  }
}


@media screen and (min-width: 769px) {
	.p-shop__item:nth-child(5),
.p-shop__item:last-child {
  border-bottom: none;
  position: relative;
}
}


@media screen and (max-width: 768px) {
  .p-shop__item:last-child {
    border-bottom: 0px solid;
  }
}
.p-shop__item:last-child::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 3.8rem);
  border-left: 1px solid;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-shop__item:last-child::before {
    border-left: none;
  }
}
.p-shop__item:nth-of-type(2n) {
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-shop__item:nth-of-type(2n) {
    padding-left: 0;
  }
}
.p-shop__item:nth-of-type(2n)::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 3.8rem);
  border-left: 1px solid #DADADA;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-shop__item:nth-of-type(2n)::before {
    border-left: none;
  }
}
.p-shop__item:nth-of-type(2n)::after {
  content: "";
  display: block;
  width: 7.6rem;
  height: 7.6rem;
  background-color: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.p-shop__item:last-child:after{display: none}

@media screen and (max-width: 768px) {
  .p-shop__item:nth-of-type(2n)::after {
    display: none;
  }
}
.p-shop__ttl {
  font-size: 2.4rem;
  font-weight: var(--fontWeight-bold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-shop__ttl {
    gap: 1.2rem;
  }
}
.p-shop__ttl::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.1rem;
  background: url(../../assets/images/i_shop.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .p-shop__ttl::before {
    width: 2.1rem;
    height: 2.4rem;
  }
}
.p-shop__ttl::before img {
  width: 100%;
}
.p-shop__txt {
  font-size: 1.6rem;  
  line-height: 1.5;
  margin-top: 1rem;
}
.p-shop__opening {
  font-size: 1.6rem;
  line-height: 1.5;  
  margin-top: 1.2rem;
}
.p-shop__tel {
  display: block;
  color: var(--color-text);
  font-size: 3rem;
  line-height: 1;
  font-weight: var(--fontWeight-bold);
  margin-top: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-shop__tel {
    max-width: 22.8rem;
    pointer-events: initial;
    gap: 0.4rem;
    font-size: 2.1rem;
    border-radius: 99px;
    color: var(--color-white);
    background-color: #0F0E6B;
    padding: 0.7rem 1.2rem 0.7rem 5rem;
    position: relative;
    margin: 1.2rem 0 0 0;
  }
}
.p-shop__tel::before {
  content: "";
  display: block;
  width: 4rem;
  height: 3.2rem;
  background: url(../../assets/images/i_tel.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .p-shop__tel::before {
    width: 2rem;
    height: 1.6rem;
    background-image: url(../../assets/images/i_tel_sp.png);
  }
}
.p-shop__tel::after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../assets/images/i_phone.png) no-repeat center center/contain;
  display: none;
}
@media screen and (max-width: 768px) {
  .p-shop__tel::after {
    display: block;
  }
}
.p-shop__imgArea {
  width: 41.1rem;
  position: absolute;
  bottom: 6.6rem;
  right: 11rem;
}
@media screen and (max-width: 768px) {
  .p-shop__imgArea {
    width: 29.5rem;
    position: initial;
    margin: 2rem auto 0;
  }
}

.p-shop__notification{font-size: 1.5rem; background-color:#F5F5F5; display: flex; gap: 1.5rem; padding: 2.42rem 5rem; align-items: center; max-width: 90rem; margin: 0px auto; line-height: 170%;}
.p-shop__notification icon{width:2.4rem; height: 2.4rem}
.p-shop__notification text{width: calc(100% - 2.4rem)}
.p-shop__notification text span{color:#004EA2}

@media screen and (max-width: 768px) {
	.p-shop__notification{padding: 2.42rem 2.42rem}
	.p-shop__notification icon{}
}

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

/* u-txt */
/* u-display */
.u-display--pcNone {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-display--pcNone {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .u-display--spNone {
    display: none !important;
  }
}
.u-display--inlineBlock {
  display: inline-block;
}