@charset "UTF-8";
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* ========================================================
	reset.css
	Format,Font Reset
======================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

img,
picture {
  max-width: 100%;
  border: 0;
}

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

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

/*==========================================================
	common
==========================================================*/
html {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-optical-sizing: auto;
  font-size: 62.5%;
  font-weight: 500;
  color: #53565A;
  background: #F2F2EE;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
}
body:after {
  content: "";
  width: 100vw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.2);
  mix-blend-mode: multiply;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
body.fixed {
  position: fixed;
  width: 100%;
}
body.fixed:after {
  z-index: 20;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }
}

a,
a:link,
a:visited {
  color: #53565A;
  text-decoration: none;
  transition: 0.5s;
}

@media (min-width: 1025px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

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

button {
  color: #53565A;
}
button:hover {
  cursor: pointer;
}

.container {
  margin: 0 auto;
  max-width: 1350px;
  width: 93.75%;
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .container {
    width: 87.2%;
  }
}

.inner {
  margin: 0 auto;
  max-width: 1240px;
  width: 90%;
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .inner {
    width: 87.2%;
  }
}

.commonBtn a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.commonBtn a .txt {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.commonBtn a .arrow {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-left: min(95px,13.194vw);
}
@media (max-width: 768px) {
  .commonBtn a .arrow {
    margin-left: 54px;
  }
}
.commonBtn a .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F2F2EE;
  transform: translateX(-100%);
  transition: transform 1.5s ease;
}
.commonBtn a .arrow svg {
  display: block;
}
@media (max-width: 768px) {
  .commonBtn a .arrow svg {
    width: 100px;
  }
}
.commonBtn a .arrow svg path {
  fill: #53565a;
}
.commonBtn a:hover .arrow::before {
  transform: translateX(0);
  animation: swipeRight 1.5s ease forwards;
}
@media (max-width: 768px) {
  .commonBtn a:hover .arrow::before {
    animation: none;
  }
}
.commonBtn.white a .arrow::before {
  background: #fff;
}
.commonBtn.white_opacity a .arrow::before {
  background: rgba(255, 255, 255, 0.5);
}
.commonBtn.nemuri a .arrow::before {
  background: #DBDBD1;
}
.commonBtn.black a .txt {
  color: #fff;
}
.commonBtn.black a .arrow::before {
  background: #53565A;
}
.commonBtn.black a .arrow svg path {
  fill: #fff;
}

@keyframes swipeRight {
  0% {
    transform: translateX(-100%);
  }
  49% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.commonStoreArea {
  position: relative;
  padding: min(200px,27.778vw) 0 min(180px,25vw);
  background: #DBDBD1;
}
.commonStoreArea .logo {
  position: absolute;
  top: 8.6111111111vw;
  left: calc((100vw - 1240px) / 2 + 3.06vw);
  z-index: 2;
}
.commonStoreArea .logo figure {
  width: 9.1666666667vw;
  height: 19.375vw;
}
@media (max-width: 1200px) {
  .commonStoreArea .logo {
    left: 5%;
  }
}
@media (max-width: 768px) {
  .commonStoreArea .logo {
    display: none;
  }
}
.commonStoreArea .introBox {
  text-align: center;
}
.commonStoreArea .introBox .ttl01 {
  margin-bottom: min(15px,2.084vw);
}
@media (max-width: 768px) {
  .commonStoreArea .introBox .ttl01 {
    margin-bottom: 25px;
  }
}
.commonStoreArea .introBox .ttl01 span.en {
  font-size: clamp(14px, 2.362vw, 17px);
  font-family: "Lato", serif;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .commonStoreArea .introBox .ttl01 span.en {
    font-size: 1.6rem;
  }
}
.commonStoreArea .introBox .ttl01 span.jp {
  font-size: clamp(15.2px, 5.278vw, 38px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1578947368;
  display: block;
}
@media (max-width: 768px) {
  .commonStoreArea .introBox .ttl01 span.jp {
    font-size: 2.4rem;
  }
}
.commonStoreArea .introBox .ttl01 span.jp small {
  font-size: clamp(14px, 3.334vw, 24px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.8333333333;
  display: block;
}
@media (max-width: 768px) {
  .commonStoreArea .introBox .ttl01 span.jp small {
    font-size: 1.8rem;
  }
}
.commonStoreArea .introBox p {
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media (max-width: 768px) {
  .commonStoreArea .introBox p {
    font-size: 1.5rem;
  }
}
.commonStoreArea ul {
  gap: 2px;
  margin-top: min(86px,11.944vw);
}
@media (max-width: 480px) {
  .commonStoreArea ul {
    flex-direction: column;
  }
}
.commonStoreArea ul li {
  width: 49.85%;
}
@media (max-width: 480px) {
  .commonStoreArea ul li {
    width: 100%;
  }
}
.commonStoreArea ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.commonStoreArea ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #817F72;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}
.commonStoreArea ul li a figure {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}
.commonStoreArea ul li a figure::before {
  content: "";
  padding-top: 53.33%;
  display: block;
}
@media (max-width: 480px) {
  .commonStoreArea ul li a figure::before {
    padding-top: 64.22%;
  }
}
.commonStoreArea ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.commonStoreArea ul li a p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(14px, 3.888vw, 28px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  z-index: 3;
  text-align: center;
}
@media (max-width: 768px) {
  .commonStoreArea ul li a p {
    font-size: 2rem;
  }
}
.commonStoreArea ul li a p span {
  display: block;
  font-size: clamp(14px, 3.056vw, 22px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .commonStoreArea ul li a p span {
    font-size: 1.4rem;
  }
}
.commonStoreArea ul li a:hover figure img {
  transform: scale(1.1);
}
.commonStoreArea .btnBox {
  margin-top: min(95px,13.194vw);
  align-items: center;
  justify-content: space-between;
}
.commonStoreArea .btnBox .textBox p {
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media (max-width: 1200px) {
  .commonStoreArea .btnBox {
    flex-direction: column;
    margin-top: 40px;
  }
  .commonStoreArea .btnBox .commonBtn {
    margin: 60px 0 0 auto;
  }
}

.commonBusinessArea {
  padding: min(180px,25vw) 0;
  background: #fff;
}
@media (max-width: 768px) {
  .commonBusinessArea {
    padding: 80px 0;
  }
}
.commonBusinessArea h2.ttl01 {
  text-align: center;
}
.commonBusinessArea h2.ttl01 .en {
  font-size: clamp(14px, 2.362vw, 17px);
  font-family: "Lato", serif;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
}
@media (max-width: 768px) {
  .commonBusinessArea h2.ttl01 .en {
    font-size: 1.6rem;
  }
}
.commonBusinessArea h2.ttl01 .jp {
  font-size: clamp(14.4px, 5vw, 36px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.8611111111;
  display: block;
}
@media (max-width: 768px) {
  .commonBusinessArea h2.ttl01 .jp {
    font-size: 2.4rem;
  }
}
.commonBusinessArea .businessListBox {
  margin-top: min(84px,11.666vw);
}
.commonBusinessArea .businessListBox ul {
  gap: 2px;
}
@media (max-width: 768px) {
  .commonBusinessArea .businessListBox ul {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .commonBusinessArea .businessListBox ul {
    flex-direction: column;
  }
}
.commonBusinessArea .businessListBox ul li {
  width: 33.1%;
}
@media (max-width: 768px) {
  .commonBusinessArea .businessListBox ul li {
    width: 49.1%;
  }
}
@media (max-width: 480px) {
  .commonBusinessArea .businessListBox ul li {
    width: 100%;
  }
}
.commonBusinessArea .businessListBox ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.commonBusinessArea .businessListBox ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #817F72;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}
.commonBusinessArea .businessListBox ul li a figure {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}
.commonBusinessArea .businessListBox ul li a figure::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.commonBusinessArea .businessListBox ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.commonBusinessArea .businessListBox ul li a p {
  position: absolute;
  top: 27.67%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .commonBusinessArea .businessListBox ul li a p {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.commonBusinessArea .businessListBox ul li a p span {
  font-size: clamp(14px, 3.888vw, 28px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  word-break: keep-all;
  display: block;
}
@media (max-width: 1200px) {
  .commonBusinessArea .businessListBox ul li a p span {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .commonBusinessArea .businessListBox ul li a p span {
    letter-spacing: 0.4em;
  }
}
.commonBusinessArea .businessListBox ul li a p span.small {
  font-size: clamp(14px, 3.056vw, 22px);
}
@media (max-width: 1200px) {
  .commonBusinessArea .businessListBox ul li a p span.small {
    font-size: 2rem;
  }
}
.commonBusinessArea .businessListBox ul li a p span + span {
  margin-right: 20px;
}
.commonBusinessArea .businessListBox ul li a:hover figure img {
  transform: scale(1.1);
}
.commonBusinessArea .businessDeatailBox {
  margin-top: min(140px,19.444vw);
}
@media (max-width: 768px) {
  .commonBusinessArea .businessDeatailBox {
    margin-top: 80px;
  }
}
.commonBusinessArea .businessDeatailBox .textBox {
  text-align: center;
}
.commonBusinessArea .businessDeatailBox .textBox p.read {
  font-size: clamp(14px, 3.612vw, 26px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 2.5769230769;
}
@media (max-width: 768px) {
  .commonBusinessArea .businessDeatailBox .textBox p.read {
    font-size: 2rem;
    line-height: 1.75;
  }
}
.commonBusinessArea .businessDeatailBox .textBox .text {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .commonBusinessArea .businessDeatailBox .textBox .text {
    margin-top: 40px;
    text-align: left;
  }
}
.commonBusinessArea .businessDeatailBox .textBox .text p {
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media (max-width: 768px) {
  .commonBusinessArea .businessDeatailBox .textBox .text p {
    font-size: 1.5rem;
  }
}
.commonBusinessArea .businessSlider {
  margin: min(110px,15.278vw) auto 0;
  width: 95.83%;
  height: 400px;
}
@media (max-width: 1024px) {
  .commonBusinessArea .businessSlider {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .commonBusinessArea .businessSlider {
    margin-top: 50px;
    height: 550px;
  }
}
@media (max-width: 480px) {
  .commonBusinessArea .businessSlider {
    height: 350px;
  }
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a {
  display: block;
  width: 100%;
  height: auto;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a figure {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a figure::before {
  content: "";
  padding-top: 66.66%;
  display: block;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a p {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3333333333;
  margin-top: 15px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a p {
    font-size: 1.6rem;
    line-height: 1.3125;
  }
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a .category01 span {
  border: 1px solid #53565A;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a .category01 span:not(:last-child) {
  margin-right: 6px;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a .category02 {
  margin-top: 6px;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a .category02 span {
  border: 1px solid #53565A;
  background: #53565A;
  border-radius: 9999px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
  color: #fff;
  margin-bottom: 6px;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a .category02 span:not(:last-child) {
  margin-right: 6px;
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business a:hover figure img {
  transform: scale(1.1);
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business:nth-of-type(odd) {
  margin-top: -50px;
  padding-top: 50px;
}
@media (max-width: 768px) {
  .commonBusinessArea .businessSlider .swiper-business .swiper-slide-business:nth-of-type(odd) {
    margin-top: 35px;
    padding-top: 0;
  }
}
.commonBusinessArea .businessSlider .swiper-business .swiper-slide-business:nth-of-type(even) {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .commonBusinessArea .businessSlider .swiper-business .swiper-slide-business:nth-of-type(even) {
    margin-top: -35px;
    padding-top: 35px;
  }
}
.commonBusinessArea .businessSlider .swiper {
  position: relative;
}
.commonBusinessArea .businessSlider .swiper .swiper-slide {
  transform: translateX(calc(-50% - 25px));
}
@media (max-width: 1024px) {
  .commonBusinessArea .businessSlider .swiper .swiper-slide {
    transform: none;
  }
}
.commonBusinessArea .commonBtn {
  text-align: right;
  margin-top: min(110px,15.278vw);
}
@media (max-width: 768px) {
  .commonBusinessArea .commonBtn {
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .commonBusinessArea .commonBtn {
    padding-bottom: 40px;
  }
}

.commonCertificationArea {
  padding: min(160px,22.222vw) 0 min(180px,25vw);
  background: #fff;
}
@media (max-width: 768px) {
  .commonCertificationArea {
    padding: 50px 0 74px;
  }
}
.commonCertificationArea .certificationInner {
  max-width: 1280px;
  width: 88.89%;
  margin: 0 auto;
  height: auto;
  box-sizing: border-box;
}
.commonCertificationArea .certificationInner ul {
  gap: 1.6%;
}
@media (max-width: 768px) {
  .commonCertificationArea .certificationInner ul {
    justify-content: center;
  }
}
.commonCertificationArea .certificationInner ul li {
  width: 11%;
}
@media (max-width: 768px) {
  .commonCertificationArea .certificationInner ul li {
    width: 23.1%;
    margin-bottom: 20px;
  }
}
.commonCertificationArea .certificationInner ul li figure {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}
.commonCertificationArea .certificationInner ul li figure::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.commonCertificationArea .certificationInner ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* 検索ダイアログのスタイル */
.searchDialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.searchDialog.active {
  opacity: 1;
  visibility: visible;
}

.searchDialogInner {
  width: 90%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.searchDialogHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.searchDialogHeader h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.closeSearchDialog {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.closeSearchDialog span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #333;
  top: 50%;
  left: 0;
}

.closeSearchDialog span:first-child {
  transform: rotate(45deg);
}

.closeSearchDialog span:last-child {
  transform: rotate(-45deg);
}

.searchDialogContent {
  width: 100%;
}

/* 検索フォームのスタイル */
.search-form {
  width: 100%;
}

.search-form-inner {
  display: flex;
  border: 2px solid #333;
  border-radius: 4px;
  overflow: hidden;
}

.search-field {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-submit {
  background-color: #333;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-submit img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

/* 検索結果ページのスタイル */
.searchResultWrap {
  padding: min(80px,11.112vw) 0 min(140px,19.444vw);
}

.searchQueryBox {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #53565A;
}

.searchQuery {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.searchFormBox {
  max-width: 600px;
}

.resultCount {
  margin-bottom: 30px;
  font-size: 16px;
  color: #807F81;
}

.searchResultList {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2.82%;
  row-gap: min(80px,11.112vw);
  display: flex;
  flex-wrap: wrap;
}

.searchResultItem {
  width: 31.45%;
}
@media (max-width: 768px) {
  .searchResultItem {
    width: 45%;
  }
}

.searchResultItem:last-child {
  border-bottom: none;
}

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

.resultItemImage {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  margin-bottom: 18px;
}
.resultItemImage::before {
  content: "";
  padding-top: 60%;
  display: block;
}
.resultItemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.resultItemContent {
  flex: 1;
}

.resultItemMeta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.resultItemDate,
.resultItemType,
.resultItemCategory {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.resultItemType {
  border: 1px solid #53565A;
  border-radius: 9999px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 19px;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
}

.resultItemCategory {
  background: #53565A;
  border-radius: 9999px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 19px;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
  color: #fff;
}

.resultItemTitle {
  font-size: 1.7rem;
  font-weight: 500;
  margin: 10px 0;
  line-height: 1.4;
}

.resultItemExcerpt {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
}

.noResults {
  padding: 40px 0;
  text-align: center;
}

.searchTips {
  margin-top: 30px;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.searchTips p {
  font-weight: 500;
  margin-bottom: 10px;
}

.searchTips ul {
  padding-left: 20px;
}

.searchTips li {
  margin-bottom: 5px;
}

/* ダイアログ表示時のbodyスタイル */
body.dialog-open {
  overflow: hidden;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .searchDialogInner {
    padding: 20px;
  }
}
.pagination {
  margin-top: min(140px,19.444vw);
  text-align: center;
}
.pagination span {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-block;
  padding: 0 1em;
}
.pagination span.current::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 1px;
  background-color: #53565A;
  display: block;
}
.pagination a {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.3s;
  display: inline-block;
  padding: 0 1em;
  position: relative;
}
.pagination a:hover::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 1px;
  background-color: #53565A;
  display: block;
}

.js_blur {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.img-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*==========================================================
	header
==========================================================*/
header {
  margin: auto;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 10;
  background: rgba(242, 242, 238, 0.8);
  height: 100px;
  transition: transform 0.3s ease-out;
}
@media (max-width: 1200px) {
  header {
    margin-bottom: -70px;
    height: 72px;
  }
}
header .headerInner {
  max-width: 1350px;
  width: 93.75%;
  margin: auto;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 1200px) {
  header .headerInner {
    padding: min(16px,2.222vw) min(78px,10.834vw) min(16px,2.222vw) 2vw;
  }
}
@media (max-width: 768px) {
  header .headerInner {
    padding: 0;
    width: 87.2%;
    margin: 0 6.4%;
    height: auto;
  }
}
header #hlogo {
  margin: 0;
  width: 210px;
  height: 40px;
  margin-bottom: 27px;
  align-self: flex-end;
}
@media (max-width: 1200px) {
  header #hlogo {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  header #hlogo {
    width: 140px;
    height: 27px;
    text-align: center;
    margin-top: 23px;
  }
  header #hlogo img {
    width: auto;
    height: 100%;
  }
}
header #gnaviWrap {
  margin: auto 0 0 5.5%;
}
@media (max-width: 1380px) {
  header #gnaviWrap {
    margin-left: 3.5%;
  }
}
@media (max-width: 1200px) {
  header #gnaviWrap {
    display: none;
  }
}
header #gnaviWrap ul {
  margin-right: max(-25px,-3.472vw);
}
header #gnaviWrap ul li.gnaviItem:not(:last-of-type) {
  align-self: flex-end;
}
header #gnaviWrap ul li.gnaviItem a {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  position: relative;
  padding: min(30px,4.166vw) 29px min(30px,4.166vw) 19px;
  display: block;
}
@media (max-width: 1440px) {
  header #gnaviWrap ul li.gnaviItem a {
    padding: min(30px,4.166vw) 2.43vw min(30px,4.166vw) 1.53vw;
    font-size: 1.4rem;
  }
}
@media (max-width: 1380px) {
  header #gnaviWrap ul li.gnaviItem a {
    padding: min(30px,4.166vw) 2.2vw min(30px,4.166vw) 1.2vw;
  }
}
@media (max-width: 1300px) {
  header #gnaviWrap ul li.gnaviItem a {
    padding: min(30px,4.166vw) 1.8vw min(30px,4.166vw) 1.2vw;
  }
}
header #gnaviWrap ul li.gnaviItem a:hover {
  background: #fff;
}
header #gnaviWrap ul li.gnaviItem a span {
  display: block;
  position: relative;
}
header #gnaviWrap ul li.gnaviItem a span::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #53565A transparent transparent transparent;
  position: absolute;
  top: 0;
  left: auto;
  display: block;
  right: -15px;
  bottom: 0;
  margin: auto;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap {
  width: 100%;
  background: #FFFFFF;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner {
  padding: 50px 0;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuHeadbox {
  width: 19.11%;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuHeadbox h1 span {
  display: block;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuHeadbox h1 span.en {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-family: "Lato", serif;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuHeadbox h1 span.jp {
  font-size: clamp(14px, 3.612vw, 26px);
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuHeadbox h1 span.jp {
    font-size: 2.4rem;
  }
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList {
  box-sizing: border-box;
  width: 77.18%;
  column-gap: 8.25%;
  row-gap: 48px;
  align-self: center;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList li {
  width: 18.81%;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList li a {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList li a figure {
  width: 100%;
  position: relative;
  overflow: hidden;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList li a figure::before {
  content: "";
  padding-top: 55.56%;
  display: block;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList li a p {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 2.5333333333;
  white-space: nowrap;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList li a:hover figure img {
  transform: scale(1.1);
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList.serviceList li {
  width: fit-content;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList.products li a p {
  white-space: nowrap;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList.text li a p {
  position: relative;
  padding-left: 1.5em;
}
header #gnaviWrap ul li.gnaviItem.parentMenu .submenuWrap .submenuInner .submenuList.text li a p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.75em;
  height: 1px;
  background: #53565A;
}
header #gnaviWrap ul li.gnaviItem.parentMenu:hover .submenuWrap {
  display: block;
}
header #gnaviWrap ul li.otherItem {
  align-self: center;
  margin-bottom: 17px;
  margin-left: min(30px,4.166vw);
}
@media (max-width: 1200px) {
  header #gnaviWrap ul li.otherItem {
    display: none;
  }
}
header #gnaviWrap ul li.otherItem .searchLang {
  align-items: center;
  justify-content: center;
  height: 16px;
  line-height: 16px;
}
header #gnaviWrap ul li.otherItem .searchLang .search {
  margin-right: 22px;
}
header #gnaviWrap ul li.otherItem .searchLang .search i {
  display: block;
}
header #gnaviWrap ul li.otherItem .searchLang .lang {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
header #gnaviWrap ul li.otherItem .searchLang .lang i {
  display: inline-block;
  margin-right: 6px;
}
header #gnaviWrap ul li.otherItem .onlineShop {
  margin-top: 8px;
}
header #gnaviWrap ul li.otherItem .onlineShop a {
  display: block;
  border-radius: 19px;
  border: 1px solid #53565A;
  width: 100%;
  height: 37px;
  line-height: 35px;
  padding: 0 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header #gnaviWrap ul li.otherItem .onlineShop a span {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header #gnaviWrap ul li.otherItem .onlineShop a:hover {
  background: #53565A;
}
header #gnaviWrap ul li.otherItem .onlineShop a:hover span {
  color: #fff;
}
@media (max-width: 1200px) {
  header #gnaviWrap {
    margin: auto 0 auto auto;
    width: 82%;
  }
  header #gnaviWrap ul {
    margin-bottom: -5px;
  }
  header #gnaviWrap ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  header #gnaviWrap {
    display: none;
  }
}
header.is-hidden {
  transform: translateY(-100%);
}

/* ドロワー */
#drawerWrap {
  width: 100%;
  height: auto;
  height: 100dvh;
  max-height: 100dvh;
  background: #807F81;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 40;
  box-sizing: content-box;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#drawerWrap.open {
  right: 0;
}
#drawerWrap .mainMenu {
  padding: min(140px,19.444vw) 0 min(90px,12.5vw);
}
#drawerWrap .mainMenu > ul {
  justify-content: space-between;
}
#drawerWrap .mainMenu > ul + ul {
  margin-top: 20px;
  align-items: end;
  justify-content: space-between;
}
#drawerWrap .mainMenu > ul li a {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
}
#drawerWrap .mainMenu > ul li.parent {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
#drawerWrap .mainMenu > ul li.parent .submenu {
  margin-top: 12px;
}
#drawerWrap .mainMenu > ul li.parent .submenu li + li {
  margin: 0;
}
#drawerWrap .mainMenu > ul li.parent .submenu a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  position: relative;
  padding-left: 1em;
  line-height: 2.8571428571;
  display: block;
  letter-spacing: 0.03em;
}
#drawerWrap .mainMenu > ul li.parent .submenu a::before {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  height: 1px;
  width: 0.75em;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#drawerWrap .mainMenu > ul li.parent .parentmenu li a {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
#drawerWrap .mainMenu > ul li.parent .parentmenu li + li {
  margin-top: 1em;
  margin-left: 0;
}
#drawerWrap .mainMenu > ul li.parent .parentmenu li.privacy {
  margin-top: min(40px,5.556vw);
}
#drawerWrap .mainMenu > ul li.parent .parentmenu li.privacy a {
  color: rgba(242, 242, 238, 0.8);
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
#drawerWrap .mainMenu > ul li .onlineLink {
  margin-left: auto;
  width: 156px;
  height: 37px;
  line-height: 37px;
}
@media (max-width: 768px) {
  #drawerWrap .mainMenu > ul li .onlineLink {
    margin-top: 50px;
    margin-left: 15px;
  }
}
#drawerWrap .mainMenu > ul li .onlineLink a {
  border-radius: 19px;
  border: 1px solid #53565A;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  #drawerWrap .mainMenu > ul li .onlineLink a {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
#drawerWrap .mainMenu > ul li ul.snsLink {
  justify-content: center;
}
@media (max-width: 768px) {
  #drawerWrap .mainMenu > ul li ul.snsLink {
    margin-top: 50px;
    justify-content: flex-start;
  }
}
#drawerWrap .mainMenu > ul li ul.snsLink li:not(#drawerWrap .mainMenu > ul li ul.snsLink li.line) img {
  filter: brightness(0) invert(1);
}
#drawerWrap .mainMenu > ul li ul.snsLink li + li {
  margin-left: 19px;
}
#drawerWrap .mainMenu > ul li .contactLink {
  width: 156px;
  height: 37px;
  line-height: 37px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #drawerWrap .mainMenu > ul li .contactLink {
    margin-top: 50px;
  }
}
#drawerWrap .mainMenu > ul li .contactLink a {
  border-radius: 19px;
  background: #53565A;
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  #drawerWrap .mainMenu > ul li .contactLink a {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
#drawerWrap .mainMenu > ul li .contactLink a:hover {
  background: #fff;
  color: #53565A;
}
#drawerWrap .mainMenu > ul.linkList {
  justify-content: flex-end;
  margin-top: min(75px,10.416vw);
}
#drawerWrap .mainMenu > ul.linkList .onlineLink {
  width: 270px;
  height: 50px;
  line-height: 50px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  #drawerWrap .mainMenu > ul.linkList .onlineLink {
    margin-top: 50px;
    margin-left: 15px;
  }
}
#drawerWrap .mainMenu > ul.linkList .onlineLink a {
  border-radius: 25px;
  border: 1px solid #fff;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  #drawerWrap .mainMenu > ul.linkList .onlineLink a {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
#drawerWrap .mainMenu > ul.linkList .onlineLink a:hover {
  background: #53565A;
  color: #fff;
  border: 1px solid #53565A;
}
#drawerWrap .mainMenu > ul.linkList .contactLink {
  width: 270px;
  height: 50px;
  line-height: 50px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #drawerWrap .mainMenu > ul.linkList .contactLink {
    margin-top: 50px;
  }
}
#drawerWrap .mainMenu > ul.linkList .contactLink a {
  border-radius: 25px;
  background: #53565A;
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  #drawerWrap .mainMenu > ul.linkList .contactLink a {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
#drawerWrap .subMenu {
  margin: min(95px,13.194vw) auto 0;
  padding-top: 16px;
  width: 90%;
  max-width: 610px;
  border-top: 1px solid #000000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#drawerWrap .subMenu .menuLink {
  margin-right: min(40px,5.556vw);
  width: 100%;
}
#drawerWrap .subMenu .menuLink li {
  line-height: 1.2;
}
#drawerWrap .subMenu .menuLink li a {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
#drawerWrap .subMenu .menuLink li a .nwin {
  margin-left: 8px;
  width: 13px;
  height: 13px;
  background: url("../img/icon/newwin.svg") no-repeat center center/contain;
  display: inline-block;
}
#drawerWrap .subMenu .snsLink {
  margin: 0 0 0 auto;
  width: 90px;
}
#drawerWrap .subMenu .snsLink li img {
  vertical-align: middle;
}
#drawerWrap .subMenu .snsLink li + li {
  margin-left: 20px;
}
@media (max-width: 1200px) {
  #drawerWrap {
    width: 85%;
    right: -90vw;
  }
  #drawerWrap .mainMenu > ul {
    gap: 10%;
    row-gap: 40px;
  }
  #drawerWrap .mainMenu > ul li.parent {
    width: 45%;
  }
  #drawerWrap .mainMenu > ul li.parent + li {
    margin-left: 0;
  }
  #drawerWrap .mainMenu > ul.linkList {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  #drawerWrap .mainMenu > ul.linkList li {
    margin-left: 0;
  }
  #drawerWrap .mainMenu > ul.linkList li ul.snsLink {
    gap: 0;
  }
  #drawerWrap .mainMenu > ul.linkList li ul.snsLink li {
    width: auto;
  }
}
@media (max-width: 768px) {
  #drawerWrap .subMenu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #drawerWrap .subMenu .menuLink {
    margin-right: 0;
    width: 100%;
  }
  #drawerWrap .subMenu .snsLink {
    margin: 10px 0 0 auto;
  }
}
@media (max-width: 480px) {
  #drawerWrap {
    width: 95%;
    right: -100vw;
  }
  #drawerWrap .mainMenu > ul {
    row-gap: 25px;
  }
  #drawerWrap .mainMenu > ul li.parent {
    width: 100%;
  }
  #drawerWrap .mainMenu > ul li.parent a {
    font-size: 1.8rem;
  }
  #drawerWrap .mainMenu > ul li.parent ul.parentmenu li {
    width: 100%;
  }
  #drawerWrap .mainMenu > ul li.parent ul.parentmenu li a {
    font-size: 1.6rem;
  }
  #drawerWrap .mainMenu > ul li.parent ul.parentmenu li + li {
    margin-top: 0.5em;
  }
  #drawerWrap .mainMenu > ul li.parent .submenu a {
    line-height: 1.85;
  }
  #drawerWrap .mainMenu > ul.linkList {
    margin-top: 45px;
  }
  #drawerWrap .mainMenu > ul.linkList .onlineLink {
    margin-top: 0;
    align-self: flex-start;
    margin-left: 0;
  }
  #drawerWrap .mainMenu > ul.linkList .contactLink {
    margin-top: 30px;
  }
  #drawerWrap .mainMenu > ul.linkList li ul.snsLink {
    margin-top: 0;
  }
}

/*============================================================================
	drawer menuBtn
=============================================================================*/
.menuBtn {
  margin: auto 0;
  color: #53565A;
  width: 24px;
  height: 14px;
  background: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  outline: 0;
  border: none;
  position: fixed;
  top: min(54px,7.5vw);
  right: calc((100vw - 1350px) / 2);
  z-index: 50;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.menuBtn:hover {
  cursor: pointer;
}
.menuBtn .drawer-hamburger-icon {
  margin: 0;
  width: 20px;
  height: 1px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #53565A;
  position: relative;
  display: block;
}
.menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:before, .menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:after {
  content: "";
  width: 20px;
  height: 1px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #53565A;
  position: absolute;
  left: 0;
}
.menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:before {
  top: -6px;
}
.menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:after {
  top: 6px;
}
.menuBtn.close .drawer-hamburger-icon {
  background-color: transparent;
}
.menuBtn.close .drawer-hamburger-icon.drawer-hamburger-icon:before, .menuBtn.close .drawer-hamburger-icon.drawer-hamburger-icon:after {
  top: 0;
}
.menuBtn.close .drawer-hamburger-icon.drawer-hamburger-icon:before {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  background: #fff;
}
.menuBtn.close .drawer-hamburger-icon.drawer-hamburger-icon:after {
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
  background: #fff;
}
.menuBtn.cross .drawer-hamburger-icon.drawer-hamburger-icon:before, .menuBtn.cross .drawer-hamburger-icon.drawer-hamburger-icon:after {
  background: #FFFFFF;
}
@media (max-width: 1350px) {
  .menuBtn {
    right: 3.13%;
  }
}
@media (max-width: 1200px) {
  .menuBtn {
    top: 30px;
    right: 4%;
  }
}
@media (max-width: 768px) {
  .menuBtn {
    right: 6.4%;
  }
}
.menuBtn.is-hidden {
  top: -100%;
}

/*==========================================================
	footer
==========================================================*/
footer {
  padding: min(110px,15.278vw) 0 min(100px,13.888vw);
  width: 100%;
}
footer #finner01 .flogo {
  width: 210px;
}
footer #finner01 nav {
  margin-top: min(80px,11.112vw);
}
footer #finner01 nav > ul.mainLink li.parent {
  width: 220px;
  margin-left: 0;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul.mainLink li.parent {
    width: 100%;
  }
}
footer #finner01 nav > ul + ul {
  margin-top: 20px;
  align-items: end;
}
footer #finner01 nav > ul + ul.blogLink {
  margin-top: 60px;
  justify-content: flex-start;
  margin-bottom: 0;
}
footer #finner01 nav > ul + ul.blogLink li {
  width: 220px;
}
footer #finner01 nav > ul + ul.blogLink li + li {
  margin-left: 0;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul + ul.blogLink {
    margin-bottom: 0;
    margin-top: 20px;
  }
  footer #finner01 nav > ul + ul.blogLink li {
    width: 100%;
  }
}
footer #finner01 nav > ul + ul.footerLink {
  position: relative;
  margin-top: 30px;
  padding-right: 156px;
}
footer #finner01 nav > ul + ul.footerLink li {
  width: 220px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul + ul.footerLink li {
    margin-bottom: 0;
    width: 100%;
  }
}
footer #finner01 nav > ul + ul.footerLink li + li {
  margin-left: 0;
}
footer #finner01 nav > ul + ul.footerLink li.privacyLink {
  width: 180px;
}
footer #finner01 nav > ul + ul.footerLink li.privacyLink a {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul + ul.footerLink {
    margin-top: 20px;
    padding-right: 0;
  }
}
footer #finner01 nav > ul + ul.footerLink li.snsLinkBox {
  position: absolute;
  right: 0;
  top: -60px;
  width: 155px;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul + ul.footerLink li.snsLinkBox {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 50px;
    margin-bottom: 0;
    width: 100%;
  }
}
footer #finner01 nav > ul + ul.footerLink li.snsLinkBox ul.snsLink li {
  width: fit-content;
  margin-bottom: 0;
}
footer #finner01 nav > ul li a {
  font-weight: 600;
  letter-spacing: 0.06em;
}
footer #finner01 nav > ul li + li {
  margin-left: min(60px,8.334vw);
}
@media (max-width: 1024px) {
  footer #finner01 nav > ul li.parent {
    margin-bottom: 20px;
  }
}
footer #finner01 nav > ul li.parent .submenu {
  margin-top: 12px;
}
footer #finner01 nav > ul li.parent .submenu li + li {
  margin: 5px 0 0 0;
}
footer #finner01 nav > ul li.parent .submenu a {
  color: #53565A;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  position: relative;
  padding-left: 1em;
  display: block;
  letter-spacing: 0.06em;
}
footer #finner01 nav > ul li.parent .submenu a::before {
  content: "";
  position: absolute;
  display: block;
  background: #53565A;
  height: 1px;
  width: 0.75em;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer #finner01 nav > ul li .onlineLink {
  margin-left: auto;
  width: 156px;
  height: 37px;
  line-height: 37px;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul li .onlineLink {
    margin-top: 50px;
    margin-left: 15px;
  }
}
footer #finner01 nav > ul li .onlineLink a {
  border-radius: 19px;
  border: 1px solid #53565A;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul li .onlineLink a {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
footer #finner01 nav > ul li ul.snsLink {
  justify-content: center;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul li ul.snsLink {
    margin-top: 50px;
    justify-content: flex-start;
  }
}
footer #finner01 nav > ul li ul.snsLink li + li {
  margin-left: 12px;
}
footer #finner01 nav > ul li .contactLink {
  width: 156px;
  height: 37px;
  line-height: 37px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul li .contactLink {
    margin-top: 50px;
  }
}
footer #finner01 nav > ul li .contactLink a {
  border-radius: 19px;
  background: #53565A;
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  footer #finner01 nav > ul li .contactLink a {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
footer #finner01 .onlineLink {
  margin-left: auto;
  width: 156px;
  height: 37px;
  line-height: 37px;
}
@media (max-width: 768px) {
  footer #finner01 .onlineLink {
    margin-top: 50px;
    margin-left: 15px;
  }
}
footer #finner01 .onlineLink a {
  border-radius: 19px;
  border: 1px solid #53565A;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  footer #finner01 .onlineLink a {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
footer #finner01 .contactLink {
  width: 156px;
  height: 37px;
  line-height: 37px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  footer #finner01 .contactLink {
    margin-top: 50px;
  }
}
footer #finner01 .contactLink a {
  border-radius: 19px;
  background: #53565A;
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  footer #finner01 .contactLink a {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
footer #finner01 .smpLinkBox {
  display: none;
}
@media (max-width: 768px) {
  footer #finner01 .smpLinkBox {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
footer #finner01 .copyright {
  margin: min(30px,4.166vw) 0 0 auto;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: right;
}
@media (max-width: 768px) {
  footer #finner01 .copyright {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.8;
    margin: 50px 0 0;
    text-align: left;
  }
}
@media (max-width: 1024px) {
  footer #finner01 nav {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  footer #finner01 nav {
    margin-top: 50px;
  }
  footer #finner01 nav > ul {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    display: block;
  }
  footer #finner01 nav > ul.series {
    margin-top: 20px;
  }
  footer #finner01 nav > ul li + li {
    margin-left: 0;
    margin-top: 20px;
  }
  footer #finner01 nav > ul li.parent {
    position: relative;
  }
  footer #finner01 nav > ul li.parent a {
    padding-right: 20px;
    box-sizing: border-box;
    font-size: 1.4rem;
  }
  footer #finner01 nav > ul li.parent::after {
    content: "＋";
    width: auto;
    height: auto;
    border: none;
    position: absolute;
    right: -13px;
    top: 0.5em;
    color: #53565A;
    display: block;
    transform: translateY(-50%);
    transition: transform 0.3s;
    cursor: pointer;
    padding: 10px;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  }
  footer #finner01 nav > ul li.parent.is-open::after {
    content: "−";
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  }
  footer #finner01 nav > ul li.parent.is-open ul.submenu {
    display: block;
    padding-left: 1.5em;
  }
  footer #finner01 nav > ul li.parent ul.submenu {
    display: none;
  }
  footer #finner01 nav > ul li ul.snsLink li + li {
    margin-top: 0;
  }
}
footer #finner02 {
  margin-top: min(45px,6.25vw);
}
footer #finner02 .snsLink {
  margin: 0 auto 17px;
  padding-bottom: min(40px,5.556vw);
  width: 100%;
  border-bottom: 1px solid #000000;
}
footer #finner02 .snsLink li img {
  vertical-align: middle;
}
footer #finner02 .snsLink li + li {
  margin-left: 12px;
}
footer #finner02 nav {
  width: 65%;
  max-width: 540px;
}
footer #finner02 nav li {
  line-height: 1.2;
}
footer #finner02 nav li a {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
footer #finner02 nav li a .nwin {
  margin-left: 8px;
  width: 13px;
  height: 13px;
  background: url("../img/icon/newwin.svg") no-repeat center center/contain;
  display: inline-block;
}
footer #finner02 .splogo {
  margin: auto;
  text-align: center;
  display: none;
}
footer #finner02 .copyright {
  margin: 0 0 0 auto;
  font-size: 1.2rem;
  font-weight: 400;
  width: 30%;
  text-align: right;
}
@media (max-width: 1024px) {
  footer #finner02 .snsLink {
    margin: 40px auto 0;
    padding: 60px 0 0;
    border-top: 1px solid #000000;
    border-bottom: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-order: 2;
    order: 2;
  }
  footer #finner02 nav {
    width: 100%;
    max-width: none;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    order: 1;
  }
  footer #finner02 .splogo {
    margin: 40px auto;
    display: block;
    -webkit-order: 3;
    -moz-order: 3;
    -ms-order: 3;
    order: 3;
  }
  footer #finner02 .copyright {
    width: 100%;
    text-align: center;
    -webkit-order: 4;
    -moz-order: 4;
    -ms-order: 4;
    order: 4;
  }
}
@media (max-width: 480px) {
  footer #finner02 nav li + li {
    margin-top: 15px;
  }
}
footer .footerCatch {
  margin: min(60px,8.334vw) auto 0;
  width: 100%;
  display: block;
}
footer .footerCatch source, footer .footerCatch img {
  width: 100%;
  max-width: none;
}
@media (max-width: 480px) {
  footer {
    padding: 60px 0 30px;
  }
}

/*==========================================================
	sidebar
==========================================================*/
.snsSidebar {
  position: fixed;
  bottom: 20px;
  left: 13px;
  right: auto;
  z-index: 30;
  width: fit-content;
  height: auto;
  transition: none;
}
@media (max-width: 480px) {
  .snsSidebar {
    display: none;
  }
}
.snsSidebar ul li + li {
  margin-top: 12px;
}
.snsSidebar.is-hidden {
  display: none;
}

/*==========================================================
	common
==========================================================*/
.entryPager {
  margin: min(40px,5.556vw) auto 0;
}
@media (max-width: 480px) {
  .entryPager {
    margin-top: min(80px,11.112vw);
  }
}
.entryPager li {
  width: 140px;
}
.entryPager li a, .entryPager li span {
  font-weight: 700;
  position: relative;
}
.entryPager li a i, .entryPager li span i {
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
}
.entryPager li span {
  opacity: 0.3;
}
.entryPager li.prev a, .entryPager li.prev span {
  padding-left: 50px;
}
.entryPager li.prev a i, .entryPager li.prev span i {
  background: url("../img/icon/arrow_l.svg") no-repeat center center/contain;
  left: 0;
  right: auto;
}
.entryPager li.next {
  text-align: right;
}
.entryPager li.next a, .entryPager li.next span {
  padding-right: 50px;
}
.entryPager li.next a i, .entryPager li.next span i {
  background: url("../img/icon/arrow_r.svg") no-repeat center center/contain;
  left: auto;
  right: 0;
}

.moreBtn {
  width: 64%;
  max-width: 284px;
}
.moreBtn a {
  padding: 26px;
  width: 100%;
  height: 80px;
  background: #000000;
  border-radius: 40px;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.moreBtn a span {
  color: #FFFFFF;
  line-height: 28px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.moreBtn a .arrow {
  margin: auto;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: auto;
  right: 20px;
  bottom: 0;
}
.moreBtn a .arrow svg {
  width: 100%;
  height: 100%;
}
.moreBtn a .arrow svg .cls-1 {
  fill: none;
  stroke: #FFFFFF;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}
.moreBtn a:hover {
  background: rgba(0, 0, 0, 0.7);
}
.moreBtn a:hover span {
  transform: translateX(10px);
}
.moreBtn a:hover .arrow svg line {
  -webkit-animation: animate-svg-stroke-1 0.6s ease-in-out 0s both;
  animation: animate-svg-stroke-1 0.6s ease-in-out 0s both;
}
.moreBtn a:hover .arrow svg path {
  -webkit-animation: animate-svg-stroke-2 0.6s ease-in-out 0.4s both;
  animation: animate-svg-stroke-2 0.6s ease-in-out 0.4s both;
}
.moreBtn a:hover .arrow svg circle {
  -webkit-animation: animate-svg-stroke-3 0.6s ease-in-out 0.8s both;
  animation: animate-svg-stroke-3 0.6s ease-in-out 0.8s both;
}
@media (max-width: 480px) {
  .moreBtn a {
    padding: 16px;
    height: 60px;
    border-radius: 30px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 16px;
    stroke-dasharray: 16px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 16px;
  }
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 17.5710124969px;
    stroke-dasharray: 17.5710124969px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 17.5710124969px;
  }
}
@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 89.9645943005px;
    stroke-dasharray: 89.9645943005px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 89.9645943005px;
  }
}
/*==========================================================
	regulation
==========================================================*/
/*============================================================================
	調整用
=============================================================================*/
.fl {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}

.fl-tab {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 1024px) {
  .fl-tab {
    display: block;
  }
}

.fl-smp {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 480px) {
  .fl-smp {
    display: block;
  }
}

.fl-jst {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fl-cen {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fl-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fl-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fl-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fl-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.mt0 {
  margin-top: min(0vw,0px) !important;
}

.mb0 {
  margin-bottom: min(0vw,0px) !important;
}

.pt0 {
  padding-top: min(0vw,0px) !important;
}

.pb0 {
  padding-bottom: min(0vw,0px) !important;
}

.mt10 {
  margin-top: min(3vw,10px) !important;
}

.mb10 {
  margin-bottom: min(3vw,10px) !important;
}

.pt10 {
  padding-top: min(3vw,10px) !important;
}

.pb10 {
  padding-bottom: min(3vw,10px) !important;
}

.mt20 {
  margin-top: min(6vw,20px) !important;
}

.mb20 {
  margin-bottom: min(6vw,20px) !important;
}

.pt20 {
  padding-top: min(6vw,20px) !important;
}

.pb20 {
  padding-bottom: min(6vw,20px) !important;
}

.mt30 {
  margin-top: min(9vw,30px) !important;
}

.mb30 {
  margin-bottom: min(9vw,30px) !important;
}

.pt30 {
  padding-top: min(9vw,30px) !important;
}

.pb30 {
  padding-bottom: min(9vw,30px) !important;
}

.mt40 {
  margin-top: min(12vw,40px) !important;
}

.mb40 {
  margin-bottom: min(12vw,40px) !important;
}

.pt40 {
  padding-top: min(12vw,40px) !important;
}

.pb40 {
  padding-bottom: min(12vw,40px) !important;
}

.mt50 {
  margin-top: min(15vw,50px) !important;
}

.mb50 {
  margin-bottom: min(15vw,50px) !important;
}

.pt50 {
  padding-top: min(15vw,50px) !important;
}

.pb50 {
  padding-bottom: min(15vw,50px) !important;
}

.mt60 {
  margin-top: min(18vw,60px) !important;
}

.mb60 {
  margin-bottom: min(18vw,60px) !important;
}

.pt60 {
  padding-top: min(18vw,60px) !important;
}

.pb60 {
  padding-bottom: min(18vw,60px) !important;
}

.mt70 {
  margin-top: min(21vw,70px) !important;
}

.mb70 {
  margin-bottom: min(21vw,70px) !important;
}

.pt70 {
  padding-top: min(21vw,70px) !important;
}

.pb70 {
  padding-bottom: min(21vw,70px) !important;
}

.mt80 {
  margin-top: min(24vw,80px) !important;
}

.mb80 {
  margin-bottom: min(24vw,80px) !important;
}

.pt80 {
  padding-top: min(24vw,80px) !important;
}

.pb80 {
  padding-bottom: min(24vw,80px) !important;
}

.mt90 {
  margin-top: min(27vw,90px) !important;
}

.mb90 {
  margin-bottom: min(27vw,90px) !important;
}

.pt90 {
  padding-top: min(27vw,90px) !important;
}

.pb90 {
  padding-bottom: min(27vw,90px) !important;
}

.mt100 {
  margin-top: min(30vw,100px) !important;
}

.mb100 {
  margin-bottom: min(30vw,100px) !important;
}

.pt100 {
  padding-top: min(30vw,100px) !important;
}

.pb100 {
  padding-bottom: min(30vw,100px) !important;
}

br {
  display: inline;
}
@media (min-width: 1201px) {
  br.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  br.showTab {
    display: none !important;
  }
}
@media (min-width: 769px) {
  br.show768 {
    display: none !important;
  }
}
@media (min-width: 481px) {
  br.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  br.hdnPC {
    display: none;
  }
  br.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  br.hdnTab {
    display: none;
  }
  br.showTab {
    display: inherit;
  }
}
@media (max-width: 768px) {
  br.hdn768 {
    display: none;
  }
  br.show768 {
    display: inherit;
  }
}
@media (max-width: 480px) {
  br.hdnSP {
    display: none;
  }
  br.showSP {
    display: inherit;
  }
}

span {
  display: inline-block;
}
@media (min-width: 1201px) {
  span.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  span.showTab {
    display: none !important;
  }
}
@media (min-width: 769px) {
  span.show768 {
    display: none !important;
  }
}
@media (min-width: 481px) {
  span.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  span.hdnPC {
    display: none !important;
  }
  span.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  span.hdnTab {
    display: none !important;
  }
  span.showTab {
    display: inherit;
  }
}
@media (max-width: 768px) {
  span.hdn768 {
    display: none !important;
  }
  span.show768 {
    display: inherit;
  }
}
@media (max-width: 480px) {
  span.hdnSP {
    display: none !important;
  }
  span.showSP {
    display: inherit;
  }
}

p, div, figure, ul {
  display: block;
}
@media (min-width: 1201px) {
  p.showPC, div.showPC, figure.showPC, ul.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  p.showTab, div.showTab, figure.showTab, ul.showTab {
    display: none !important;
  }
}
@media (min-width: 769px) {
  p.show768, div.show768, figure.show768, ul.show768 {
    display: none !important;
  }
}
@media (min-width: 481px) {
  p.showSP, div.showSP, figure.showSP, ul.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  p.hdnPC, div.hdnPC, figure.hdnPC, ul.hdnPC {
    display: none !important;
  }
  p.showPC, div.showPC, figure.showPC, ul.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  p.hdnTab, div.hdnTab, figure.hdnTab, ul.hdnTab {
    display: none !important;
  }
  p.showTab, div.showTab, figure.showTab, ul.showTab {
    display: inherit;
  }
}
@media (max-width: 768px) {
  p.hdn768, div.hdn768, figure.hdn768, ul.hdn768 {
    display: none !important;
  }
  p.show768, div.show768, figure.show768, ul.show768 {
    display: inherit;
  }
}
@media (max-width: 480px) {
  p.hdnSP, div.hdnSP, figure.hdnSP, ul.hdnSP {
    display: none !important;
  }
  p.showSP, div.showSP, figure.showSP, ul.showSP {
    display: inherit;
  }
}

li {
  display: list-item;
}
@media (min-width: 1201px) {
  li.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  li.showTab {
    display: none !important;
  }
}
@media (min-width: 769px) {
  li.show768 {
    display: none !important;
  }
}
@media (min-width: 481px) {
  li.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  li.hdnPC {
    display: none !important;
  }
  li.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  li.hdnTab {
    display: none !important;
  }
  li.showTab {
    display: inherit;
  }
}
@media (max-width: 768px) {
  li.hdn768 {
    display: none !important;
  }
  li.show768 {
    display: inherit;
  }
}
@media (max-width: 480px) {
  li.hdnSP {
    display: none !important;
  }
  li.showSP {
    display: inherit;
  }
}

.ta_cnt {
  text-align: center;
}

.ta_right {
  text-align: right;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}