@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/ :root {
  --rakuBlue: #0A698F;
  --dgrey: #555;
  --lightBlue: #7FB1C4;
  --logoPink: #C33B79;
}
html {
  height: 100%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dgrey);
  height: 100%;
  padding: 0;
}
a {
  color: var(--rakuBlue);
  text-decoration: none;
}
a:hover {
  color: #cd668f;
  text-decoration: none;
}
h2, h3, h4, h5, h6 {
  /*font-family: "M PLUS 1p";*/
  color: #333;
}
h3 {
  font-weight: bold;
  font-size: 1.6rem;
}
h4 {
  font-size: 1.3rem;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 0.63rem;
  bottom: 0.63rem;
  z-index: 996;
  background: rgba(0, 99, 138, 0.5);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.3rem;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 3rem;
  color: #fff;
  line-height: 0;
  font-weight: bold;
}
.back-to-top:hover {
  background: rgba(0, 99, 138, 1);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--rakuBlue);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  /*background: #fff;*/
  z-index: 997;
  padding: 1rem 0;
  /*border-bottom: 1px solid #e6f2fb;*/
}
#header.header-scrolled {
  /*border-bottom: 1px solid rgba(0, 99, 138, 1);*/
  /*box-shadow: 0px 2px 15px rgba(0, 99, 138, 0.1);*/
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 1);
}
#header .logo {
  font-size: 115%;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01rem;
}
#header .logo a {
  color: #555;
}
#header .logo a:hover {
  opacity: 0.8;
}
#header .logo img.logo_aboc_tp {
  margin: -0.3rem 0.1rem 0;
  height: 17px;
}
#header .logo img.logo_tp {
  height: 51px;
  margin: 0.5rem 0 0;
}
#header h2 {
  font-size: 80%;
  margin: 0;
  padding: 0;
  color: #999;
}
/*bc_blu*/
.bc_blu {
  background-color: var(--rakuBlue);
  color: #FFF;
  line-height: 1;
  padding: 0.2rem 0.3rem;
  font-weight: 300;
  font-size: 80%;
  border-radius: 0.2rem;
  font-feature-settings: "palt";
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0 0.3rem 3rem;
  font-size: 1.05rem;
  color: var(--dgrey);
  white-space: nowrap;
  transition: 0.3s;
}
/*.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}*/
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--rakuBlue);
}
.navbar li.frame {
  padding-left: 3rem;
}
.navbar li.frame a {
  border: 1px solid #DDD;
  padding: 0.35rem 0.5rem;
  background-color: #FFF;
  border-radius: 0.5rem;
  font-size: 75%;
  font-feature-settings: "palt";
  display: inline-block;
  text-align: center;
}
.navbar li.frame a i {
  font-size: 120%;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--rakuBlue);
  font-size: 2rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
@media (max-width: 1199px) {
  .navbar li.frame {
    padding-left: 1.25rem;
    margin: 0.8rem 0;
  }
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 99, 138, .9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 4rem;
  right: 1rem;
  left: 1rem;
  padding: 0.5rem 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  color: var(--dgrey);
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--rakuBlue);
}
/*--------------------------------------------------------------
#app Section
--------------------------------------------------------------*/
#app {
  width: 100%;
}
#app .imgTp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem 0 0;
}
#app .imgTpL {
  width: 60%;
}
#app .imgTp .img_main {
  margin: 3.5rem 0 0 -1rem;
}
#app .imgTpR {
  width: 35%;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 4rem 0 0 2rem;
}
#app .imgTpR .img_fukidashi {
  margin: 4rem 0;
  max-width: 320px;
  width: 100%;
}
#app .imgTpR .img_zero {
  margin: 3rem 0 0;
  max-width: 300px;
  width: 100%;
}
#app .intro {
  font-weight: 400;
  padding: 3.5rem 0 0;
  font-feature-settings: "palt";
}
#app .intro h2 {
  line-height: 1.4;
  margin: 0 0 1rem;
}
#app .intro p {
  margin: 0 0 0.5rem;
  padding: 0;
  line-height: 1.45;
  font-size: 110%;
}
#app .intro .logo_aboc {
  margin: -0.35rem 0.15rem 0;
}
.intro .logo_raku {
  margin: -0.3rem 0 0 0.25rem;
}
.animation {
  display: inline-block;
  margin: 0 0.5rem;
  animation: bounce; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 4rem 0;
}
.section-bg {
  background-color: var(--rakuBlue);
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 3.5rem 2rem 0;
  padding-bottom: 0.625rem;
  display: inline-block;
}
.section-title h2.whtshadow {
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #fff;
}
.section-title h2.wht {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.section-title h2.grn {
  color: var(--rakuBlue);
  border-bottom: 2px solid var(--rakuBlue);
}
/*a*/
#basic a, #copy a {
  border-bottom: 1px dashed var(--rakuBlue);
}
#basic a:hover, #copy a:hover {
  border-bottom: 1px dashed #cd668f;
}
/*--------------------------------------------------------------
#basic
--------------------------------------------------------------*/
#basic {
  padding-bottom: 4.5rem;
}
/*翻訳が必要なサインにもれなくセット！*/
.parallelo {
  position: absolute;
  left: 1.25rem;
  top: -7rem;
  padding: 1rem 1.15rem 0.65rem 1rem;
  clip-path: polygon(0 25%, 100% 5%, 99% 100%, 0% 100%);
  background: var(--lightBlue);
  display: inline-block;
  transform: rotate(-0.5deg);
  border-bottom: 5px solid rgba(0, 99, 138, .5);
  margin: 0 auto;
}
.h2_setting {
  margin: 0;
  font-feature-settings: "palt";
  font-size: 180%;
  font-weight: 500;
  color: #fff;
  padding: 0;
  transform: rotate(-1deg);
  letter-spacing: 0.05rem;
  position: relative;
}
/*.img_sign*/
.content .img_sign {
  position: absolute;
  top: -7.3rem;
  left: 1.5rem;
}
.img_sign2 {
  position: absolute;
  top: -1.8rem;
  left: 1.5rem;
}
/*.content*/
.content {
  font-size: 1.1rem;
  position: relative;
  padding: 1rem 0 0;
}
.spec {
  border: 4px solid rgba(0, 99, 138, .07);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 0 0 3rem;
  background: rgba(255, 255, 255, 1);
  position: relative;
}
.iconWrapper {
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: #fff;
  width: 70px;
  height: 50px;
  text-align: center;
}
.ico1 {
  width: 55px;
}
.ico2 {
  width: 45px;
}
.content h3 {
  font-weight: 700;
  margin: 0 0 1.25rem;
  position: absolute;
  top: -1rem;
  left: 53px;
  font-feature-settings: "palt";
  background: #fff;
}
.content h3::after {
  content: '.';
  background: #fff;
  height: 2px;
  color: #fff;
}
.spec ul {
  margin: 1rem 0 0;
}
.content h4 {
  margin: 0 0 1.2rem;
  position: relative;
  padding: 0 0 0 2.8rem;
}
.content h4 i {
  font-size: 150%;
  position: absolute;
  top: -1px;
  left: 3px;
}
.content p:last-child {
  margin-bottom: 0;
}
.content ul {
  list-style: none;
  padding: 0;
}
/*li i.bx-check-double*/
.content ul li {
  padding-bottom: 0.5rem;
  padding-left: 2.8rem;
  position: relative;
}
.content ul i.bx-check-double {
  font-size: 200%;
  color: var(--rakuBlue);
  position: absolute;
  left: 0;
  top: -2px;
}
/*.bx-down-arrow-alt*/
.content ul i.bx-down-arrow-alt {
  position: static;
  color: var(--dgrey);
  font-size: 100%;
}
/*.bx-link-external*/
a .bx-link-external {
  position: static;
  color: #4DA5D7;
  font-size: 80%;
  margin: 0 0.2rem 0;
}
a:hover .bx-link-external {
  color: #cd668f;
}
.content ul a:hover img {
  opacity: 0.8;
}
.content .kome {
  margin-left: 2.8rem;
}
/*li i.bx-left-arrow-alt*/
.content ul.arrowL {
  margin-top: -0.3rem;
}
.content ul.arrowL li {
  padding-left: 1.5rem;
}
.content ul.arrowL i.bx-left-arrow-alt {
  position: absolute;
  font-size: 100%;
  top: 5px;
  left: 0;
  color: var(--dgrey);
}
/*attn*/
.content .kome.attn {
  margin: 0 !important;
  padding: 0 0.5rem;
}
.content .kome.attn li {
  margin-bottom: 0.5rem;
}
/*--------------------------------------------------------------
#price
--------------------------------------------------------------*/
#price {
  padding: 0 0 3rem;
}
.priceWrapper {
  background-color: rgba(0, 99, 138, .035);
  padding: 2rem 2rem 1rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.img_flags {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}
.ribbon {
  display: inline-block;
  position: absolute;
  top: -1.8rem;
  left: -0.5rem;
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  background: #d8e7ed;
  clip-path: polygon(100% 0%, 98% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
  border-left: 8px solid var(--rakuBlue);
  white-space: nowrap;
}
.priceWrapper h3 {
  font-feature-settings: "palt";
  font-weight: 400;
  color: #111;
  margin: 0;
  font-size: 150%;
}
.logo_qr {
  margin: -0.325rem 0 0 0.5rem;
}
.diagonal {
  position: relative;
  display: inline-block;
  padding: 0 0 0.25rem;
}
.diagonal:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: -webkit-repeating-linear-gradient(-45deg, rgba(0, 99, 138, .25), rgba(0, 99, 138, .25) 2px, transparent 2px, transparent 4px);
  background: repeating-linear-gradient(-45deg, rgba(0, 99, 138, .25), rgba(0, 99, 138, .25) 2px, transparent 2px, transparent 4px);
}
.priceList {
  display: inline-flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 1px 0.5rem rgba(11, 105, 143, .1);
  margin: 0 0 1rem;
  padding: 0.8rem 0.5rem 0.8rem 0.8rem;
}
.h_price_wrapper {
  display: flex;
  align-items: baseline;
  margin: 0 0 0.8rem;
}
.priceWrapper h4.h_price {
  margin: 0;
  font-weight: 400 !important;
}
#price p {
  margin: 0;
  font-size: 90%;
}
#price .logo_aboc {
  margin: -0.25rem 0.15rem 0;
}
.priceList dl {
  padding: 0;
  margin: 0;
  text-align: left;
}
.priceList dl dd {
  padding: 0;
  margin: 0 auto 0.25rem 0;
  line-height: 1.3;
  font-size: 1.1rem;
}
.priceList dl dd.dd_ms {
  margin: 0 0 0 1.35rem;
  font-size: 0.9rem;
}
.priceList dl dt {
  font-size: 200%;
  margin: 0 auto 0.8rem 0;
  line-height: 1;
}
#price .kome.attn {
  margin: 0 0 1rem;
}
#price .logo_raku {
  margin: -0.3rem 0.05rem 0 0;
  height: 18px;
}
.arrow_R {
  position: relative;
  padding-right: 20px;
}
.arrow_R:before {
  position: absolute;
  content: '';
  bottom: -3px;
  right: 0;
  width: 0;
  height: 0;
  border: none;
  border-right: solid 15px transparent;
  border-bottom: solid 15px var(--lightBlue);
}
.arrow_R:after {
  position: absolute;
  content: '';
  bottom: -3px;
  right: 10px;
  width: 100%;
  border-bottom: solid 3px var(--lightBlue);
}
.arrow_R p {
  padding: 0 0 0.5rem;
  margin: 0 0 0 -0.25rem;
  line-height: 1.2;
  font-size: 95%;
}
/*--------------------------------------------------------------
#example
--------------------------------------------------------------*/
#example {
  width: 100%;
  height: auto;
  /*height: 100vh;*/
  position: relative;
}
.example {
  padding-top: 2rem;
}
#example .section-title {
  display: flex;
  align-items: baseline;
}
.example .example-box {
  padding: 0 0 2.8rem;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.2);
  margin: 0 0 1.5rem;
  position: relative;
}
.itsignWrapper {
  position: relative;
}
.example .example-box .qr {
  position: absolute;
  background-color: #FFF;
  padding: 0.5rem 0.5rem 0;
  width: 90px;
  right: 0;
  bottom: 0;
}
.example .example-box .credit {
  position: absolute;
  font-size: 70%;
  margin: 0;
  background-color: rgba(0, 0, 0, .3);
  color: #FFF;
  right: 0;
  top: 0;
  padding: 0.2rem 0.4rem;
  line-height: 1;
  z-index: 1000;
}
.example .example-box p {
  line-height: 1.4;
  font-size: 1rem;
  margin: 0.5rem 1rem 0;
  color: var(--dgrey);
}
.example .example-box p.article {
  position: absolute;
  bottom: 0.6rem;
  right: 0;
}
.example .example-box a:hover img, .example .example-box a:hover .place {
  opacity: 0.8;
}
.example .iconbox-blue i {
  color: #47aeff;
}
.example .iconbox-blue:hover .icon i {
  color: #fff;
}
.example .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.example .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}
/*説明*/
ul.explain {
  padding: 0;
  margin: 0 0 2rem;
}
ul.explain li {
  list-style: none;
  margin: 0 0 0.5rem 1.25rem;
  line-height: 1.5 !important;
  padding: 0;
  position: relative;
}
ul.explain li:before {
  font-family: "Font Awesome 5 Free";
  font-size: 115%;
  content: "\f0a6";
  margin: 0 0 0 -1.25rem;
  width: 1rem;
  text-align: right;
  position: absolute;
  padding: 0;
  top: 0;
  left: 0;
  transform: rotate(45deg);
}
/*banner*/
p.others {
  margin: 0 0 0.5rem;
  font-size: 95%;
  font-feature-settings: "palt";
}
.logo_qrss {
  margin: -0.15rem 0 0;
}
a:hover .logo_qrss {
  opacity: 0.8;
}
.banner img {
  border: 1px solid #ddd;
  padding: 3px;
  margin: -0.1rem 0 0 0;
}
.banner:hover img {
  opacity: 0.8;
}
/*--------------------------------------------------------------
# Copy
--------------------------------------------------------------*/
#copy {
  padding: 0 1rem 0.35rem;
  text-align: center;
}
#copy h3 {
  font-size: 220%;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.01rem;
  line-height: 1.35;
  margin: 0 0 1rem;
}
#copy h3 .logo_raku {
  margin: -0.4rem 0 0 0.2rem;
  height: 45px;
}
#copy p {
  font-size: 140%;
}
/* 下三角 */
.tri_dwn {
  clip-path: polygon(50% 80%, 0 0, 100% 0);
  margin: 0;
  background: linear-gradient(0deg, rgba(0, 99, 138, .7) 50%, rgba(178, 208, 220, 0.05) 100%);
  width: 150px;
  height: 30px;
  display: inline-block;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  background-color: var(--rakuBlue);
  background: linear-gradient(90deg, var(--rakuBlue), rgba(255, 255, 255, 1));
  padding: 0;
}
#contact .bg_logo {
  background-image: url(../img/logos/logo_light.png);
  background-repeat: no-repeat;
  background-position: right 85% !important;
  background-attachment: fixed !important;
  background-size: 350px;
  margin-right: auto;
  margin-left: auto;
  padding: 4rem 0;
}
#contact p {
  color: #FFF;
}
#contact .aboccard {
  margin: 2rem auto 0;
}
#contact .aboccard:hover {
  opacity: 0.8;
}
#contact .formttl {
  font-size: 1rem;
  color: #FFF;
  margin: 0 0 0.2rem;
  padding: 0;
}
#contact .req_bg {
  background-color: #CD668F;
  color: #FFF;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 20px;
  margin: -0.3rem 0 0.1rem 0.75rem;
  padding: 0 0.25rem;
  border-radius: 0.2rem;
  vertical-align: middle;
  height: 20px;
}
#contact .form-control {
  display: block;
  width: 100%;
  height: 2.35rem;
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  margin: 0 0 1rem;
  border: 1px solid #ccc;
  border-radius: 0.2rem;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}
#contact .form-control::placeholder {
  color: var(--dgrey);
  opacity: 0.5;
}
input[type=radio] {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
#contact textarea.form-control {
  height: auto;
}
:focus::-webkit-input-placeholder {
  color: transparent;
}
:focus:-moz-placeholder {
  color: transparent;
}
:focus::-moz-placeholder {
  color: transparent;
}
/*フォームボタン*/
.btn-chkQRSS, .btn-bck, .btn-chk {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.42857;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  transition: all 0.4s;
}
.btn-chkQRSS { /*確認ボタン*/
  border: 2px solid #FFF;
  color: #FFF;
  background: none;
}
.btn-chkQRSS:hover, .btn-chkQRSS:focus, .btn-chkQRSS.focus {
  color: var(--rakuBlue);
  background-color: #FFF;
  text-decoration: none
}
.btn-bck { /*戻るボタン*/
  border: 2px solid var(--rakuBlue);
  color: var(--rakuBlue);
  background-color: #fff;
}
.btn-bck:hover, .btn-bck:focus, .btn-chk:hover, .btn-chk:focus {
  color: #FFF;
  background-color: var(--rakuBlue);
}
.btn-chk { /*送信ボタン*/
  border: 2px solid var(--rakuBlue);
  color: var(--rakuBlue);
  background-color: #DDEAEF;
}
/*****フォーム確認～完了画面*****/
.bg_logo_w {
  background-image: url(../img/logo_light.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 0 0 279px 0;
  margin: 3rem 0 0;
}
#confirm p, #error p, #thx p {
  text-align: center;
}
#confirm p, #thx p {
  color: var(--rakuBlue);
}
/*確認画面table*/
.tbl_confirm {
  width: 100%;
  border: 2px solid var(--rakuBlue);
  margin-bottom: 3rem;
  border-collapse: collapse;
}
.tbl_confirm th {
  background-color: var(--rakuBlue);
  padding: 1rem;
  vertical-align: top;
  border-bottom: 1px dashed var(--rakuBlue);
  width: 20%;
  position: relative;
  font-weight: 500;
  color: #fff;
}
.tbl_confirm td {
  border-bottom: 1px dashed var(--rakuBlue);
  padding: 1rem;
}
/*確認・完了画面footer固定用*/
.confirm_footer {
  position: sticky;
  top: 100vh;
  width: 100%;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-size: cover;
  padding: 0 0 1rem;
  color: #eee;
  background-image: url(../img/footer.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  margin-right: auto;
  margin-left: auto;
  font-size: 0.9rem;
  line-height: 1.5;
}
.terms {
  background: rgba(255, 255, 255, 0.75);
  padding: 0.5rem;
  margin: 0 0 1.25rem;
  text-align: center;
}
.terms a {
  color: #106584 !important;
}
.terms a:hover {
  color: var(--rakuBlue) !important;
}
#footer a {
  color: #eee;
}
#footer a:hover {
  opacity: 0.8;
}
#footer ul.ul_terms {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
}
#footer ul.ul_terms li {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #596C20;
  display: inline;
  padding: 0 0.65rem;
  text-align: left;
}
#footer ul.ul_terms .qrss {
  width: 130px;
  max-width: 100%;
}
/* プライバシーポリシーバナー */
.cc-revoke, .cc-window {
  border-radius: 0 !important;
  padding: 0 !important;
  border-top: solid 1px rgba(0, 99, 138, 0.25) !important;
  box-shadow: 2px 4px 4px 0px rgba(0, 99, 138, 0.25);
}
.cc-window.cc-floating {
  max-width: 11em !important;
  left: 0;
  bottom: 0;
}
.cc-message {
  color: #111111 !important;
  font-size: 70% !important;
  margin: 0.8rem 0.8rem 0 !important;
  line-height: 1.6 !important;
  text-align: justify;
}
.cc-link {
  color: var(--rakuBlue) !important;
  margin: 0.5rem auto !important;
  font-size: 120% !important;
  padding: 0 !important;
  white-space: nowrap;
  text-align: center !important;
}
.cc-link:hover {
  color: #CD668F !important;
}
.cc-btn {
  font-size: 90% !important;
  padding: 0.125rem !important;
  border-radius: 0px !important;
  margin: 0.3rem 0.6rem 0.6rem !important;
  letter-spacing: 1px;
}
.cc-btn:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
  background-color: rgba(0, 99, 138, 0.7) !important;
}
/*--------------------------------------------------------------
定義
--------------------------------------------------------------*/
.bg_grd {
  border-top: 1px solid rgba(0, 99, 138, .2);
  background: -webkit-linear-gradient(rgba(0, 99, 138, 0.05) 0%, rgba(255, 255, 255, 1) 10%);
  background: -o-linear-gradient(rgba(0, 99, 138, 0.05) 0%, rgba(255, 255, 255, 1) 10%);
  background: linear-gradient(rgba(0, 99, 138, 0.05) 0%, rgba(255, 255, 255, 1) 10%);
}
/*border*/
.border-1 {
  border: 1px solid #ddd;
}
.bdr_tp_dotted {
  border-top: 1px dotted rgba(0, 99, 138, .25);
}
/*palt*/
.palt {
  font-feature-settings: "palt";
}
/*font-size*/
.fs-50p {
  font-size: 50% !important;
}
.fs-70p {
  font-size: 70% !important;
}
.fs-75p {
  font-size: 75% !important;
}
.fs-80p {
  font-size: 80% !important;
}
.fs-85p {
  font-size: 85% !important;
}
.fs-90p {
  font-size: 90% !important;
}
/*font-color*/
.fc_blu {
  color: var(--rakuBlue);
}
.fc_pnk {
  color: var(--logoPink);
}
.fc_pnk.circle {
  margin: 0 0.1rem;
  font-weight: 900;
}
/*上付き、下付き文字*/
span.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: 0.1rem;
}
span.subText {
  font-size: 75.5%;
  vertical-align: bottom !important;
  vertical-align: text-bottom;
  position: relative;
  top: 0em;
}
/*zoomアイコン*/
.zoomImg {
  position: absolute;
  right: -0.35rem;
  bottom: -0.35rem;
  padding: 0;
  margin: 0;
}
.zoomImg > i {
  font-size: 22px;
  text-shadow: none;
  padding: 0;
  margin: 0;
  color: #fff;
}
.bg-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 29px;
  text-align: center;
  color: #fff;
  background-color: rgba(195, 59, 121, 0.8);
  border: 2px solid #fff;
  border-radius: 100px;
}
.bg-icon img {
  width: 21px;
}
/*glightbox*/
.glightbox-clean .gslide-description {
  background: transparent !important;
}
.glightbox-clean .gdesc-inner {
  padding: 10px 0 !important;
}
.glightbox-clean .gslide-title {
  font-family: 'Noto Sans JP', sans-serif;
  color: rgba(255, 255, 255, .9);
  font-size: 1.1rem;
}
.goverlay {
  background: rgba(0, 0, 0, 0.85);
}
/* ※ */
ul.kome {
  margin: 0;
  padding: 0;
}
ul.kome li {
  list-style: none;
  margin: 0 0 0.3rem 1.25rem;
  line-height: 1.4 !important;
  padding: 0 !important;
  position: relative;
  font-size: 0.9rem;
}
ul.kome li br {
  line-height: 1.4 !important;
}
ul.kome li:before {
  content: "※";
  margin: 0 0 0 -5.25em;
  width: 5em;
  text-align: right;
  position: absolute;
  line-height: 1.3 !important;
  padding: 0 !important;
  top: 0;
}
/* #example※ */
#example ul.kome {
  margin: 0;
  padding: 0;
}
#example ul.kome li {
  list-style: none;
  margin: 0 0 0.3rem 1.8rem;
  padding: 0 !important;
  position: relative;
  font-size: 0.9rem;
}
#example ul.kome li:before {
  content: "※";
  margin: 0 0 0 -5em;
  width: 4.8em;
  text-align: right;
  position: absolute;
  padding: 0 !important;
  top: 0.45rem;
}
/*斜線アンダーライン*/
.diagonal {
  position: relative;
  display: inline-block;
}
.diagonal:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: -webkit-repeating-linear-gradient(-45deg, rgba(0, 99, 138, .25), rgba(0, 99, 138, .25) 2px, transparent 2px, transparent 4px);
  background: repeating-linear-gradient(-45deg, rgba(0, 99, 138, .25), rgba(0, 99, 138, .25) 2px, transparent 2px, transparent 4px);
}
/*ul_spec*/
.ul_spec {
  margin: 0.25rem 0 0 1rem;
  padding: 0;
}
.ul_spec li.catnum {
  font-size: 1rem;
  font-weight: bold;
  margin: 0.5rem 0 0.15rem;
  display: block;
  text-align: left;
  white-space: nowrap;
}
.ul_spec li {
  font-size: 85%;
  margin: 0;
  padding: 0;
  display: flex;
  text-align: left;
}
.ul_spec li .ttl_spec {
  width: 5.5rem;
  text-align: justify;
}