@charset "UTF-8";
/* ========================================================
	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;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/*==========================================================
	common
==========================================================*/
html {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-size: 62.5%;
  font-weight: 500;
  color: #1C1C1C;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  background: url(../img/lp/bg.png) repeat center center/contain;
}
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: #1C1C1C;
  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;
}

.container {
  margin: 0 auto;
  max-width: 1245px;
  width: 90%;
  height: auto;
}
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 6.11%;
  }
}

.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
==========================================================*/
.header01 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 105px;
  transition: all 0.3s;
}
@media (min-width: 1025px) {
  .header01.scl {
    background: rgba(255, 255, 255, 0.8);
  }
}
@media (max-width: 1024px) {
  .header01 {
    height: 50px;
    background: none;
  }
  .header01::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 210;
  }
}
.header01 .logoBox {
  flex-shrink: 0;
  width: 317px;
  margin: 0 0 0 30px;
}
@media (max-width: 1024px) {
  .header01 .logoBox {
    width: 230px;
    margin-left: 10px;
    z-index: 250;
  }
}
.header01 .logoBox a {
  display: block;
}
.header01 .menuBox {
  margin: 0 60px 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header01 .menuBox {
    display: none;
    margin: 0;
    padding: 0;
  }
}
.header01 .gnaviList01 {
  font-size: clamp(14px, 1.944vw, 14px);
  display: flex;
  align-items: center;
  column-gap: 2em;
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 {
    display: block;
    text-align: left;
  }
}
.header01 .gnaviList01 > li {
  position: relative;
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 > li {
    border-bottom: 1px solid #0B346E;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.header01 .gnaviList01 > li > a {
  display: block;
  position: relative;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 > li > a {
    padding: 0 30px;
    font-size: 18px;
    height: 65px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .header01 .gnaviList01 > li > a {
    font-size: 1.5rem;
    height: 50px;
  }
}
.header01 .gnaviList01 > li > a:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #0B346E;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 > li > a:hover {
    border: none;
  }
}
.header01 .gnaviList01 > li .parent {
  padding-right: 15px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 > li .parent {
    padding: 0 30px;
    flex-grow: 1;
    font-size: 1.8rem;
    height: 65px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .header01 .gnaviList01 > li .parent {
    font-size: 1.5rem;
    height: 50px;
  }
}
.header01 .gnaviList01 > li .parent:hover {
  color: #0B346E;
}
.header01 .gnaviList01 > li .parent:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #012383;
  position: absolute;
  bottom: 0;
  left: 0;
}
.header01 .gnaviList01 > li .parent::before {
  content: "";
  position: absolute;
  top: 40%;
  right: 5px;
  transform: rotate(45deg) translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: solid 2px #0B346E;
  border-right: solid 2px #0B346E;
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 > li .parent::before {
    display: none;
  }
}
.header01 .gnaviList01 > li .dropdown {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: scaleY(0) translateX(-50%);
  transform-origin: center top;
  transition: all 0.3s;
  width: 200px;
  padding-top: 25px;
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 > li .dropdown {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
    display: none;
    width: 100%;
    padding-top: 0;
    transition: unset;
  }
}
.header01 .gnaviList01 > li .dropdown .ddlist {
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
  position: relative;
  border-radius: 100px;
}
.header01 .gnaviList01 > li .dropdown .ddlist + .ddlist {
  margin-top: 8px;
}
.header01 .gnaviList01 > li .dropdown .ddlist a {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 > li .dropdown .ddlist a {
    justify-content: flex-start;
    padding: 0 30px;
    font-size: 1.8rem;
    height: 65px;
  }
}
@media (max-width: 480px) {
  .header01 .gnaviList01 > li .dropdown .ddlist a {
    font-size: 1.5rem;
    height: 50px;
  }
}
.header01 .gnaviList01 > li .dropdown .ddlist a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #0B346E;
  border-left: 1px solid #0B346E;
  transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 > li .dropdown .ddlist a::before {
    content: none;
  }
}
.header01 .gnaviList01 > li .dropdown .ddlist a:hover::before {
  right: 15px;
}
.header01 .gnaviList01 > li .dropdown .ddlist a:hover::after {
  display: none;
}
.header01 .gnaviList01 > li.is-show .dropdown, .header01 .gnaviList01 > li:hover .dropdown {
  transform: scaleY(1) translateX(-50%);
}
@media (max-width: 1024px) {
  .header01 .gnaviList01 > li.is-show .dropdown, .header01 .gnaviList01 > li:hover .dropdown {
    transform: unset;
  }
}
.header01 .nav-toggle {
  position: relative;
  width: 65px;
  min-height: 65px;
  background: #0B346E;
}
@media (min-width: 1025px) {
  .header01 .nav-toggle {
    display: none;
  }
}
@media (max-width: 480px) {
  .header01 .nav-toggle {
    width: 50px;
    min-height: 50px;
  }
}
.header01 .nav-toggle::before, .header01 .nav-toggle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  background: #fff;
  transition: 0.2s ease;
}
.header01 .nav-toggle::before {
  width: 15px;
  height: 1px;
}
.header01 .nav-toggle::after {
  width: 1px;
  height: 15px;
}
.header01 .nav-toggle.is-open::before {
  opacity: 0;
  transform: rotate(90deg);
}
.header01 .nav-toggle.is-open::after {
  transform: rotate(90deg);
}
.header01 .btnMenu {
  display: none;
}
@media (max-width: 1024px) {
  .header01 .btnMenu {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 300;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
  }
  .header01 .btnMenu > span.line, .header01 .btnMenu::before, .header01 .btnMenu::after {
    display: inline-block;
    transition: 0.5s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0B346E;
    border-radius: 100vmax;
  }
  .header01 .btnMenu > span.line {
    top: 12px;
  }
  .header01 .btnMenu::before, .header01 .btnMenu::after {
    content: "";
  }
  .header01 .btnMenu::before {
    top: 7px;
  }
  .header01 .btnMenu::after {
    top: 17px;
  }
}

body.open .menuBox {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100svh;
  background: #ffffff;
  overflow: scroll;
  padding: 50px 0 0 0;
}
body.open .btnMenu::before {
  /*top: 14px;*/
  transform: translateY(5px) rotate(-20deg);
  width: 100%;
}
body.open .btnMenu::after {
  /*top: 26px;*/
  transform: translateY(-5px) rotate(20deg);
  width: 100%;
}
body.open .btnMenu > span.line {
  opacity: 0;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header .headerInner {
  display: flex;
  justify-content: space-between;
  height: 105px;
}
@media (max-width: 768px) {
  header .headerInner {
    background: rgba(255, 255, 255, 0.8);
    height: 80px;
  }
}
header .headerInner #hlogoBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100%;
  margin-left: 5.25%;
  text-align: center;
}
@media (max-width: 1024px) {
  header .headerInner #hlogoBox {
    margin-left: 3%;
  }
}
@media (max-width: 768px) {
  header .headerInner #hlogoBox {
    width: 220px;
  }
}
header .headerInner #hlogoBox span {
  font-size: 1.1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 10px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  header .headerInner #hlogoBox span {
    white-space: normal;
  }
}
header .headerInner .htellBox {
  display: flex;
}
header .headerInner .htellBox .mail {
  width: 95px;
  height: 75px;
}
header .headerInner .htellBox .mail a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, #FAD87B, #F9C968, #F8BC59, #F7AE48, #F69E35, #F68F23, #F68314, #F57605);
}
header .headerInner .htellBox .tel {
  width: 280px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .headerInner .htellBox .tel a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #888FC7, #7C80C5, #7273C3, #6867C2, #5C58C0, #514BBE, #463EBD, #3D33BC, #3327BA);
  text-align: center;
}
header .headerInner .htellBox .tel a span {
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}
header .headerInner .htellBox .tel a span.txt {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
header .headerInner .htellBox .tel a span.num {
  font-size: clamp(14px, 3.75vw, 27px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/*==========================================================
	footer
==========================================================*/
footer {
  margin-top: min(300px,41.666vw);
  padding: 35px 0;
  background: #0C346E;
  position: relative;
  overflow-y: hidden;
}
footer::before {
  content: "";
  background: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 480px) {
  footer {
    margin-top: 100px;
    padding: 25px 0 50px;
  }
}
footer .circle03 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: 100%;
  max-width: 340px;
  z-index: 2;
  mix-blend-mode: multiply;
}
@media (max-width: 480px) {
  footer .circle03 {
    max-width: 120px;
  }
}
footer .container .ttlBox {
  display: flex;
  align-items: center;
  gap: 90px;
}
@media (max-width: 480px) {
  footer .container .ttlBox {
    align-items: flex-start;
    gap: 10px;
  }
}
footer .container .ttlBox p.ttl span {
  display: block;
}
footer .container .ttlBox p.ttl span.main {
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5757575758;
}
@media (max-width: 480px) {
  footer .container .ttlBox p.ttl span.main {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}
footer .container .ttlBox p.ttl span.sub {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.8571428571;
}
@media (max-width: 480px) {
  footer .container .ttlBox p.ttl span.sub {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}
footer .container .ttlBox figure {
  width: 244px;
}
footer .container .ttlBox figure img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 480px) {
  footer .container .ttlBox figure {
    width: 105px;
  }
}
footer .container .infoBox {
  margin-top: 22px;
}
footer .container .infoBox p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 480px) {
  footer .container .infoBox p {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}

/*==========================================================
	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: 821px) {
  br.showTabM {
    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: 820px) {
  br.hdnTabM {
    display: none;
  }
  br.showTabM {
    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: 821px) {
  p.showTabM, div.showTabM, figure.showTabM, ul.showTabM {
    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: 820px) {
  p.hdnTabM, div.hdnTabM, figure.hdnTabM, ul.hdnTabM {
    display: none !important;
  }
  p.showTabM, div.showTabM, figure.showTabM, ul.showTabM {
    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;
}