@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.9px) {
  * {
    font-size: 1.5rem;
  }
}

p,
li,
a {
  line-height: 2;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #555555;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック", sans-serif;
  -webkit-animation: In 1.2s ease-out normal;
          animation: In 1.2s ease-out normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
html body {
  overflow-x: hidden;
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@keyframesin {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
/* fadeUp */
.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fade {
  opacity: 0;
}

.shippori {
  font-family: "Shippori Mincho", serif;
}

.noto {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック", sans-serif;
}

.has-main-color-background-color {
  background-color: #004b82 !important;
  color: #fff;
}

.has-light-blue1-background-color {
  background-color: #eff5fa !important;
}

.has-light-blue2-background-color {
  background-color: #dce5eb !important;
}

.has-orange-background-color {
  background-color: #ff4500 !important;
}

.has-setting_white-background-color {
  background-color: #fff !important;
}

.has-main-color-background-color {
  background-color: #004b82 !important;
  color: #fff;
}

.has-main-color-color {
  color: #004b82 !important;
}

.has-light-blue1-background-color {
  background-color: #eff5fa !important;
}

.has-light-blue1-color {
  color: #eff5fa !important;
}

.has-light-blue2-background-color {
  background-color: #dce5eb !important;
}

.has-light-blue2-color {
  color: #dce5eb !important;
}

.has-setting_white-background-color {
  background-color: #fff !important;
}

.has-orange-color {
  color: #ff4500 !important;
}

.has-setting_white-color {
  color: #fff !important;
}

.has-font-color-background-color {
  background-color: #555555 !important;
  color: #fff;
}

.has-font-color-color {
  color: #555555 !important;
}

.upper {
  text-transform: uppercase;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.j-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.a-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sp-none {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .sp-block {
    display: block;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.pc-block {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-block {
    display: none;
  }
}

a {
  color: #555555;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  width: 100%;
}

.cont {
  width: 87.6%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 1100px) {
  .header.color:not(.active) .h_logo img {
    -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
            filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
  }
  .header.color:not(.active) .gnav .gnav-main .gnav-info .tel {
    color: #004b82;
  }
  .header.color:not(.active) .gnav .gnav-main .gnav-info .tel img {
    -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
            filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
  }
  .header.color:not(.active) .gnav .gnav-main .gnav-info p {
    color: #004b82;
  }
  .header.color:not(.active) .gnav .gnav-main ul li a,
  .header.color:not(.active) .gnav .gnav-main ul li p {
    color: #004b82;
  }
  .header.color:not(.active) .gnav .gnav-main ul li.has-child p::after {
    -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
            filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
  }
  .header {
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 11;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #fff;
  }
  .header.active {
    background: rgba(0, 75, 130, 0.7);
  }
  .header .h_logo {
    position: absolute;
    top: 24px;
    left: 20px;
    z-index: 20;
  }
  .header .h_logo a {
    display: block;
  }
  .header .h_logo img {
    width: 200px;
  }
  .header__inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-wrap {
    height: 100%;
  }
  .gnav {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 28px;
  }
  .gnav .gnav-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gnav .gnav-main .gnav-info {
    margin-left: auto;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gnav .gnav-main .gnav-info .tel {
    font-size: 2rem;
    font-weight: 700;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
  }
  .gnav .gnav-main .gnav-info .tel img {
    width: 18px;
    height: auto;
  }
  .gnav .gnav-main .gnav-info p {
    font-size: 1rem;
    color: #fff;
  }
  .gnav .gnav-main ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
  .gnav .gnav-main ul li {
    position: relative;
  }
  .gnav .gnav-main ul li a,
  .gnav .gnav-main ul li p {
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnav .gnav-main ul li a:hover,
  .gnav .gnav-main ul li p:hover {
    opacity: 0.7;
  }
  .gnav .gnav-main ul li.has-child {
    position: relative;
  }
  .gnav .gnav-main ul li.has-child p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  .gnav .gnav-main ul li.has-child p::after {
    content: "";
    width: 12px;
    display: block;
    height: 9px;
    background: url(../img/arrow_down.svg) no-repeat center center/contain;
  }
  .gnav .gnav-main ul li.has-child .sub-menu {
    position: absolute;
    top: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 20px;
    min-width: 168px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 10;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .gnav .gnav-main ul li.has-child .sub-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
  }
  .gnav .gnav-main ul li.has-child .sub-menu li {
    padding: 0;
    margin: 0;
  }
  .gnav .gnav-main ul li.has-child .sub-menu li a {
    display: block;
    color: #004b82;
    padding: 0 20px 5px 0;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 1px solid #cccccc;
  }
  .gnav .gnav-main ul li.has-child .sub-menu li a::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    background: url(../img/arrow_b_right.svg) no-repeat center center/contain;
  }
  .gnav .gnav-main ul li.has-child .sub-menu li a::after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background: #004b82;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .gnav .gnav-main ul li.has-child:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.contact-btn {
  height: auto;
}
.contact-btn a {
  width: 180px;
  height: 100%;
  background: #ff4500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-btn a img {
  width: 25px;
  height: auto;
}
.contact-btn a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1099.9px) {
  .header {
    position: fixed;
    height: 80px;
    top: 0;
    display: block;
    width: 100%;
    z-index: 11;
  }
  .header .h_logo {
    width: 140px;
    left: 20px;
    top: 20px;
    position: fixed;
    z-index: 10;
  }
  .header.color .h_logo img {
    -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
            filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
  }
  .header.active .h_logo img {
    -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
            filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
  }
  .header .header__inner {
    padding: 0 20px;
    height: 100%;
  }
  .header .header-wrap {
    border-radius: 0;
    background: #fafafa;
    display: block;
    margin: 0;
    width: 100%;
    height: 100dvh;
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    padding-right: 0;
    padding-top: 80px;
    padding-bottom: 24px;
    padding-left: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    overflow: auto;
  }
  .header .gnav-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .header .gnav-info a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2rem !important;
  }
  .header .gnav-info a img {
    width: 20px;
    -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
            filter: brightness(0) saturate(100%) invert(35%) sepia(45%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
  }
  .header .gnav-info p {
    font-size: 1.4rem !important;
  }
  .header .gnav ul {
    display: block;
  }
  .header .gnav ul li {
    margin-bottom: 10px;
  }
  .header .gnav a,
  .header .gnav p {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .header .gnav .sub-menu {
    margin-left: 20px;
  }
  .header .gnav .sub-menu a {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .header .contact-btn {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .header .contact-btn a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 60px;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1099.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 56px;
    height: 52px;
    position: fixed;
    top: 12px;
    right: 17px;
    z-index: 99;
    background: none;
    border: none;
    color: #fff;
    background: #004b82;
    text-align: center;
  }
  .hamburger::after {
    content: "メニュー";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
  }
  .hamburger__line,
  .hamburger__line::before,
  .hamburger__line::after {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
  }
  .hamburger__line {
    left: 17px;
    top: 12px;
  }
  .hamburger__line::before {
    content: "";
    top: 7px;
    left: 0;
  }
  .hamburger__line::after {
    content: "";
    top: 14px;
    left: 0;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .hamburger.active span {
    top: 13px;
    -webkit-transform: translateY(6px) rotate(-35deg);
            transform: translateY(6px) rotate(-35deg);
    width: 24px;
  }
  .hamburger.active span::before {
    opacity: 0;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
  .hamburger.active span::after {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
    width: 24px;
  }
  .header-wrap.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }
}
.heading3 {
  color: #004b82;
  font-weight: 700;
  padding-left: 18px;
  font-size: 2rem;
  line-height: 1.15;
  position: relative;
}
.heading3::before {
  content: "";
  width: 7px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #004b82;
}

.page_top {
  height: 480px;
  position: relative;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 380px);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 380px);
}
@media screen and (max-width: 767.9px) {
  .page_top {
    margin-bottom: 20px;
    height: 250px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 210px);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 210px);
  }
}
.page_top::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #004b82;
  width: 50%;
  height: 100px;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page_top::after {
    height: 40px;
  }
}
.page_top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.page_top .page_title_wrap {
  height: 100%;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: start;
  position: relative;
  z-index: 1;
  margin-left: 110px;
  padding-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title_wrap {
    margin-left: 24px;
  }
}
.page_top .page_title_wrap .page_title {
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title_wrap .page_title {
    font-size: 2.4rem;
  }
}

.pankuzu {
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .pankuzu {
    margin-bottom: 40px;
  }
}
.pankuzu .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.4615384615;
  color: #bebebe;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pankuzu .cont a {
  color: #555555;
}
@media screen and (max-width: 767.9px) {
  .pankuzu .cont a {
    font-size: 1.2rem;
  }
}
.pankuzu .cont .current-item {
  color: #555555;
}
.pankuzu .cont span {
  font-size: 1.6rem;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .pankuzu .cont span {
    font-size: 1.2rem;
  }
}
.pankuzu .cont span br {
  display: none;
}
.pankuzu .cont .pankuzu_arrow {
  background: #004b82;
  width: 7px;
  height: 13px;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.contact_wrap {
  -webkit-font-feature-settings: unset;
          font-feature-settings: unset;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .contact_wrap {
    margin-bottom: 100px;
  }
}
.contact_wrap h2 {
  font-size: 3rem;
  text-align: center;
  color: #004b82;
  font-weight: bold;
}
@media screen and (max-width: 767.9px) {
  .contact_wrap h2 {
    font-size: 2rem;
  }
}

.contact_page-message {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .contact_page-message {
    margin-bottom: 30px;
  }
}
.contact_page-message p {
  text-align: center;
}
.contact_page-message a {
  color: #004b82;
  text-decoration: underline;
}
.contact_page-message span {
  color: red;
}

.contact_box {
  background: #004b82;
  max-width: 100%;
  max-width: 644px;
  margin: 0 auto 90px;
  padding: 20px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  .contact_box {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 60px;
  }
}
.contact_box * {
  color: #fff;
}
.contact_box .contact_box-text1 {
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .contact_box .contact_box-text1 {
    margin-bottom: 20px;
  }
}
.contact_box p {
  font-weight: 500;
}
.contact_box .tel {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .contact_box .tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
}
.contact_box .tel img {
  width: 33px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 3px;
}
@media screen and (max-width: 767.9px) {
  .contact_box .tel img {
    width: 25px;
    margin-right: 10px;
    margin-top: 5px;
  }
}
.contact_box .tel a {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: unset;
          font-feature-settings: unset;
}
@media screen and (max-width: 767.9px) {
  .contact_box .tel a {
    font-size: 2.4rem;
  }
}
.contact_box .contact_box-text2 {
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .contact_box .contact_box-text2 {
    font-size: 1.2rem;
  }
}

.form_stage {
  margin-top: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .form_stage {
    margin: 30px 0;
  }
}
.form_stage .progressbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 400px;
  margin: 0 auto;
}
.form_stage .progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.333%;
  color: #cccccc;
}
@media screen and (max-width: 767.9px) {
  .form_stage .progressbar li {
    font-size: 1.6rem;
  }
}
.form_stage .progressbar li::before {
  display: block;
  width: 24px;
  height: 24px;
  margin: 7px auto 9px auto;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #cccccc;
  border-radius: 50%;
}
.form_stage .progressbar li::after {
  position: absolute;
  z-index: -1;
  top: 19px;
  right: -50%;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #cccccc;
}
.form_stage .progressbar li:last-child::after {
  content: none;
}
.form_stage .progressbar li.active,
.form_stage .progressbar li.complete {
  color: #555555;
}
.form_stage .progressbar li.active::before,
.form_stage .progressbar li.complete::before {
  background-image: url(../img/stage-blue.svg);
  background-color: unset;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0;
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}
.form_stage .progressbar li.active::after,
.form_stage .progressbar li.complete::after {
  background-color: #004b82;
}

input {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック", sans-serif;
}

.form {
  width: 100%;
  max-width: 644px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .form {
    margin-top: 40px;
  }
}
.form .cont {
  width: 100%;
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form textarea {
  font-weight: 500;
  width: 100%;
  font-size: 1.6rem;
  padding: 6px 20px;
  border: none;
  background: #fff;
  margin-left: 0;
  border: solid 1px #cccccc;
}
.form input[type=text]::-webkit-input-placeholder, .form input[type=email]::-webkit-input-placeholder, .form input[type=tel]::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}
.form input[type=text]::-moz-placeholder, .form input[type=email]::-moz-placeholder, .form input[type=tel]::-moz-placeholder, .form textarea::-moz-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}
.form input[type=text]:-ms-input-placeholder, .form input[type=email]:-ms-input-placeholder, .form input[type=tel]:-ms-input-placeholder, .form textarea:-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}
.form input[type=text]::-ms-input-placeholder, .form input[type=email]::-ms-input-placeholder, .form input[type=tel]::-ms-input-placeholder, .form textarea::-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}
.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form input[type=tel]::placeholder,
.form textarea::placeholder {
  color: #cccccc;
  font-size: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .form textarea {
    min-height: 250px;
  }
}
.form textarea {
  padding: 20px !important;
}
.form textarea[name=address] {
  padding: 6px 20px !important;
}
.form .smf-item__label__text {
  font-weight: 700;
}
.form .smf-select-control {
  position: relative;
  width: 323px;
  max-width: 100%;
  height: 39px;
}
.form .smf-select-control::before {
  position: absolute;
  top: 16px; /*矢印の上からの位置*/
  right: 10px; /*矢印の右からの位置*/
  content: "";
  width: 13px; /*矢印の横幅*/
  height: 7px; /*矢印の縦幅*/
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%); /*逆三角形の描画*/
  background-color: #818181; /*矢印の色*/
  po-events: none; /*矢印部分をクリックできるようにする*/
  z-index: 2;
}
.form .smf-select-control div {
  width: 100%;
}
.form .smf-select-control select {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  cursor: pointer;
  width: 100%;
  max-width: 323px;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 6px 40px 6px 20px;
  border: none;
  margin: 0;
  background: #fff;
  border: solid 1px #cccccc;
  color: #555555;
}
@media screen and (max-width: 767.9px) {
  .form .smf-select-control select {
    padding: 8px 25px;
    height: 48px;
  }
}
.form .wp-block-snow-monkey-forms-item {
  margin-bottom: 30px;
  padding: 0;
}
.form .privacy_policy_check {
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check {
    margin-bottom: 60px;
  }
}
.form .privacy_policy_check .smf-label {
  text-align: center;
}
.form .privacy_policy_check .smf-label .smf-checkbox-control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .privacy_policy_check .smf-label .smf-checkbox-control a {
  color: #004b82;
  text-decoration: underline;
}
.form .privacy_policy_check .smf-label a {
  color: #004b82;
  text-decoration: underline;
}
.form textarea[name=message] {
  height: 203px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form textarea[name=message] {
    height: 160px;
  }
}
.form input[name=zip] {
  width: 172px;
}
.form input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  background: #fff;
  border-radius: 4px;
  padding: 0;
}
.form .smf-button-control__control {
  position: relative;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 270px;
  height: 83px;
  max-width: 100%;
  color: #fff;
  position: relative;
  transition: all 0.3s;
  background: #004b82;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 100px;
  line-height: 1;
  padding: 20px;
}
@media screen and (max-width: 767.9px) {
  .form .smf-button-control__control {
    height: 70px;
  }
}
.form .smf-button-control__control:hover {
  opacity: 0.7;
}
.form .smf-button-control__control[data-action=confirm] {
  width: 310px;
}
.form .smf-button-control__control[data-action=back] {
  background: #fff;
  color: #555555;
  border: solid 1px #cccccc;
}
.form .smf-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 40px;
}

.smf-action .smf-button-control + .smf-button-control {
  margin: 0;
}

.page-id-15 .form .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 20px 42px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-id-15 .form .submit {
  width: 270px;
  margin: 0;
}

.form-confirm,
.form-complete {
  display: none;
}

body:has(.snow-monkey-form[data-screen=confirm]) .form-confirm {
  display: block;
}
body:has(.snow-monkey-form[data-screen=confirm]) .form-input {
  display: none;
}

body:has(.snow-monkey-form[data-screen=complete]) .form-confirm {
  display: none;
}
body:has(.snow-monkey-form[data-screen=complete]) .form-input {
  display: none;
}
body:has(.snow-monkey-form[data-screen=complete]) .form-complete {
  display: block;
}
body:has(.snow-monkey-form[data-screen=complete]) .contact_wrap .contact_page-message,
body:has(.snow-monkey-form[data-screen=complete]) .contact_wrap .contact_box {
  display: none;
}

.contact-thanks {
  margin-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .contact-thanks {
    margin-top: 0;
  }
}
.contact-thanks h3 {
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .contact-thanks h3 {
    margin-bottom: 20px;
  }
}
.contact-thanks .back-to-list {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .contact-thanks .back-to-list {
    margin-top: 40px;
  }
}
.contact-thanks .back-to-list a::before {
  margin-right: 12px;
}

.page-id-13,
.page-id-275,
body.single,
body.archive {
  background: #fafafa;
}

.none {
  display: none;
}

.box_btn {
  position: relative;
}
.box_btn::before {
  content: "";
  width: 7px !important;
  height: 13px !important;
  background: #004b82 !important;
  position: absolute;
  left: 20px !important;
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  z-index: 2 !important;
  opacity: 1 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.box_btn .kt-btn-inner-text {
  font-size: 1.6rem !important;
}
.box_btn:hover::before {
  opacity: 0.7;
}

.kt-blocks-accordion-header .kt-blocks-accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .kt-blocks-accordion-header .kt-blocks-accordion-title {
    gap: 16px;
  }
}
.kt-blocks-accordion-header .kt-blocks-accordion-title::before {
  content: "Q";
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media screen and (max-width: 767.9px) {
  .kt-blocks-accordion-header .kt-blocks-accordion-title::before {
    font-size: 2.4rem;
  }
}

.kb-theme-content-width {
  width: 90%;
}

.kt-accordion-panel-inner .kt-row-column-wrap {
  position: relative;
}
.kt-accordion-panel-inner .kt-row-column-wrap::before {
  content: "A";
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #004b82;
  line-height: 1;
  position: absolute;
  top: 30px;
  left: 20px;
}
@media screen and (max-width: 767.9px) {
  .kt-accordion-panel-inner .kt-row-column-wrap::before {
    font-size: 2.4rem;
    top: 24px;
  }
}

.kt-blocks-accordion-icon-trigger {
  width: 33px !important;
}
.kt-blocks-accordion-icon-trigger::before, .kt-blocks-accordion-icon-trigger::after {
  width: 33px !important;
  height: 2px !important;
}
@media screen and (max-width: 767.9px) {
  .kt-blocks-accordion-icon-trigger::before, .kt-blocks-accordion-icon-trigger::after {
    width: 28px !important;
  }
}

.faq_anchor {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.kt-blocks-accordion-header {
  cursor: pointer;
}

.ul_list {
  margin-left: 2em;
}

.blog-list {
  gap: 70px 20px;
  list-style: none;
}
.blog-list li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767.9px) {
  .blog-list li {
    width: 100%;
    max-width: 375px;
  }
}
.blog-list li a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.blog-list img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 320/210;
  margin-bottom: 20px;
}
.blog-list h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  color: #000;
}
@media screen and (max-width: 767.9px) {
  .blog-list h3 {
    font-size: 1.5rem;
  }
}

.archive_wrapper,
.single_blog {
  padding: 0 0 180px;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper,
  .single_blog {
    padding: 0 0 60px;
  }
}
.archive_wrapper .archive_content,
.single_blog .archive_content {
  gap: 60px;
}
.archive_wrapper .archive_content li,
.single_blog .archive_content li {
  list-style: none;
}
.archive_wrapper .archive_content .left,
.single_blog .archive_content .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .archive_content .left,
  .single_blog .archive_content .left {
    width: 100%;
  }
}
.archive_wrapper .archive_content .right,
.single_blog .archive_content .right {
  width: 280px;
  position: sticky;
  top: 120px;
}
.archive_wrapper .blog-list,
.single_blog .blog-list {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .blog-list,
  .single_blog .blog-list {
    gap: 40px;
    margin-bottom: 60px;
  }
}
.archive_wrapper .blog-list li,
.single_blog .blog-list li {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .blog-list li,
  .single_blog .blog-list li {
    width: 100%;
    max-width: 375px;
  }
}

.time_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .time_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.time_wrap time {
  font-size: 1.3rem;
  color: #555555;
  font-weight: 500;
  letter-spacing: 0;
}
.time_wrap .category {
  gap: 5px 10px;
}
@media screen and (max-width: 767.9px) {
  .time_wrap .category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.time_wrap .category span {
  font-size: 1.3rem;
  color: #fff;
  background: #004b82;
  padding: 0 10px 1px;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .page-numbers {
    gap: 10px;
  }
}
.page-numbers a,
.page-numbers span {
  font-weight: 700;
  background: #fff;
  border: solid 1px #cccccc;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
}
@media screen and (max-width: 767.9px) {
  .page-numbers a,
  .page-numbers span {
    width: 36px;
    height: 36px;
  }
}
.page-numbers .current {
  color: #fff;
  background: #004b82;
}
.page-numbers .next::after,
.page-numbers .prev::after {
  content: "";
  width: 7px;
  height: 13px;
  background: #004b82;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 767.9px) {
  .page-numbers .next::after,
  .page-numbers .prev::after {
    width: 5px;
    height: 10px;
  }
}
.page-numbers .prev::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.archive-wrap {
  position: sticky;
  top: 120px;
}
.archive-wrap .archive-cont {
  position: relative;
  max-width: 320px;
}
.archive-wrap .archive-cont .heading3 {
  margin-bottom: 10px;
}
.archive-wrap .archive-cont ul {
  padding: 20px 0;
  border-top: solid 2px #004b82;
  padding-top: 20px;
  padding-left: 12px;
}
.archive-wrap .archive-cont ul li {
  margin-bottom: 5px;
}
.archive-wrap .archive-cont ul li a {
  line-height: 1;
  letter-spacing: normal;
  font-size: 1.4rem;
  font-weight: bold;
}
.archive-wrap .archive-cont ul li a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 13px;
  background: #004b82;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  vertical-align: middle;
  margin-right: 6px;
}
.archive-wrap .archive-cont ul li .time_wrap {
  margin-bottom: 10px;
}
.archive-wrap .archive-cont.category {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .archive-wrap .archive-cont.category {
    margin-bottom: 40px;
  }
}
.archive-wrap .archive-cont.archive ul {
  padding-top: 5px;
  padding-bottom: 30px;
  padding-left: 4px;
}
.archive-wrap .archive-cont.archive ul li {
  margin-bottom: 0;
  padding: 12px 0;
  border-bottom: solid 1px #cccccc;
  /*アイコン>*/
  /*　closeというクラスがついたら形状変化　*/
}
.archive-wrap .archive-cont.archive ul li .title {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  cursor: pointer;
  outline: none;
}
.archive-wrap .archive-cont.archive ul li .title:focus {
  outline: 2px solid #004b82;
  outline-offset: 2px;
}
.archive-wrap .archive-cont.archive ul li .title::after {
  position: absolute;
  content: "";
  background: #004b82;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 7px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .archive-wrap .archive-cont.archive ul li .title::after {
    width: 15px;
  }
}
.archive-wrap .archive-cont.archive ul li .title.close::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  top: 30%;
}
.archive-wrap .archive-cont.archive ul p,
.archive-wrap .archive-cont.archive ul a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .archive-wrap .archive-cont.archive ul p,
  .archive-wrap .archive-cont.archive ul a {
    font-size: 1.5rem;
  }
}
.archive-wrap .archive-cont.archive ul .box {
  padding-top: 13px;
}
.archive-wrap .archive-cont.archive ul .box a {
  padding: 12px 0 12px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.4rem;
}
.archive-wrap .archive-cont.archive ul .box a::before {
  content: none;
}
.archive-wrap .box {
  display: none;
}
.archive-wrap .banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.archive-wrap .banner a {
  width: 100%;
  font-weight: 700;
  background: #004b82;
  color: #fff;
  border-radius: 10px;
  padding: 20px 17px 20px 22px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.archive-wrap .banner a::after {
  content: "";
  width: 10px;
  height: 19px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.blog_content .blog_content_top .time_wrap {
  margin-bottom: 20px;
}
.blog_content .blog_content_top .time_wrap .category span {
  padding-inline: 20px;
  font-size: 1.4rem;
  line-height: 1.4;
}
.blog_content .blog_content_top h1 {
  font-size: 2.4rem;
  line-height: 1.5625;
  font-weight: 700;
  margin-bottom: 30px;
  color: #121212;
}
@media screen and (max-width: 767.9px) {
  .blog_content .blog_content_top h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.blog_content_inner {
  padding-bottom: 60px;
  border-bottom: solid 1px #cccccc;
  margin-bottom: 35px;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner {
    padding-bottom: 40px;
  }
}
.blog_content_inner img {
  display: block;
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner img {
    margin-bottom: 30px;
  }
}
.blog_content_inner p {
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner p {
    font-size: 1.5rem;
  }
}
.blog_content_inner h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: solid 1px #cccccc;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.blog_content_inner h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.back-to-list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #fff;
  border: solid 1px #cccccc;
  min-width: 192px;
  padding: 10px 20px;
  font-weight: 700;
  font-weight: bold;
  color: #004b82;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-radius: 5px;
}
.back-to-list a::before {
  content: "";
  width: 7px;
  height: 13px;
  background: #004b82;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.archive-product_list,
.single-product_list {
  padding-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .archive-product_list,
  .single-product_list {
    padding-bottom: 60px;
  }
}

.two_columns {
  gap: 60px 28px;
}
@media screen and (max-width: 767.9px) {
  .two_columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.product_list_wrap,
.product_list_content,
.product-contact_inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .product_list_wrap,
  .product_list_content,
  .product-contact_inner {
    width: 100%;
  }
}
.product_list_wrap .series,
.product_list_content .series,
.product-contact_inner .series {
  font-size: 1.2rem;
  font-weight: 400;
  color: #909090;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.product_list_wrap h3,
.product_list_content h3,
.product-contact_inner h3 {
  font-size: 2rem;
  font-weight: 700;
}
.product_list_wrap .price,
.product_list_content .price,
.product-contact_inner .price {
  font-weight: 700;
  color: #004b82;
  line-height: 1.4;
}

ul.product-list {
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border: solid 1px #cccccc;
  padding: 0 28px;
  margin-bottom: 65px;
}

.category_wrap {
  gap: 10px 20px;
  margin-bottom: 6px;
}
@media screen and (max-width: 767.9px) {
  .category_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.category {
  gap: 5px;
}
@media screen and (max-width: 767.9px) {
  .category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.category span {
  font-size: 1.2rem;
  font-weight: 400;
  background: #ff4500;
  padding: 0px 10px 1px;
  color: #fff;
}

.hashtag-list {
  gap: 5px;
}
@media screen and (max-width: 767.9px) {
  .hashtag-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.hashtag-list span {
  font-size: 1.2rem;
  font-weight: 700;
  background: #dce5eb;
  padding: 4px 10px;
  border-radius: 10px;
  line-height: 1.4;
  display: block;
  overflow-wrap: break-word;
}

.product-list__item {
  padding: 26px 0;
  border-bottom: solid 1px #cccccc;
  list-style: none;
}
.product-list__item:last-child {
  border-bottom: none;
}
.product-list__item a {
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .product-list__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product-list__item a img {
  width: 210px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 210/135;
}
@media screen and (max-width: 767.9px) {
  .product-list__item a img {
    width: 100%;
    max-width: 300px;
  }
}
.product-list__item a .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.item-search_wrap {
  width: 260px;
  position: sticky;
  top: 120px;
}
@media screen and (max-width: 430px) {
  .item-search_wrap {
    width: 100%;
  }
}

.free_search {
  margin-bottom: 40px;
}
.free_search label {
  background: #004b82;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  padding: 12px 22px;
  display: block;
  margin-bottom: 20px;
}
.free_search .search_input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border: solid 1px #004b82;
  background: #fff;
  height: 48px;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #555555;
}
.free_search .search_btn {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #004b82;
  display: grid;
  place-content: center;
  border: none;
}
.free_search .search_btn img {
  width: 25px;
}

.product-category-list h3 a {
  display: block;
  background: #004b82;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  padding: 12px 22px;
}
.product-category-list ul {
  padding: 10px 0 40px 24px;
}
.product-category-list ul li {
  list-style: none;
  margin-bottom: 5px;
}
.product-category-list ul a {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
}
.product-category-list ul a::before {
  content: "";
  width: 7px;
  height: 13px;
  background: #004b82;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 4px;
  left: -13px;
}

.hashtag-list-wrap {
  margin-top: 30px;
}
.hashtag-list-wrap h3 {
  font-weight: 700;
  color: #004b82;
  margin-bottom: 20px;
}
.hashtag-list-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hashtag-list-wrap ul li {
  list-style: none;
  max-width: 100%;
}
.hashtag-list-wrap ul li a {
  font-size: 1.2rem;
  font-weight: 700;
  background: #dce5eb;
  padding: 4px 10px;
  border-radius: 10px;
  line-height: 1.4;
  display: block;
  overflow-wrap: break-word;
}

.product_list_content .product_list_title {
  font-size: 2.4rem;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .product_list_content .product_list_title {
    font-size: 2rem;
  }
}
.product_list_content .inner {
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border: solid 1px #cccccc;
  padding: 28px 28px 90px;
}
@media screen and (max-width: 767.9px) {
  .product_list_content .inner {
    padding: 28px 20px 60px;
  }
}
.product_list_content .price {
  margin-bottom: 16px;
}
.product_list_content .detail-title {
  color: #004b82;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .product_list_content .detail-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.product_list_content .detail-description {
  padding-bottom: 45px;
  padding-left: 10px;
  border-bottom: solid 1px #cccccc;
}
@media screen and (max-width: 767.9px) {
  .product_list_content .detail-description {
    padding-left: 0;
    padding-bottom: 30px;
  }
}
.product_list_content .product-pdf {
  padding: 24px 10px;
  border-bottom: solid 1px #cccccc;
  gap: 16px 40px;
}
.product_list_content .product-pdf .pdf-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .product_list_content .product-pdf .pdf-title {
    font-size: 1.6rem;
  }
}
.product_list_content .product-pdf .download-btn {
  background: #004b82;
  color: #fff;
  padding: 7px 0px;
  border-radius: 10px;
  font-size: 1.8rem;
  text-align: center;
  min-width: 260px;
  position: relative;
  padding-left: 12px;
}
@media screen and (max-width: 430px) {
  .product_list_content .product-pdf .download-btn {
    width: 100%;
  }
}
.product_list_content .product-pdf .download-btn::before {
  content: "";
  width: 23px;
  height: 25px;
  background-image: url(../img/download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 19px;
}
.product_list_content .product-contact {
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .product_list_content .product-contact {
    margin-top: 30px;
  }
}
.product_list_content .product-contact a {
  border-radius: 100px;
  display: block;
  width: 100%;
  max-width: 616px;
  background: #004b82;
  color: #fff;
  padding: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .product_list_content .product-contact a {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
}
.product_list_content .back-to-list {
  margin-top: 30px;
  margin-bottom: 80px;
  text-align: right;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 7px;
  aspect-ratio: 655/315;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.grid-container .grid-item-1,
.grid-container .grid-item-2,
.grid-container .grid-item-3,
.grid-container .grid-item-4 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.grid-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 465/300;
}
.grid-container .grid-item-1 {
  grid-area: 1/1/4/4;
  aspect-ratio: 3/3;
}
.grid-container .grid-item-2 {
  grid-area: 1/4/2/5;
}
.grid-container .grid-item-3 {
  grid-area: 2/4/3/5;
}
.grid-container .grid-item-4 {
  grid-area: 3/4/4/5;
}
@media screen and (max-width: 767.9px) {
  .grid-container {
    height: auto;
    aspect-ratio: 465/430;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 3fr 1fr;
  }
  .grid-container .grid-item-1 {
    grid-area: 1/1/2/4;
  }
  .grid-container .grid-item-2 {
    grid-area: 2/1/3/2;
  }
  .grid-container .grid-item-3 {
    grid-area: 2/2/3/3;
  }
  .grid-container .grid-item-4 {
    grid-area: 2/3/3/4;
  }
  .grid-container img {
    aspect-ratio: 465/300;
  }
}

.related-list-wrap .related_title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #004b82;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .related-list-wrap .related_title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.related-list-wrap ul {
  gap: 23px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .related-list-wrap ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.related-list-wrap .product-list_card {
  width: calc((100% - 46px) / 3);
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .related-list-wrap .product-list_card {
    width: calc((100% - 23px) / 2);
  }
}
@media screen and (max-width: 430px) {
  .related-list-wrap .product-list_card {
    width: 100%;
  }
}

.product-list_card {
  list-style: none;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 430px) {
  .product-list_card {
    width: 100%;
  }
}
.product-list_card a {
  display: block;
  height: 100%;
}
.product-list_card .series {
  font-size: 1.2rem;
  font-weight: 400;
  color: #909090;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.product-list_card .product-list__thumb {
  position: relative;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767.9px) {
  .product-list_card .product-list__thumb {
    aspect-ratio: 3/2;
  }
}
.product-list_card .product-list__thumb img {
  width: 100%;
  height: 100%;
}
.product-list_card .product-list__thumb .category {
  position: absolute;
  top: 0;
  left: 0;
  gap: 5px;
}
.product-list_card .product-list__thumb .category span {
  background: #ff4500;
  color: #fff;
  padding: 1px 12px;
  font-size: 1.2rem;
}
.product-list_card .product-list__info {
  background: #fff;
  padding: 15px;
}
.product-list_card .parent_category {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.product-list_card .parent_category span {
  color: #fff;
  background: #004b82;
  font-size: 1.2rem;
  line-height: 1;
  padding: 5px 9px 6px;
}
.product-list_card h4 {
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

@media screen and (max-width: 1024px) {
  .product-contact .two_columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.product-contact .contact_box {
  margin-bottom: 30px;
}
.product-contact .notice-box {
  margin-bottom: 60px;
}
.product-contact .notice-box span {
  background: #295a9d;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1px 12px 2px;
  margin-inline: 5px;
}
.product-contact .form-confirm {
  margin-bottom: 40px;
}
.product-contact .form-confirm h2 {
  color: #004b82;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}
.product-contact .product-contact_inner {
  max-width: 711px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .product-contact .product-contact_inner {
    width: 100%;
  }
}
.product-contact .product-contact_inner .form_wrap {
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border: solid 1px #cccccc;
  padding: 30px 32px 65px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .product-contact .product-contact_inner .form_wrap {
    padding: 30px 20px 40px;
  }
}
.product-contact .form {
  margin: 0;
}
.product-contact .form .smf-item__label__text mark {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1px 12px 2px;
  margin-right: 16px;
}
.product-contact .form textarea {
  line-height: 2;
}
.product-contact .form .smf-button-control {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.product-contact .form .smf-button-control {
  width: 100%;
}
.product-contact .form .smf-button-control__control[data-action=confirm] {
  max-width: 616px;
  width: 100%;
  line-height: 1.6;
  height: auto;
  font-size: 1.8rem;
}
.product-contact .form .privacy_policy_check .smf-label {
  text-align: left;
}
.product-contact .form .privacy_policy_check {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .product-contact .form .privacy_policy_check {
    margin-bottom: 40px;
  }
}
.product-contact .contact-thanks-inner {
  margin-top: 50px;
  margin: 0;
}
.product-contact .contact-thanks-inner h3 {
  margin-bottom: 12px;
}
.product-contact .back-to-list {
  text-align: right;
  margin-top: 0;
}
.product-contact .contact-thanks {
  margin-top: 0;
}

body.page-id-275:has(.snow-monkey-form[data-screen=complete]) .inner {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: none;
}

.main_visual {
  height: 730px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /*流れるテキスト*/
}
@media screen and (max-width: 767.9px) {
  .main_visual {
    height: 650px;
  }
}
.main_visual::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  height: 300px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.main_visual .slider {
  width: 100%;
  height: 100%;
}
.main_visual .slider div,
.main_visual .slider img,
.main_visual .slider figure {
  width: 100%;
  height: 100% !important;
}
.main_visual .slider::before {
  content: "";
  width: 100%;
  height: 100px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 6;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
@media screen and (max-width: 767.9px) {
  .main_visual .slider::before {
    height: 40px;
  }
}
.main_visual .slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #004b82;
  width: 50%;
  height: 100px;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  z-index: 7;
}
@media screen and (max-width: 767.9px) {
  .main_visual .slider::after {
    height: 40px;
  }
}
.main_visual .slider .splide__track {
  position: relative;
}
.main_visual .slider .splide__track::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.main_visual .main_lead {
  position: absolute;
  top: 49%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 100px;
  z-index: 5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_lead {
    left: 30px;
  }
}
.main_visual .main_lead p {
  color: #fff;
}
.main_visual .loop-wrap {
  width: 100vw;
  overflow: hidden;
  position: absolute;
  bottom: 85px;
  left: 0;
  z-index: 5;
  height: 117px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .loop-wrap {
    height: 80px;
  }
}
.main_visual .loop-wrap div,
.main_visual .loop-wrap img {
  width: auto;
  height: auto;
}
.main_visual .loop-wrap .loop-wrap__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -220px;
}
.main_visual .loop-wrap figure {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 30px;
}
.main_visual .loop-wrap figure img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 117px;
  width: auto;
  aspect-ratio: 2570/117;
  max-width: unset !important;
}
@media screen and (max-width: 767.9px) {
  .main_visual .loop-wrap figure img {
    height: 80px;
  }
}

/*流れるテキスト*/
@-webkit-keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.heading1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1.6;
}
.heading1::before {
  content: "";
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
  margin-top: 5px;
  background: url(../img/heading_mark.svg) no-repeat center center/contain;
}

.more_btn .kb-button {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.more_btn .kb-button span {
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
}
.more_btn .kb-button::after {
  content: "";
  width: 10px;
  height: auto;
  aspect-ratio: 10/19;
  background: #004b82;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .more_btn .kb-button::after {
    width: 8px;
    right: 18px;
  }
}

.back_text {
  font-family: "Shippori Mincho B1", serif;
  font-size: 20rem;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, right top, from(rgb(161, 196, 253)), to(rgb(194, 233, 251)));
  background: linear-gradient(90deg, rgb(161, 196, 253) 0%, rgb(194, 233, 251) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: absolute;
  opacity: 0.2;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .back_text {
    font-size: 10rem;
    letter-spacing: 0.02em;
  }
}

.top_news .kb-theme-content-width {
  position: relative;
}
.top_news .kb-theme-content-width .back_text {
  top: -60px;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .top_news .kb-theme-content-width .back_text {
    top: -40px;
  }
}
.top_news .case-news-list {
  padding: 40px;
  background: #fff;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .top_news .case-news-list {
    padding: 20px;
  }
}
.top_news .case-news-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .top_news .case-news-list a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_news .case-news-list .news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
}
.top_news .case-news-list time {
  color: #004b82;
  font-size: 1.3rem;
  margin-right: 20px;
}
.top_news .case-news-list .news-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
.top_news .case-news-list .news-category span {
  color: #fff;
  background: #004b82;
  padding: 1px 10px 2px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .top_news .case-news-list .news-category span {
    font-size: 1.2rem;
  }
}
.top_news .case-news-list h3 {
  -webkit-margin-before: calc((1em - 1lh) / 2);
          margin-block-start: calc((1em - 1lh) / 2);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.top_business {
  position: relative;
  overflow: hidden;
}
.top_business::before {
  content: "";
  width: 50%;
  height: 70px;
  background: #004b82;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media screen and (max-width: 767.9px) {
  .top_business::before {
    height: 40px;
  }
}
.top_business .kb-theme-content-width {
  position: relative;
}
.top_business .back_text {
  top: -85px;
  left: 46%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .top_business .back_text {
    top: -35px;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.top_parallax {
  position: relative;
  padding: 182px 0;
}
@media screen and (max-width: 767.9px) {
  .top_parallax {
    padding: 80px 0;
  }
}
.top_parallax::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #004b82;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.top_parallax .top_parallax_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.top_parallax .top_parallax_img div,
.top_parallax .top_parallax_img figure {
  height: 100%;
}
.top_parallax .top_parallax_img .kt-row-column-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top_parallax .top_parallax_img img {
  height: 100%;
  display: block;
}
.top_parallax .top_parallax_content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.top_parallax .top_parallax_content p {
  color: #000;
}

.top_list {
  overflow: hidden;
}
.top_list .back_text {
  top: -65px;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .top_list .back_text {
    top: -50px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_list .rental .back_text {
    right: auto;
    left: 0;
  }
}
.top_list .top_list_content .product-list_card-wrapper {
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .top_list .top_list_content .product-list_card-wrapper {
    gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.top_list .top_list_content .product-list_card-wrapper li {
  width: calc((100% - 90px) / 4);
}
@media screen and (max-width: 767.9px) {
  .top_list .top_list_content .product-list_card-wrapper li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 430px) {
  .top_list .top_list_content .product-list_card-wrapper li {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .top_list .top_list_content .product-list_card-wrapper {
    width: 100%;
  }
}
.top_list .top_list_content .product-list_card-wrapper li:nth-child(2n) {
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .top_list .top_list_content .product-list_card-wrapper li:nth-child(2n) {
    margin-top: 0;
  }
}

.top_case {
  overflow: hidden;
}
.top_case .back_text {
  right: 0;
  top: -80px;
}
@media screen and (max-width: 767.9px) {
  .top_case .back_text {
    top: -60px;
  }
}
.top_case::before {
  content: "";
  width: 50%;
  height: 70px;
  background: #004b82;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media screen and (max-width: 767.9px) {
  .top_case::before {
    height: 40px;
  }
}

.case_swiper {
  position: relative;
}
.case_swiper img {
  aspect-ratio: 500/300;
}
.case_swiper .swiper-wrapper {
  width: 100%;
  gap: 0;
}
.case_swiper .swiper-button-prev,
.case_swiper .swiper-button-next {
  top: -120px;
  width: 60px;
  height: 60px;
  background: #fff;
  border: solid 1px #004b82;
  border-radius: 50%;
}
@media screen and (max-width: 767.9px) {
  .case_swiper .swiper-button-prev,
  .case_swiper .swiper-button-next {
    width: 40px;
    height: 40px;
    top: -55px;
  }
}
.case_swiper .swiper-button-next.swiper-button-disabled,
.case_swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.case_swiper .swiper-button-prev::after,
.case_swiper .swiper-button-next::after {
  content: "";
  background: #004b82;
  width: 10px;
  height: auto;
  aspect-ratio: 10/19;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 767.9px) {
  .case_swiper .swiper-button-prev::after,
  .case_swiper .swiper-button-next::after {
    width: 7px;
  }
}
.case_swiper .swiper-button-prev {
  right: 75px;
  left: auto;
}
@media screen and (max-width: 767.9px) {
  .case_swiper .swiper-button-prev {
    right: 45px;
  }
}
.case_swiper .swiper-button-prev::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.case_swiper .swiper-button-next {
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .case_swiper .swiper-button-next {
    right: 0;
  }
}
.case_swiper .blog-list__item {
  width: 500px;
  max-width: 100%;
}
.case_swiper .blog-list__item h3 {
  font-size: 1.8rem;
}

.top_btn_company,
.top_btn_faq {
  position: relative;
}
.top_btn_company .kb-button.kb-btn-global-outline,
.top_btn_faq .kb-button.kb-btn-global-outline {
  border: none;
}
.top_btn_company a,
.top_btn_faq a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
.top_btn_company a::before,
.top_btn_faq a::before {
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.05;
}
.top_btn_company a:hover::before,
.top_btn_faq a:hover::before {
  opacity: 0.05;
}
.top_btn_company a::after,
.top_btn_faq a::after {
  content: "";
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/arrow_btn.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .top_btn_company a::after,
  .top_btn_faq a::after {
    width: 50px;
    right: 30px;
  }
}

.top_btn_company a::before {
  content: "";
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/top_btn_company.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767.9px) {
  .top_btn_company a::before {
    width: 50px;
  }
}

.top_btn_faq a::before {
  content: "";
  width: 90px;
  height: auto;
  aspect-ratio: 90/105;
  background: url(../img/top_btn_faq.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767.9px) {
  .top_btn_faq a::before {
    width: 50px;
  }
}

.footer_contact {
  background-image: url(../img/footer_contanct_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0 90px;
}
@media screen and (max-width: 767.9px) {
  .footer_contact {
    padding: 60px 0;
  }
}
.footer_contact::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #004b82;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.footer_contact .cont {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer_contact .cont h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 13px;
}
@media screen and (max-width: 767.9px) {
  .footer_contact .cont h2 {
    font-size: 3rem;
  }
}
.footer_contact .cont .description {
  color: #fff;
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (max-width: 767.9px) {
  .footer_contact .cont .description {
    margin-bottom: 30px;
  }
}
.footer_contact .footer_contact_flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .footer_contact .footer_contact_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.footer_contact .footer_contact_flex .tel,
.footer_contact .footer_contact_flex .mail {
  padding: 12px 50px;
  max-width: 100%;
}
.footer_contact .footer_contact_flex h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .footer_contact .footer_contact_flex h3 {
    margin-bottom: 20px;
  }
}
.footer_contact .footer_contact_flex .tel {
  border-right: solid 1px #fff;
}
@media screen and (max-width: 1024px) {
  .footer_contact .footer_contact_flex .tel {
    border: none;
  }
}
.footer_contact .footer_contact_flex .tel h3 {
  margin-bottom: 20px;
}
.footer_contact .footer_contact_flex .tel h3 img {
  width: 18px;
}
.footer_contact .footer_contact_flex .tel a {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .footer_contact .footer_contact_flex .tel a {
    font-size: 2.4rem;
  }
}
.footer_contact .footer_contact_flex .tel a span {
  vertical-align: baseline;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .footer_contact .footer_contact_flex .tel a span {
    font-size: 1.6rem;
  }
}
.footer_contact .footer_contact_flex .tel .tel_time {
  font-size: 1.1rem;
  font-weight: 300;
  text-align: right;
  color: #fff;
}
.footer_contact .footer_contact_flex .mail h3 img {
  width: 20px;
}
.footer_contact .footer_contact_flex .mail a {
  background: #ff4500;
  color: #fff;
  border-radius: 100px;
  width: 350px;
  max-width: 100%;
  font-size: 2rem;
  font-weight: 700;
  padding: 20px 20px;
  display: block;
  text-align: center;
}

.footer {
  background: #333333;
  padding: 98px 0 50px;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding-top: 80px;
  }
}
.footer .cont {
  max-width: 1200px;
}
.footer .footer_inner {
  gap: 10px 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_inner {
    margin-bottom: 20px;
  }
}
.footer .footer_inner_left {
  margin-top: 10px;
}
.footer .footer_inner_left .f_logo {
  width: 300px;
  max-width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_inner_left .f_logo {
    width: 200px;
  }
}
.footer .footer_inner_left .f_logo a,
.footer .footer_inner_left .f_logo img {
  display: block;
  width: 100%;
}
.footer .footer_inner_left .f_address {
  margin-bottom: 20px;
}
.footer .footer_inner_left .f_address p {
  font-size: 1.3rem;
  font-weight: 700;
  background: #fff;
  padding: 3px 9px 4px;
  margin-bottom: 10px;
  color: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}
.footer .footer_inner_left .f_address address {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  font-style: normal;
}
.footer .f_nav {
  gap: 0 100px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_nav {
    margin-bottom: 50px;
  }
}
.footer .f_nav ul li {
  margin-bottom: 10px;
}
.footer .f_nav ul li a,
.footer .f_nav ul li p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .footer .f_nav ul li a,
  .footer .f_nav ul li p {
    font-size: 1.6rem;
  }
}
.footer .f_nav ul li ul {
  margin-bottom: 5px;
  margin-left: 20px;
}
.footer .f_nav ul li ul li {
  margin-bottom: 0;
}
.footer .f_nav ul li ul li a {
  color: #f0f0f0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.2;
}
.footer .f_nav ul li ul li a::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #f0f0f0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.footer .f_nav .job_detail li ul {
  margin-left: 0;
}
.footer .f_nav .job_detail li ul a::before {
  content: none;
}
.footer .f_nav .job_detail li ul li ul {
  margin-left: 20px;
}
.footer .f_nav .job_detail li ul li ul a::before {
  content: "";
}
.footer .footer_copyright {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_copyright {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 430px) {
  .footer .footer_copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .footer_copyright a,
.footer .footer_copyright small {
  font-size: 1rem;
  font-weight: 400;
  color: #999999;
}
.footer .footer_copyright a {
  padding-right: 20px;
  border-right: solid 1px #999999;
}
@media screen and (max-width: 430px) {
  .footer .footer_copyright a {
    padding-right: 0;
    border: none;
  }
}
.footer .footer_copyright small {
  padding-left: 20px;
}
@media screen and (max-width: 430px) {
  .footer .footer_copyright small {
    padding: 0;
  }
}

.company_section1 {
  overflow: hidden;
}
.company_section1 .back_text {
  top: -82px;
  left: 190px;
}
@media screen and (max-width: 767.9px) {
  .company_section1 .back_text {
    top: -42px;
    left: 20px;
  }
}

.company_section2 {
  position: relative;
}
.company_section2::before {
  content: "";
  width: 50%;
  height: 70px;
  background: #004b82;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media screen and (max-width: 767.9px) {
  .company_section2::before {
    height: 40px;
  }
}
.company_section2 .company_section2_content {
  position: relative;
  overflow: hidden;
}
.company_section2 .company_section2_content::before {
  content: "";
  width: 75px;
  height: 182px;
  background: #eff5fa;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
}

.company_section3 tr {
  border-bottom: solid 1px #cccccc;
}
@media screen and (max-width: 767.9px) {
  .company_section3 tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company_section3 tr:nth-child(2) .kb-row-layout-wrap::before {
  content: none;
}
.company_section3 tr:nth-child(2) a::before {
  content: "";
  width: 7px;
  height: 13px;
  background: #004b82;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767.9px) {
  .company_section3 td:nth-child(1) {
    padding-bottom: 10px !important;
  }
}
@media screen and (max-width: 767.9px) {
  .company_section3 td:nth-child(2) {
    padding-top: 0 !important;
  }
}

.technology1 {
  overflow: hidden;
}
.technology1 .back_text {
  left: 200px;
  top: -50px;
}
@media screen and (max-width: 767.9px) {
  .technology1 .back_text {
    left: 30px;
  }
}

.technology_heading {
  width: 100%;
  max-width: 483px;
}

.heading_bg_bottom {
  position: relative;
}
.heading_bg_bottom::before {
  content: "";
  width: 100%;
  height: 50%;
  background: #fff;
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .heading_bg_bottom::before {
    bottom: -4px;
  }
}
@media screen and (max-width: 767.9px) {
  .heading_bg_bottom.nidan::before {
    bottom: -8px;
  }
}

.show_more .wp-block-kadence-image {
  overflow: hidden;
  -webkit-transition: height 0.6s ease-in-out;
  transition: height 0.6s ease-in-out;
  height: 175px;
  position: relative;
}
.show_more .wp-block-kadence-image.expanded {
  height: 100%;
}
.show_more .wp-block-kadence-image.expanded::after {
  display: none;
}
.show_more .wp-block-kadence-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 143px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}
.show_more .wp-block-kadence-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.show_more .show_more_text,
.show_more .flow_close {
  margin-top: 20px;
  cursor: pointer;
  position: relative;
}
.show_more .show_more_text::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  background: #004b82;
  margin-right: 10px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  margin-top: 3px;
}
.show_more .flow_close {
  display: none;
}
.show_more .flow_close::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  background: #004b82;
  margin-right: 10px;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  margin-top: 3px;
}
.show_more .flow_close.active {
  display: block;
}

.product1 {
  position: relative;
  overflow: hidden;
}
.product1 .kt-row-column-wrap {
  position: static;
}
.product1 .product1_img {
  position: absolute;
  right: 50px;
  bottom: 30px;
  max-height: 435px;
  width: auto;
  aspect-ratio: 262/435;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .product1 .product1_img {
    max-height: 180px;
    right: 0;
  }
}
.product1 .product1_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product1 .back_text {
  top: -50px;
  left: 280px;
}
@media screen and (max-width: 767.9px) {
  .product1 .back_text {
    left: 30px;
    bottom: 50px;
  }
}

.product_table tr {
  height: 82px;
}
.product_table td {
  vertical-align: middle;
}
.product_table td:nth-child(1) {
  background: #e6e6e6;
}

.page_product_card .product-list_card-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 12px;
}
@media screen and (max-width: 767.9px) {
  .page_product_card .product-list_card-wrapper {
    gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.page_product_card .product-list_card-wrapper li {
  width: calc((100% - 36px) / 4);
}
@media screen and (max-width: 767.9px) {
  .page_product_card .product-list_card-wrapper li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 430px) {
  .page_product_card .product-list_card-wrapper li {
    width: 100%;
  }
}

.product3,
.gnss5 {
  position: relative;
}
.product3::before,
.gnss5::before {
  content: "";
  width: 50%;
  height: 70px;
  background: #004b82;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media screen and (max-width: 767.9px) {
  .product3::before,
  .gnss5::before {
    height: 40px;
  }
}

.notfound_wrapper {
  background: #004b82;
  padding: 230px 0 160px;
}
@media screen and (max-width: 767.9px) {
  .notfound_wrapper {
    padding: 140px 0 80px;
  }
}
.notfound_wrapper h1 {
  color: #fff;
  font-size: 4.5rem;
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .notfound_wrapper h1 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
.notfound_wrapper p {
  color: #fff;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .notfound_wrapper p {
    margin-bottom: 40px;
  }
}
.notfound_wrapper .back-to-list {
  text-align: center;
}
.notfound_wrapper .back-to-list a::before {
  margin-right: 20px;
}

#scroll-top {
  position: fixed;
  z-index: 2;
  bottom: 12px;
  right: 24px;
  width: 60px;
  height: 60px;
  display: none;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}

@media screen and (max-width: 767.9px) {
  #scroll-top {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    right: 8px;
    bottom: 0;
  }
}
#scroll-top:hover {
  bottom: 16px;
}

@media screen and (max-width: 767.9px) {
  #scroll-top:hover {
    bottom: 6px;
  }
}
#scroll-top a {
  width: 100%;
  height: 100%;
  display: block;
}

#scroll-top a span {
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 29px;
  right: 11px;
}

#scroll-top a span::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 9px;
  right: 9px;
}

.page-id-265 .pankuzu {
  margin-bottom: 0;
}

.gnss5 {
  overflow: hidden;
}
.gnss5 .page_product_card .product-list_card-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.gnss5 li:nth-child(2n) {
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .gnss5 li:nth-child(2n) {
    margin-top: 0;
  }
}
.gnss5 .back_text {
  top: -65px;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .gnss5 .back_text {
    top: -50px;
  }
}
@media screen and (max-width: 767.9px) {
  .gnss5 .rental .back_text {
    right: auto;
    left: 0;
  }
}

.text_shadow {
  text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff, 3px 0px 3px #fff, -3px 0px 3px #fff, 0px 3px 3px #fff, 0px -3px 3px #fff;
}
@media screen and (max-width: 767.9px) {
  .text_shadow {
    text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, -2px 2px 2px #fff, 2px -2px 2px #fff, 2px 0px 2px #fff, -2px 0px 2px #fff, 0px 2px 2px #fff, 0px -2px 2px #fff;
  }
}

.inspection_flow .inner {
  position: relative;
}
.inspection_flow .inner::after {
  content: "";
  width: 32px;
  height: 17px;
  -webkit-clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
          clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  position: absolute;
  left: 50%;
  bottom: -37px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #004b82;
}

.nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767.9px) {
  .nowrap {
    white-space: normal;
  }
}

.archive-faq li {
  list-style: none;
}
.archive-faq li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  color: #004b82;
  padding: 22px 0;
  border-bottom: solid 1px #cccccc;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.archive-faq li a::before {
  content: "Q";
  font-family: "Shippori Mincho", serif;
  background: #004b82;
  color: #fff;
  font-size: 2.6rem;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 3px;
}
@media screen and (max-width: 767.9px) {
  .archive-faq li a::before {
    font-size: 2rem;
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}

.question_content h2 {
  font-size: 1.6rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 18px;
  color: #004b82;
  padding-top: 22px;
  padding-bottom: 24px;
  border-bottom: solid 1px #cccccc;
}
.question_content h2::before {
  content: "Q";
  font-family: "Shippori Mincho", serif;
  background: #004b82;
  color: #fff;
  font-size: 2.6rem;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 6px;
}
@media screen and (max-width: 767.9px) {
  .question_content h2::before {
    font-size: 2rem;
    width: 32px;
    height: 32px;
    min-width: 32px;
    padding-bottom: 3px;
  }
}

.answer_content {
  background: #fff;
  padding: 24px 28px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 25px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767.9px) {
  .answer_content {
    padding: 20px 20px 30px;
    gap: 15px;
  }
}
.answer_content .shippori {
  background: #ff4500;
  color: #fff;
  font-size: 2.6rem;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 6px;
  padding-left: 2px;
}
@media screen and (max-width: 767.9px) {
  .answer_content .shippori {
    font-size: 2rem;
    width: 32px;
    height: 32px;
    min-width: 32px;
    padding-bottom: 4px;
  }
}
.answer_content .inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.answer_content .inner p,
.answer_content .inner span,
.answer_content .inner mark,
.answer_content .inner li,
.answer_content .inner a {
  font-weight: 400;
}
.answer_content .inner a {
  color: #004b82;
}
.answer_content .inner strong {
  font-weight: 700;
}
.answer_content .inner strong * {
  font-weight: 700;
}/*# sourceMappingURL=common.css.map */