@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* BASE STYLE
--------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  line-height: 1.5;
  color: #1e1e1e;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  vertical-align: middle;
}

html {
  scroll-padding-top: 6.25vw;
  /* ヘッダーの高さが80pxの場合 */
  scroll-behavior: smooth;
  /* (任意) スムーススクロール */
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 18.6666666667vw;
  }
}

/* CLEAR-FIX */
.clearfix {
  zoom: 1;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

a.link-txt {
  color: #0097d9;
  text-decoration: underline;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.inner {
  max-width: 69.4444444444vw;
  width: 95%;
  margin: auto;
}

.wrap {
  overflow: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

.font01 {
  font-family: "Source Sans 3", sans-serif;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .inner {
    max-width: 100%;
    width: 90%;
    margin: auto;
  }
}
/*------------------------------------------------

l-header

-------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  height: min(90 / 1440 * 100vw, 90px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
}
.l-header .l-header-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.l-header .l-header-logo__ttl {
  width: min(240 / 1440 * 100vw, 240px);
  margin-left: min(20 / 1440 * 100vw, 20px);
}
.l-header .l-header-logo__ttl .-link {
  display: block;
  height: 100%;
}
.l-header .l-header-logo__ttl .-link img {
  height: auto;
}
.l-header .l-header-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.l-header .l-header-area__outer {
  height: 100%;
}
.l-header .l-header-area__list {
  margin-right: min(200 / 1440 * 100vw, 200px);
  height: 100%;
  gap: 0 min(30 / 1440 * 100vw, 30px);
}
.l-header .l-header-area__list-item {
  height: 100%;
}
.l-header .l-header-area__list-item .-link {
  height: 100%;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1e1e1e;
  font-size: min(16 / 1440 * 100vw, 16px);
  letter-spacing: 0.04em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
  padding: 0 min(10 / 1440 * 100vw, 10px);
}
.l-header .l-header-area__list-item .-link::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: min(3 / 1440 * 100vw, 3px);
  background-color: #185aa5;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  bottom: 0;
}
.l-header .l-header-area__list-item .-link.-pageline::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: min(3 / 1440 * 100vw, 3px);
  background-color: #185aa5;
  left: 0;
  bottom: 0;
}
.l-header .l-header-area__list-item .-link:hover {
  opacity: 0.7;
}
.l-header .l-header-area__list-item .-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.l-header .l-header-area__list-item .-en {
  display: block;
  font-size: min(11 / 1440 * 100vw, 11px);
  color: #b2b0b0;
  text-transform: uppercase;
}
.l-header .l-header-area__contact-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(170 / 1440 * 100vw, 170px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #0097d9;
}
.l-header .l-header-area__contact-btn:hover {
  opacity: 0.8;
}
.l-header .l-header-area__contact-btn .-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-size: min(17 / 1440 * 100vw, 17px);
  letter-spacing: 2%;
  font-weight: 400;
  color: #fff;
}
.l-header .l-header-area__contact-btn .-icon {
  position: relative;
  padding-top: min(20 / 1440 * 100vw, 20px);
}
.l-header .l-header-area__contact-btn .-icon::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/common/contact-mail.png) no-repeat;
  background-size: contain;
  width: min(27 / 1440 * 100vw, 27px);
  height: min(25 / 1440 * 100vw, 25px);
  top: -0.1388888889vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
.l-header .l-header-area__contact-btn .-en {
  display: block;
  font-size: min(11 / 1440 * 100vw, 11px);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.1;
}
.l-header .l-header-area__list-item--posi {
  position: relative;
  cursor: default;
}
.l-header .l-header-area__list-item--posi .-accdion {
  position: relative;
}
.l-header .l-header-area__list-item--posi .-accdion::after {
  display: none;
}
.l-header .l-header-area__list-item--posi:hover .l-hader-area__listselect {
  opacity: 1;
  pointer-events: auto;
}
.l-header .l-hader-area__listselect {
  position: absolute;
  width: min(230 / 1440 * 100vw, 230px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-header .l-hader-area__listselect ul {
  gap: min(1 / 1440 * 100vw, 1px);
}
.l-header .l-hader-area__listselect li {
  width: 100%;
  text-align: center;
}
.l-header .l-hader-area__listselect a {
  display: block;
  background-color: #0097d9;
  color: #fff;
  font-size: min(14 / 1440 * 100vw, 14px);
  padding: min(15 / 1440 * 100vw, 15px) min(10 / 1440 * 100vw, 10px);
  letter-spacing: 0.02em;
}
.l-header .l-hader-area__listselect a:hover {
  opacity: 0.7;
}
.l-header .l-header-humbtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header .l-header-area__list-item .-link {
    font-size: min(19 / 1440 * 100vw, 19px);
  }
  .l-header .l-header-area__list-item .-en {
    font-size: min(14 / 1440 * 100vw, 14px);
  }
  .l-header .l-hader-area__listselect a {
    font-size: min(16 / 1440 * 100vw, 16px);
  }
  .l-header .l-header-area__contact-btn .-link {
    font-size: min(19 / 1440 * 100vw, 19px);
  }
  .l-header .l-header-area__contact-btn .-en {
    font-size: min(14 / 1440 * 100vw, 14px);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    height: min(70 / 375 * 100vw, 70px);
  }
  .l-header.open {
    background-color: #f5f5f5 !important;
  }
  .l-header .l-header-logo__ttl {
    width: min(185 / 375 * 100vw, 185px);
    margin-left: min(15 / 375 * 100vw, 15px);
  }
  .l-header .l-header-area {
    position: fixed;
    height: calc(100vh - min(70 / 375 * 100vw, 70px));
    top: min(70 / 375 * 100vw, 70px);
    padding-top: min(30 / 375 * 100vw, 30px);
    width: 100%;
    background-color: #0097d9;
    left: 0;
    opacity: 0;
    pointer-events: none;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: scroll;
  }
  .l-header .l-header-area.open {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 1000;
    pointer-events: auto;
  }
  .l-header .l-header-area__list {
    width: 100%;
    height: auto;
    margin-top: min(0 / 375 * 100vw, 0px);
    margin-right: 0px;
  }
  .l-header .l-header-area__list-item {
    width: 100%;
    height: auto;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }
  .l-header .l-header-area__list-item::before {
    content: "";
    position: absolute;
    width: min(10 / 375 * 100vw, 10px);
    height: auto;
    aspect-ratio: 1;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
    right: min(30 / 375 * 100vw, 30px);
  }
  .l-header .l-header-area__list-item .-link {
    position: relative;
    display: inline-block;
    color: #fff;
    width: 100%;
    height: auto;
    text-align: left;
    font-size: min(16 / 375 * 100vw, 16px);
    font-weight: 400;
    padding: min(20 / 375 * 100vw, 20px) min(30 / 375 * 100vw, 30px);
  }
  .l-header .l-header-area__list-item .-link .-en {
    display: none;
  }
  .l-header .l-header-area__list-item .-link.-pageline::before {
    display: none;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi:has(.l-hader-area__listselect li:hover) > .-accdion::before {
    -webkit-transform: 0;
            transform: 0;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi:has(.l-hader-area__listselect li:hover) > .-accdion::after {
    opacity: 1;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi::before {
    display: none;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion {
    position: relative;
    border-bottom: none;
    padding-right: 0;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion::before {
    display: none;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion::after {
    display: none;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click {
    position: absolute;
    display: block;
    width: min(50 / 375 * 100vw, 50px);
    height: min(50 / 375 * 100vw, 50px);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: min(10 / 375 * 100vw, 10px);
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click.open::before {
    opacity: 1;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click.open::after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click::before {
    content: "";
    position: absolute;
    display: block;
    width: min(20 / 375 * 100vw, 20px);
    height: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: auto;
    right: min(12 / 375 * 100vw, 12px);
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-accdion-click::after {
    content: "";
    position: absolute;
    display: block;
    width: 2px;
    height: min(20 / 375 * 100vw, 20px);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: min(21 / 375 * 100vw, 21px);
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-link:hover {
    color: #fff;
    opacity: 1;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-link:hover::before {
    opacity: 1;
  }
  .l-header .l-header-area__list-item.l-header-area__list-item--posi .-link:hover::after {
    opacity: 1;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect {
    position: static;
    display: none;
    width: 100%;
    background-color: #0097d9;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0s ease;
    transition: all 0s ease;
    padding-bottom: min(10 / 375 * 100vw, 10px);
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect ul {
    gap: 0px;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect li {
    width: 100%;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect li:first-child a {
    padding-top: 0;
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect li:last-child a {
    padding-bottom: min(20 / 375 * 100vw, 20px);
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect a {
    position: relative;
    display: block;
    text-align: left;
    color: #fff;
    padding: min(10 / 375 * 100vw, 10px) 0;
    padding-left: min(45 / 375 * 100vw, 45px);
    font-size: min(16 / 375 * 100vw, 16px);
  }
  .l-header .l-header-area__list-item .l-hader-area__listselect a:hover {
    opacity: 1;
  }
  .l-header .l-header-area__contact-btn {
    display: none;
  }
  .l-header .l-header-humbtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: min(70 / 375 * 100vw, 70px);
    height: min(70 / 375 * 100vw, 70px);
    background-color: #0097d9;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line {
    position: absolute;
    width: min(30 / 375 * 100vw, 30px);
    height: min(2 / 375 * 100vw, 2px);
    background-color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(1) {
    -webkit-transform: translateY(0px) translateX(-50%) rotate(45deg);
            transform: translateY(0px) translateX(-50%) rotate(45deg);
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(2) {
    opacity: 0;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(3) {
    -webkit-transform: translateY(0px) translateX(-50%) rotate(-45deg);
            transform: translateY(0px) translateX(-50%) rotate(-45deg);
  }
  .l-header .l-header-humbtn__line {
    position: absolute;
    width: min(30 / 375 * 100vw, 30px);
    height: min(2 / 375 * 100vw, 2px);
    background-color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-header .l-header-humbtn__line:nth-child(1) {
    -webkit-transform: translateY(calc(min(9 / 375 * 100vw, 9px) * -1)) translateX(-50%);
            transform: translateY(calc(min(9 / 375 * 100vw, 9px) * -1)) translateX(-50%);
  }
  .l-header .l-header-humbtn__line:nth-child(3) {
    -webkit-transform: translateY(min(9 / 375 * 100vw, 9px)) translateX(-50%);
            transform: translateY(min(9 / 375 * 100vw, 9px)) translateX(-50%);
  }
}

/*------------------------------------------------

l-footer

-------------------------------------------------*/
.l-footer {
  position: relative;
  padding-top: 22.9166666667vw;
  margin-top: -13.1944444444vw;
}
.l-footer .l-footer-bg {
  position: absolute;
  background: url(../images/common/footer-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.l-footer .l-footer-pagetop {
  position: absolute;
  width: 3.4722222222vw;
  height: 3.4722222222vw;
  background-color: #fff;
  bottom: 5.5555555556vw;
  right: 6.9444444444vw;
  z-index: 10;
}
.l-footer .l-footer-pagetop a {
  position: relative;
  display: block;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-footer .l-footer-pagetop a:hover {
  opacity: 0.85;
}
.l-footer .l-footer-pagetop a::after {
  content: "";
  position: absolute;
  width: 0.6944444444vw;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #185aa5;
  border-bottom: 2px solid #185aa5;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
.l-footer .l-footer--inner {
  max-width: 79.1666666667vw;
}
.l-footer .l-footer-top {
  position: relative;
  padding-bottom: 6.25vw;
}
.l-footer .l-footer-top__txtbox {
  width: 31.25vw;
}
.l-footer .l-footer-top__txtbox .-txt {
  margin-top: 1.0416666667vw;
  color: #fff;
  font-weight: 400;
  font-size: 1.1111111111vw;
}
.l-footer .l-footer---ttl {
  color: #fff;
}
.l-footer .l-footer---ttl--in .-en {
  color: #fff !important;
}
.l-footer .l-footer-top__block {
  width: 31.9444444444vw;
}
.l-footer .l-footer-top__block .-tel a {
  position: relative;
  padding-left: 4.1666666667vw;
  color: #fff;
  font-size: 4.4444444444vw;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.l-footer .l-footer-top__block .-tel a::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/common/picon_tel.png) no-repeat;
  background-size: contain;
  width: 3.3333333333vw;
  height: 3.3333333333vw;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer .l-footer-top__block .-fax span {
  position: relative;
  padding-left: 4.1666666667vw;
  color: #fff;
  font-size: 4.4444444444vw;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.l-footer .l-footer-top__block .-fax span::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/common/la_fax.png) no-repeat;
  background-size: contain;
  width: 4.0277777778vw;
  height: 4.0277777778vw;
  left: -0.1388888889vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer .l-footer-top__block .l-footer--btn {
  text-align: center;
  margin-top: 2.4305555556vw;
  width: 23.6111111111vw;
}
.l-footer .l-footer-top__block .l-footer--btn a {
  position: relative;
  background-color: #0097d9;
  display: block;
  padding: 1.25vw 0;
  color: #fff;
  font-size: 1.1111111111vw;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-footer .l-footer-top__block .l-footer--btn a:hover {
  background-color: #4db6e4;
}
.l-footer .l-footer-top__block .l-footer--btn a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 0.6944444444vw solid transparent;
  border-bottom: 0.6944444444vw solid transparent;
  border-left: 0.7638888889vw solid #fff;
  top: 50%;
  right: 1.3888888889vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer .l-footer-top__block .l-footer--btn .-icon {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-left: 1.7361111111vw;
  font-size: 1.1111111111vw;
  font-weight: bold;
}
.l-footer .l-footer-top__block .l-footer--btn .-icon::before {
  content: "";
  position: absolute;
  background: url(../images/common/contact-mail.png) no-repeat;
  background-size: contain;
  display: block;
  width: 2.2916666667vw;
  height: 1.7361111111vw;
  left: -2.0833333333vw;
  top: 58%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer .l-footer-btm {
  position: relative;
  padding-top: 5.5555555556vw;
}
.l-footer .l-footer-btm::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-footer .l-footer-btm__info .-logo {
  width: 13.8888888889vw;
}
.l-footer .l-footer-btm__info .-name {
  margin-top: 0.6944444444vw;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}
.l-footer .l-footer-btm__info .-address {
  margin-top: 1.3888888889vw;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}
.l-footer .l-footer-btm__area {
  width: 49.3055555556vw;
  gap: 2.0833333333vw;
}
.l-footer .l-footer-btm__area .-group {
  width: 10.4166666667vw;
}
.l-footer .l-footer-btm__area .-list.-list--mt {
  margin-top: 5.5555555556vw;
}
.l-footer .l-footer-btm__area .-list li {
  line-height: 1.8;
}
.l-footer .l-footer-btm__area .-list a {
  color: #fff;
  font-size: 1.1111111111vw;
}
.l-footer .l-footer-btm__area .-ttl {
  font-size: 1.1111111111vw;
  border-bottom: 1px solid #fff;
  padding-bottom: 1.0416666667vw;
  margin-bottom: 1.0416666667vw;
}
.l-footer .l-footer-btm__area .-ttl a {
  color: #fff;
  font-size: 1.1111111111vw;
}
.l-footer .l-footer-btm__right-massege {
  margin-top: 3.3333333333vw;
}
.l-footer .l-footer-btm__right-massege .l-footer-btm__right-massege-block {
  width: 27.7777777778vw;
  text-align: center;
  margin-left: auto;
}
.l-footer .l-footer-btm__right-massege .-ttl {
  font-size: 2.5vw;
  color: #fff;
  font-weight: 400;
}
.l-footer .l-footer-btm__right-massege .-txt {
  color: #fff;
  margin-top: 1.3888888889vw;
  font-weight: 400;
  font-size: 1.1111111111vw;
}
.l-footer .l-footer-copy {
  margin-top: 9.375vw;
  position: relative;
  text-align: center;
  padding-bottom: 2.0833333333vw;
}
.l-footer .l-footer-copy__txt {
  color: #fff;
  font-size: 0.8333333333vw;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .l-footer .l-footer-top__txtbox .-txt {
    font-size: 1.3194444444vw;
  }
  .l-footer .l-footer-top__block .l-footer--btn .-icon {
    font-size: 1.3194444444vw;
    padding-left: 1.0416666667vw;
  }
  .l-footer .l-footer-btm__info .-name {
    font-size: 1.3194444444vw;
  }
  .l-footer .l-footer-btm__info .-address {
    font-size: 1.3194444444vw;
  }
  .l-footer .l-footer-btm__area .-ttl {
    font-size: 1.3194444444vw;
  }
  .l-footer .l-footer-btm__area .-list a {
    font-size: 1.3194444444vw;
  }
  .l-footer .l-footer-btm__area {
    gap: 1.3888888889vw;
  }
  .l-footer .l-footer-btm__area .-group {
    width: 11.1111111111vw;
  }
  .l-footer .l-footer-btm__right-massege .l-footer-btm__right-massege-block {
    width: 33.3333333333vw;
  }
  .l-footer .l-footer-btm__right-massege .-txt {
    font-size: 1.3194444444vw;
  }
  .l-footer .l-footer-copy__txt {
    font-size: 1.1805555556vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 53.3333333333vw;
    margin-top: -56vw;
  }
  .l-footer .l-footer-bg {
    background: url(../images/common/footer-bg-sp.png) no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .l-footer .l-footer-pagetop {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    bottom: 80vw;
    right: 4vw;
  }
  .l-footer .l-footer-pagetop a::after {
    width: 2.6666666667vw;
  }
  .l-footer .l-footer--inner {
    max-width: 100%;
  }
  .l-footer .l-footer-top {
    padding-bottom: 26.6666666667vw;
  }
  .l-footer .l-footer-top__txtbox {
    width: 100%;
  }
  .l-footer .l-footer-top__txtbox .-txt {
    margin-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
  .l-footer .l-footer-top__block {
    width: 100%;
    margin-top: 13.3333333333vw;
  }
  .l-footer .l-footer-top__block .-tel {
    text-align: center;
  }
  .l-footer .l-footer-top__block .-tel a {
    padding-left: 10.6666666667vw;
    font-size: 10.6666666667vw;
  }
  .l-footer .l-footer-top__block .-tel a::before {
    width: 8vw;
    height: 8vw;
  }
  .l-footer .l-footer-top__block .-fax {
    text-align: center;
  }
  .l-footer .l-footer-top__block .-fax span {
    padding-left: 10.6666666667vw;
    font-size: 10.6666666667vw;
  }
  .l-footer .l-footer-top__block .-fax span::before {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
  .l-footer .l-footer-top__block .l-footer--btn {
    text-align: center;
    margin-top: 9.3333333333vw;
    width: 90.6666666667vw;
  }
  .l-footer .l-footer-top__block .l-footer--btn a {
    position: relative;
    background-color: #0097d9;
    display: block;
    padding: 4.8vw 0;
    color: #fff;
    font-size: 4.2666666667vw;
    font-weight: bold;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-footer .l-footer-top__block .l-footer--btn a:hover {
    background-color: #4db6e4;
  }
  .l-footer .l-footer-top__block .l-footer--btn a::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-top: 2.6666666667vw solid transparent;
    border-bottom: 2.6666666667vw solid transparent;
    border-left: 2.9333333333vw solid #fff;
    top: 50%;
    right: 5.3333333333vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-footer .l-footer-top__block .l-footer--btn .-icon {
    position: relative;
    display: inline-block;
    text-align: center;
    padding-left: 6.6666666667vw;
    font-size: 4.2666666667vw;
    font-weight: bold;
  }
  .l-footer .l-footer-top__block .l-footer--btn .-icon::before {
    content: "";
    position: absolute;
    background: url(../images/common/contact-mail.png) no-repeat;
    background-size: contain;
    display: block;
    width: 8.8vw;
    height: 6.6666666667vw;
    left: -8vw;
    top: 58%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-footer .l-footer-btm {
    padding-top: 16vw;
  }
  .l-footer .l-footer-btm::after {
    width: 84vw;
  }
  .l-footer .l-footer-btm__info {
    width: 100%;
  }
  .l-footer .l-footer-btm__info .-logo {
    margin: auto;
    width: 46.6666666667vw;
  }
  .l-footer .l-footer-btm__info .-name {
    margin-top: 8vw;
    font-size: 5.3333333333vw;
  }
  .l-footer .l-footer-btm__info .-address {
    margin-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
  .l-footer .l-footer-btm__right {
    width: 100%;
  }
  .l-footer .l-footer-btm__area {
    display: none;
  }
  .l-footer .l-footer-btm__right-massege {
    margin-top: 26.6666666667vw;
  }
  .l-footer .l-footer-btm__right-massege .l-footer-btm__right-massege-block {
    width: 100%;
    margin-left: inherit;
  }
  .l-footer .l-footer-btm__right-massege .-ttl {
    font-size: 6.4vw;
  }
  .l-footer .l-footer-btm__right-massege .-txt {
    margin-top: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
  .l-footer .l-footer-copy {
    margin-top: 21.3333333333vw;
    padding-bottom: 10.6666666667vw;
  }
  .l-footer .l-footer-copy__txt {
    font-size: 3.2vw;
  }
}

/*------------------------------------------------

c-ttl01

-------------------------------------------------*/
.c-ttl01 {
  position: relative;
}
.c-ttl01 .c-ttl01-in .-en {
  font-style: italic;
  font-weight: bold;
  color: #185aa5;
  font-size: 3.8194444444vw;
}
.c-ttl01 .c-ttl01-in .-jp {
  font-size: 1.3888888889vw;
  font-weight: bold;
  margin-left: 0.6944444444vw;
}
@media screen and (max-width: 1024px) {
  .c-ttl01 .c-ttl01-in .-jp {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .c-ttl01 .c-ttl01-in .-en {
    font-size: 9.6vw;
  }
  .c-ttl01 .c-ttl01-in .-jp {
    display: block;
    font-size: 5.3333333333vw;
    margin-left: 0;
  }
}

/*------------------------------------------------

c-ttl02

-------------------------------------------------*/
.c-ttl02 {
  position: relative;
}
.c-ttl02 .c-ttl02-in {
  text-align: center;
}
.c-ttl02 .c-ttl02-in .-en {
  font-style: italic;
  font-weight: bold;
  color: #fff;
  font-size: 3.8194444444vw;
  line-height: 1.1;
}
.c-ttl02 .c-ttl02-in .-jp {
  font-size: 1.3888888889vw;
  font-weight: bold;
  display: block;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .c-ttl02 .c-ttl02-in .-jp {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .c-ttl02 .c-ttl02-in .-en {
    font-size: 9.6vw;
  }
  .c-ttl02 .c-ttl02-in .-jp {
    display: block;
    font-size: 5.3333333333vw;
    margin-left: 0;
  }
}

/*------------------------------------------------

c-btn01

-------------------------------------------------*/
.c-btn01 {
  width: 19.4444444444vw;
  text-align: center;
}
.c-btn01 a {
  position: relative;
  background-color: #0097d9;
  display: block;
  padding: 0.9027777778vw 0;
  color: #fff;
  font-size: 1.1111111111vw;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn01 a:hover {
  background-color: #4db6e4;
}
.c-btn01 a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 0.3472222222vw solid transparent;
  border-bottom: 0.3472222222vw solid transparent;
  border-left: 0.4166666667vw solid #fff;
  top: 50%;
  right: 1.3888888889vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .c-btn01 {
    width: 20.8333333333vw;
  }
  .c-btn01 a {
    font-size: 1.3194444444vw;
  }
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    width: 68vw;
  }
  .c-btn01 a {
    padding: 4vw 0;
    font-size: 4.2666666667vw;
  }
  .c-btn01 a::after {
    border-top: 1.3333333333vw solid transparent;
    border-bottom: 1.3333333333vw solid transparent;
    border-left: 1.6vw solid #fff;
    right: 5.3333333333vw;
  }
}

/*------------------------------------------------

c-sub-mv

-------------------------------------------------*/
.c-sub-mv {
  position: relative;
  margin-top: min(90 / 1440 * 100vw, 90px);
  padding-bottom: 3.4722222222vw;
}
.c-sub-mv .c-sub-mv__area {
  position: relative;
  height: 21.5277777778vw;
}
.c-sub-mv .c-sub-mv__area.c-sub-mv__area--business {
  background: url(../images/business/mv-pc.jpg) no-repeat center center/cover;
}
.c-sub-mv .c-sub-mv__area.c-sub-mv__area--company {
  background: url(../images/company/mv-pc.jpg) no-repeat center center/cover;
}
.c-sub-mv .c-sub-mv__area.c-sub-mv__area--recruit {
  background: url(../images/recruit/mv-pc.jpg) no-repeat center center/cover;
}
.c-sub-mv .c-sub-mv__area.c-sub-mv__area--works {
  background: url(../images/works/mv-pc.jpg) no-repeat center center/cover;
}
.c-sub-mv .c-sub-mv__area.c-sub-mv__area--default {
  background: url(../images/common/mv-pc.jpg) no-repeat center center/cover;
}
.c-sub-mv .c-sub-mv__area.c-sub-mv__area--default .-ttl {
  color: #185AA5;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 5.5555555556vw;
}
.c-sub-mv .c-sub-mv__area.c-sub-mv__area--default .-en {
  color: #84A5CA;
}
.c-sub-mv .c-sub-mv__area .-ttl {
  line-height: 1;
  width: 100%;
  position: absolute;
  bottom: -1.25vw;
  color: #fff;
  left: 6.9444444444vw;
  font-weight: 400;
  font-size: 1.6666666667vw;
}
.c-sub-mv .c-sub-mv__area .-en {
  line-height: 1;
  margin-top: 0.6944444444vw;
  display: block;
  font-weight: bold;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 6.6666666667vw;
}
.c-sub-mv .c-sub-mv__bg-layout {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3.4722222222vw;
  background: -webkit-gradient(linear, left top, right top, from(#185AA5), to(#0097D9));
  background: linear-gradient(to right, #185AA5 0%, #0097D9 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 768px) {
  .c-sub-mv {
    margin-top: min(70 / 375 * 100vw, 70px);
    padding-bottom: 5.3333333333vw;
  }
  .c-sub-mv .c-sub-mv__area {
    position: relative;
    height: 61.3333333333vw;
  }
  .c-sub-mv .c-sub-mv__area.c-sub-mv__area--business {
    background: url(../images/business/mv-sp.jpg) no-repeat center center/cover;
  }
  .c-sub-mv .c-sub-mv__area.c-sub-mv__area--company {
    background: url(../images/company/mv-sp.jpg) no-repeat center center/cover;
  }
  .c-sub-mv .c-sub-mv__area.c-sub-mv__area--recruit {
    background: url(../images/recruit/mv-sp.jpg) no-repeat center center/cover;
  }
  .c-sub-mv .c-sub-mv__area.c-sub-mv__area--works {
    background: url(../images/works/mv-sp.jpg) no-repeat center center/cover;
  }
  .c-sub-mv .c-sub-mv__area.c-sub-mv__area--default {
    background: url(../images/common/mv-sp.jpg) no-repeat center center/cover;
  }
  .c-sub-mv .c-sub-mv__area.c-sub-mv__area--default .-ttl {
    bottom: 16vw;
  }
  .c-sub-mv .c-sub-mv__area .-ttl {
    bottom: -2.1333333333vw;
    left: 8vw;
    font-size: 4.2666666667vw;
  }
  .c-sub-mv .c-sub-mv__area .-en {
    margin-top: 2.6666666667vw;
    font-size: 12.8vw;
  }
  .c-sub-mv .c-sub-mv__bg-layout {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5.3333333333vw;
    background: -webkit-gradient(linear, left top, right top, from(#185AA5), to(#0097D9));
    background: linear-gradient(to right, #185AA5 0%, #0097D9 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
}

.breadcrumb {
  font-size: 10px;
  text-align: right;
  padding-inline: 5%;
}

/*------------------------------------------------

c-works-sec

-------------------------------------------------*/
.c-works-sec {
  padding: 6.9444444444vw 0 10.4166666667vw;
  background-image: url("../images/top/works-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.c-works-sec.c-works-sec--business {
  padding-bottom: 20.8333333333vw;
}
.c-works-sec .c-works-sec__txt {
  margin-top: 1.3888888889vw;
  font-weight: 400;
  font-size: 1.1111111111vw;
}
.c-works-sec .c-works-sec__area {
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.c-works-sec .c-works-sec__area.isActive {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-works-sec .c-works-sec__area {
  margin: 0 calc(50% - 50vw);
  margin-top: 4.1666666667vw;
  width: 100vw;
}
.c-works-sec .c-works-sec__area .slider-block {
  -webkit-box-shadow: 0 0.1388888889vw 0.6944444444vw rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.1388888889vw 0.6944444444vw rgba(0, 0, 0, 0.2);
  margin: 0 0.5555555556vw;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-works-sec .c-works-sec__area .slider-block.slick-center {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-works-sec .c-works-sec__area .slick-list {
  padding-bottom: 1.3888888889vw !important;
}
.c-works-sec .c-works-sec__area .slider.is-static {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 15%;
}
.c-works-sec .c-works-sec__area .slider.is-static .slider-block {
  width: calc(33.333% - 1.1111111111vw);
  -webkit-transform: scale(1);
          transform: scale(1);
  margin-bottom: 1.1111111111vw;
}
.c-works-sec .c-works-sec__area .slider-link {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-works-sec .c-works-sec__area .slider-link:hover {
  opacity: 0.85;
}
.c-works-sec .c-works-sec__area .slick-img {
  height: 15.9722222222vw;
}
.c-works-sec .c-works-sec__area .slick-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-works-sec .c-works-sec__area .slick-prev,
.c-works-sec .c-works-sec__area .slick-next {
  width: 3.4722222222vw;
  height: 3.4722222222vw;
  z-index: 1;
}
.c-works-sec .c-works-sec__area .slick-prev::before,
.c-works-sec .c-works-sec__area .slick-next::before {
  display: none;
}
.c-works-sec .c-works-sec__area .slick-prev {
  left: 14%;
  background: url(../images/top/slider-prev.png) no-repeat center center/contain;
}
.c-works-sec .c-works-sec__area .slick-next {
  right: 14%;
  background: url(../images/top/slider-next.png) no-repeat center center/contain;
}
.c-works-sec .c-works-sec__area .slick-txtbox {
  background-color: #fff;
  padding: 1.3888888889vw 1.3888888889vw 2.0833333333vw;
  min-height: 9.0972222222vw;
}
.c-works-sec .c-works-sec__area .-ttl {
  font-size: 1.3888888889vw;
  font-weight: bold;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.c-works-sec .c-works-sec__area .-category {
  margin-top: 2.0833333333vw;
  gap: 0.6944444444vw;
}
.c-works-sec .c-works-sec__area .-category li {
  text-align: center;
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #185AA5;
  border: 0.0694444444vw solid #185AA5;
  padding: 0.3472222222vw 1.0416666667vw;
}
.c-works-sec .c-works-sec--btn {
  margin: auto;
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 1024px) {
  .c-works-sec .c-works-sec__txt {
    font-size: 1.3194444444vw;
  }
}
@media screen and (max-width: 768px) {
  .c-works-sec {
    padding: 20vw 0 29.3333333333vw;
    background-image: url("../images/top/works-bg-sp.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .c-works-sec.c-works-sec--business {
    padding-bottom: 66.6666666667vw;
  }
  .c-works-sec .c-works-sec__txt {
    margin-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
  .c-works-sec .c-works-sec__area {
    margin: 0 calc(50% - 50vw);
    margin-top: 8vw;
    width: 100vw;
  }
  .c-works-sec .c-works-sec__area .slider-block {
    margin: 0 4vw;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .c-works-sec .c-works-sec__area .slider-block.slick-center {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .c-works-sec .c-works-sec__area .slick-list {
    padding-bottom: 5.3333333333vw !important;
  }
  .c-works-sec .c-works-sec__area .slider.is-static {
    padding: 0 4vw;
  }
  .c-works-sec .c-works-sec__area .slider.is-static .slider-block {
    width: calc(100% - 8vw);
    -webkit-transform: scale(1);
            transform: scale(1);
    margin-bottom: 4vw;
  }
  .c-works-sec .c-works-sec__area .slick-img {
    height: 50.6666666667vw;
  }
  .c-works-sec .c-works-sec__area .slick-prev,
  .c-works-sec .c-works-sec__area .slick-next {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
  .c-works-sec .c-works-sec__area .slick-prev {
    left: 4%;
  }
  .c-works-sec .c-works-sec__area .slick-next {
    right: 4%;
  }
  .c-works-sec .c-works-sec__area .slick-txtbox {
    padding: 5.3333333333vw;
  }
  .c-works-sec .c-works-sec__area .-ttl {
    height: 16vw;
    font-size: 5.3333333333vw;
    -webkit-line-clamp: 2;
  }
  .c-works-sec .c-works-sec__area .-category {
    margin-top: 2.6666666667vw;
    gap: 2.1333333333vw;
  }
  .c-works-sec .c-works-sec__area .-category li {
    font-size: 4.2666666667vw;
    padding: 1.3333333333vw 2.6666666667vw;
  }
  .c-works-sec .c-works-sec--btn {
    margin-top: 10.6666666667vw;
  }
}

/*------------------------------------------------

wp-editor（記事内部分）

-------------------------------------------------*/
.wp-editor > * {
  margin-top: 1.7361111111vw;
  font-weight: 400;
}
.wp-editor img {
  width: 100%;
}
.wp-editor p,
.wp-editor a,
.wp-editor strong,
.wp-editor b,
.wp-editor i,
.wp-editor ul:not(.toc_list) li,
.wp-editor ol li,
.wp-editor table tr,
.wp-editor table th,
.wp-editor table td {
  font-size: 1.1111111111vw;
}
.wp-editor p {
  font-weight: 400;
}
.wp-editor a {
  color: #0097d9;
  text-decoration: underline;
}
.wp-editor em,
.wp-editor i {
  font-style: italic;
}
.wp-editor strong,
.wp-editor b {
  font-weight: bold;
}
.wp-editor h1,
.wp-editor h2,
.wp-editor h3,
.wp-editor h4 {
  clear: both;
  font-weight: bold;
}
.wp-editor h1 {
  position: relative;
  margin: 1.7361111111vw 0;
  font-size: 2.0833333333vw;
  font-weight: 700;
  line-height: 1.6;
}
.wp-editor h1:first-child {
  margin-top: 0;
}
.wp-editor h2 {
  position: relative;
  margin: 3.4722222222vw 0;
  padding: 1.0416666667vw 1.3888888889vw;
  border: solid #0097d9;
  border-width: 1px 0;
  background: #fff;
  color: #0097d9;
  font-size: 1.9444444444vw;
  font-weight: bold;
  line-height: 1.6;
}
.wp-editor h2:first-child {
  margin-top: 0;
}
.wp-editor h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.0416666667vw;
  bottom: 1.0416666667vw;
  width: 0.3472222222vw;
  background: #0097d9;
}
.wp-editor h3 {
  position: relative;
  margin: 2.4305555556vw 0 1.7361111111vw;
  padding-left: 1.0416666667vw;
  color: #0097d9;
  font-size: 1.6666666667vw;
  font-weight: bold;
  line-height: 1.6;
}
.wp-editor h3:first-child {
  margin-top: 0;
}
.wp-editor h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.3472222222vw;
  background: #0097d9;
}
.wp-editor h4 {
  margin: 2.4305555556vw 0 1.7361111111vw;
  padding-bottom: 1.0416666667vw;
  font-size: 1.3888888889vw;
  line-height: 1.6;
}
.wp-editor h4:first-child {
  margin-top: 0;
}
.wp-editor ul:not(.toc_list),
.wp-editor ol {
  list-style: none;
}
.wp-editor ul:not(.toc_list) {
  padding-left: calc(0.7em + 6px);
}
.wp-editor ul:not(.toc_list) li {
  position: relative;
}
.wp-editor ul:not(.toc_list) li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: -1em;
  width: 0.4166666667vw;
  height: 0.4166666667vw;
  border-radius: 50%;
  background: #0097d9;
}
.wp-editor .toc_list ul {
  padding-left: 0;
  text-indent: 0;
}
.wp-editor .toc_list ul li::before {
  content: none;
}
.wp-editor ol {
  counter-reset: item;
}
.wp-editor ol li {
  padding-left: 1.4em;
  text-indent: -1.4em;
}
.wp-editor ol li::before {
  counter-increment: item;
  content: counter(item) ". ";
  color: #0097d9;
  font-family: new-order, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.wp-editor blockquote {
  padding: 1.0416666667vw;
  line-height: 1.6;
  background: #f8f7f5;
}
.wp-editor table {
  border: 1px solid #999;
}
.wp-editor table tr,
.wp-editor table th,
.wp-editor table td {
  border: 1px solid #999;
  font-weight: 400;
}
.wp-editor table th,
.wp-editor table td {
  padding: 0.3472222222vw;
}
.wp-editor-iframe {
  position: relative;
  aspect-ratio: 16/9;
}
.wp-editor-iframe iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .wp-editor p,
  .wp-editor a,
  .wp-editor strong,
  .wp-editor b,
  .wp-editor i,
  .wp-editor ul:not(.toc_list) li,
  .wp-editor ol li,
  .wp-editor table tr,
  .wp-editor table th,
  .wp-editor table td {
    font-size: 1.3194444444vw;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .wp-editor > * {
    margin-top: 5.3333333333vw;
    line-height: 2;
  }
  .wp-editor p,
  .wp-editor a,
  .wp-editor strong,
  .wp-editor b,
  .wp-editor i,
  .wp-editor ul:not(.toc_list) li,
  .wp-editor ol li {
    font-size: 3.7333333333vw;
  }
  .wp-editor h1 {
    margin: 6.6666666667vw 0;
    font-size: 5.8666666667vw;
  }
  .wp-editor h2 {
    margin: 6.6666666667vw 0;
    font-size: 4.8vw;
  }
  .wp-editor h3 {
    margin: 6.6666666667vw 0;
    font-size: 4.2666666667vw;
  }
  .wp-editor h4 {
    margin: 6.6666666667vw 0;
    font-size: 3.7333333333vw;
  }
  .wp-editor ul:not(.toc_list) li::before {
    width: 1.6vw;
    height: 1.6vw;
  }
  .wp-editor table th,
  .wp-editor table td {
    padding: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 1024px) {
  .wp-editor #ez-toc-container {
    margin-top: 5.3333333333vw;
  }
  .wp-editor #ez-toc-container .ez-toc-list li {
    font-size: 3.7333333333vw;
  }
}

.wp-pagenavi {
  margin-top: 6.9444444444vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .page-numbers {
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  color: #185aa5;
  border: 1px solid #185aa5;
  text-align: center;
  line-height: 2.7777777778vw;
  margin: 0 0.4861111111vw;
  font-size: 1.1111111111vw;
  font-weight: 400;
}
.wp-pagenavi .prev {
  margin-right: 0.4861111111vw;
  background-color: #185aa5;
  color: #fff;
}
.wp-pagenavi .next {
  margin-left: 0.4861111111vw;
  background-color: #185aa5;
  color: #fff;
}
.wp-pagenavi .current {
  background-color: #185aa5;
  color: #fff;
  margin: 0 0.4861111111vw;
}
@media screen and (max-width: 1024px) {
  .wp-pagenavi .page-numbers {
    font-size: 1.3194444444vw;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 8vw;
  }
  .wp-pagenavi .page-numbers {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 4.2666666667vw;
  }
  .wp-pagenavi .prev {
    margin-left: 1.3333333333vw;
  }
  .wp-pagenavi .next {
    margin-right: 1.3333333333vw;
  }
  .wp-pagenavi .current {
    margin: 0 1.3333333333vw;
  }
}
/*# sourceMappingURL=common.css.map */