@charset "UTF-8";
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
  margin: 0;
  padding: 0;
  font-size: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

button,
input,
select {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
}

img {
  height: auto;
}

iframe {
  max-width: 100%;
}

[type=button],
[type=reset],
[type=submit],
a,
a img,
button {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*==================================================================================================
	ヘッダー
==================================================================================================*/
.header {
  width: calc(100% - clamp(7rem, 8vw, 9rem));
}
@media screen and (max-width: 1020px) {
  .header {
    width: 100%;
  }
}
.header .headWrap {
  background-image: url("../img/common/decoration-noren.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 520px auto;
}
@media screen and (max-width: 1020px) {
  .header .headWrap {
    background: none;
  }
}
@media screen and (max-width: 1020px) {
  .header .headWrap .headerBar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .headWrap .headerBar .headerLogo {
  padding: 1.5rem 0 0 2rem;
}
.header .headWrap .headerBar .headerLogo a {
  display: inline-block;
}
.header .headWrap .headerBar .headerLogo img {
  width: clamp(130px, 12vw, 152px);
}
.header .headWrap .headerBar .humburgerBtn {
  display: none;
}
.header .headWrap .headerNav {
  margin-top: 2.5rem;
}
@media screen and (max-width: 1020px) {
  .header .headWrap .headerNav {
    display: none;
  }
}
.header .headWrap .headerNav .navbarList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5em;
  margin-bottom: 0;
}
.header .headWrap .headerNav .navbarList__item .navLink {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  padding-bottom: 1rem;
  position: relative;
  display: inline-block;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.header .headWrap .headerNav .navbarList__item .navLink::before {
  background: #1D3065;
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .headWrap .headerNav .navbarList__item .navLink:hover {
  color: #000000;
}
.header .headWrap .headerNav .navbarList__item .navLink:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header .headWrap .headerNav .navbarList__item .navLink.active::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*==================================================================================================
	ハンバーガーメニュー
==================================================================================================*/
#edittingNowOnTheOurCms .humburgerBtn {
  pointer-events: none;
}

.humburgerBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(7rem, 8vw, 9rem);
  height: clamp(7rem, 8vw, 9rem);
  margin-left: auto;
  padding: 1.29em 0.3em;
  border: none;
  outline: none;
  background: #1D3065;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: auto;
}
.humburgerBtn:focus {
  outline: none;
}
.humburgerBtn .humburgerLine {
  display: block;
  width: clamp(2.5rem, 5vw, 3rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.humburgerBtn .humburgerLine > span {
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
  height: 0.3rem;
  background: #FFFFFF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.humburgerBtn .humburgerLine > span:last-child {
  margin-bottom: 0;
}
.humburgerBtn .humburgerLine.open span.top {
  -webkit-transform: translateY(0.6em) rotate(-45deg);
          transform: translateY(0.6em) rotate(-45deg);
}
.humburgerBtn .humburgerLine.open span.middle {
  opacity: 0;
}
.humburgerBtn .humburgerLine.open span.bottom {
  -webkit-transform: translateY(-0.75em) rotate(45deg);
          transform: translateY(-0.75em) rotate(45deg);
}

.shopLink .shopBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: clamp(7rem, 8vw, 9rem);
  height: clamp(7rem, 8vw, 9rem);
  margin-left: auto;
  padding: 0.3em;
  background-color: #405C94;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #FFFFFF;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0;
}
.shopLink .shopBtn::before {
  content: "";
  display: inline-block;
  background-image: url(/assets/img/common/icon-cart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(2.5rem, 2vw, 3rem);
  height: clamp(2.2rem, 2vw, 2.7rem);
  margin-bottom: 0.3rem;
}
.shopLink .shopBtn:hover {
  background-color: #1D3065;
}

/*==================================================================================================
	フッター
==================================================================================================*/
.footer {
  width: calc(100% - clamp(7rem, 8vw, 9rem));
  background-color: #1D3065;
  color: #FFFFFF;
  padding-top: clamp(6rem, 8vw, 9rem);
}
@media screen and (max-width: 1020px) {
  .footer {
    width: 100%;
  }
}
.footer .footerWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: clamp(4rem, 5vw, 5rem);
}
@media screen and (max-width: 1160px) {
  .footer .footerWrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.footer .footerWrap a {
  color: #FFFFFF;
}
.footer .footerWrap .infoArea p {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.footer .footerWrap .footerNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 1160px) {
  .footer .footerWrap .footerNav {
    display: none;
  }
}
.footer .footerWrap .footerNav .ftMenuList__item .ftLink {
  font-weight: 600;
}
.footer .footerWrap .footerNav .ftMenuList__item .couponBtn {
  background: none;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-weight: 600;
}
.footer .footerWrap .footerNav .ftMenuList__item .ftSubMenu__item::before {
  content: "－";
  display: inline-block;
}
.footer .footerWrap .footerNav .ftMenuList__item .ftSubMenu__item .ftLink {
  font-size: clamp(1.2rem, 5vw, 1.4rem);
  font-weight: 400;
}
.footer .footerWrap .footerNav .ftMenuList__item + li {
  margin-top: 2rem;
}
.footer .scrollTop {
  text-align: center;
}
.footer .scrollTop a {
  display: block;
  margin: 0 0 -1rem -3rem;
}
.footer .scrollTop a img {
  width: clamp(160px, 25vw, 192px);
}
.footer .copy {
  background-color: #F0ECE0;
  color: #000000;
  text-align: center;
  line-height: 1;
  padding: 1.5rem;
}
.footer .copy small {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  letter-spacing: 1px;
}

/*==================================================================================================
	サイドバー
==================================================================================================*/
#edittingNowOnTheOurCms .sideBar {
  position: absolute;
  top: 56px;
  z-index: 999;
}
#edittingNowOnTheOurCms .sideBar .infoArea .infoText h4 {
  color: #FFFFFF;
  font-weight: 600;
}
#edittingNowOnTheOurCms .sideBar .otherLink {
  pointer-events: none;
}
#edittingNowOnTheOurCms .sideBar .otherLink .otherList {
  margin-bottom: 0;
}

.sideBar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: clamp(7rem, 8vw, 9rem);
  height: 100vh;
  background-color: #000000;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}
@media screen and (max-width: 1020px) {
  .sideBar {
    height: auto;
    background-color: inherit;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.sideBar .sideMenu,
.sideBar .humburgerBtn {
  position: relative;
  z-index: 9999;
}
.sideBar .overlay {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  right: 90px;
}
.sideBar .overlay.open {
  display: block;
}
@media screen and (max-width: 1020px) {
  .sideBar .overlay {
    right: 0;
  }
}
.sideBar .menuBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 100vh;
  background-color: #1D3065;
  -webkit-transition: right 0.5s ease;
  transition: right 0.5s ease;
  position: fixed;
  top: 0;
  right: -50%;
  z-index: 9998;
}
.sideBar .menuBox.open {
  right: clamp(7rem, 8vw, 9rem);
}
@media screen and (max-width: 1160px) {
  .sideBar .menuBox {
    width: 65%;
    right: -65%;
  }
}
@media screen and (max-width: 1020px) {
  .sideBar .menuBox {
    width: 100%;
    right: -100%;
    padding: 5rem;
    overflow: auto;
  }
  .sideBar .menuBox.open {
    right: 0;
  }
}
@media screen and (max-width: 560px) {
  .sideBar .menuBox {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.sideBar .menuBox .menuWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2em;
  max-width: 47.5rem;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1020px) {
  .sideBar .menuBox .menuWrap {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .sideBar .menuBox .menuWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5em;
  }
}
.sideBar .menuList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6em 0;
  width: calc(50% - 1em);
}
@media screen and (max-width: 560px) {
  .sideBar .menuList {
    gap: 1.5em 0;
    width: 100%;
  }
}
.sideBar .menuList a {
  color: #FFFFFF;
}
.sideBar .menuList__item {
  font-size: 1.6rem;
  font-weight: 600;
}
.sideBar .menuList__item .menuBtn {
  padding: 0 1.5em 0 0;
  border: none;
  outline: none;
  font: inherit;
  color: #FFFFFF;
  background: none;
  position: relative;
  letter-spacing: 0.1em;
}
.sideBar .menuList__item .menuBtn.open:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sideBar .menuList__item .menuBtn:before {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("../img/common/icon-menu-btn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  top: 0.48em;
  right: 0;
}
.sideBar .menuList__item .subMenuList {
  display: none;
}
.sideBar .menuList__item .subMenuList__item a {
  font-size: 85%;
}
.sideBar .menuList__item .subMenuList__item::before {
  content: "-";
  color: #FFFFFF;
}
.sideBar .menuList__item .couponBtn {
  background-color: inherit;
  border: none;
  color: #FFFFFF;
}
.sideBar .infoArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
  margin-top: 4rem;
}
.sideBar .infoArea .infoText {
  color: #FFFFFF;
  width: calc(100% - 3.5rem);
}
.sideBar .infoArea .infoText h4 {
  font-size: 134%;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.sideBar .infoArea .infoText p {
  font-size: 85%;
}
.sideBar .infoArea .infoText a {
  color: #FFFFFF;
}
@media screen and (max-width: 560px) {
  .sideBar .infoArea {
    display: block;
    margin-top: 3rem;
  }
  .sideBar .infoArea .infoText {
    display: none;
  }
}
.sideBar .otherLink {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #000000;
  position: absolute;
  bottom: 3%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sideBar .otherLink .otherList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sideBar .otherLink .otherList__item {
  background-image: url(/assets/img/common/icon-arrow_bottom_red.svg);
  background-repeat: no-repeat;
  background-size: 13px 7.5px;
  background-position: top center;
  padding-top: 1.5rem;
}
.sideBar .otherLink .otherList__item .couponBtn {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background: none;
  border: none;
  color: #FFFFFF;
  letter-spacing: 0.2rem;
  font-weight: 600;
}
@media screen and (max-width: 1020px) {
  .sideBar .otherLink {
    display: none;
  }
}

/*==================================================================================================
	ボタン Button
==================================================================================================*/
.btnArea {
  margin-top: clamp(5rem, 5vw, 6rem);
  line-height: 1;
}
.btnArea.-center {
  text-align: center;
}
.btnArea .btn {
  display: inline-block;
  max-width: 100%;
  min-width: 21.4em;
  min-height: 7rem;
  padding: 1.3em 3em 1.3em 4.5em;
  color: #000000;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3.4rem;
  border: 2px solid #1D3065;
  background-color: #FFFFFF;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
  overflow: hidden;
}
.btnArea .btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 6.2rem;
  height: calc(100% - 4px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #1D3065;
  background-image: url("../img/common/icon-arrow_right_white.svg");
  background-position: left 26px center;
  background-repeat: no-repeat;
  background-size: 7px 12px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 3rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 0;
}
.btnArea .btn:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3.4rem;
  border: 2px solid #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.btnArea .btn:hover {
  color: #FFFFFF;
}
.btnArea .btn:hover:before {
  width: 100%;
}
.btnArea .btn.-red {
  border-color: #BB1628;
}
.btnArea .btn.-red:before {
  background-color: #BB1628;
}
.btnArea .btn span {
  display: block;
  position: relative;
  z-index: 1;
  white-space: normal;
  word-break: break-word;
}

.btnList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 4vw, 5rem);
}
@media screen and (max-width: 767px) {
  .btnList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
.btnList.-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btnList.-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.btnList.-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.btnList.-column .btnArea + .btnArea {
  margin-top: 3rem;
}

/*==================================================================================================
	タイトル Label
==================================================================================================*/
.pageHead {
  padding: 5.5rem 2rem 8rem;
  position: relative;
}
.pageHead:before {
  content: "";
  display: inline-block;
  width: clamp(180px, 25vw, 295px);
  aspect-ratio: 7/2;
  background: url("../img/common/decoration-cloud.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.pageHead .heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pageHead .heading span {
  display: block;
  text-align: center;
  line-height: 1.3;
}
.pageHead .heading span.en {
  font-family: "Jost", sans-serif;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: bold;
  position: relative;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
}
.pageHead .heading span.en:before {
  content: "";
  display: inline-block;
  width: clamp(47px, 10vw, 60px);
  aspect-ratio: 5/4;
  background: url("../img/common/decoration-ttl.svg") no-repeat center/contain;
  position: absolute;
  left: -35px;
  top: -100%;
}
.pageHead .heading span.jp {
  font-family: "Shippori Antique", sans-serif;
  font-size: clamp(3.3rem, 5vw, 4.4rem);
  font-weight: 400;
}

.heading-2 {
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #1D3065;
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: clamp(4rem, 2vw, 5rem);
  border-bottom: solid 7px #B6C0D9;
  position: relative;
}
.heading-2::before {
  content: "◆";
  font-size: 70%;
  vertical-align: 3px;
  margin-right: 1rem;
}
.heading-2::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 7px #1D3065;
  bottom: -7px;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .heading-2 {
    border-bottom: solid 6px #B6C0D9;
  }
  .heading-2::after {
    border-bottom: solid 6px #1D3065;
    bottom: -6px;
  }
}

.heading-3 {
  font-size: clamp(2rem, 2vw, 2.4rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #1D3065;
  padding: 1rem 1.5rem;
  margin-bottom: clamp(3rem, 2vw, 4rem);
  border-bottom: solid 3px #1D3065;
  background-color: #F5F7FB;
}

.heading-4 {
  font-size: clamp(1.6rem, 2vw, 2rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #FFFFFF;
  padding: 0.3rem 1rem;
  margin-bottom: 2rem;
  background-color: #405C94;
  display: inline-block;
}

.heading-5 {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #1D3065;
  margin-bottom: 1.5rem;
}

/*==================================================================================================
	パンくずリス Breadcrumb
==================================================================================================*/
.breadWrap {
  margin-top: 3rem;
}
.breadWrap .breadList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: clamp(1rem, 5vw, 1.2rem);
}
.breadWrap .breadList .item {
  display: inline-block;
  margin: 0 0 0 0.8em;
  padding-left: 1.3em;
  position: relative;
  font-weight: 500;
}
.breadWrap .breadList .item a {
  color: #777;
  font-weight: 400;
}
.breadWrap .breadList .item::before {
  content: "";
  width: 4.5px;
  height: 4.5px;
  margin: auto;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.breadWrap .breadList .item:first-child {
  margin: 0;
  padding: 0;
}
.breadWrap .breadList .item:first-child::before {
  display: none;
}

/* ==================================================================================================
	ページネーション Pagenavi
================================================================================================== */
.pagination {
  text-align: center;
  margin-top: 3em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.pagination .pages {
  display: none;
}
.pagination .page-item {
  margin-bottom: 0.5em;
}
.pagination .page-link {
  background: #FFF;
  text-decoration: none;
  text-align: center;
  border: #1D3065 1px solid;
  color: #1D3065 !important;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0.1em;
  min-width: 38px;
  min-height: 38px;
}
.pagination .page-link:hover {
  background: #1D3065;
  color: #FFF !important;
}
.pagination .active {
  border: #1D3065;
}
.pagination .active .page-link {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1D3065;
  color: #FFF !important;
  margin: 0 0.1em;
  border: none !important;
}
@media only screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pagination .active .page-link {
    padding-top: 11px;
  }
}
@media screen and (max-width: 767px) {
  .pagination .page-link {
    font-size: 1.4rem;
    min-width: 34px;
    min-height: 34px;
  }
}
@media screen and (max-width: 350px) {
  .pagination {
    margin: 20px 0;
  }
  .pagination .page-link {
    font-size: 1.3rem;
    min-width: 30px;
    min-height: 30px;
  }
}

/*==================================================================================================
	モーダル Modal
==================================================================================================*/
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modalCont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  width: 100%;
  height: 100%;
}

.modalWrap {
  max-width: 335px;
  background-color: #F0ECE0;
  position: relative;
}
.modalWrap .modalClose {
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
}
.modalWrap .modalInner {
  padding: 2rem 2rem 3rem;
  text-align: center;
}
.modalWrap .modalInner .couponLabel {
  margin-bottom: 0.5rem;
}
.modalWrap .modalInner .couponLabel img {
  display: inline-block;
  margin-left: -2.3rem;
}
.modalWrap .modalInner .serviceTtl {
  margin-bottom: 0.5em;
  letter-spacing: 0;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 2rem;
}
.modalWrap .modalInner .offerLabel {
  margin-bottom: 0.9em;
  padding: 1em;
  background-color: #BB1628;
  border-radius: 99em;
  color: #FFFFFF;
  line-height: 1;
  overflow: hidden;
}
.modalWrap .modalInner .offerLabel .num,
.modalWrap .modalInner .offerLabel .off {
  font-family: "Jost", sans-serif;
}
.modalWrap .modalInner .offerLabel .num {
  font-size: 5rem;
}
.modalWrap .modalInner .offerLabel .off {
  font-size: 2.4rem;
}
.modalWrap .modalInner .offerLabel .text {
  font-size: 2.2rem;
}
.modalWrap .modalInner .readText {
  margin-bottom: 1.4em;
  font-size: 1.4rem;
}
.modalWrap .modalInner .notesList {
  margin-bottom: 2.3em;
  text-align: left;
  font-size: 1.2rem;
}
.modalWrap .modalInner .notesList__item {
  padding-left: 1em;
  text-indent: -1em;
}
.modalWrap .modalInner .notesList__item .red {
  color: #BB1628;
}
.modalWrap .modalInner .logo img {
  max-width: 13rem;
}

/*==================================================================================================
	スライダー Slider
==================================================================================================*/
.splide * + .splide__arrows {
  margin-top: 3rem;
}
.splide .splide__arrows + * {
  margin-top: 3rem;
}
.splide__arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .splide__arrows {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
}
.splide__arrows .splide__arrow {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #1D3065;
  background-image: url("../img/common/icon-slider-arrow_left_white.svg");
  background-position: left 17px center;
  background-repeat: no-repeat;
  background-size: 6px 11px;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.splide__arrows .splide__arrow.splide__arrow--prev {
  background-image: url("../img/common/icon-slider-arrow_left_white.svg");
}
.splide__arrows .splide__arrow.splide__arrow--next {
  background-image: url("../img/common/icon-slider-arrow_right_white.svg");
}
.splide__arrows .splide__arrow:disabled {
  background-color: #FFFFFF;
}
.splide__arrows .splide__arrow:disabled.splide__arrow--prev {
  background-image: url("../img/common/icon-slider-arrow_left_blue.svg");
}
.splide__arrows .splide__arrow:disabled.splide__arrow--next {
  background-image: url("../img/common/icon-slider-arrow_right_blue.svg");
}
.splide__arrows .splide__arrow svg {
  display: none;
}
.splide__pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-top: 2rem;
}
.splide__pagination__page {
  width: 1rem;
  height: 1rem;
  background-color: #DDDDDD;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.splide__pagination__page.is-active {
  background-color: #1D3065;
}
.splide.-addTag .imgArea {
  position: relative;
}
.splide.-addTag .tag {
  display: inline-block;
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  background-color: rgba(0, 0, 0, 0.6);
  line-height: 1.4;
  color: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*==================================================================================================
	レイアウト layout
==================================================================================================*/
.columnBox {
  display: grid;
  gap: clamp(4rem, 4vw, 5.5rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.columnBox .imgArea .imgTtl {
  font-size: clamp(1.8rem, 5vw, 2rem);
  margin: 2rem 0 1.5rem;
  text-align: center;
}

.contTtl {
  margin-bottom: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contTtl .en {
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0;
}
.contTtl .jp {
  font-family: "Shippori Antique", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0;
}

.imgList {
  display: grid;
  gap: 5.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .imgList {
    display: block;
  }
}
.imgList__item .textArea .imgTtl {
  font-size: clamp(1.7rem, 2vw, 2rem);
  margin: clamp(1.7rem, 2vw, 2rem) 0 clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .imgList__item + .imgList__item {
    margin-top: 4rem;
  }
}
.imgList.-col3 {
  gap: 3.8rem;
  grid-template-columns: repeat(3, 1fr);
}

/*==================================================================================================
	テーブル table
==================================================================================================*/
.simpleTable {
  border: 1px solid #CCCCCC;
  margin-top: clamp(3rem, 3vw, 4rem);
  background-color: #FFFFFF;
}
.simpleTable th, .simpleTable td {
  border: 1px solid #CCCCCC;
  padding: clamp(2rem, 3vw, 2.5rem) clamp(2rem, 3vw, 3rem);
}
.simpleTable th {
  background-color: #F5F5F5;
  font-weight: 400;
  width: 27.2727272727%;
  text-align: left;
}

.tableWrap {
  overflow-x: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .tableWrap .simpleTable {
    width: 800px;
  }
}

.scroll-hint-icon {
  letter-spacing: 0;
}

/*==================================================================================================
	リスト list
==================================================================================================*/
.simpleList {
  margin: clamp(2rem, 5vw, 4rem) 0 0 2rem;
}
.simpleList__item {
  position: relative;
}
.simpleList__item::before {
  content: "";
  position: absolute;
  left: -1.2em;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: #1D3065;
  border-radius: 50%; /* 丸 */
}
.simpleList__item + li {
  margin-top: 1.5rem;
}

.numList {
  margin: clamp(2rem, 5vw, 4rem) 0 0 1rem;
}
.numList__item {
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 1rem;
  text-indent: -2rem;
}
.numList__item + li {
  margin-top: 1.5rem;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
body {
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #000000;
  font-weight: 400;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
body a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #000000;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}
body .telLink {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
body .telLink _:-ms-fullscreen,
body .telLink :root .selector {
  display: inline-block;
}
@media screen and (max-width: 860px) {
  body .telLink {
    cursor: pointer;
    pointer-events: auto;
    letter-spacing: 0.02em;
  }
}
body .readText {
  letter-spacing: 0.15em;
  line-height: 1.8;
}
body .readText.-center {
  text-align: center;
}
body .readText + p {
  margin-top: 2rem;
}
body .readText.-caption {
  font-size: clamp(1.2rem, 5vw, 1.3rem);
  margin-top: 1.5rem;
}
body .readText a {
  color: #BB1628;
  font-weight: 500;
  text-decoration: underline;
}
body .readText a:hover {
  text-decoration: none;
}
body .readText span {
  font-weight: 500;
}
body .readText span.red {
  color: #BB1628;
}
body .-addImgBg {
  background-image: url("../img/common/bg.jpg");
  background-repeat: repeat;
  background-size: 638px 359px;
}
body .-addBgColBeige {
  background-color: #F0ECE0;
}
body br.spShow {
  display: none;
}
@media screen and (max-width: 767px) {
  body br.spShow {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  body br.pcShow {
    display: none;
  }
}

/*==================================================================================================
	Content
==================================================================================================*/
.lContainer {
  width: calc(100% - clamp(7rem, 8vw, 9rem));
}
@media screen and (max-width: 1020px) {
  .lContainer {
    width: 100%;
  }
}

.mContainer {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 860px) {
  .mContainer {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 560px) {
  .mContainer {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.sContainer {
  padding-bottom: 8rem;
}
.sContainer:last-of-type {
  padding-bottom: 0;
}
@media screen and (max-width: 860px) {
  .sContainer {
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 560px) {
  .sContainer {
    padding-bottom: 5rem;
  }
}

.inner {
  max-width: 1095px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .inner {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.inner.-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}