@charset "UTF-8";

/* ==========================================================================
    common style
============================================================================= */
html {
  font-size: 62.5%;
}

body {
  background-color: #F4F5F5;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
}

.br-sp {
 display: none;
}

.br-pc {
 display: block;
}

.br-tb {
  display:none;
}

.trigger.in {
  opacity: 0;
}

.trigger.in.is-active {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.trigger.up {
  opacity: 0;
}

.trigger.up.is-active {
  -webkit-animation-name: slid-in-up;
  animation-name: slid-in-up;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slid-in-up {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    visibility: visible;
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes slid-in-up {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    visibility: visible;
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
            height: 0;
            opacity: 0;
            padding: 0;
  }
}


.l-header {
/*   background-color: #D9342C; */
  background-color: #CD1B2F;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0 16px;
}

.l-header__top {
/*   border-bottom: solid 1px #CC332C; */
  align-items: center;
  border-bottom: solid 1px #B82D26;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 15px;
}

.l-header__top h1 {
  max-width: 376px;
}

.l-header__top h1 a:hover {
	opacity: .7;
}

.l-header__top .link-group {
  display: flex;
  gap: 24px;
}

.l-header__top .link-group .link-cart {
  border-right: solid 1px #B82D26;
  display: block;
  padding-right: 24px;
}

.l-header__top .btn {
  border: solid 2px #3F4DB3;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  font-weight: bold;
  line-height: 1.4375;
  text-align: center;
}
.l-header__top .btn:hover {
  border: solid 2px #6571C2;
}
.l-header__logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.l-header__logo b {
  color: #707070;
  font-size: 1.2rem;
}

.l-header__nav {
  border-top: solid 1px #DF3830;
  padding-top: 15px;
}

.l-header__nav ul {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.l-header__nav li:first-child {
  padding-left: 0 !important;
}

.l-header__nav li {
  white-space: nowrap;
  position: relative;
}
.l-header__nav li:last-child::before {
  display: none;
}

.l-header__nav a {
/*   color: #fff; */
  color: rgba(255, 255, 255, 0.7);
  padding: 0 clamp(8px, 1vw, 20px);
  position: relative;
  font-size: calc(1rem + 0.5vw);
}
.l-header__nav li:first-child a {
  padding-left: 0;
}
.l-header__nav a:hover {
	  color: #fff;
}

.l-header .link {
  border: 1px solid #707070;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #050505;
  font-size: 1.3rem;
  height: 30px;
  min-width: 170px;
  padding: 2px 2px 1.5px 7px;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 1837px) {
  .l-header__nav a {
    padding: 0 0.95vw;
  }
}

@media screen and (min-width: 768px) {
  .l-header__top {
    padding: 22px 0;
  }

  .l-header__top .btn {
    border-radius: 50px;
    min-width: 156px;
  }

  .l-header__top .link-contact .fa-solid {
    display: none
  }


  .l-header__trigger {
    display: none;
  }
	
  .l-header__nav li:not(:first-child) a::before {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    width: 1px;
    height: 16px;
    position: absolute;
    left: -5px;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    }

  .l-header__nav li:first-child a::before {
		display: none;
  }
  .l-header.m_fixed{
    position: fixed;
    width: 100%;
    z-index: 998;
	top: 0;
/*     padding-bottom: 0px; */
}
/*   .l-header.m_fixed .l-header__nav {
    animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  .l-header.m_fixed .l-header__nav ul {
    opacity: 0;
  } */
}
@media screen and (max-width: 820px) {
	.l-header__nav ul {
	  gap: 5px;
	}
    .l-header__nav li:not(:first-child)::before {
      left: -2.5px;
    }
}

@media screen and (max-width: 767.98px) {
	.l-header {
		padding: 10px 0 0;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 100;
		box-sizing: border-box;
	}

	.l-header__top {
		align-items: center;
		padding-bottom: 10px;
    }

	.l-header__top h1 img {
		max-width: 200px;
	}

  .l-header__nav {
    display: none;
  }

  .l-header__nav.is-open {
    display: block;
    padding-bottom: 30px;
  }

  .l-header__nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
	
	.l-header__nav .link-contact {
		border: solid 2px #3F4DB3;
		border-radius: 50px;
		display: block;
		padding: 10px;
    width: 180px;
	}

  .l-header__trigger {
    text-align: right;
    margin-right: 10px;
  }

  .l-header__trigger .fa-solid {
    font-size: 3rem;
    vertical-align: middle;
  }

  .l-header__trigger.is-active .fa-solid::before {
    content: "\f00d"
  }

  .l-header__top .btn {
    border-radius: 10px;
  }

  .l-header__top .link-group {
    margin-left: auto;
    margin-right: 24px;
  }

  .l-header__top .link-contact span {
    display: none
  }


  .l-header .link {
    margin-left: auto;
    margin-top: 10px;
  }
}

.l-container {
  box-sizing: border-box;
  max-width: 960px;
  margin-inline: auto;
  width: 100%;
}

.header-top {
  max-width: 1300px;
}


@media screen and (max-width: 1139.98px) {
  .l-container {
  padding-inline: 15px;
  }
}

.l-footer {
  background-color: #CD1B2F;
  color: #fff;
  font-size: 1.4rem;
  padding: 48px 0 0;
}

.l-footer__contact {
  border-bottom: solid 1px #B82D26;
  padding-bottom: 56px;
  text-align: center;
}

.l-footer__contact .lead {
  text-shadow: 0 0 4px rgba(0, 0, 0, .25);
  border-bottom: solid 1px #fff;
  color: #fff;
  padding-bottom: 20px;
}

.l-footer__contact .tel {
  font-size: 6.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: 1.1718;
  text-shadow: 0 0 4px rgba(0, 0, 0, .25);
  margin: 20px 0 40px;
}

.l-footer__contact .tel .reception-hours {
  display: block;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.l-footer .btn-group {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 40px auto 0;
  gap: 32px;
}

.l-footer .btn-group a {
/*   background-color: #B82D26; */
/*   background: linear-gradient(90deg, rgba(184,45,38,1) 0%, rgba(162,40,34,1) 100%); */
  background: #CD1B2F;
  border: solid 2px #CD1B2F;
  border-radius: 50px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  flex-basis: calc(50% - 16px);
  padding: 25px 10px;
  position: relative;
  overflow: hidden;
  line-height: 1;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  transition: all .5s;
}

.l-footer .btn-group a::after {
    background: linear-gradient(90deg, rgba(184,45,38,1) 0%, rgba(162,40,34,1) 100%);
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-out;
    width: 100%;
}

.l-footer .btn-group a:hover::after {
    opacity: 0;
}

.l-footer .btn-group a:hover {
	background: #CD1B2F;
    border-color: #CD1B2F;
}

.l-footer .btn-group a .txt {
	font-size: 2rem;
    line-height: 1.45;
    position: relative;
    z-index: 10;
}

.l-footer__nav {
  border-top: solid 1px #DF3830;
  display: flex;
  gap: 5.78125vw;
  padding: 48px 0 40px;
}

.l-footer__nav .logo {
  max-width: 292px;
  margin-bottom: 48px;
}

.l-footer__nav .nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
/*   gap: 2.5vw; */
	gap: 3.33%;
}

.l-footer__nav .nav-list li + li {
	margin-top: 1em;
}

.l-footer__nav .nav-list a {
  color: #fff;
}

.l-footer__nav .nav-list a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.l-footer__nav .info {
		flex-basis: 30.416%;
	}

	.l-footer__nav .nav-list {
		display: flex;
		flex-basis: 61.875%;
        flex-wrap: wrap;
	}
}

@media screen and (max-width: 767.98px) {
  .l-footer__contact .tel {
    font-size: 4.4rem;
  }

  .l-footer .btn-group {
    flex-direction: column;
  }

  .l-footer__nav {
    flex-direction: column;
  }

  .l-footer__nav .nav-list {
    grid-template-columns: 1fr 1fr;
  }
}

.l-footer .copyright {
  background-color: #B82D26;
  padding: 22px 0;
  text-align: center;
}

.l-main article {
  padding-top: 32px;
  padding-bottom: 48px;
}

.breadcrumb {
  font-size: 1.2rem;
  padding-bottom: 83px;
}

.breadcrumb a {
  color: #000;
  text-decoration: underline;
}

.breadcrumb a:hover {
	text-decoration: none;
}

.breadcrumb .fa-solid {
  font-size: 1.2rem;
  margin: 0 12px;
}

.bg-gradired .breadcrumb a {
  color: #fff;
}

.l-main article section {
  border-bottom: solid 1px #BEC3C6;
  margin-bottom: 80px;
  padding-bottom: 80px
}

.l-main article .no-border {
	border-bottom: 0;
	padding-bottom: 0;
}

.l-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: wrap;
  -ms-flex: wrap;
  flex: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 1035px) {
    .l-column {
        flex-direction: column;
    }
}
.l-column .figure img {
  width: 100%;
	height: auto;
}


@media screen and (max-width: 1035px) {
  .l-column-brand {
    flex-direction:column;
  }
}

@media screen and (min-width: 768px) {
  .l-column.side-part {
    gap: 48px;
  }

  .l-column.side-part .sub {
    flex-basis: calc(40% - 24px)
  }

  .l-column.side-part .main {
    flex-basis: calc(60% - 24px)
  }

  .l-column.col-2 {
    gap: 48px;
  }

  .l-column.col-2>* {
    -ms-flex-preferred-size: calc(50% - 24px);
    flex-basis: calc(50% - 24px);
  }

  .l-column.col-3 {
	  gap: 30px;
      justify-content: space-between;
  }
	.l-column.col-3::after {
      content: "";
      flex-basis: calc(30.333% - 16px);
	}

  .l-column.col-3>* {
    -ms-flex-preferred-size: calc(33.333% - 16px);
	  flex-basis: calc(30.333% - 16px);
/*     flex-basis: calc(33.333% - 16px); */
  }

  .l-column.col-4 {
    gap: 32px;
  }

  .l-column.col-4>* {
    -ms-flex-preferred-size: calc(25% - 24px);
    flex-basis: calc(25% - 24px);
  }
}

@media screen and (max-width: 767.98px) {
  .br-sp {
    display:block;
  }
	.br-pc{
    display:none;
	}
  .sp-fs {
    font-size:18px;
	line-height:1.4;
  }
}
@media (min-width: 767.98px) and (max-width: 1024px) {
  .br-tb {
    display:block;
  }
}
@media screen and (max-width: 767.98px) {

  .l-column.col-2>*,
  .l-column.col-3>*,
  .l-column.col-4>* {
    -ms-flex-preferred-size: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
  }

  .l-column.col-2,
  .l-column.col-3 {
    gap: 24px;
    row-gap: 40px;
  }
}


@media screen and (max-width: 566.98px) {
  .l-column.col-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .l-column.col-2.sp-reverse {
    flex-direction: column-reverse;
  }

  .l-column.col-2>* {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .l-column.col-3,
  .l-column.col-4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
/* flex-flow: column;元 */
  }

  .l-column.col-3>*,
  .l-column.col-4>* {
    -ms-flex-preferred-size: calc(50% - 12px);
 	flex-basis: 100%;
  }
}

.hdg-1 {
  color: #222E87;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-inline: auto;
  text-align: center;
}

.hdg-1 .en {
/*   border-bottom: solid 1px; */
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 12px;
  position: relative;
}

.hdg-1 .en::after {
	content: "";
    height: 1px;
    width: 25vw;
	min-width: 235px;
	max-width: 320px;
    background: #BEC3C6;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
}

.hdg-1 .en-red {
  color: #CD1B2F;
	display: block;
  font-size: 5.6rem;
  font-family: "Roboto Condensed", sans-serif;
  padding-top: 20px;
}

.hdg-1.liner {
  border-bottom: solid 1px #BEC3C6;
  max-width: inherit;
  padding-bottom: 32px;
  text-align: left;
}

.hdg-1.full {
	max-width: inherit;
}

.hdg-2 {
  font-size: 2.6rem;
  line-height: 1.4;
}

.hdg-3 {
    color: #222e87;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 20px;
}

.hdg-3::before {
	content: "■ ";
}

.hdg-value {
    border-bottom: dashed 1px;
    color: #CD1B2F;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 24px;
    padding-bottom: 24px;
    text-align: center;
	white-space: nowrap;
	flex: 1 0 auto;
	margin: auto auto 0;
}

@media screen and (min-width: 768px) {
  .hdg-1 {
    max-width: 37.5vw;
  }
}

@media screen and (max-width: 767.98px) {
  .hdg-1 {
    font-size: 2.6rem;
    margin-bottom: 32px;
  }

  .hdg-2 {
    font-size: 2.2rem;
  }

  .ttl {
    font-size: 1.6rem;
  }
}

.lead {
  color: #CD1B2F;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4375;
}

.txt {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: justify;
}

.txt+.txt {
  margin-top: 30px;
}

.note {
  font-size: 1.2rem;
  line-height: 1.8;
  padding-left: 1em;
  position: relative;
}

.note::before {
  content: "※";
  position: absolute;
  left: 0;
}

.txt-cont {
  max-width: 700px;
  margin: 0 auto 60px;
}

@media screen and (max-width: 767.98px) {
  .txt-cont {
    margin-bottom: 30px;
  }

	.lead {
		font-size: 2.5rem;
	}
}

@media screen and (max-width: 699.98px) {
  .txt-cont {
    padding-inline: 15px;
  }

  .l-container .txt-cont {
    padding-inline: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: bold;
  padding: 7px 18px;
  text-shadow: 0 0 4px rgba(0, 0, 0, .35);
}

.btn.bg-red {
  background-color: #CD1B2F;
	color: #fff;
	overflow: hidden;
	position: relative;
}

.btn.bg-red::before {
    content: "";
    background: #CD1B2F;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    width: 0;
}

.btn.is-active {
  box-shadow:0 0 4px rgba(0, 0, 0, .25);
}

.btn.bg-red.is-active::before {
    animation: bg-red 0.5s 0.25s forwards;
}

.btn.bg-red .txt {
    opacity: 0;
	position: relative;
	z-index: 10;
}

.btn.bg-red.is-active .txt {
    animation: fade-in 0.5s 0.5s forwards;
}

.btn.bg-red::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
}

.btn.bg-red.is-active:hover::after {
    animation: shine 0.5s;
}

@keyframes bg-red {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes shine {
	100% {
		  left: 125%;
	}
}

.btn.bg-blue {
  background: linear-gradient(90deg, rgb(34, 46, 135), rgb(10, 13, 37));
  color: #fff;
  padding-inline: calc(2.96875vw - 10px) 2.96875vw;
  position: relative;
}

.btn.bg-blue::after {
    content: "";
    width: 7px;
    height: 14px;
    background: url(../images/icon_arw_white.svg) no-repeat center / 7px auto;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.btn.bg-blue:hover {
	background: linear-gradient(90deg, rgb(78, 89, 159), rgb(60, 62, 81));
}

.bg-lightblue {
  background-color: #E7ECEF;
}

.bg-gradiblue {
  background: linear-gradient(180deg, rgba(34, 46, 135, 1) 0%, rgba(10, 13, 37, 1) 100%);
  color: #000;
}

.bg-gradiblue .hdg-1 {
  color: #000;
}

.bg-gradired {
/*   background: linear-gradient(180deg, rgba(139, 33, 28, 1) 0%, rgba(217, 52, 44, 1) 100%); */
  background: linear-gradient(180deg, rgba(139,33,28,1) 0%, rgba(205,27,47,1) 100%);
  color: #fff;
  padding-top: 80px;
}

.bg-gradired .hdg-1,
.bg-gradired .lead {
  color: #fff;
}

.bg-stripe {
  background-color: #000;
  background-image: url(../images/bg_stripe.png);
  background-repeat: repeat;
  background-position: left top;
  color: #fff;
}

.bg-stripe .hdg-1 {
  color: #fff;
}

.white-wrap {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .25);
	box-sizing: border-box;
  padding: 83px 4.25vw;
}

.white-wrap--custom {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .25);
	box-sizing: border-box;
  padding: 83px 4.25vw;
}

.c-white {
  color: #fff !important;
}

.c-red, .c-red a {
	color: #D9342C !important;
}

.c-red02, .c-red02 a {
    color: #CD1B2F !important;
}

.c-navy, .c-navy a {
  color: #202A74 !important;
}


.btn.is-invalid {
  background-color: #ccc;
  color: #999;
  pointer-events: none;
}

.btn.is-invalid::after {
  color: #999;
}

.link {
  display: inline-block;
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

.link::after {
  /*   content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 3px; */
}

@media screen and (max-width: 767.98px) {
  .btn:not(.plain) .txt {
    padding: 22px 17px;
  }
}

ul.default {
  list-style: disc;
  padding-left: 1em;
}

.disc {
  margin-bottom: 1em;
}

.disc>li {
  margin-top: 1em;
  padding-left: 12px;
  position: relative;
}

.disc>li:first-child {
  margin-top: 0;
}

.disc>li::before {
  border-radius: 50%;
  background-color: #15447e;
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
}

.disc>li .disc>li:first-child {
  margin-top: 1em;
}

.disc>li .disc>li::before {
  background-color: transparent;
  border: 1px solid #15447e;
}

.order {
  counter-reset: item;
}

.order>li {
  margin-top: 1em;
  position: relative;
}

.order>li::before {
  background-color: #000;
  counter-increment: item;
  content: counter(item);
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 6px;
  line-height: 24px;
  width: 24px;
  height: 24px;
  text-align: center;
  position: absolute;
}

.card>li {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card__inner {
  background-color: #fff;
  border: solid 1px #000;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: calc(4.385vw + 60px);
}

@media screen and (min-width: 768px) {
  .card {
    display: grid;
  }

  .card.col-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }

  .card.col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
}

@media screen and (max-width: 767.98px) {
  .card>li .ttl {
    margin: 17px 0;
    padding-bottom: 17px;
  }

  .media__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.tbl-plain {
  width: 100%
}

.tbl-plain tr {
  border-bottom: solid 1px rgba(72, 98, 132, .16)
}

.tbl-plain th,
.tbl-plain td {
  padding: 16px 0;
}

.tbl-plain th {
  color: #222E87;
  font-weight: 500;
  text-align: left;
  width: 10em;
}

@media screen and (max-width: 767.98px) {
	.tbl-plain th,
	.tbl-plain td {
		display: block;
	}
}


input[type="text"],input[type="email"], select, textarea {
	box-sizing: border-box;
	font-size: 16px;
	padding: 10px;
	width: 100%;
}


.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 100px;
}

.nav-links .page-numbers {
  background-color: #202a74;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  padding: 5px 15px;
}

.nav-links .page-numbers.current {
  background-color: #fff;
  color: #202a74;
  border: solid 1px #202a74;
}

.all-search {
  position: relative;
}

.all-search #s-box {
  border-radius: 50px;
  border: 0;
  font-size: 12px;
}

.all-search #s-btn-area {
  color: #141b38;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 0 0 BLACK;
}

.all-search #btn .fa-solid {
  font-size: 1.2rem;
}

@media screen and (max-width: 767.98px) {
  .all-search {
    width: 200px;
  }

  .all-search #s-box {
    font-size: 16px;
  }
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-l {
  text-align: left !important;
}

.fw-bold {
  font-weight: bold !important;
}

.fw-normal {
  font-weight: normal !important;
}

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

  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 767.98px) {
  .sp-none {
    display: none !important;
  }

  .pc-none {
    display: block !important;
  }
}

.d-ib {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .fl-l {
    float: left !important;
    margin-right: 40px;
    margin-bottom: 40px;
  }

  .fl-r {
    float: right !important;
    margin-left: 40px;
    margin-bottom: 40px;
  }

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

  .clear {
    clear: both;
  }
}

.page-title {
  background: url(../images/pagetitle_bg.webp) no-repeat center / cover;
  height: 200px;
}

.page-title__hdg {
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .page-title__hdg {
    font-size: 3rem;
  }
}

.map iframe {
  height: 260px;
  width: 100%;
}

.movie {
  text-align: center;
}

.movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-width: 830px;
}

.list-figure .box {
  display: block;
  color: #fff;
  padding-top: 75%;
  position: relative;
}

.list-figure .box::after {
  content: "";
  width: 11px;
  height: 19px;
  background: url(../images/icon_arw_white-b.svg) no-repeat center / 19px auto;
  position: absolute;
  right: 14px;
  bottom:7px;
  transform: translateY(-50%);	
}

.list-figure .box img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
	transition: all .5s;
}

.list-figure .box:hover img {
	filter: brightness(0.65);
}

.list-figure .box .ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 10;
	opacity:.75;
}
.child-pages-list {
  border-top: solid 1px #BEC3C6;
  margin-top: 80px;
  padding-top: 24px;
}

.child-pages-list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.child-pages-list a {
  color: #000;
}

.child-pages-list a::after {
  content: "｜";
  padding: 0 0.25em;
}

.child-pages-list li:last-child a::after {
  display: none;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    background: #222E87;
    width: 32px;
    height: 32px;
	transition: all .5s;
	z-index: 100;
}

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
	content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	display: block;
    opacity: 1;
}

.slick-slider .slick-prev:before {
	transform: rotate(180deg);
}

.slick-slider .slick-prev {
    left: 0;
}

.slick-slider .slick-next {
    right: 0;
}

.slick-slider .slick-prev:hover, .slick-slider .slick-prev:focus,
.slick-slider .slick-next:hover, .slick-slider .slick-next:focus {
	background: #3F4DB3;
}


/* 商品詳細ページ */
.asp_product_buy_btn_container .btn {
  background: #CD1B2F;
  border: solid 2px #CD1B2F;
  border-radius: 50px;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 20px;
margin-inline: auto;
  min-width: 225px;
  overflow: hidden;
  padding: 24px 6.015vw;
  position: relative;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  transition: all .5s;
  white-space: nowrap;
}

.asp_product_buy_btn_container .btn::after {
  background: linear-gradient(90deg, rgba(184, 45, 38, 1) 0%, rgba(162, 40, 34, 1) 100%);
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-out;
transform: inherit;
  width: 100%;
}

.asp_product_buy_btn_container .btn span {
  position: relative;
  z-index: 100;
  letter-spacing: 0.1em;
}

.asp_product_buy_btn_container .btn:hover {
opacity: 1;
}

.asp_product_buy_btn_container .btn:hover::after {
  opacity: 0;
}

@media screen and (max-width: 767.98px) {
.asp_product_buy_btn_container .btn {
  margin-top: 40px;
}
}

.fs-12 {
  font-size: 1.2rem !important;
}

.fs-14 {
  font-size: 1.4rem !important;
}

.fs-16 {
  font-size: 1.6rem !important;
}

.fs-20 {
  font-size: 2rem !important;
}

.fs-24 {
  font-size: 2.3rem !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.brand-color .bg-red {
  background-color: #CD1B2F;
}
.brand-color .bg-navy {
    background-color: #202A74;
}
.brand-color .item {
    box-sizing: border-box;
    max-width: 640px;
    padding: 4.375vw 10px;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 44px;
    margin-inline: auto;
}
.slick-dotted.slick-slider {
  margin-bottom: -30px!important;
}
.txt-black {
  color: #000!important;
}

@media screen and (max-width: 1035px) {
  .grid {
	  display:grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 20px;
	}
}
#royalcoatingbooth {
    scroll-margin-top: calc( var(--header-height, 80px) + 100px ); /* ヘッダーの高さ + 50px */
}
.has-after {
  position:relative;
}
.has-after:after {
    content: "";
    display: block;
    max-width: 980px;
    width: 100%;
    height: 5%;
    background-image: url(https://hbw1008ky074.smartrelease.jp/royal-kagaku.co.jp/wp-content/uploads/2025/02/hdg-1-after-1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -275px;
    left: 50%;
    transform: translateX(-50%);
}

h2.hdg-1.trigger.up.txt-black.is-active {
    margin-top: 110px;
}
@media screen and (max-width: 767.98px) {
	.has-after:after{
		top: -170px;
        width: 100%;
        height: 100%;
	}
	h2.hdg-1.trigger.up.txt-black.is-active {
		margin-top: 60px;
	}
	.service-list {
		margin-top: 0!important;
	}
}
@media screen and (width: 540px) {
	.has-after:after {
        top: -140px;
	}
}