@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #1b2d75;
   font-family: "Noto Sans JP", sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 21px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   word-break: break-word;
}

@media screen and (max-width: 767px) {
   body {
      font-size: 14px;
   }
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   box-sizing: border-box;
   position: relative;
   margin: 0;
   padding: 0;
}

/* =============================================
 * Custom
*=============================================*/
.h2 {
   font-weight: 700;
   font-size: 50px;
   letter-spacing: 0;
   line-height: 60px;
}

.h2 .sub {
   display: block;
   font-family: "Fugaz One", sans-serif;
   font-weight: 400;
   font-size: 20px;
   line-height: 32px;
   text-transform: uppercase;
   padding-top: 10px;
}

.h-18 {
   font-weight: 700;
   font-size: 18px;
   letter-spacing: 0;
   line-height: 26px;
}

.h-20 {
   font-weight: 700;
   font-size: 20px;
   letter-spacing: 0;
   line-height: 30px;
}

.h-21 {
   font-weight: 700;
   font-size: 21px;
   letter-spacing: 0;
   line-height: 30px;
}

.h-23 {
   font-weight: 700;
   font-size: 23px;
   letter-spacing: 0;
   line-height: 32px;
}

.h-24 {
   font-weight: 700;
   font-size: 24px;
   letter-spacing: 0;
   line-height: 36px;
}

.h-26 {
   font-weight: 700;
   font-size: 26px;
   letter-spacing: 0;
   line-height: 36px;
}

.h-28 {
   font-weight: 700;
   font-size: 28px;
   letter-spacing: 0;
   line-height: 40px;
}

.h-30 {
   font-weight: 700;
   font-size: 30px;
   letter-spacing: 0;
   line-height: 44px;
}

.h-32 {
   font-weight: 700;
   font-size: 32px;
   letter-spacing: 0;
   line-height: 46px;
}

.h-34 {
   font-weight: 700;
   font-size: 34px;
   letter-spacing: 0;
   line-height: 40px;
}

.h-36 {
   font-weight: 700;
   font-size: 36px;
   letter-spacing: 0;
   line-height: 54px;
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 32px;
      line-height: 40px;
   }

   .h2 .sub {
      font-size: 18px;
      line-height: 26px;
      padding-top: 5px;
   }

   .h-18 {
      font-size: 16px;
   }

   .h-20,
   .h-21 {
      font-size: 17px;
      line-height: 24px;
   }

   .h-23 {
      font-size: 18px;
      line-height: 26px;
   }

   .h-24,
   .h-26,
   .h-28 {
      font-size: 20px;
      line-height: 30px;
   }

   .h-30,
   .h-32,
   .h-34 {
      font-size: 22px;
      line-height: 32px;
   }

   .h-36 {
      font-size: 24px;
      line-height: 36px;
   }
}

/* button */
.button {
   position: relative;
}

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 300px;
   height: 60px;
   background-color: #1b2d75;
   color: #fff;
   font-weight: 500;
   font-size: 16px;
   letter-spacing: 0.025em;
   line-height: 28px;
   box-sizing: border-box;
   padding: 0;
   position: relative;
   z-index: 1;
   border-radius: 50px;
}

.button a:after {
   content: '';
   border-width: 7px 0 7px 10px;
   border-color: transparent transparent transparent #fff;
   border-style: solid;
   position: absolute;
   top: calc(50% - 7px);
   right: 20px;
   transition: all 0.3s;
}

.button a:hover {
   background-color: #000;
   opacity: 1;
}

.button a:hover:hover:after {
   transform: translateX(5px);
}

.button.white a {
   background-color: #fff;
   color: #1b2d75;
   border: 1px solid #fff;
}

.button.white a:after {
   border-left-color: #1b2d75;
}

.button.white a:hover {
   background-color: #1b2d75;
   color: #fff;
}

.button.white a:hover:after {
   border-left-color: #fff;
}

/* -- -- */
.txt-udl {
   text-decoration: underline;
}

a.txt-udl:hover {
   text-decoration: none;
}

.txt-c {
   text-align: center;
}

.txt-j {
   text-align: justify;
}

.txt-r {
   text-align: right;
}

.cl-blue {
   color: #3D9FCA;
}

.cl-green {
   color: #77D1A0;
}

.cl-red {
   color: #BD3A43;
}

.cl-yellow {
   color: #FFB357;
}

.cl-black {
   color: #4B4B4B;
}

.cl-white {
   color: #fff;
}

.udl01 {
   background-image: linear-gradient(#AE0615, #AE0615);
   background-size: 100% 17px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.udl02 {
   background-image: linear-gradient(#002A7D, #002A7D);
   background-size: 100% 17px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.fw-r {
   font-weight: 400;
}

.fw-m {
   font-weight: 500;
}

.fw-b {
   font-weight: 700;
}

.fw-black {
   font-weight: 900;
}

.bdra-10 {
   border-radius: 10px;
}

.bdra-20 {
   border-radius: 20px;
}

.bdra-30 {
   border-radius: 30px;
}

.img_shadow {
   box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.img-obj {
   width: 100%;
   max-width: inherit;
   height: 100%;
   object-fit: cover;
}

@media screen and (max-width: 767px) {
   .bdra-20 {
      border-radius: 10px;
   }

   .bdra-30 {
      border-radius: 15px;
   }
}

/* -- --*/
.w600 {
   max-width: 600px;
   margin: 0 auto;
}

.w800 {
   max-width: 800px;
   margin: 0 auto;
}

.w900 {
   max-width: 900px;
   margin: 0 auto;
}

/* -- --*/
.section-space {
   padding: 100px 0;
}

.pt80 {
   padding-top: 80px;
}

.pt120 {
   padding-top: 120px;
}

.pb80 {
   padding-bottom: 80px;
}

.pb100 {
   padding-bottom: 100px;
}

.pb120 {
   padding-bottom: 120px;
}

.pb200 {
   padding-bottom: 200px;
}

@media screen and (max-width: 1200px) {
   .section-space {
      padding-right: 0;
      padding-left: 0;
   }
}

@media screen and (max-width: 767px) {
   .section-space {
      padding: 50px 0;
   }

   .pt80 {
      padding-top: 40px;
   }

   .pt120 {
      padding-top: 60px;
   }

   .pb80 {
      padding-bottom: 40px;
   }

   .pb100 {
      padding-bottom: 50px;
   }

   .pb120 {
      padding-bottom: 60px;
   }

   .pb200 {
      padding-bottom: 100px;
   }
}

/* -- --*/
.bg-cl01 {
   background-color: #f2f2f2;
}

.bg-cl02 {
   background-color: #1b2d75;
}

/* -- -- */
.img-zoom,
.img-zoom figure {
   display: block;
   overflow: hidden;
}

.img-zoom .img,
.img-zoom .img-obj {
   transition: 0.6s ease-in-out;
}

.img-zoom:hover .img,
.img-zoom:hover .img-obj {
   transform: scale(1.07);
}

/* -- --*/
.filter-gray {
   filter: grayscale(100%);
   cursor: pointer;
   transition: all 0.3s;
}

.filter-gray:hover {
   filter: grayscale(0);
}

/* -- --*/
.photo-full img {
   width: 100%;
   max-width: inherit;
}

@media screen and (max-width: 767px) {
   .photo-full {
      width: 100%;
      height: 60vw;
   }

   .photo-full img {
      height: 100%;
      object-fit: cover;
   }
}

/* -- --*/
hr {
   border: 0;
   border-bottom: 1px solid #fff;
}

/*=============================================
 * <header>
 *=============================================*/
header {
   width: 100%;
   box-sizing: border-box;
   position: sticky;
   top: 0;
   left: 0;
   z-index: 100;
   padding: 0;
}

header .logo {
   display: flex;
   align-items: center;
   gap: 30px;
   flex: 1 0 0;
}

header .logo .logo-1 {
   max-width: 605px;
}

header .logo span {
   width: 1px;
   height: 45px;
   background-color: #fff;
}

header .logo .logo-2 {
   max-width: 206px;
}

.header__catch {
   text-align: center;
   font-weight: 500;
   font-size: 17px;
   letter-spacing: 0.05em;
   padding: 9px 0 10px;
}

.header__row {
   display: flex;
   align-items: center;
   gap: 0 35px;
   background-color: #1b2d75;
   padding-left: 35px;
}

.header__bnr {
   display: flex;
}

.header__tel {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 225px;
   height: 95px;
   background-color: #f2f2f2;
}

.header__tel small,
.header__tel .time {
   font-weight: 500;
   line-height: 20px;
   letter-spacing: 0.025em;
}

.header__tel small {
   background-color: #1b2d75;
   color: #fff;
   border-radius: 20px;
   font-size: 11px;
   padding: 0 5px;
}

.header__tel .time {
   font-size: 12px;
}

.header__tel a {
   background: url("../img/common/icon-tel.png") no-repeat top 10px left/20px auto;
   font-size: 30px;
   line-height: 34px;
   letter-spacing: 0.025em;
   padding: 5px 0 0 25px;
}

.header__dl a,
.header__inq a {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 100px;
   height: 95px;
   font-weight: 500;
   font-size: 11px;
   line-height: 14px;
   color: #fff;
   box-sizing: border-box;
}

.header__dl a:hover,
.header__inq a:hover {
   background-color: #000;
   opacity: 1;
}

.header__dl a {
   background-color: #4c4fc6;
}

.header__dl a:before {
   content: '';
   width: 18px;
   height: 17px;
   background: url("../img/common/icon-dl.png") no-repeat center top/100% auto;
   display: block;
   margin-bottom: 5px;
}

.header__inq a {
   background-color: #ef6600;
   padding-top: 6px;
}

.header__inq a:before {
   content: '';
   width: 16px;
   height: 11px;
   background: url("../img/common/icon-email.png") no-repeat center top/100% auto;
   display: block;
   margin-bottom: 5px;
}

.navbar {
   background: #fff;
}

.navbar .nav {
   display: flex;
   justify-content: center;
   font-size: 15px;
   padding: 22px 0;
}

.navbar .nav li {
   display: flex;
   align-items: center;
}

.navbar .nav li+li:before {
   content: '';
   height: 15px;
   border-left: 1px solid #1b2d75;
   margin: 0 20px;
}

.navbar .nav a {
   border-bottom: 1px solid transparent;
}

.navbar .nav a:hover,
.navbar .nav a.current {
   border-bottom-color: #1b2d75;
}

.navbar__bnr {
   display: none;
}

@media screen and (max-width: 1023px) {
   .header__row {
      gap: 20px;
      padding-left: 20px;
   }

   header .logo {
      flex-direction: column;
      gap: 10px;
   }

   header .logo span {
      width: 100%;
      height: 1px;
   }

   .navbar .nav li+li:before {
      margin: 0 8px;
   }
}

@media screen and (max-width: 767px) {
   header {
      padding: 0;
   }

   header .logo {
      align-items: flex-start;
      gap: 5px;
   }

   header .logo .logo-2 {
      max-width: 150px;
   }

   .header__catch {
      font-size: 14px;
      line-height: 20px;
   }

   .header__row {
      gap: 30px;
      padding: 8px 20px 12px;
   }

   .header__bnr {
      display: none;
   }

   .hamburger {
      display: block;
   }

   .navbar {
      display: flex;
      flex-direction: column;
      gap: 30px;
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      box-sizing: border-box;
      overflow-y: auto;
      padding: 120px 0 0;
      z-index: -1;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s linear;
   }

   .navbar .nav {
      flex-direction: column;
      justify-content: flex-start;
      flex: 1 0 0;
      padding: 0;
   }

   .navbar .nav li {
      flex-direction: column;
   }

   .navbar .nav li+li {
      border-top: 0;
   }

   .navbar .nav li+li:before {
      width: 15px;
      height: 0;
      border-top: 1px solid #1b2d75;
      border-left: 0;
      margin: 5px 0;
   }

   .navbar .nav a {
      display: block;
      padding: 10px 0;
   }

   .navbar__bnr {
      display: flex;
   }

   .navbar__bnr .header__tel {
      width: 50%;
      height: 80px;
   }

   .navbar__bnr .header__tel small {
      font-size: 10px;
      padding: 0 5px;
   }

   .navbar__bnr .header__tel a {
      background: url("../img/common/icon-tel.png") no-repeat top 9px left/16px auto;
      font-size: 24px;
      line-height: 30px;
      padding: 2px 0 0 22px;
   }

   .navbar__bnr .header__tel .time {
      font-size: 10px;
   }

   .navbar__bnr .header__inq,
   .navbar__bnr .header__dl {
      width: 25%;
   }

   .navbar__bnr .header__inq a,
   .navbar__bnr .header__dl a {
      width: 100%;
      height: 80px;
   }

   .navOpen .header__catch {
      display: none;
   }

   .navOpen .navbar {
      opacity: 1;
      visibility: visible;
   }
}

@media screen and (max-width: 767px) {
   header .logo a {
      max-width: 200px;
   }
}

@media screen and (min-width: 768px) {
   .navbar {
      height: auto !important;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background-color: #1b2d75;
   color: #fff;   
}

footer .wrap {
   display: flex;
   gap: 20px;
   padding-top: 55px;
   padding-bottom: 45px;
}

footer .col {
   align-self: flex-end;
   flex: 1 0 0;
}

footer .logo {
   max-width: 271px;
}

footer #f-info {
   max-width: 600px;
   font-size: 14px;
   line-height: 20px;
   padding-top: 40px;
}

footer #f-info dl {
   display: table;
   width: 100%;
}

footer #f-info dl+dl {
   padding-top: 15px;
}

footer #f-info dl dt,
footer #f-info dl dd {
   display: table-cell;
   vertical-align: middle;
}

footer #f-info dl dt {
   width: 95px;
   background-color: #1b2d75;
   color: #fff;
   text-align: center;
}

footer #f-info dl dd {
   padding-left: 15px;
}

footer #f-info dl dd a:not([href^="tel:"]):hover {
   text-decoration: underline;
}

footer nav {
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   gap: 30px;
   border-left: 1px solid #fff;
   padding-left: 40px;
   font-size: 15px;
}

footer nav a {
   border-bottom: 1px solid transparent;
}

footer nav a:hover {
   border-bottom-color: #1b2d75;
}

footer address {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 45px;
   background-color: #fff;
   color: #1b2d75;
   font-size: 10px;
   line-height: 12px;
   text-align: center;
   margin: 0 auto;
   padding: 0;
}

@media screen and (max-width: 767px) {
   footer .col {
      align-self: center;
   }

   footer .wrap {
      flex-direction: column;
      gap: 20px;
      padding-top: 40px;
      padding-bottom: 40px;
   }

   footer #f-info {
      padding-top: 20px;
   }

   footer #f-info dl dd {
      padding-left: 10px;
   }

   footer nav {
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 10px 10px;
      border-top: 1px solid #1b2d75;
      border-left: 0;
      padding: 20px 0 0;
      font-size: 12px;
   }

   footer nav p {
      width: calc(33.33% - 7px);
   }

   footer address {
      padding-bottom: 40px;
   }
}

/* -- -- */
.ft-fixed {
   position: fixed;
   z-index: 10;
   transition: 0.5s;
   opacity: 0;
   visibility: hidden;
}

.ft-fixed.fixed {
   opacity: 1;
   visibility: visible;
}

#pagetop {
   width: 70px;
}

@media screen and (max-width: 1023px) {
   .ft-fixed {
      width: 100%;
      bottom: 0;
      left: 0;
   }

   .ft-fixed ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 0 10px;
   }

   .ft-fixed a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 40px;
      border-radius: 10px 10px 0 0;
      color: #fff;
      box-sizing: border-box;
      padding: 0 10px;
   }

   .ft-fixed a.dl {
      background-color: #4c4fc6;
   }

   .ft-fixed a.inq {
      background-color: #ef6600;
   }
}

@media screen and (min-width: 1024px) {
   .ft-fixed {
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      font-weight: 500;
      font-size: 18px;
      line-height: 20px;
      text-align: center;
   }

   .ft-fixed ul li+li {
      padding-top: 5px;
   }

   .ft-fixed a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 170px;
      border-radius: 10px 0 0 10px;
      color: #fff;
      box-sizing: border-box;
      padding: 0 10px;
   }

   .ft-fixed a.dl {
      background-color: #4c4fc6;
   }

   .ft-fixed a.inq {
      background-color: #ef6600;
   }

   .ft-fixed a:hover {
      background-color: #000;
      opacity: 1;
   }
}

/*=============================================
 * <section>
 *=============================================*/
.section-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 35px;
   padding-bottom: 135px;
}

.section-contents {
   width: 900px;
   order: 2;
}

.sidebar {
   width: 226px;
   border-right: 1px solid #1b2d75;
   padding-right: 35px;
   order: 1;
}

.sidebar .banner {
   display: grid;
   align-items: flex-start;
   gap: 15px 0;
}

.sidebar .banner li:nth-child(2) a {
   display: grid;
   height: 125px;
   background-color: #000;
   color: #fff;
}

.sidebar .banner li:nth-child(2) a img,
.sidebar .banner li:nth-child(2) a span {
   grid-area: 1/1;
   margin: auto;
}

.sidebar .banner li:nth-child(2) a img {
   opacity: 0.4;
}

.sidebar .banner li:nth-child(2) a span {
   position: relative;
   z-index: 1;
}

.sidebar .product-ex {
   padding-top: 35px;
}

.sidebar .product-ex h3 {
   background-color: #1b2d75;
   color: #fff;
   text-align: center;
   padding: 12px;
}

.sidebar .product-ex h3 span {
   display: block;
   border-left: 3px solid #fff;
}

.sidebar .product-ex dl {
   padding-top: 20px;
}

.sidebar .product-ex dl dt {
   border-bottom: 1px solid #ed1c24;
   padding-bottom: 10px;
}

.sidebar .product-ex dl dd {
   font-weight: 400;
   padding: 15px 10px 0;
}

.sidebar .product-ex dl dd p+p {
   padding-top: 10px;
}

.sidebar .product-ex dl dd a {
   display: block;
   position: relative;
   padding-left: 15px;
}

.sidebar .product-ex dl dd a:before {
   content: '';
   border-width: 5px 0 5px 6px;
   border-color: transparent transparent transparent #1b2d75;
   border-style: solid;
   position: absolute;
   top: calc(50% - 5px);
   left: 0;
   transition: all 0.3s;
}

.sidebar .product-ex dl dd a:hover {
   opacity: 1;
}

.sidebar .product-ex dl dd a:hover:before {
   left: 5px;
}

.sidebar .nav {
   padding-top: 35px;
}

.sidebar .nav li+li {
   padding-top: 15px;
}

.sidebar .nav a {
   display: block;
   background-color: #1b2d75;
   color: #fff;
   text-align: center;
   padding: 12px;
}

.sidebar .nav a span {
   display: block;
   border-left: 3px solid #fff;
}

.sidebar .nav a:hover {
   background-color: #000;
   opacity: 1;
}

@media screen and (max-width: 1440px) {
   .section-contents {
      width: calc(100% - 297px);
   }
}

@media screen and (max-width: 1023px) {
   .section-wrap {
      flex-direction: column;
      flex-wrap: nowrap;
   }

   .section-contents {
      width: 100%;
      order: 1;
   }

   .sidebar {
      width: 100%;
      border-top: 1px solid #1b2d75;
      border-right: 0;
      order: 2;
      padding: 35px 0 0;
   }

   .sidebar .banner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
   }

   .sidebar .banner li:nth-child(2) a {
      height: 25.5vw;
   }

   .sidebar .product-ex {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
   }

   .sidebar .product-ex h3 {
      width: 100%;
   }

   .sidebar .product-ex dl {
      width: calc(50% - 5px);
      padding-top: 10px;
   }

   .sidebar .nav {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
   }

   .sidebar .nav li+li {
      padding-top: 0;
   }
}

@media screen and (max-width: 767px) {
   .section-wrap {
      padding-bottom: 70px;
   }

   .sidebar .banner li:nth-child(2) a {
      height: 23.5vw;
      font-size: 16px;
   }

   .sidebar .product-ex dl dd {
      font-size: 14px;
      padding: 10px 5px 0;
   }

   .sidebar .product-ex dl dd p+p {
      padding-top: 0;
   }

   .sidebar .nav {
      grid-template-columns: repeat(2, 1fr);
   }
}

/*=============================================
 * <key>
 *=============================================*/
#kv {
   background: #cccccc;
   width: 100%;
   height: 36vw;
   box-sizing: border-box;
   position: relative;
}

#kv .kv-img {
   position: absolute;
   top: 0;
   left: 0;
}

#kv .wrap {
   display: flex;
   align-items: center;
   justify-content: center;
   height: 100%;
}

#kv .page-title {
   color: #fff;
   text-align: center;
   text-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
}

/*=============================================
 * breadcrumbs
 *=============================================*/
.breadcrumbs {
   font-size: 14px;
   line-height: 20px;
   padding: 20px 0 40px;
}

.breadcrumbs .wrap {
   padding-bottom: 10px;
}

.breadcrumbs ul {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 0px;
}

.breadcrumbs ul li {
   display: flex;
   align-items: center;
}

.breadcrumbs ul li+li:before {
   content: '';
   display: block;
   width: 0;
   height: 0;
   border-width: 5px 0 5px 6px;
   border-color: transparent transparent transparent #1b2d75;
   border-style: solid;
   margin: 0 010px;
}

@media screen and (max-width: 1023px) {
   .breadcrumbs .wrap {
      overflow-x: auto;
   }

   .breadcrumbs ul {
      width: max-content;
   }
}

@media screen and (max-width: 767px) {
   .breadcrumbs {
      font-size: 12px;
   }
}

/* =============================================
 * 404
 *=============================================*/
#content-404 {
   padding: 100px 0;
}

#content-404 .txt {
   padding-top: 40px;
}

#content-404 .button {
   padding-top: 40px;
}

@media screen and (max-width: 767px) {
   #content-404 {
      padding: 50px 0;
   }

   #content-404 .txt {
      padding-top: 30px;
   }

   #content-404 .button {
      padding-top: 30px;
   }
}

/*=============================================
 * 
 *=============================================*/
.tb-style {
   position: relative;
}

.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   line-height: 24px;
}

.tb-style dl dt,
.tb-style dl dd {
   display: table-cell;
   vertical-align: top;
   border-bottom: 2px solid #E8E8E8;
   padding: 25px 0;
}

.tb-style dl:first-child dt,
.tb-style dl:first-child dd {
   padding-top: 0;
}

.tb-style dl dt {
   width: 265px;
   border-bottom-color: #77D1A0;
   font-weight: 700;
}

.tb-style dl dd {
   font-weight: 400;
   font-size: 15px;
   padding-left: 40px;
}

.tb-style .dot li {
   text-indent: -15px;
   padding-left: 15px;
}

.tb-style .business:not(:last-child) {
   padding-bottom: 32px;
}

.tb-style .business h4 {
   font-weight: 700;
   font-size: 16px;
   padding-left: 24px;
   position: relative;
}

.tb-style .business h4:before {
   content: '●';
   color: #77D1A0;
   position: absolute;
   top: 0;
   left: 0;
}

.tb-style .business ul {
   line-height: 30px;
   padding: 7px 0 0 24px;
}

@media screen and (max-width: 767px) {
   .tb-style dl {
      display: block;
      padding: 20px 0;
      position: relative;
   }

   .tb-style dl:before {
      content: '';
      width: 100%;
      height: 2px;
      background: linear-gradient(to right, #77D1A0 30%, #E8E8E8 30%);
      position: absolute;
      bottom: 0;
      left: 0;
   }

   .tb-style dl dt,
   .tb-style dl dd {
      display: block;
      width: auto;
      border-bottom: 0;
      padding: 0;
   }

   .tb-style dl dd {
      padding: 10px 0 0 10px;
   }

   .tb-style dl:first-child {
      padding-top: 0;
   }

   .tb-style .dot li {
      text-indent: -14px;
      padding-left: 14px;
   }
}

/*=============================================
 * swiper
 *=============================================*/
.swiper-gallery .swiper-wrapper {
   transition-timing-function: linear;
}

.swiper-fade .swiper-slide {
   opacity: 0;
}

.swiper-fade .swiper-slide-active {
   opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
   width: 35px;
   height: 35px;
   position: relative;
   top: auto;
   right: auto;
   left: auto;
   margin: 0;
}

.swiper-button-next:before,
.swiper-button-prev:before {
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   border-radius: 50%;
   box-sizing: border-box;
   transition: all 0.3s;
}

.swiper-button-next svg,
.swiper-button-prev svg {
   display: none;
}

.swiper-button-next:before {
   background: url("../img/common/slider-next.png") no-repeat center/100% auto;
}

.swiper-button-prev:before {
   background: url("../img/common/slider-prev.png") no-repeat center/100% auto;
}

.swiper-button-next:hover:before,
.swiper-button-prev:hover:before {
   opacity: 0.5;
}

.swiper-pagination {
   display: flex;
   align-items: center;
   gap: 5px;
   width: auto;
   position: static;
   margin: 0;
   font-size: 13px;
   line-height: 16px;
   color: #A2A2A2;
}

.swiper-pagination .swiper-pagination-bullet {
   display: block;
   width: auto;
   height: auto;
   border-radius: 0;
   background: transparent;
   opacity: 1;
   font-weight: 600;
   font-size: 14px;
   letter-spacing: 0.04em;
   line-height: 30px;
   margin: 0;
}

.swiper-pagination .swiper-pagination-current {
   color: #77D1A0;
}

.slick-arrow {
   width: 60px;
   height: 60px;
   position: relative;
   top: auto;
   right: auto;
   left: auto;
   cursor: pointer;
}

.slick-arrow:before {
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   border-radius: 50%;
   border: 1px solid #77D1A0;
   box-sizing: border-box;
   transition: all 0.3s;
}

.slider-next:before {
   background: #77D1A0 url("../img/common/arrow-circle-right-green.png") no-repeat center/36px auto;
}

.slider-prev:before {
   background: #77D1A0 url("../img/common/arrow-circle-right-green.png") no-repeat center/36px auto;
   transform: rotate(180deg);
}

.slider-next:hover:before,
.slider-prev:hover:before {
   background-image: url("../img/common/arrow-circle-right.png");
   background-color: #fff;
   opacity: 1;
}

@media screen and (max-width: 767px) {
   .slick-arrow {
      width: 50px;
      height: 50px;
   }
}

/*=============================================
 * wpcf7
 *=============================================*/
.wpcf7 {
   position: relative;
}

.wpcf7 .select {
   position: relative;
}

.wpcf7 .select {
   display: flex;
   align-items: flex-start;
   width: 100%;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap {
   display: block;
   flex: 1;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap::after {
   content: '';
   width: 15px;
   height: 8px;
   background: url("../img/common/icon-angle-down.png") no-repeat center top/cover;
   position: absolute;
   top: 19px;
   right: 20px;
}

.wpcf7 .select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   box-shadow: none;
   background-color: #fff;
   border: 1px solid #fff;
   border-radius: 0;
   font-weight: 400;
   font-size: 18px;
   line-height: 35px;
   padding: 10px;
   cursor: pointer;
   color: #1b2d75;
}

.wpcf7 .select select::-ms-expand {
   display: none;
}

.wpcf7 input:not([type="checkbox"], [type="radio"]),
.wpcf7 textarea {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 0px solid #fff;
   border-radius: 0px;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 10px 15px;
   font-weight: 400;
   line-height: 35px;
   color: #1b2d75;
}

.wpcf7 textarea {
   height: 275px;
   resize: vertical;
}

.wpcf7 input[type="date"] {
   padding-right: 40px;
}

.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
   width: 100%;
   height: 100%;
   cursor: pointer;
   background-position: top 22px right 15px;
   background-size: 18px auto;
   position: absolute;
   top: 0;
   left: 0;
}

.wpcf7 ::-webkit-input-placeholder {
   color: #ccc;
}

.wpcf7 ::-moz-placeholder {
   color: #ccc;
}

.wpcf7 :-ms-input-placeholder {
   color: #ccc;
}

.wpcf7 :-moz-placeholder {
   color: #ccc;
}

.wpcf7-checkbox,
.wpcf7-radio {
   display: flex;
   flex-wrap: wrap;
   gap: 10px 52px;
   line-height: 24px;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
   display: block;
   margin-left: 0;
   cursor: pointer;
}

.wpcf7-checkbox input,
.wpcf7-radio input {
   display: none;
}

.wpcf7-checkbox .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 22px 1fr;
   align-items: flex-start;
   gap: 8px;
   cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:after {
   content: '';
   grid-area: 1/1;
   margin: auto;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:before {
   width: 22px;
   height: 22px;
   border: 1px solid #fff;
   box-sizing: border-box;
}

.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:after {
   width: 16px;
   height: 16px;
   background-color: #fff;
   display: none;
}

.wpcf7-checkbox input:checked+.wpcf7-list-item-label:after,
.wpcf7-radio input:checked+.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
   font-size: 13px;
   line-height: 22px;
   color: #E50012;
}

.wpcf7 .result_txt {
   display: block;
   word-break: break-all;
   white-space: pre-wrap;
}

@media screen and (max-width: 1023px) {

   .wpcf7-checkbox,
   .wpcf7-radio {
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 10px;
   }
}

@media screen and (max-width: 767px) {

   .wpcf7 input:not([type="checkbox"], [type="radio"]),
   .wpcf7 textarea {
      padding: 5px 15px;
   }
}

/*=============================================
 * cta
 *=============================================*/
.section__cta .row-1 {
   background-color: #e6ebf9;
   padding: 48px 0;
}

.section__cta .row-1 ul {
   display: flex;
   justify-content: center;
   gap: 30px;
}

.section__cta .row-1 ul a {
   width: 280px;
}

.section__cta .row-2 {
   background: url("../img/common/cta-bg-img.jpg") no-repeat center top/cover;
   color: #fff;
   padding: 100px 0 90px;
   position: relative;
}

.section__cta .row-2:before{
   content: '';   
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

.section__cta .row-2 h2 {
   font-weight: 700;
   font-size: 50px;
   line-height: 70px;
}

.section__cta .row-2 .txt {
   font-size: 18px;
   line-height: 48px;
   padding-top: 30px;
}

.section__cta .row-2 .banner {
   display: flex;
   gap: 30px;
   padding-top: 50px;
}

.section__cta .row-2 .banner li {
   width: 280px;
}

.section__cta .row-2 .banner .tel {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 95px;
   background-color: #f2f2f2;
   color: #1b2d75;
}

.section__cta .row-2 .banner .tel a {
   background: url("../img/common/icon-tel.png") no-repeat top 8px left/24px auto;
   font-size: 37px;
   letter-spacing: 0.025em;
   line-height: 40px;
   padding-left: 30px;
}

.section__cta .row-2 .banner .tel .time {
   font-weight: 500;
   font-size: 14px;
   letter-spacing: 0.025em;
   line-height: 24px;
}

.section__cta .row-2 .banner .inq a,
.section__cta .row-2 .banner .dl a {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   width: 100%;
   height: 95px;
   font-weight: 500;
   font-size: 26px;
   line-height: 32px;
}

.section__cta .row-2 .banner .inq a:hover,
.section__cta .row-2 .banner .dl a:hover {
   background-color: #000;
   opacity: 1;
}

.section__cta .row-2 .banner .dl a {
   background-color: #4c4fc6;
}

.section__cta .row-2 .banner .dl a:before {
   content: '';
   width: 25px;
   height: 24px;
   background: url("../img/common/icon-dl.png") no-repeat center top/100% auto;
   display: block;
}

.section__cta .row-2 .banner .inq a {
   background-color: #ef6600;
}

.section__cta .row-2 .banner .inq a:before {
   content: '';
   width: 25px;
   height: 18px;
   background: url("../img/common/icon-email.png") no-repeat center top/100% auto;
   display: block;
}

@media screen and (max-width: 1023px) {
   .section__cta .row-1 ul li {
      width: 33.33%;
   }

   .section__cta .row-1 ul a {
      width: 100%;
   }

   .section__cta .row-2 h2 {
      font-size: 45px;
   }

   .section__cta .row-2 .txt br.pc {
      display: none;
   }

   .section__cta .row-2 .banner {
      gap: 10px;
   }

   .section__cta .row-2 .banner .inq a,
   .section__cta .row-2 .banner .dl a {
      font-size: 20px;
   }
}

@media screen and (max-width: 767px) {
   .section__cta .row-1 {
      padding: 20px 0;
   }

   .section__cta .row-1 ul {
      flex-direction: column;
      gap: 20px;
   }

   .section__cta .row-1 ul li {
      width: 100%;
   }

   .section__cta .row-2 {
      padding: 50px 0;
   }

   .section__cta .row-2 h2 {
      font-size: 22px;
      line-height: 32px;
   }

   .section__cta .row-2 .txt {
      text-align: justify;
      font-size: 14px;
      line-height: 28px;
      padding-top: 20px;
   }

   .section__cta .row-2 .banner {
      flex-direction: column;
      padding-top: 30px;
   }

   .section__cta .row-2 .banner li {
      width: 100%;
   }

   .section__cta .row-2 .banner .tel {
      height: 80px;
   }

   .section__cta .row-2 .banner .inq a,
   .section__cta .row-2 .banner .dl a {
      height: 80px;
   }
}