@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Saira:wght@100..900&display=swap");
/**************
Sass Mixin
**************/
/**************
Basic Setting
**************/
html {
  font-size: 62.5%;
}
html * {
  box-sizing: border-box;
  word-wrap: break-word;
}

@-webkit-keyframes slideTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes slideTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
@-webkit-keyframes slideTextRevealCenter {
  0% {
    opacity: 0;
    transform: translateY(calc(-50% + 15px));
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
    filter: blur(0);
  }
}
@keyframes slideTextRevealCenter {
  0% {
    opacity: 0;
    transform: translateY(calc(-50% + 15px));
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
    filter: blur(0);
  }
}
@-webkit-keyframes mainSliderZoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes mainSliderZoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
body {
  color: #0E0E0E;
  font-size: 1.6em;
  font-family: -apple-system-body, BlinkMacSystemFont, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
}
body.admin-bar {
  position: relative;
}

select,
input,
button,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

img {
  max-width: 100%;
}

#pagetop {
  background: url(../images/common/pagetop2.png);
  background-size: contain;
  position: fixed;
  right: 8px;
  text-indent: -9999px;
  outline: none;
  opacity: 0.7;
  z-index: 3;
}
@media (min-width: 560px) {
  #pagetop {
    width: 60px;
    height: 60px;
    bottom: -60px;
  }
}
@media (max-width: 834.9px) {
  #pagetop {
    width: 40px;
    height: 40px;
    bottom: -50px;
  }
}
#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

a {
  text-decoration: none;
  color: #3851b7;
  outline: none;
  font-weight: bold;
}
a:hover {
  color: #5066be;
}

/**************
Layout Set
**************/
.wrap {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .wrap {
    max-width: 1200px;
  }
  .wrap.w1300 {
    max-width: 1300px;
  }
}
@media (max-width: 559.9px) {
  .wrap {
    width: 88%;
  }
}

.middlewrap {
  width: 92%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 559.9px) {
  .middlewrap {
    width: 88%;
  }
}

.shortwrap {
  width: 92%;
  max-width: 856px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 559.9px) {
  .shortwrap {
    width: 88%;
  }
}

.page_section {
  padding: 100px 0;
  width: 100%;
}
@media (max-width: 834.9px) {
  .page_section {
    padding: 60px 0;
  }
}
@media (max-width: 559.9px) {
  .page_section {
    padding: 40px 0;
  }
}
.page_section__black {
  background-color: #0E0E0E;
}
.page_section__bgGray {
  background-color: #f5f5f5;
}
.page_section__blue {
  background-color: #1D2088;
}
.page_section__grad {
  background: linear-gradient(93deg, #d4f21a 14.4%, #f786b6 100.34%);
}
.page_section.pa-l {
  padding: 100px 0 160px;
}
@media (max-width: 999.9px) {
  .page_section.pa-l {
    padding-bottom: 120px;
  }
}
@media (max-width: 834.9px) {
  .page_section.pa-l {
    padding: 60px 0 100px;
  }
}
@media (max-width: 559.9px) {
  .page_section.pa-l {
    padding: 40px 0 60px;
  }
}

.over-h {
  overflow: hidden;
}

/**************
Header
**************/
#header {
  z-index: 10;
  width: 100%;
  height: 124px;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background-color: transparent;
  position: fixed;
  left: 0;
  top: 0;
}
@media (min-width: 835px) and (max-width: 999.9px) {
  #header {
    height: 106px;
  }
}
@media (max-width: 834.9px) {
  #header {
    height: 68px;
  }
}
@media (max-width: 559.9px) {
  #header {
    height: 56px;
  }
}
#header.fixed {
  height: 96px;
  background-color: #0E0E0E;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
@media (min-width: 835px) and (max-width: 999.9px) {
  #header.fixed {
    height: 80px;
  }
}
@media (max-width: 834.9px) {
  #header.fixed {
    height: 60px;
  }
}
@media (max-width: 559.9px) {
  #header.fixed {
    height: 56px;
  }
}

.header_inner {
  position: relative;
  width: 92%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 999.9px) {
  .header_inner {
    width: 100%;
    padding-left: 16px;
  }
}
@media (min-width: 835px) and (max-width: 999.9px) {
  .header_inner {
    padding-right: 128px;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .header_inner {
    padding-right: 88px;
  }
}

.header_logo {
  text-align: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media (min-width: 835px) {
  .header_logo {
    width: 110px;
  }
}
@media (max-width: 834.9px) {
  .header_logo {
    position: relative;
    z-index: 4;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .header_logo {
    width: 68px;
  }
}
@media (max-width: 559.9px) {
  .header_logo {
    width: 55px;
  }
}
.header_logo img {
  display: block;
  max-width: 100%;
  transition: opacity 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  opacity: 1;
}
@media (min-width: 835px) {
  .fixed .header_logo {
    width: 66px;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .fixed .header_logo {
    width: 50px;
  }
}

@media (min-width: 1000px) {
  .global_navi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    margin-left: auto;
    margin-top: 20px;
    margin-right: 100px;
  }
  .fixed .global_navi {
    margin-top: 0;
    margin-right: 120px;
  }
}
@media (max-width: 999.9px) {
  .global_navi {
    display: none;
  }
}

.navi_ul {
  position: relative;
}
@media (min-width: 1000px) {
  .navi_ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 999.9px) {
  .navi_ul {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 835px) and (max-width: 999.9px) {
  .navi_ul {
    margin-top: 120px;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .navi_ul {
    margin-top: 120px;
  }
}
@media (max-width: 559.9px) {
  .navi_ul {
    padding-bottom: 10px;
  }
}
@media (min-width: 1000px) {
  .navi_ul > li {
    position: relative;
    height: 100%;
    margin: 0 6px;
  }
  .navi_ul > li::after {
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 0;
    height: 1px;
    background: white;
    content: "";
    transition: all 0.3s;
    z-index: 100;
  }
  .navi_ul > li:hover::after, .navi_ul > li.selected::after {
    left: 0;
    width: 100%;
  }
}
@media (max-width: 999.9px) {
  .navi_ul > li {
    margin-bottom: 8px;
  }
}
.navi_ul > li.toggle {
  position: relative;
  font-weight: bold;
}
@media (max-width: 999.9px) {
  .navi_ul > li.toggle::after {
    position: absolute;
    top: 26px;
    right: 10px;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    color: #0E0E0E;
  }
}
@media (min-width: 1000px) {
  .navi_ul > li.toggle:hover .megamenu {
    max-height: 9999px;
    opacity: 1;
  }
}

.header-nav-item {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 1000px) {
  .header-nav-item {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 8px;
    cursor: pointer;
    color: white;
    overflow: hidden;
  }
  .header-nav-item > span {
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  }
  .header-nav-item::after {
    content: attr(data-jp);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 20px));
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    white-space: nowrap;
    font-family: inherit;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
  }
  .header-nav-item:hover > span {
    transform: translateY(-20px);
    opacity: 0;
  }
  .header-nav-item:hover::after {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@media (max-width: 999.9px) {
  .header-nav-item {
    color: #444;
    text-align: center;
    padding: 16px 0;
    display: block;
    width: 100%;
    line-height: 1.3;
    background-color: white;
    border-radius: 8px;
  }
}

@media (min-width: 1000px) {
  .megamenu {
    transition: all 0.6s ease-in;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    padding: 1.6rem 2.4rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0.4rem;
  }
}
@media (max-width: 999.9px) {
  .megamenu {
    display: none;
    background-color: white;
    border-radius: 0.4rem;
  }
}
@media (min-width: 1000px) {
  .megamenu .inner_ul {
    padding: 0.3rem 0 0;
    width: 12rem;
  }
}
@media (max-width: 999.9px) {
  .megamenu .inner_ul {
    padding: 1.6rem 2.4rem;
  }
}
.megamenu .inner_ul li {
  padding: 4px 0;
}
.megamenu .inner_ul li a {
  letter-spacing: 0.04em;
  padding-bottom: 0.4rem;
}
@media (min-width: 1000px) {
  .megamenu .inner_ul li a {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
  }
}
@media (max-width: 999.9px) {
  .megamenu .inner_ul li a {
    display: block;
    position: relative;
    font-size: 1.3rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    padding: 0.5rem 0;
    color: #0E0E0E;
  }
}
@media (max-width: 559.9px) {
  .megamenu .inner_ul li a {
    font-size: 1.5rem;
    padding: 0.3rem 0;
  }
}
.megamenu .inner_ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: white;
  display: block;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: center bottom;
  transition: all 0.3s ease;
}
@media (max-width: 999.9px) {
  .megamenu .inner_ul li a::after {
    background-color: #0E0E0E;
  }
}
.megamenu .inner_ul li a:hover::after {
  transform: scale(1, 1);
  transform-origin: center bottom;
}

#menuBtn {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 1001;
  display: block;
  width: 80px;
  height: 75px;
  background: transparent;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 835px) and (max-width: 999.9px) {
  #menuBtn {
    top: 16px;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  #menuBtn {
    width: 64px;
    height: 64px;
    top: 2px;
    right: 16px;
  }
}
@media (max-width: 559.9px) {
  #menuBtn {
    width: 50px;
    height: 50px;
    background: transparent;
    top: 2px;
    right: 14px;
  }
}
#menuBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 35px;
  height: 2px;
  margin-left: -17px;
  background: white;
  transition: all 0.5s;
}
@media (max-width: 559.9px) {
  #menuBtn span {
    width: 25px;
    margin-left: -12px;
  }
}
#menuBtn span.top {
  transform: translateY(-6px);
}
#menuBtn span.bottom {
  transform: translateY(8px);
}
@media (max-width: 834.9px) {
  #menuBtn span.bottom {
    transform: translateY(4px);
  }
}
#menuBtn.opened {
  background-color: #0E0E0E;
}
#menuBtn.opened span {
  background: white;
}
#menuBtn.opened span.top {
  transform: rotate(-45deg) translateY(0px);
}
#menuBtn.opened span.middle {
  background: rgba(255, 255, 255, 0);
  transform: translateX(30px);
}
#menuBtn.opened span.bottom {
  transform: rotate(45deg) translateY(0px);
}
.fixed #menuBtn {
  top: 2px;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #3f4348;
  z-index: 1000;
  transition: height 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
#overlay.shown {
  height: 100vh;
}

#menu {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 0;
  margin-bottom: 100px;
  overflow: hidden;
  color: #1D2088;
  text-align: left;
  transition: width 0.55s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
}
@media (max-width: 559.9px) {
  #menu {
    top: 45px;
  }
}
#menu.opened {
  height: auto;
  opacity: 1;
  z-index: 1000;
  transition: width 0.55s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s, opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
#menu .inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 560px) {
  #menu .inner {
    padding-bottom: 175px;
  }
}
#menu .inner .menu1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 559.9px) {
  #menu .inner .menu1 {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
}
#menu .inner .menu1 dl {
  width: 33.33%;
  padding: 0 15px;
}
@media (max-width: 559.9px) {
  #menu .inner .menu1 dl {
    width: 49%;
    padding: 0;
    margin-top: 24px;
  }
}
#menu .inner .menu1 dl dt {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px #666 solid;
  color: white;
}
@media (max-width: 559.9px) {
  #menu .inner .menu1 dl dt {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
#menu .inner .menu1 dl dd a {
  color: #fff;
  margin-bottom: 10px;
  display: inline-block;
}
@media (max-width: 559.9px) {
  #menu .inner .menu1 dl dd a {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
#menu .inner .menu1 dl dd a .enText {
  display: block;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  line-height: 1.2;
  color: #999;
}
@media (max-width: 559.9px) {
  #menu .inner .menu1 dl dd a .enText {
    line-height: 1;
  }
}
#menu .inner .menu_sns {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
#menu .inner .menu_sns a {
  display: block;
  width: 40px;
  height: 40px;
}
#menu .inner .menu_sns a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#menu .inner .sns_links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
}
#menu .inner .sns_links a {
  color: white;
  display: block;
  margin: 0 10px;
}
#menu .inner .sns_links a i {
  font-size: 3rem;
}

/**************
WordPressログイン時
**************/
@media (min-width: 560px) {
  .admin-bar #header {
    top: 32px;
  }
}

/**************
Footer
**************/
.foot_cta {
  background-color: #D9383F;
  padding: 80px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1199.9px) {
  .foot_cta {
    padding: 60px;
  }
}
@media (max-width: 559.9px) {
  .foot_cta {
    padding: 20px;
  }
}
.foot_cta .tit {
  text-align: center;
}
.foot_cta .tit .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  letter-spacing: 0.04rem;
}
@media (max-width: 559.9px) {
  .foot_cta .tit .eng {
    font-size: 4rem;
  }
}
.foot_cta .tit .jp {
  color: white;
  font-weight: bold;
  font-size: 2.4rem;
}
@media (max-width: 559.9px) {
  .foot_cta .tit .jp {
    font-size: 16px;
  }
}
.foot_cta .under_text {
  text-align: center;
  color: white;
  font-weight: bold;
  margin-top: 32px;
}
@media (max-width: 559.9px) {
  .foot_cta .under_text {
    margin-top: 24px;
  }
}
.foot_cta .cta_columns {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 56px auto 0;
}
@media (max-width: 999.9px) {
  .foot_cta .cta_columns {
    flex-direction: column;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .cta_columns {
    margin: 16px auto 0;
  }
}
.foot_cta .cta_columns .cta_column {
  width: 33.3333333333%;
  text-align: center;
  padding: 24px 40px;
}
.foot_cta .cta_columns .cta_column:not(:last-child) {
  border-right: 1px white solid;
}
@media (max-width: 999.9px) {
  .foot_cta .cta_columns .cta_column:not(:last-child) {
    border-right: none;
    border-bottom: 1px white solid;
  }
}
@media (max-width: 999.9px) {
  .foot_cta .cta_columns .cta_column {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 834.9px) {
  .foot_cta .cta_columns .cta_column {
    width: 60%;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .cta_columns .cta_column {
    width: 84%;
    padding: 24px;
  }
}
.foot_cta .cta_columns .cta_column .icon {
  width: 48px;
  margin: 0 auto 8px;
}
@media (max-width: 559.9px) {
  .foot_cta .cta_columns .cta_column .icon {
    width: 38px;
  }
}
.foot_cta .cta_columns .cta_column .tits {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: white;
}
@media (max-width: 559.9px) {
  .foot_cta .cta_columns .cta_column .tits {
    font-size: 2rem;
  }
}
.foot_cta .cta_columns .cta_column .tit_un {
  text-align: center;
  color: white;
  margin-top: 24px;
}
@media (max-width: 559.9px) {
  .foot_cta .cta_columns .cta_column .tit_un {
    margin-top: 12px;
  }
}
.foot_cta .cta_columns .cta_column .under_area {
  margin-top: 24px;
  text-align: center;
}
.foot_cta .cta_columns .cta_column .under_area a {
  display: block;
}
.foot_cta .cta_columns .cta_column .under_area a .telnum {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  line-height: 1;
  color: white;
  transition: all 0.2s ease;
}
.foot_cta .cta_columns .cta_column .under_area a:hover .telnum, .foot_cta .cta_columns .cta_column .under_area a :active .telnum {
  color: #c4c4c4;
}
.foot_cta .cta_columns .cta_column .under_area .time {
  color: white;
}

#footer {
  bottom: 0;
  background: url(../images/common/footer_bg.png) no-repeat right;
  background-size: cover;
  padding: 100px 0 40px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  #footer {
    padding: 40px 0;
  }
}

.footer_inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10rem;
}
@media (max-width: 1199.9px) {
  .footer_inner {
    gap: 2rem;
  }
}
@media (min-width: 835px) {
  .footer_inner {
    padding-left: 160px;
  }
}
@media (max-width: 834.9px) {
  .footer_inner {
    width: 54%;
  }
}
.footer_inner .footer_left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 290px;
}
.footer_inner .footer_left .footer_infos {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 559.9px) {
  .footer_inner .footer_left .footer_infos {
    gap: 20px;
  }
}
.footer_inner .footer_left .footer_infos .footer_logo {
  display: block;
  width: 80px;
  height: auto;
}
@media (max-width: 559.9px) {
  .footer_inner .footer_left .footer_infos .footer_logo {
    width: 60px;
  }
}
.footer_inner .footer_left .footer_infos .footer_info {
  color: white;
  line-height: 2;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 559.9px) {
  .footer_inner .footer_left .footer_infos .footer_info {
    line-height: 1.5;
  }
}
.footer_inner .footer_right {
  width: calc(100% - 251px);
}
@media (max-width: 999.9px) {
  .footer_inner .footer_right {
    display: none;
  }
}

.foot_navi_column {
  display: flex;
  gap: 5vw;
}
.foot_navi_column .foot_navi {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.foot_navi_column .foot_navi > li > a {
  color: white;
}
.foot_navi_column .foot_navi > li .child {
  margin: 16px 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot_navi_column .foot_navi > li .child li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot_navi_column .foot_navi > li .child li::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: white;
}
.foot_navi_column .foot_navi > li .child li > a {
  color: white;
  display: flex;
  gap: 8px;
}

.footer_bottom {
  margin-top: 260px;
}
@media (max-width: 559.9px) {
  .footer_bottom {
    margin-top: 150px;
  }
}

.footer_marks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 16px;
  width: 100%;
  padding: 0 30px;
}
@media (max-width: 559.9px) {
  .footer_marks {
    padding: 0 18px;
  }
}
.footer_marks img {
  zoom: 0.8;
}
@media (max-width: 559.9px) {
  .footer_marks img {
    zoom: 0.5;
  }
}

.footer_sns {
  position: absolute;
  left: 8vw;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 340px;
}
@media (max-width: 559.9px) {
  .footer_sns {
    left: 1vw;
    top: 65px;
    height: 250px;
  }
}
.footer_sns .t_eng {
  transform: rotate(90deg);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: white;
}
.footer_sns .line {
  height: 160px;
  width: 1px;
  background-color: white;
  display: block;
  margin-top: 50px;
  margin-bottom: 16px;
}
@media (max-width: 559.9px) {
  .footer_sns .line {
    margin-top: 40px;
    margin-bottom: 6px;
  }
}
.footer_sns .sns_icon {
  display: block;
  width: 40px;
  margin-top: 12px;
}
@media (max-width: 559.9px) {
  .footer_sns .sns_icon {
    width: 30px;
  }
}

.foot_seiwan {
  position: absolute;
  width: 230px;
  display: block;
  right: 4vw;
  top: 30rem;
}
@media (max-width: 1199.9px) {
  .foot_seiwan {
    width: 16vw;
  }
}
@media (max-width: 834.9px) {
  .foot_seiwan {
    width: 24vw;
    top: 25rem;
  }
}

.copyright {
  text-align: center;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #d9d9d9;
  margin-top: 30px;
}
@media (max-width: 834.9px) {
  .copyright {
    font-size: 1.2rem;
  }
}

/**************
Common Parts
**************/
/* Titles */
.title1 {
  font-size: 3.2rem;
  position: relative;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media (max-width: 834.9px) {
  .title1 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}

.title2 {
  font-size: 3.2rem;
  position: relative;
  margin-bottom: 32px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  padding-bottom: 16px;
}
.title2::before, .title2::after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.title2::before {
  width: 100%;
  background-color: #e5e5e5;
}
.title2::after {
  width: 160px;
  background-color: #1D2088;
}
@media (min-width: 835px) and (max-width: 999.9px) {
  .title2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 834.9px) {
  .title2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}

.title3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding: 6px 0 6px 20px;
  border-bottom: 1px #ccc solid;
  line-height: 1.5;
}
@media (max-width: 834.9px) {
  .title3 {
    font-size: 1.7rem;
  }
}
.title3::before {
  display: inline-block;
  content: "";
  width: 5px;
  height: 90%;
  background-color: #1D2088;
  margin-right: 13px;
  position: absolute;
  left: 0;
  top: 5%;
}

.title4 {
  font-size: 1.7rem;
  font-weight: bold;
  color: #666;
  position: relative;
  padding: 4px 0 4px 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.title4::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 80%;
  background-color: #1D2088;
  position: absolute;
  left: 0;
  top: 10%;
}

.big-title {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 40px;
}
@media (max-width: 834.9px) {
  .big-title {
    margin-bottom: 20px;
  }
}
.big-title .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  line-height: 1;
  text-transform: uppercase;
  color: #D9383F;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .big-title .eng {
    font-size: 5.6rem;
  }
}
@media (max-width: 559.9px) {
  .big-title .eng {
    font-size: 3.6rem;
  }
}
.big-title .jp {
  font-weight: bold;
  font-size: 4rem;
  color: #0E0E0E;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .big-title .jp {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .big-title .jp {
    font-size: 1.5rem;
  }
}
.big-title.center {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.big-title.white {
  color: white;
}
.big-title.white .jp,
.big-title.white .eng {
  color: white;
}

.small-title {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 40px;
}
@media (max-width: 834.9px) {
  .small-title {
    margin-bottom: 20px;
  }
}
.small-title .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1.5;
  line-height: 1;
  text-transform: uppercase;
  color: #1D2088;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .small-title .eng {
    font-size: 5rem;
  }
}
@media (max-width: 559.9px) {
  .small-title .eng {
    font-size: 3.6rem;
  }
}
.small-title .jp {
  font-weight: bold;
  font-size: 1.8rem;
  color: #0E0E0E;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .small-title .jp {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .small-title .jp {
    font-size: 1.5rem;
  }
}
.small-title.center {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.small-title.white {
  color: white;
}
.small-title.white .jp,
.small-title.white .eng {
  color: white;
}

@media (min-width: 560px) {
  .horizontal_tit {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
@media (max-width: 559.9px) {
  .horizontal_tit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media (min-width: 560px) {
  .horizontal_tit.end {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: row-reverse;
    margin-left: auto;
  }
}
.horizontal_tit .jp {
  position: relative;
  color: #0E0E0E;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: bold;
  top: 2px;
}
@media (max-width: 559.9px) {
  .horizontal_tit .jp {
    display: block;
    font-size: 1.8rem;
  }
}
.horizontal_tit .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1D2088;
  position: relative;
}
@media (min-width: 560px) {
  .horizontal_tit .eng {
    margin-left: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 559.9px) {
  .horizontal_tit .eng {
    font-size: 1.5rem;
  }
}
@media (min-width: 560px) {
  .horizontal_tit .eng::before {
    width: 2px;
    height: 70%;
    content: "";
    display: block;
    background-color: #1D2088;
    position: absolute;
    left: 0;
    top: 12%;
  }
}

.center-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 80px;
  font-weight: bold;
}
.center-title span {
  color: #1D2088;
}
@media (max-width: 834.9px) {
  .center-title {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}
.center-title .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}
.center-title.white {
  color: #fff;
}
.center-title.white::after {
  background-color: #fff;
}

.center-title2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 24px;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .center-title2 {
    font-size: 2rem;
  }
}

.blue-title {
  background-color: #1D2088;
  padding: 10px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
}
@media (min-width: 835px) and (max-width: 999.9px) {
  .blue-title {
    font-size: 2rem;
  }
}
@media (max-width: 834.9px) {
  .blue-title {
    font-size: 1.8rem;
  }
}

.lined_title {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 559.9px) {
  .lined_title {
    margin-bottom: 24px;
  }
}
.lined_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background-color: #DCE1E4;
}
.lined_title span {
  display: inline-block;
  padding: 0 16px 8px;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  color: #1D2088;
  position: relative;
  z-index: 1;
  border-bottom: 3px solid #1D2088;
}
.lined_title.blue::after {
  background-color: white;
}
.lined_title.blue span {
  background-color: #1D2088;
  color: white;
}
.lined_title.gblue::after {
  background-color: white;
}
.lined_title.gblue span {
  background-color: #1D2088;
  color: white;
}

.title_with_num {
  position: relative;
  padding-left: 80px;
  padding-bottom: 16px;
  font-size: 2.4rem;
  margin-bottom: 40px;
}
@media (max-width: 559.9px) {
  .title_with_num {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 56px;
  }
}
.title_with_num::before {
  content: attr(data-number);
  position: absolute;
  top: -35px;
  left: 0;
  color: rgba(63, 193, 201, 0.3);
  font-size: 6rem;
}
@media (max-width: 559.9px) {
  .title_with_num::before {
    font-size: 3.2rem;
    top: 0;
  }
}
.title_with_num::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(-45deg, #9ed9d9 0px, #83b4b2 2px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 10px 10px;
  z-index: 1;
}

.tit_404 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #1D2088;
}

/* Buttons */
.btn-white {
  width: 224px;
  height: 64px;
  background-color: white;
  color: #0E0E0E;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .btn-white {
    height: 52px;
  }
}
.btn-white.long {
  width: 320px;
}
.btn-white .txt {
  font-size: 1.6rem;
  font-weight: 500;
}
.btn-white .txt.eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.btn-white i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.btn-white:hover {
  color: #0E0E0E;
  background-color: #DCE1E4;
}
.btn-white:hover::after {
  right: 0;
}
.btn-white_black {
  background-color: black;
  color: #ffffff;
}
.btn-white_black:hover {
  color: #ffffff;
  background-color: #6b6b6b;
}
.btn-white_black:hover::after {
  right: 0;
}

.btn-red {
  width: 224px;
  height: 64px;
  background-color: #D9383F;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .btn-red {
    height: 52px;
  }
}
.btn-red .txt {
  font-size: 1.6rem;
}
.btn-red .txt.eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.btn-red i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.btn-red:hover {
  color: white;
  background-color: #920C0C;
}
.btn-red:hover::after {
  right: 0;
}

.link_text {
  margin-top: 2.6rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #0E0E0E;
  text-decoration: none;
  padding-left: 42px;
  padding-right: 24px;
}
.link_text .link_text_label {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.link_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background: #8b8b8b;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.link_text .link_text_arrow {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  z-index: 3;
}
.link_text:hover .link_text_label {
  color: white;
}
.link_text:hover::before {
  width: 100%;
}

.lined_link {
  width: 280px;
  color: #1D2088;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px #1D2088 solid;
  height: 60px;
  padding: 0 32px 0 8px;
  position: relative;
}
.lined_link::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #8AB6D8;
  transition: all 0.4s ease-in-out;
}
.lined_link i {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -8px;
}
.lined_link:hover::after {
  max-width: 100%;
}

.btn-with-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.btn-with-arrow .arrow {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1D2088;
  margin-right: 12px;
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.btn-with-arrow .arrow i {
  color: white;
}
.btn-with-arrow .txt {
  display: inline-block;
  position: relative;
  padding: 10px 4px 8px;
  color: #0E0E0E;
}
.btn-with-arrow .txt::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #0E0E0E;
}
.btn-with-arrow:hover .arrow {
  transform: scale(1.1);
}
.btn-with-arrow.white .arrow {
  background-color: white;
}
.btn-with-arrow.white .arrow i {
  color: #1D2088;
}
.btn-with-arrow.white .txt {
  color: white;
}
.btn-with-arrow.white .txt::before {
  background-color: white;
}

.btn-box4 {
  margin-top: 4rem;
}
@media (max-width: 559.9px) {
  .btn-box4 {
    margin-top: 2rem;
  }
}

.btn-box6 {
  margin-top: 6rem;
}
@media (max-width: 559.9px) {
  .btn-box6 {
    margin-top: 4rem;
  }
}

.btn-box8 {
  margin-top: 8rem;
}
@media (max-width: 559.9px) {
  .btn-box8 {
    margin-top: 4rem;
  }
}

/* Tables */
.table-s1 {
  width: 100%;
}
.table-s1 th {
  padding: 12px 24px;
  text-align: left;
}
@media (min-width: 560px) {
  .table-s1 th {
    border-bottom: 1px #8AB6D8 solid;
    width: 200px;
  }
}
@media (max-width: 834.9px) {
  .table-s1 th {
    width: 100%;
    display: block;
    background-color: #f3f3f3;
    padding: 8px;
  }
}
.table-s1 td {
  background-color: #fff;
  padding: 12px 24px;
}
@media (min-width: 560px) {
  .table-s1 td {
    border-bottom: 1px #ddd solid;
  }
}
@media (max-width: 834.9px) {
  .table-s1 td {
    width: 100%;
    display: block;
    padding: 10px 0;
  }
}

.table-s2 {
  width: 100%;
  min-width: 900px;
}
@media (max-width: 834.9px) {
  .table-s2 {
    font-size: 1.3rem;
  }
}
.table-s2 th {
  padding: 8px;
  border: 1px #ddd solid;
  text-align: center;
  background-color: #f3f3f3;
}
.table-s2 td {
  border: 1px #ddd solid;
  background-color: white;
  padding: 5px 10px;
  font-size: 15px3;
}
.table-s2 tr td:last-child {
  text-align: center;
}
.table-s2_short {
  width: 680px;
}

.table-c1 {
  width: 100%;
}
.table-c1 th {
  width: 25%;
  font-weight: 600;
  text-align: left;
  border-bottom: #D9383F 1px solid;
  padding: 24px 5px;
}
@media (max-width: 834.9px) {
  .table-c1 th {
    padding: 20px 5px;
    width: 25%;
  }
}
@media (max-width: 559.9px) {
  .table-c1 th {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 10px 0 2px;
    font-size: 1.4rem;
  }
}
.table-c1 td {
  padding: 24px;
  border-bottom: #d9d9d9 1px solid;
}
@media (max-width: 834.9px) {
  .table-c1 td {
    padding: 20px 24px;
  }
}
@media (max-width: 559.9px) {
  .table-c1 td {
    display: block;
    width: 100%;
    padding: 0 0 10px;
    font-size: 1.4rem;
  }
}
.table-c1 td dl {
  margin-bottom: 20px;
}
.table-c1 td dl:last-child {
  margin-bottom: 0;
}
.table-c1 td dl dt {
  display: flex;
  align-items: center;
}
@media (max-width: 834.9px) {
  .table-c1 td dl dt {
    display: block;
  }
}
.table-c1 td dl dt::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-flex;
  background-color: #1D2088;
  border-radius: 2px;
}
@media (max-width: 834.9px) {
  .table-c1 td dl dt::before {
    width: 10px;
    height: 10px;
  }
}
.table-c1 td dl dt .access {
  margin-left: 30px;
  color: #fff;
  font-size: 1.4rem;
  background-color: #3f4348;
  border-radius: 16px;
  padding: 4px 26px;
}
@media (max-width: 834.9px) {
  .table-c1 td dl dt .access {
    font-size: 1.3rem;
    display: block;
    width: 200px;
    margin: 5px 0;
    padding: 2px 26px;
  }
}
.table-c1 td dl dt .access i {
  margin-left: 15px;
}

.history_list {
  list-style: none;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.history_list::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 98%;
  background-color: #eaeaea;
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 559.9px) {
  .history_list::after {
    height: 100%;
    top: 6px;
    transform: translateY(0);
  }
}
.history_list .history_item {
  display: flex;
  align-items: baseline;
  gap: 6rem;
  z-index: 2;
  position: relative;
  padding-left: 5rem;
}
@media (max-width: 559.9px) {
  .history_list .history_item {
    flex-direction: column;
    gap: 0;
    padding-left: 3rem;
  }
}
.history_list .history_item::before {
  content: "";
  background-color: #fbefef;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 559.9px) {
  .history_list .history_item::before {
    top: 13px;
  }
}
.history_list .history_item::after {
  content: "";
  background-color: #D9383F;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
}
@media (max-width: 559.9px) {
  .history_list .history_item::after {
    top: 13px;
  }
}
.history_list .history_item .history_date {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #D9383F;
  line-height: 1.6;
  width: 180px;
}
.history_list .history_item .history_text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #0E0E0E;
}

/* Parts */
.sq1 {
  padding-left: 15px;
  position: relative;
  font-weight: bold;
  line-height: 1.5;
}
.sq1::before {
  width: 10px;
  height: 10px;
  background-color: #E7EC00;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 7px;
}

.sq_white {
  padding-left: 15px;
  position: relative;
  font-weight: bold;
  line-height: 1.5;
  color: white;
}
.sq_white::before {
  width: 10px;
  height: 10px;
  background-color: white;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 7px;
}

/* Lists */
.list-disc {
  margin-left: 15px;
}
.list-disc li {
  list-style: square;
}
.list-disc li b {
  display: inline-block;
  margin-right: 10px;
}

.list-decimal {
  margin-left: 20px;
}
.list-decimal li {
  list-style: decimal;
}
.list-decimal li b {
  display: inline-block;
  margin-right: 10px;
}

.list-decimal2 {
  counter-reset: number;
  list-style-type: none !important;
  padding: 0.5em;
}
.list-decimal2 li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}
.list-decimal2 li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5c9ee7;
  color: white;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.list-check li {
  position: relative;
  padding: 2px 0 2px 28px;
}
.list-check li::before {
  content: "";
  display: block;
  background: url(../images/common/icon_check_black.png) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}
.list-check li span {
  font-weight: bold;
  color: #1D2088;
}

/* Boxes */
.borderBox {
  background-color: #fff6f9;
  border: #ccc solid 1px;
  padding: 24px 40px;
}
@media (max-width: 834.9px) {
  .borderBox {
    padding: 16px;
  }
}

/* Texts */
.kome {
  font-size: 14px;
  color: #585858;
}

.center {
  text-align: center;
}

.text18 {
  font-size: 18px;
}

.text20 {
  font-size: 20px;
}

.large {
  font-size: 5rem;
}
@media (max-width: 559.9px) {
  .large {
    font-size: 3rem;
  }
}

.red {
  color: #D9383F;
}

.white {
  color: #ffffff;
}

.bold {
  font-weight: 700;
}

.left_side_text {
  line-height: 2;
}
.left_side_text.moved {
  -webkit-animation: slide-left 0.7s forwards;
          animation: slide-left 0.7s forwards;
}

.right_side_text {
  line-height: 2;
}
.right_side_text.moved {
  -webkit-animation: slide-right 0.7s forwards;
          animation: slide-right 0.7s forwards;
}

/* Boxes */
.icon-arrow-black {
  width: 11px;
  height: 11px;
  background: url(../images/icon/icon-arrow-black.png) no-repeat;
  background-size: cover;
}

.icon-arrow-white {
  width: 11px;
  height: 11px;
  background: url(../images/icon/icon-arrow-white.png) no-repeat;
  background-size: cover;
}

.icon-externallink {
  width: 18px;
  height: 18px;
  background: url(../images/icon/icon-externallink.png) no-repeat;
  background-size: cover;
}

/* Others */
.anchor {
  padding-top: 100px;
  margin-top: -100px;
}
@media (max-width: 834.9px) {
  .anchor {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.sp-scroll {
  width: 100%;
  overflow-x: auto;
}

.underconst {
  background-color: #fff;
  text-align: center;
  margin: 50px auto;
  padding: 80px 0;
  border: 1px #ddd solid;
  border-radius: 5px;
}

@media (max-width: 559.9px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 560px) and (max-width: 834.9px) {
  .pc_only {
    display: none;
  }
}
@media (max-width: 834.9px) {
  .pc_only {
    display: none;
  }
}

@media (min-width: 560px) {
  .sp_only {
    display: none;
  }
}

.float_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

/* Animations */
@-webkit-keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(1.5rem);
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(1.5rem);
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateX(40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInR {
  0% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInR {
  0% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes cubeIn {
  0% {
    opacity: 0;
    transform: rotate(-145deg);
  }
  10% {
    opacity: 1;
    transform: rotate(-145deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes cubeIn {
  0% {
    opacity: 0;
    transform: rotate(-145deg);
  }
  10% {
    opacity: 1;
    transform: rotate(-145deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@-webkit-keyframes zoom-in {
  0% {
    transform: translate(20px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    transform: translate(20px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes opaIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opaIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide-left {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes slide-right {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
/**************
HOME
**************/
#main_wrap {
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: white;
}

.main_visual {
  width: 100%;
  display: block;
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.main_visual .grid_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 5px;
  padding: 5px;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .main_visual .grid_overlay {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 5px;
    padding: 5px;
  }
}
@media (max-width: 559.9px) {
  .main_visual .grid_overlay {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 5px;
    padding: 5px;
  }
}
.main_visual .grid_overlay .grid_tile {
  border-radius: 12px;
  transition: background-color 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .main_visual .grid_overlay .grid_tile {
    border-radius: 10px;
  }
}
@media (max-width: 559.9px) {
  .main_visual .grid_overlay .grid_tile {
    border-radius: 8px;
  }
}
.main_visual .grid_overlay .grid_tile.red {
  background-color: #D9383F;
  opacity: 0.5;
}
.main_visual .grid_overlay .grid_tile.gray {
  background-color: #4c4c4c;
  opacity: 0.5;
}
.main_visual .grid_overlay .grid_tile.transparent {
  background-color: transparent;
  opacity: 0;
}
@media (min-width: 835px) {
  .main_visual {
    height: 100vh;
  }
}
@media (min-width: 835px) and (max-width: 999.9px) {
  .main_visual {
    max-height: 720px;
  }
}
@media (max-width: 834.9px) {
  .main_visual {
    height: 500px;
  }
}
@media (max-width: 559.9px) {
  .main_visual {
    height: 40vh;
  }
}
.main_visual .main_image {
  position: absolute;
  right: 0;
  width: 88vw;
  height: 100vh;
  top: 0;
  border-top-left-radius: 40vw;
  overflow: hidden;
  z-index: 2;
}
.main_visual .main_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  mix-blend-mode: plus-darker;
  z-index: 3;
  pointer-events: none;
  border-top-left-radius: 40vw;
}
.main_visual .main_image .main_slider {
  width: 100%;
  height: 100%;
}
.main_visual .main_image .main_slider .swiper-wrapper {
  height: 100%;
}
.main_visual .main_image .swiper-slide {
  overflow: hidden;
  height: 100%;
}
.main_visual .main_image .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.15);
}
@media (max-width: 834.9px) {
  .main_visual .main_image .swiper-slide img {
    -o-object-position: top;
       object-position: top;
    margin-top: -36rem;
  }
}
.main_visual .main_image .swiper-slide.is-zooming img {
  -webkit-animation: mainSliderZoomIn 10s ease-out both;
          animation: mainSliderZoomIn 10s ease-out both;
}
.main_visual .main_logomark {
  display: block;
  height: 72vh;
  position: absolute;
  left: 4vw;
  top: 20vh;
  z-index: 2;
}
.main_visual .main_logomark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.main_visual .main_logomark .logo-part {
  opacity: 0;
  -webkit-animation: logoFadeIn 0.6s ease forwards;
          animation: logoFadeIn 0.6s ease forwards;
}
.main_visual .main_logomark .logo-part-1 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.main_visual .main_logomark .logo-part-2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.main_visual .main_logomark .logo-part-3 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.main_visual .main_logomark .logo-part-4 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
@-webkit-keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main_visual .main_text_area {
  width: 37vw;
  background: rgba(14, 14, 14, 0.6);
  padding: 56px 40px;
  position: absolute;
  right: 2vw;
  bottom: 8vh;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.8s ease;
}
@media (max-width: 834.9px) {
  .main_visual .main_text_area {
    padding: 20PX;
    width: 50VW;
  }
}
.main_visual .main_text_area img {
  display: block;
  width: 100%;
}
.main_visual .main_text_area.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.main_visual .main_slide_link {
  color: white;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 5;
  text-align: center;
  transition: opacity 4s ease-in-out;
}
.main_visual .main_slide_link.is-active {
  opacity: 1;
  pointer-events: auto;
}
.main_visual .main_slide_link .main_slide_link_text {
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-30px);
  filter: blur(4px);
}
.main_visual .main_slide_link .main_slide_link_text.eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1199.9px) {
  .main_visual .main_slide_link .main_slide_link_text {
    font-size: 3vw;
  }
}
.main_visual .main_slide_link.is-active .main_slide_link_text {
  -webkit-animation: slideTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
          animation: slideTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}
.main_visual .main_slide_link.is-active .main_slide_link_btn {
  -webkit-animation: slideTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards;
          animation: slideTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards;
}
.main_visual .main_slide_link .main_slide_link_btn {
  margin-top: 2.6rem;
  opacity: 0;
  transform: translateX(-20px);
  filter: blur(4px);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px #fff solid;
  padding: 0 0 8px 0;
}
.main_visual .main_slide_link .main_slide_link_btn .angle-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 24px;
}
.main_visual .main_slide_link .main_slide_link_btn .angle {
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
.main_visual .main_slide_link .main_slide_link_btn .angle-first {
  position: relative;
}
.main_visual .main_slide_link .main_slide_link_btn .angle-second {
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-8px);
}
.main_visual .main_slide_link .main_slide_link_btn:hover .angle-first {
  transform: translateX(8px);
}
.main_visual .main_slide_link .main_slide_link_btn:hover .angle-second {
  opacity: 1;
  transform: translateX(0);
}
.main_visual .main_slide_link--1 {
  right: 13%;
  bottom: 14%;
}
@media (max-width: 834.9px) {
  .main_visual .main_slide_link--1 {
    bottom: 20%;
  }
}
.main_visual .main_slide_link--2 {
  right: 5%;
  bottom: 18%;
}
.main_visual .main_slide_link--3 {
  left: 20%;
  bottom: 11%;
}
@media (max-width: 834.9px) {
  .main_visual .main_slide_link--3 {
    bottom: 22%;
  }
}
.main_visual .main_slide_link--4 {
  inset: 0;
  display: block;
}
.main_visual .main_slide_link--4 .btoc {
  position: absolute;
  left: 7%;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  white-space: nowrap;
  opacity: 0;
  line-height: 1;
  filter: blur(4px);
}
@media (max-width: 999.9px) {
  .main_visual .main_slide_link--4 .btoc {
    font-size: 4.8rem;
  }
}
@media (max-width: 834.9px) {
  .main_visual .main_slide_link--4 .btoc {
    font-size: 3.8rem;
  }
}
.main_visual .main_slide_link--4.is-active .btoc {
  -webkit-animation: slideTextRevealCenter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
          animation: slideTextRevealCenter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}
.main_visual .main_slide_link--4 .main_slide_link_inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 559.9px) {
  .main_visual .main_slide_link--4 .main_slide_link_inner {
    display: none;
  }
}
.main_visual .main_slide_link--4 .main_slide_link_inner .main_slide_link_text {
  display: flex;
  flex-direction: column;
}
.main_visual .main_slide_link--4 .main_slide_link_inner .main_slide_link_text.eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 834.9px) {
  .main_visual .main_slide_link--4 .main_slide_link_inner .main_slide_link_text.eng {
    font-size: 2rem;
  }
}
.main_visual .main_slide_link--4 .main_slide_link_inner .main_slide_link_text.small {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (max-width: 834.9px) {
  .main_visual .main_slide_link--4 .main_slide_link_inner .main_slide_link_text.small {
    font-size: 18px;
  }
}
.main_visual .main_slide_link--4 .main_slide_link_inner:first-child {
  top: 20%;
  right: 8%;
}
@media (max-width: 834.9px) {
  .main_visual .main_slide_link--4 .main_slide_link_inner:first-child {
    top: 17%;
    right: 5%;
  }
}
.main_visual .main_slide_link--4 .main_slide_link_inner:first-child .mancave_bnr img {
  width: 300px;
  height: auto;
}
@media (max-width: 1199.9px) {
  .main_visual .main_slide_link--4 .main_slide_link_inner:first-child .mancave_bnr img {
    width: 200px;
  }
}
@media (max-width: 834.9px) {
  .main_visual .main_slide_link--4 .main_slide_link_inner:first-child .mancave_bnr img {
    width: 150px;
  }
}
.main_visual .main_slide_link--4 .main_slide_link_inner:nth-child(2) {
  bottom: 15%;
  left: 20%;
}
@media (max-width: 834.9px) {
  .main_visual .main_slide_link--4 .main_slide_link_inner:nth-child(2) {
    bottom: 13%;
    left: 16%;
  }
}
.main_visual .main_slide_link--4 .main_slide_link_inner:nth-child(2) .labline_bnr img {
  width: 300px;
  height: auto;
}
@media (max-width: 1199.9px) {
  .main_visual .main_slide_link--4 .main_slide_link_inner:nth-child(2) .labline_bnr img {
    width: 200px;
  }
}
@media (max-width: 834.9px) {
  .main_visual .main_slide_link--4 .main_slide_link_inner:nth-child(2) .labline_bnr img {
    width: 150px;
  }
}
.main_visual .main_news_area {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #D9383F;
  display: flex;
  padding: 16px 24px;
  gap: 32px;
  align-items: center;
  z-index: 6;
}
@media (max-width: 559.9px) {
  .main_visual .main_news_area {
    display: none;
  }
}
.main_visual .main_news_area .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
}
.main_visual .main_news_area .main_news_inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main_visual .main_news_area .main_news_inner dt {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
}
.main_visual .main_news_area .main_news_inner dd a {
  color: white;
}

.main_news_area-sp {
  background-color: #D9383F;
  display: flex;
  padding: 12px 24px;
  gap: 32px;
  align-items: center;
  z-index: 6;
}
@media (min-width: 560px) {
  .main_news_area-sp {
    display: none;
  }
}
.main_news_area-sp .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
}
.main_news_area-sp .main_news_inner dt {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
}
.main_news_area-sp .main_news_inner dd a {
  color: white;
}

.top_strength_section {
  background-color: #000;
  position: relative;
  overflow: clip;
}
.top_strength_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(to right, rgba(135, 127, 127, 0.4) 0, rgba(135, 127, 127, 0.4) 0.5px, transparent 0.5px, transparent 100px);
  pointer-events: none;
  z-index: 1;
}
.top_strength_section .section_grid_overlay {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 5px;
  padding: 5px;
  z-index: 2;
  pointer-events: none;
  margin-bottom: -100svh;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .top_strength_section .section_grid_overlay {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
@media (max-width: 559.9px) {
  .top_strength_section .section_grid_overlay {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
.top_strength_section .section_grid_overlay .grid_tile {
  border-radius: 12px;
  transition: background-color 1.8s ease, opacity 1.8s ease;
  opacity: 0;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .top_strength_section .section_grid_overlay .grid_tile {
    border-radius: 10px;
  }
}
@media (max-width: 559.9px) {
  .top_strength_section .section_grid_overlay .grid_tile {
    border-radius: 8px;
  }
}
.top_strength_section .section_grid_overlay .grid_tile.red {
  background-color: #D9383F;
  opacity: 0.5;
}
.top_strength_section .section_grid_overlay .grid_tile.gray {
  background-color: #4c4c4c;
  opacity: 0.5;
}
.top_strength_section .section_grid_overlay .grid_tile.transparent {
  background-color: transparent;
  opacity: 0;
}

.top_top_panel {
  width: 100vw;
  padding: 0 8vw;
  position: relative;
  z-index: 3;
}
.top_top_panel .top_top_panel_inner {
  width: 736px;
  padding-top: 20vh;
  position: relative;
  z-index: 5;
}
@media (max-width: 559.9px) {
  .top_top_panel .top_top_panel_inner {
    width: 100%;
    padding-top: 100px;
  }
}
.top_top_panel .top_top_panel_inner .title_area .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
}
.top_top_panel .top_top_panel_inner .title_area .eng span {
  color: #D9383F;
}
@media (max-width: 559.9px) {
  .top_top_panel .top_top_panel_inner .title_area .eng {
    font-size: 18px;
  }
}
.top_top_panel .top_top_panel_inner .title_area .jp {
  color: white;
  font-size: 4rem;
  margin-top: 4.8rem;
}
@media (max-width: 834.9px) {
  .top_top_panel .top_top_panel_inner .title_area .jp {
    font-size: 3rem;
    margin-top: 3.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_top_panel .top_top_panel_inner .title_area .jp {
    margin-top: 1.8rem;
    font-size: 2.4rem;
  }
}
.top_top_panel .top_top_panel_inner .u_text {
  color: white;
  font-size: 1.6rem;
  line-height: 2;
  width: 720px;
  margin-top: 4rem;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .top_top_panel .top_top_panel_inner .u_text {
    padding-right: 3rem;
  }
}
@media (max-width: 559.9px) {
  .top_top_panel .top_top_panel_inner .u_text {
    width: 100%;
  }
}
.top_top_panel.top_top_panel-1 .top_abs_text {
  display: block;
  position: absolute;
  width: 240px;
  top: 12vh;
  right: 10vw;
}
@media (max-width: 559.9px) {
  .top_top_panel.top_top_panel-1 .top_abs_text {
    width: 180px;
    top: 37px;
  }
}
.top_top_panel.top_top_panel-2 .top_abs_text {
  display: block;
  position: absolute;
  width: 532px;
  top: 2vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 999.9px) {
  .top_top_panel.top_top_panel-2 .top_abs_text {
    width: 392px;
  }
}
@media (max-width: 559.9px) {
  .top_top_panel.top_top_panel-2 .top_abs_text {
    width: 280px;
  }
}

.top_top_panel_inner2 {
  padding: 120px 0 200px;
  margin-top: 120px;
  position: relative;
  z-index: 5;
}
@media (max-width: 999.9px) {
  .top_top_panel_inner2 {
    padding: 120px 0 140px;
  }
}
@media (max-width: 834.9px) {
  .top_top_panel_inner2 {
    margin-top: 60px;
    padding: 120px 0 60px;
  }
}
@media (max-width: 559.9px) {
  .top_top_panel_inner2 {
    margin-top: 40px;
    padding: 100px 0 60px;
  }
}
.top_top_panel_inner2 .jp_center {
  text-align: center;
  color: white;
  font-size: 4rem;
  margin-top: 4.8rem;
}
@media (max-width: 834.9px) {
  .top_top_panel_inner2 .jp_center {
    font-size: 3rem;
    margin-top: 3.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_top_panel_inner2 .jp_center {
    font-size: 2.4rem;
    margin-top: 1.8rem;
  }
}
.top_top_panel_inner2 .title_area .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
}
.top_top_panel_inner2 .title_area .eng span {
  color: #D9383F;
}
.top_top_panel_inner2 .title_area .jp {
  color: white;
  font-size: 4rem;
  margin-top: 4.8rem;
}

.top_cross_area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .top_cross_area {
    flex-direction: column;
    margin-top: 3rem;
    gap: 8px;
  }
}
.top_cross_area .red_square {
  background-color: #D9383F;
  color: white;
  font-size: 3.2rem;
  font-weight: bold;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 160px;
}
@media (max-width: 999.9px) {
  .top_cross_area .red_square {
    width: 220px;
    height: 140px;
  }
}
@media (max-width: 834.9px) {
  .top_cross_area .red_square {
    font-size: 2.8rem;
    width: 200px;
    height: 120px;
  }
}
@media (max-width: 559.9px) {
  .top_cross_area .red_square {
    width: 180px;
    height: 90px;
    font-size: 2.2rem;
  }
}
.top_cross_area .cross {
  color: white;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

.top_str_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  margin-top: 6.4rem;
}
@media (max-width: 559.9px) {
  .top_str_list {
    margin-top: 3.4rem;
  }
}
.top_str_list > li {
  position: relative;
  width: calc(33.3333333333% - 16px);
}
@media (max-width: 559.9px) {
  .top_str_list > li {
    width: calc(50% - 12px);
  }
}
.top_str_list > li .tit {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  height: 80px;
}
@media (max-width: 559.9px) {
  .top_str_list > li .tit {
    height: 65px;
  }
}
.top_str_list > li .tit .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #D9383F;
}
.top_str_list > li .tit .jp {
  color: white;
  font-weight: bold;
}

.top_str_panels {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 100px;
}
@media (max-width: 834.9px) {
  .top_str_panels {
    gap: 60px;
  }
}
@media (max-width: 559.9px) {
  .top_str_panels {
    gap: 40px;
  }
}
.top_str_panels .top_str_panel {
  width: 100%;
  padding: 100px 0 200px;
  position: relative;
  z-index: 2;
  transform-origin: center top;
  overflow: hidden;
}
@media (max-width: 999.9px) {
  .top_str_panels .top_str_panel {
    padding: 50px 0 100px;
  }
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel {
    padding: 30px 0 80px;
  }
}
.top_str_panels .top_str_panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.5);
  z-index: 1;
}
.top_str_panels .top_str_panel .top_str_panel_inner {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .top_str_panels .top_str_panel .top_str_panel_inner {
    padding-left: 80px;
  }
}
.top_str_panels .top_str_panel .top_str_panel_inner .panel_tit {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top_str_panels .top_str_panel .top_str_panel_inner .panel_tit .num {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 6.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #D9383F;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .top_str_panel_inner .panel_tit .num {
    font-size: 4.4rem;
  }
}
.top_str_panels .top_str_panel .top_str_panel_inner .panel_tit .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: white;
}
.top_str_panels .top_str_panel .top_str_panel_inner .panel_tit .eng span {
  color: #D9383F;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .top_str_panel_inner .panel_tit .eng {
    font-size: 18px;
  }
}
.top_str_panels .top_str_panel .top_str_panel_inner .str_title {
  color: white;
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .top_str_panel_inner .str_title {
    font-size: 3rem;
  }
}
.top_str_panels .top_str_panel .top_str_panel_inner .white_tab {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0E0E0E;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px 8px;
  margin-top: 2rem;
}
.top_str_panels .top_str_panel .top_str_panel_inner .panel_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .top_str_panel_inner .panel_flex {
    margin-top: 2rem;
    flex-direction: column;
  }
}
.top_str_panels .top_str_panel .top_str_panel_inner .panel_flex .panel_left {
  width: 41%;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .top_str_panel_inner .panel_flex .panel_left {
    width: 100%;
  }
}
.top_str_panels .top_str_panel .top_str_panel_inner .panel_flex .top_str_img {
  width: 56%;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .top_str_panel_inner .panel_flex .top_str_img {
    width: 100%;
  }
}
.top_str_panels .top_str_panel .top_str_panel_inner .lead_text {
  color: white;
  line-height: 2;
}
.top_str_panels .top_str_panel .top_str_panel_inner .btn-white {
  margin-top: 3.2rem;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .top_str_panel_inner .btn-white {
    margin: 3rem auto 0;
  }
}
.top_str_panels .top_str_panel .eng_text-prototype {
  display: block;
  position: absolute;
  width: 600px;
  top: 10rem;
  left: 34vw;
}
@media (max-width: 1199.9px) {
  .top_str_panels .top_str_panel .eng_text-prototype {
    width: 40rem;
    left: 41vw;
  }
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .eng_text-prototype {
    top: inherit;
    bottom: -50px;
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top_str_panels .top_str_panel .eng_text-smallscale {
  display: block;
  position: absolute;
  width: 427px;
  top: 18rem;
  right: 4vw;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .eng_text-smallscale {
    top: inherit;
    bottom: -30px;
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top_str_panels .top_str_panel .eng_text-proposal {
  display: block;
  position: absolute;
  width: 435px;
  bottom: -8rem;
  left: 0;
}
@media (max-width: 1199.9px) {
  .top_str_panels .top_str_panel .eng_text-proposal {
    width: 345px;
  }
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .eng_text-proposal {
    bottom: -60px;
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top_str_panels .top_str_panel .eng_text-total {
  display: block;
  position: absolute;
  width: 200px;
  bottom: -6rem;
  right: 16vw;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .eng_text-total {
    bottom: -40px;
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top_str_panels .top_str_panel .eng_text-assembly {
  display: block;
  position: absolute;
  width: 292px;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199.9px) {
  .top_str_panels .top_str_panel .eng_text-assembly {
    width: 210px;
    bottom: -8rem;
  }
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .eng_text-assembly {
    bottom: -70px;
    width: 260px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top_str_panels .top_str_panel .eng_text-quality {
  display: block;
  position: absolute;
  width: 312px;
  top: 6rem;
  right: 18vw;
}
@media (max-width: 559.9px) {
  .top_str_panels .top_str_panel .eng_text-quality {
    bottom: -50px;
    top: inherit;
    width: 220px;
    right: 50%;
    transform: translateX(50%);
  }
}

.top_product_section {
  background-color: white;
  padding: 120px 0;
  position: relative;
}
@media (max-width: 559.9px) {
  .top_product_section {
    padding: 40px 0;
  }
}
.top_product_section .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0E0E0E;
}
.top_product_section .eng span {
  color: #D9383F;
}
@media (min-width: 560px) {
  .top_product_section .eng br {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .top_product_section .eng {
    font-size: 18px;
  }
}
.top_product_section .jp_title {
  font-size: 4rem;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 559.9px) {
  .top_product_section .jp_title {
    font-size: 3rem;
  }
}
.top_product_section .p_logomark {
  position: absolute;
  right: 7vw;
  top: 4rem;
  width: 24vw;
  opacity: 0.5;
}
@media (max-width: 559.9px) {
  .top_product_section .p_logomark {
    right: 4vw;
    top: 5rem;
  }
}

.product_infos {
  display: flex;
  gap: 24px;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .product_infos {
    margin-top: 3rem;
    flex-direction: column;
  }
}
.product_infos > li {
  width: 246px;
}
@media (max-width: 559.9px) {
  .product_infos > li {
    margin: 0 auto;
  }
}
.product_infos > li .head {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.product_infos > li .circle {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(217, 56, 63, 0.3);
  padding: 24px;
}
.product_infos > li .circle .circle_inner {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #D9383F;
  text-align: center;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}

.top_product_list_section {
  width: 100%;
  position: relative;
  padding-top: 80px;
}
@media (max-width: 559.9px) {
  .top_product_list_section {
    padding-top: 60px;
  }
}
.top_product_list_section::before {
  content: "";
  display: block;
  background: linear-gradient(270deg, var(--RED, #D9383F) 5.29%, var(--WHITE, #FFF) 100%);
  width: 92vw;
  height: 270px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.top_product_list_section .top_product_list_section_inner {
  background: linear-gradient(180deg, var(--black, #0E0E0E) 0%, #747474 100%);
  width: 88vw;
  padding: 80px;
}
@media (max-width: 999.9px) {
  .top_product_list_section .top_product_list_section_inner {
    padding: 50px;
  }
}
@media (max-width: 559.9px) {
  .top_product_list_section .top_product_list_section_inner {
    width: 92vw;
    padding: 30px;
  }
}
.top_product_list_section .top_product_list_section_inner .section_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
@media (max-width: 999.9px) {
  .top_product_list_section .top_product_list_section_inner .section_header {
    gap: 24px;
  }
}
@media (max-width: 559.9px) {
  .top_product_list_section .top_product_list_section_inner .section_header {
    flex-direction: column;
  }
}
.top_product_list_section .top_product_list_section_inner .section_header .btn-white {
  flex-shrink: 0;
}
@media (max-width: 559.9px) {
  .top_product_list_section .top_product_list_section_inner .section_header .btn-white {
    margin: 0 auto;
  }
}
.top_product_list_section .top_product_list_section_inner > .title_eng,
.top_product_list_section .top_product_list_section_inner .section_header_text > .title_eng {
  color: #D9383F;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 1000px) {
  .top_product_list_section .top_product_list_section_inner > .title_eng,
.top_product_list_section .top_product_list_section_inner .section_header_text > .title_eng {
    padding-left: 24px;
  }
}
@media (max-width: 999.9px) {
  .top_product_list_section .top_product_list_section_inner > .title_eng,
.top_product_list_section .top_product_list_section_inner .section_header_text > .title_eng {
    font-size: 5.4rem;
  }
}
@media (max-width: 559.9px) {
  .top_product_list_section .top_product_list_section_inner > .title_eng,
.top_product_list_section .top_product_list_section_inner .section_header_text > .title_eng {
    font-size: 4.4rem;
  }
}
.top_product_list_section .top_product_list_section_inner .jp {
  font-size: 4rem;
  color: white;
  font-weight: bold;
  margin-top: 16px;
}
@media (min-width: 1000px) {
  .top_product_list_section .top_product_list_section_inner .jp {
    padding-left: 24px;
  }
}
@media (max-width: 834.9px) {
  .top_product_list_section .top_product_list_section_inner .jp {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .top_product_list_section .top_product_list_section_inner .jp {
    font-size: 2.4rem;
    margin-top: 0;
  }
}
.top_product_list_section .top_product_list_section_inner .under_text {
  color: white;
  margin-top: 24px;
}
@media (min-width: 1000px) {
  .top_product_list_section .top_product_list_section_inner .under_text {
    padding-left: 24px;
  }
}

.top_product_list {
  display: flex;
  width: 100%;
  gap: 24px;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .top_product_list {
    gap: 16px;
  }
}
@media (max-width: 559.9px) {
  .top_product_list {
    flex-direction: column;
  }
}
.top_product_list .top_product_list_item {
  width: calc((100% - 48px) / 3);
  position: relative;
  padding: 24px;
  background-color: #0E0E0E;
}
@media (max-width: 999.9px) {
  .top_product_list .top_product_list_item {
    padding: 16px;
  }
}
@media (max-width: 834.9px) {
  .top_product_list .top_product_list_item {
    width: calc((100% - 32px) / 3);
  }
}
@media (max-width: 559.9px) {
  .top_product_list .top_product_list_item {
    width: 100%;
  }
}
.top_product_list .top_product_list_item .thumb {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
}
.top_product_list .top_product_list_item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.top_product_list .top_product_list_item .top_product_table {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}
.top_product_list .top_product_list_item .top_product_table dl {
  display: flex;
}
@media (max-width: 999.9px) {
  .top_product_list .top_product_list_item .top_product_table dl {
    display: block;
  }
}
.top_product_list .top_product_list_item .top_product_table dl dt {
  background-color: white;
  color: #0E0E0E;
  width: 76px;
  padding: 2px 8px;
  font-size: 1.3rem;
  text-align: center;
}
.top_product_list .top_product_list_item .top_product_table dl dd {
  flex: 1;
  padding-left: 8px;
  color: white;
  font-size: 1.3rem;
}
.top_product_list .top_product_list_item .top_product_table dl.feature_field {
  flex-direction: column;
  margin-top: 8px;
  padding: 0 6px 6px;
}
.top_product_list .top_product_list_item .top_product_table dl.feature_field dt {
  background-color: transparent;
  width: 100%;
  padding: 3px 0 3px 10px;
  position: relative;
  color: #DCE1E4;
  text-align: left;
  font-weight: bold;
  border-bottom: 1px #DCE1E4 dotted;
}
.top_product_list .top_product_list_item .top_product_table dl.feature_field dt::before {
  content: "";
  display: block;
  width: 5px;
  height: 80%;
  top: 10%;
  left: 0;
  position: absolute;
  background-color: #D9383F;
}
.top_product_list .top_product_list_item .top_product_table dl.feature_field dd {
  padding: 5px 0 0;
  font-size: 1.3rem;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.top_about_section {
  width: 100%;
  position: relative;
  padding: 120px 0;
  overflow: clip;
}
@media (max-width: 559.9px) {
  .top_about_section {
    padding: 60px 0;
  }
}
.top_about_section .about_grid_overlay {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  right: 0;
  margin-left: auto;
  width: 50vw;
  height: 100svh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 5px;
  padding: 5px;
  z-index: 1;
  pointer-events: none;
  margin-bottom: -100svh;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .top_about_section .about_grid_overlay {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
@media (max-width: 559.9px) {
  .top_about_section .about_grid_overlay {
    width: 60vw;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(9, 1fr);
  }
}
.top_about_section .about_grid_overlay .grid_tile {
  border-radius: 12px;
  transition: background-color 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .top_about_section .about_grid_overlay .grid_tile {
    border-radius: 10px;
  }
}
@media (max-width: 559.9px) {
  .top_about_section .about_grid_overlay .grid_tile {
    border-radius: 8px;
  }
}
.top_about_section .about_grid_overlay .grid_tile.red {
  background-color: #D9383F;
  opacity: 0.5;
}
.top_about_section .about_grid_overlay .grid_tile.gray {
  background-color: #4c4c4c;
  opacity: 0.5;
}
.top_about_section .about_grid_overlay .grid_tile.transparent {
  background-color: transparent;
  opacity: 0;
}
.top_about_section .wrap {
  position: relative;
  z-index: 2;
}
.top_about_section .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0E0E0E;
}
.top_about_section .eng span {
  color: #D9383F;
}
@media (max-width: 559.9px) {
  .top_about_section .eng {
    font-size: 18px;
  }
}
.top_about_section .jp_title {
  font-size: 4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .top_about_section .jp_title {
    font-size: 2.4rem;
    margin-top: 0.1 0.2rem;
  }
}
.top_about_section .under_text {
  line-height: 2;
}

.about_panel {
  display: flex;
  margin-top: 40px;
}
.about_panel.mt0 {
  margin-top: 0;
}
@media (max-width: 559.9px) {
  .about_panel {
    flex-direction: column;
  }
}
.about_panel .text_side {
  background-color: #0E0E0E;
  padding: 80px;
  width: 40%;
}
@media (max-width: 999.9px) {
  .about_panel .text_side {
    padding: 40px;
  }
}
@media (max-width: 559.9px) {
  .about_panel .text_side {
    width: 100%;
    padding: 20px;
  }
}
.about_panel .text_side .eng_tit {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  margin-bottom: 0.8rem;
}
@media (max-width: 999.9px) {
  .about_panel .text_side .eng_tit {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .about_panel .text_side .eng_tit {
    font-size: 2.2rem;
    margin-bottom: 0;
    text-align: center;
  }
}
.about_panel .text_side .jp {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 4rem;
  color: white;
}
@media (max-width: 999.9px) {
  .about_panel .text_side .jp {
    font-size: 18px;
  }
}
@media (max-width: 559.9px) {
  .about_panel .text_side .jp {
    font-size: 16px;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.about_panel .img_side {
  width: 60%;
  position: relative;
}
@media (max-width: 559.9px) {
  .about_panel .img_side {
    display: none;
  }
}
.about_panel .img_side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 559.9px) {
  .about_panel .btn-white {
    margin: 0 auto;
  }
}

.top_recruit_section {
  width: 100%;
  position: relative;
  padding-bottom: 200px;
}
.top_recruit_section::before {
  content: "";
  display: block;
  background: linear-gradient(90deg, var(--RED, #D9383F) 5.29%, var(--WHITE, #FFF) 100%);
  width: 100vw;
  height: 270px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.top_recruit_section .recruit_panel {
  width: 86vw;
  margin-left: auto;
  background: url(../images/top/top_recruit.jpg) center no-repeat;
  background-size: cover;
  position: relative;
  padding: 80px 80px 200px 80px;
}
@media (max-width: 834.9px) {
  .top_recruit_section .recruit_panel {
    padding: 50px 50px 140px 50px;
  }
}
@media (max-width: 559.9px) {
  .top_recruit_section .recruit_panel {
    width: 100vw;
    padding: 20px 20px 140px 20px;
  }
}
.top_recruit_section .recruit_panel::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.56) 0.47%, rgba(153, 153, 153, 0) 99.93%);
  position: absolute;
  left: 0;
  top: 0;
}
.top_recruit_section .recruit_panel .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #D9383F;
  position: relative;
  z-index: 1;
}
@media (max-width: 559.9px) {
  .top_recruit_section .recruit_panel .eng {
    font-size: 4.4rem;
  }
}
.top_recruit_section .recruit_panel .ttl {
  position: relative;
  z-index: 1;
  margin-top: 12px;
}
@media (max-width: 559.9px) {
  .top_recruit_section .recruit_panel .ttl {
    margin-top: 0;
  }
}
.top_recruit_section .recruit_panel .ttl p {
  color: white;
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .top_recruit_section .recruit_panel .ttl p {
    font-size: 2rem;
  }
}
.top_recruit_section .recruit_panel .under_text {
  color: white;
  line-height: 2;
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-top: 80px;
}
@media (max-width: 559.9px) {
  .top_recruit_section .recruit_panel .under_text {
    margin-top: 24px;
  }
}
.top_recruit_section .buttons {
  display: flex;
  gap: 24px;
  position: absolute;
  right: 10vw;
  bottom: 64px;
}
@media (max-width: 559.9px) {
  .top_recruit_section .buttons {
    flex-direction: column;
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
  }
}
.top_recruit_section .buttons .button_box {
  padding: 40px;
  background-color: #D9383F;
}
.top_recruit_section .buttons .button_box:nth-child(2) {
  background-color: #0E0E0E;
}
@media (max-width: 559.9px) {
  .top_recruit_section .buttons .button_box {
    padding: 20px;
  }
}
.top_recruit_section .buttons .button_box .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 559.9px) {
  .top_recruit_section .buttons .button_box .eng {
    margin-bottom: 20px;
  }
}

.top_news_section {
  padding: 120px 0;
  background-color: #f5f5f5;
}
@media (max-width: 559.9px) {
  .top_news_section {
    padding: 40px 0;
  }
}

.news_list {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .news_list {
    flex-direction: column;
  }
}
.news_list .news_list_item {
  position: relative;
  width: calc(33.3333333333% - 16px);
}
@media (max-width: 559.9px) {
  .news_list .news_list_item {
    width: 300px;
    margin: 0 auto;
  }
}
.news_list .news_list_item .thumb {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
}
.news_list .news_list_item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.news_list .news_list_item .news_list_head {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.news_list .news_list_item .news_list_head .date {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
}
.news_list .news_list_item .news_list_head .tags {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 3px 3px;
}
.news_list .news_list_item .news_list_head .tags > span {
  background-color: #0E0E0E;
  color: white;
  font-size: 1.2rem;
  padding: 1px 8px;
}
.news_list .news_list_item .title {
  margin-top: 8px;
}
.news_list .news_list_item .title a {
  color: #0E0E0E;
}

/**************
Under PageTitle
**************/
.pageTitle {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #0E0E0E;
}
@media (min-width: 1000px) {
  .pageTitle {
    height: 60vh;
  }
}
@media (min-width: 835px) and (max-width: 999.9px) {
  .pageTitle {
    height: 50vh;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .pageTitle {
    height: 300px;
  }
}
@media (max-width: 559.9px) {
  .pageTitle {
    height: 210px;
  }
}
.pageTitle .title_bg {
  width: 86%;
  height: 100%;
  position: relative;
  border-top-left-radius: 20vw;
  margin-left: auto;
  margin-right: 0;
  overflow: hidden;
}
.pageTitle .title_bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #9C9C9C;
  mix-blend-mode: multiply;
  border-top-left-radius: 20vw;
}
.pageTitle .title_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.pageTitle .title_area {
  position: absolute;
  left: 8vw;
  top: 50%;
}
.pageTitle .title_area h2 {
  color: #ffffff;
  font-size: 5rem;
  font-weight: 700;
}
@media (max-width: 834.9px) {
  .pageTitle .title_area h2 {
    font-size: 4rem;
  }
}
@media (max-width: 559.9px) {
  .pageTitle .title_area h2 {
    font-size: 2rem;
  }
}
.pageTitle .title_area .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 7400;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: 0.2rem;
  position: absolute;
  padding-left: 40px;
  white-space: nowrap;
}
@media (max-width: 559.9px) {
  .pageTitle .title_area .eng {
    font-size: 14px;
    padding-left: 20px;
  }
}
.pageTitle .title_area .eng::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 559.9px) {
  .pageTitle .title_area .eng::before {
    width: 15px;
  }
}
@media (min-width: 560px) {
  .pageTitle.single_page {
    height: 400px;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .pageTitle.single_page {
    height: 300px;
  }
}
@media (max-width: 559.9px) {
  .pageTitle.single_page {
    height: 210px;
  }
}

.breadcrumbs {
  position: absolute;
  background-color: rgba(14, 14, 14, 0.6);
  padding: 16px;
  font-size: 13px;
  box-sizing: border-box;
  right: 0;
  bottom: 0;
  min-width: 250px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 559.9px) {
  .breadcrumbs {
    padding: 8px;
    font-size: 12px;
  }
}
.breadcrumbs a {
  display: inline-block;
  font-weight: normal;
  color: #ffffff;
  border-bottom: 1px #ffffff solid;
}

.flex_content {
  width: 100%;
  margin-bottom: 80px;
}
.flex_content:last-child {
  margin-bottom: 0;
}
@media (min-width: 560px) {
  .flex_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_content.start {
    align-items: flex-start;
  }
  .flex_content.mt30 {
    margin-top: 30px;
  }
}
@media (min-width: 560px) {
  .flex_content_r {
    flex-direction: row-reverse;
  }
}
@media (max-width: 559.9px) {
  .flex_content > .item {
    width: 100%;
  }
  .flex_content > .item:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 560px) {
  .flex_content .item_1 {
    width: 12%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_2 {
    width: 21%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_3 {
    width: 33%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_35 {
    width: 38%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_4 {
    width: 47.5%;
  }
}
.flex_content .item_4 .text_title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 559.9px) {
  .flex_content .item_4 .text_title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
}
@media (min-width: 560px) {
  .flex_content .item_45 {
    width: 56%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_5 {
    width: 62%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_6 {
    width: 73%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_7 {
    width: 84%;
  }
}

.c_container {
  width: 100%;
}
@media (min-width: 560px) {
  .c_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 834.9px) {
  .c_container {
    padding: 0 4%;
  }
}
@media (min-width: 560px) {
  .c_container .leftColumn {
    background-color: #f3f3f3;
  }
}

.news_container {
  width: 100%;
  display: flex;
}
@media (min-width: 560px) {
  .news_container {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (max-width: 834.9px) {
  .news_container {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1000px) {
  .news_container .leftColumn {
    width: 220px;
  }
}
@media (min-width: 835px) and (max-width: 999.9px) {
  .news_container .leftColumn {
    width: 180px;
  }
}
@media (max-width: 834.9px) {
  .news_container .leftColumn {
    margin-top: 60px;
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .news_container .leftColumn {
    margin-top: 3rem;
  }
}
@media (min-width: 1000px) {
  .news_container .rightColumn {
    width: calc(100% - 300px);
  }
}
@media (min-width: 835px) and (max-width: 999.9px) {
  .news_container .rightColumn {
    width: calc(100% - 240px);
  }
}

.divider-full {
  margin: 35px 0;
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px #aaa dotted;
}
@media (max-width: 834.9px) {
  .divider-full {
    margin: 20px 0;
  }
}

.sticky_content {
  width: 100%;
}
@media (min-width: 835px) {
  .sticky_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/**************
Sidebar
**************/
@media (min-width: 835px) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    margin-bottom: 35px;
  }
  .admin-bar .sidebar-sticky {
    top: 132px;
  }
}

.sidebar_title {
  background-color: #4c4c4c;
  padding: 12px 18px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  color: #ffffff;
}
@media (min-width: 835px) and (max-width: 999.9px) {
  .sidebar_title {
    font-size: 1.8rem;
  }
}
@media (max-width: 834.9px) {
  .sidebar_title {
    font-size: 1.6rem;
  }
  .sidebar_title br {
    display: none;
  }
}
@media (max-width: 834.9px) {
  .sidebar_title {
    display: none;
  }
}
.sidebar_title.mt35 {
  margin-top: 35px;
}

@media (max-width: 834.9px) {
  .side_links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (min-width: 835px) {
  .side_links li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px #d9d9d9 solid;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .side_links li {
    display: block;
    width: 32%;
    margin-bottom: 10px;
  }
}
@media (max-width: 559.9px) {
  .side_links li {
    display: block;
    width: 49.4%;
    margin-bottom: 4px;
  }
}
.side_links li a {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 12px 0 12px 18px;
  position: relative;
  color: #4c4c4c;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 834.9px) {
  .side_links li a {
    border: 1px #0E0E0E solid;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px 0 20px;
    line-height: 1.4;
    border-radius: 3px;
    background-color: white;
  }
}
@media (max-width: 559.9px) {
  .side_links li a {
    font-size: 3vw;
    height: 40px;
  }
}
.side_links li a::before {
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  display: block;
  position: absolute;
  left: 2px;
  top: 50%;
  font-size: 12px;
}
@media (max-width: 834.9px) {
  .side_links li a::before {
    top: 50%;
    left: 8px;
  }
}
.side_links li a:hover {
  background-color: #fafafa;
}
@media (min-width: 560px) {
  .side_links li.active a {
    color: #333;
  }
  .side_links li.active a::before {
    background-color: #8AB6D8;
  }
}

/**下層トップ**/
.page_head {
  margin-bottom: 5rem;
  text-align: center;
  -webkit-animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  font-size: 4rem;
}
@media (max-width: 559.9px) {
  .page_head {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.page_head.left {
  text-align: left;
}
.page_head span {
  color: #D9383F;
}

/**下層タイトル**/
.page_title {
  margin-bottom: 5rem;
  text-align: center;
}
@media (max-width: 834.9px) {
  .page_title {
    margin-bottom: 3rem;
    padding: 0 8px;
  }
}
@media (max-width: 559.9px) {
  .page_title {
    margin-bottom: 2rem;
  }
}
.page_title.left {
  text-align: left;
}
@media (max-width: 559.9px) {
  .page_title.left {
    text-align: center;
  }
}
.page_title .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #D9383F;
  margin-bottom: 0.8rem;
}
@media (max-width: 559.9px) {
  .page_title .eng {
    font-size: 16px;
    margin-bottom: 0.4rem;
  }
}
.page_title .eng span {
  color: #0E0E0E;
}
.page_title .eng span.white {
  color: #ffffff;
}
.page_title h2 {
  font-size: 4rem;
}
@media (max-width: 559.9px) {
  .page_title h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 560px) {
  .page_title h2 br {
    display: none;
  }
}

/**下層テキスト**/
.top_text {
  text-align: center;
  margin-bottom: 8rem;
}
@media (max-width: 999.9px) {
  .top_text {
    margin-bottom: 5rem;
  }
}
@media (max-width: 559.9px) {
  .top_text {
    margin-bottom: 3rem;
  }
}
.top_text.left {
  text-align: left;
}
@media (max-width: 559.9px) {
  .top_text.left {
    text-align: center;
  }
}
.top_text.w100 {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
.top_text.mb0 {
  margin-bottom: 0;
}
@media (max-width: 559.9px) {
  .top_text br {
    display: none;
  }
}

/**下層サブテキスト**/
.page_sub_text {
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .page_sub_text {
    font-size: 2rem;
  }
}
.page_sub_text.center {
  text-align: center;
}
.page_sub_text.right {
  text-align: right;
}
.page_sub_text.large {
  font-size: 4.6rem;
}
@media (max-width: 834.9px) {
  .page_sub_text.large {
    font-size: 4rem;
  }
}
@media (max-width: 559.9px) {
  .page_sub_text.large {
    font-size: 2.8rem;
  }
}

/**下層eng**/
.page_eng_text {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #D9383F;
  margin-bottom: 0.8rem;
}
@media (max-width: 559.9px) {
  .page_eng_text {
    text-align: center;
  }
}
.page_eng_text span {
  color: #0E0E0E;
}
.page_eng_text.center {
  text-align: center;
  font-size: 16px;
}

/**セクション内コンテンツ**/
.page_section_item {
  margin-top: 120px;
}
@media (max-width: 834.9px) {
  .page_section_item {
    margin-top: 60px;
  }
}
@media (max-width: 559.9px) {
  .page_section_item {
    margin-top: 40px;
  }
}
.page_section_item_bg_black {
  background-color: #0E0E0E;
}
.page_section_item.pa80 {
  padding: 80px 0;
}
@media (max-width: 559.9px) {
  .page_section_item.pa80 {
    padding: 40px 0;
  }
}

.img_box {
  background-color: #DCE1E4;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .img_box {
    margin-top: 2rem;
  }
}
.img_box.tentative {
  height: 50rem;
}
@media (max-width: 559.9px) {
  .img_box.tentative {
    height: 20rem;
  }
}

.next_panel {
  position: relative;
  padding: 3rem;
  max-width: 550px;
  width: 100%;
  margin: 8rem auto 0;
}
@media (max-width: 559.9px) {
  .next_panel {
    margin-top: 3rem;
    padding: 1.6rem;
  }
}
.next_panel::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.next_panel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.next_panel .inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (max-width: 559.9px) {
  .next_panel .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.next_panel .inner .eng_head {
  color: #D9383F;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  padding: 1rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  border-left: 2px #D9383F solid;
  line-height: 1.2;
}
@media (max-width: 559.9px) {
  .next_panel .inner .eng_head {
    font-size: 2rem;
    padding: 8px 12px;
  }
}
@media (max-width: 559.9px) {
  .next_panel .inner .eng_head br {
    display: none;
  }
}
.next_panel .inner .btn-circle {
  display: flex;
  gap: 18px;
  align-items: center;
}
@media (max-width: 559.9px) {
  .next_panel .inner .btn-circle {
    justify-content: space-between;
    width: 100%;
  }
}
.next_panel .inner .btn-circle .text_area .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .next_panel .inner .btn-circle .text_area .eng {
    font-size: 14px;
  }
}
.next_panel .inner .btn-circle .text_area .eng br {
  display: none;
}
.next_panel .inner .btn-circle .text_area .jp {
  margin-top: 4px;
  color: #ffffff;
  font-size: 24px;
}
@media (max-width: 559.9px) {
  .next_panel .inner .btn-circle .text_area .jp {
    font-size: 18px;
  }
}
.next_panel .inner .btn-circle .circle {
  position: relative;
  background-color: #ffffff;
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .next_panel .inner .btn-circle .circle {
    width: 4rem;
  }
}
.next_panel .inner .btn-circle .circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #D9383F;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.next_panel .inner .btn-circle .circle svg {
  position: relative;
  z-index: 1;
}
.next_panel .inner .btn-circle .circle svg path {
  transition: stroke 0.3s ease;
}
.next_panel .inner .btn-circle:hover .circle::before {
  transform: scale(1);
}
.next_panel .inner .btn-circle:hover .circle svg path {
  stroke: #ffffff;
}

/**************
強み
**************/
.movie {
  margin: 0 auto;
  width: 100%;
  background-color: #ffffff;
}

iframe {
  max-width: 120rem;
  width: 100%;
  aspect-ratio: 640/360;
}

.strength_page_section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-bottom: 180px;
}
@media (max-width: 559.9px) {
  .strength_page_section {
    padding-bottom: 60px;
  }
}
.strength_page_section .strength_grid_overlay {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  margin-left: auto;
  width: 41vw;
  height: 100svh;
  margin-bottom: -100svh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 5px;
  padding: 5px;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .strength_page_section .strength_grid_overlay {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
@media (max-width: 559.9px) {
  .strength_page_section .strength_grid_overlay {
    width: 100vw;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(9, 1fr);
    top: 60px;
  }
}
.strength_page_section .strength_grid_overlay .grid_tile {
  border-radius: 12px;
  transition: background-color 0.8s ease, opacity 0.8s ease;
  opacity: 0;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .strength_page_section .strength_grid_overlay .grid_tile {
    border-radius: 10px;
  }
}
@media (max-width: 559.9px) {
  .strength_page_section .strength_grid_overlay .grid_tile {
    border-radius: 8px;
  }
}
.strength_page_section .strength_grid_overlay .grid_tile.red {
  background-color: #D9383F;
  opacity: 0.5;
}
@media (max-width: 559.9px) {
  .strength_page_section .strength_grid_overlay .grid_tile.red {
    opacity: 0.3;
  }
}
.strength_page_section .strength_grid_overlay .grid_tile.gray {
  background-color: #4c4c4c;
  opacity: 0.5;
}
@media (max-width: 559.9px) {
  .strength_page_section .strength_grid_overlay .grid_tile.gray {
    opacity: 0.3;
  }
}
.strength_page_section .strength_grid_overlay .grid_tile.transparent {
  background-color: transparent;
  opacity: 0;
}
.strength_page_section > .wrap,
.strength_page_section > .strength-content {
  position: relative;
  z-index: 2;
}

.strength-choose_content {
  padding-top: 100px;
}
@media (max-width: 834.9px) {
  .strength-choose_content {
    padding-top: 60px;
  }
}

.strength-content {
  margin: 16rem 10rem 0;
}
@media (max-width: 999.9px) {
  .strength-content {
    margin: 16rem 8rem 0;
  }
}
@media (max-width: 834.9px) {
  .strength-content {
    margin: 10rem 5rem 0;
  }
}
@media (max-width: 559.9px) {
  .strength-content {
    margin: 4rem 1rem 0;
  }
}
.strength-content .strength_item {
  display: flex;
  margin-bottom: 10rem;
}
@media (max-width: 559.9px) {
  .strength-content .strength_item {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.strength-content .strength_item:last-child {
  margin-bottom: 0;
}
.strength-content .strength_item .left_item {
  width: 43%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 559.9px) {
  .strength-content .strength_item .left_item {
    width: 100%;
    aspect-ratio: 3/2;
  }
}
.strength-content .strength_item .left_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.strength-content .strength_item .right_item {
  width: 57%;
  padding: 10rem;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1199.9px) {
  .strength-content .strength_item .right_item {
    padding: 5rem 7rem;
  }
}
@media (max-width: 834.9px) {
  .strength-content .strength_item .right_item {
    padding: 3rem;
  }
}
@media (max-width: 559.9px) {
  .strength-content .strength_item .right_item {
    width: 100%;
    padding: 0 2rem 2rem;
  }
}
.strength-content .strength_item .right_item .head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.strength-content .strength_item .right_item .head .num {
  color: #D9383F;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .strength-content .strength_item .right_item .head .num {
    font-size: 4rem;
  }
}
.strength-content .strength_item .right_item .head .eng {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .strength-content .strength_item .right_item .head .eng {
    font-size: 16px;
  }
}
.strength-content .strength_item .right_item > h3 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 834.9px) {
  .strength-content .strength_item .right_item > h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 559.9px) {
  .strength-content .strength_item .right_item > h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.product_page_section {
  margin-bottom: -8rem;
}
@media (max-width: 559.9px) {
  .product_page_section {
    margin-bottom: 0;
  }
}
.product_page_section .product_page_section-bg {
  width: 100%;
}
.product_page_section .product_page_inner {
  width: 86%;
  margin-left: auto;
  margin-right: 0;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.2);
  padding: 6rem;
  transform: translateY(-8rem);
}
@media (max-width: 559.9px) {
  .product_page_section .product_page_inner {
    width: 100%;
    transform: translateY(0);
    padding: 3rem;
  }
}

.product_list_item.is-hidden {
  display: none;
}

.product_list {
  display: flex;
  width: 100%;
  gap: 4rem 24px;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .product_list {
    flex-direction: column;
  }
}
.product_list .product_list_item {
  width: calc((100% - 48px) / 3);
  position: relative;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
@media (max-width: 559.9px) {
  .product_list .product_list_item {
    width: 300px;
    margin: 0 auto;
  }
}
.product_list .product_list_item .thumb {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
}
.product_list .product_list_item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.product_list .product_list_item .thumb:hover img, .product_list .product_list_item .thumb :active img {
  transform: scale(1.05);
}
.product_list .product_list_item .product_name {
  font-weight: 700;
  text-align: center;
  margin-top: 1.2rem;
  padding: 0 8px;
}
.product_list .product_list_item .product_name a {
  color: #4c4c4c;
}
.product_list .product_list_item .product_name a:hover {
  text-decoration: underline;
}
.product_list .product_list_item .product_table {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1rem;
}
.product_list .product_list_item .product_table dl {
  display: flex;
}
@media (max-width: 834.9px) {
  .product_list .product_list_item .product_table dl {
    flex-direction: column;
  }
}
.product_list .product_list_item .product_table dl dt {
  background-color: #0E0E0E;
  color: white;
  width: 76px;
  padding: 2px 8px;
  font-size: 1.3rem;
  text-align: center;
}
.product_list .product_list_item .product_table dl dd {
  flex: 1;
  padding-left: 8px;
  font-size: 1.3rem;
  overflow-wrap: anywhere;
}
.product_list .product_list_item .product_table dl.feature_field {
  flex-direction: column;
  margin-top: 8px;
  padding: 0 6px 6px;
}
.product_list .product_list_item .product_table dl.feature_field dt {
  background-color: white;
  width: 100%;
  padding: 3px 0 3px 10px;
  position: relative;
  color: #6b6b6b;
  text-align: left;
  font-weight: bold;
  border-bottom: 1px #DCE1E4 dotted;
}
.product_list .product_list_item .product_table dl.feature_field dt::before {
  content: "";
  display: block;
  width: 5px;
  height: 80%;
  top: 10%;
  left: 0;
  position: absolute;
  background-color: #6b6b6b;
}
.product_list .product_list_item .product_table dl.feature_field dd {
  padding: 5px 0 0;
  font-size: 1.3rem;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/**************
アルミ試作
**************/
.page_content {
  margin-top: 14rem;
}

.page_flex {
  display: flex;
  gap: 5rem;
  width: 100%;
  margin-top: 12rem;
  align-items: center;
}
@media (max-width: 999.9px) {
  .page_flex {
    margin-top: 8rem;
  }
}
@media (max-width: 559.9px) {
  .page_flex {
    flex-direction: column;
    margin-top: 4rem;
    gap: 2rem;
  }
}
.page_flex .left_item {
  padding-left: 16rem;
  width: calc(54% - 5rem);
}
@media (min-width: 1000px) and (max-width: 1199.9px) {
  .page_flex .left_item {
    padding-left: 10rem;
  }
}
@media (max-width: 999.9px) {
  .page_flex .left_item {
    padding-left: 6rem;
  }
}
@media (max-width: 559.9px) {
  .page_flex .left_item {
    width: 100%;
    padding: 0 1rem;
  }
}
@media (max-width: 999.9px) {
  .page_flex .left_item .page_title {
    margin-bottom: 3rem;
  }
}
@media (max-width: 559.9px) {
  .page_flex .left_item .page_title {
    margin-bottom: 2rem;
  }
}
.page_flex .left_item .page_title h2 {
  font-size: 4.6rem;
}
@media (max-width: 999.9px) {
  .page_flex .left_item .page_title h2 {
    font-size: 3.6rem;
  }
}
@media (max-width: 559.9px) {
  .page_flex .left_item .page_title h2 {
    font-size: 2.6rem;
  }
}
.page_flex .img_item {
  width: 46%;
  aspect-ratio: 400/288;
  position: relative;
  height: 100%;
}
@media (max-width: 559.9px) {
  .page_flex .img_item {
    width: 92%;
  }
}
.page_flex .img_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.p_area_list {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .p_area_list {
    flex-direction: column;
    gap: 2rem;
  }
}
.p_area_list li {
  width: calc((100% - 4rem) / 2);
  background-color: #ffffff;
  border-radius: 16px;
}
@media (max-width: 559.9px) {
  .p_area_list li {
    width: 100%;
  }
}
.p_area_list li.w100 {
  width: 100%;
}
.p_area_list li .head {
  border-bottom: 2px #0E0E0E solid;
  font-size: 18px;
  font-weight: bold;
  color: #D9383F;
  padding: 16px 20px;
  text-align: center;
}
.p_area_list li .content {
  padding: 3rem 6rem;
}
@media (max-width: 559.9px) {
  .p_area_list li .content {
    padding: 2rem;
  }
}
.p_area_list li .content dl {
  display: flex;
  margin-bottom: 8px;
}
.p_area_list li .content dl:last-child {
  margin-bottom: 0;
}
.p_area_list li .content dl dt {
  font-weight: 600;
}
.p_area_list li .content2 {
  padding: 3rem 10rem;
}
@media (max-width: 559.9px) {
  .p_area_list li .content2 {
    padding: 2rem;
  }
}
@media (max-width: 559.9px) {
  .p_area_list li .content2 .text20 {
    font-size: 16px;
  }
}

.lot_box {
  max-width: 760px;
  width: 100%;
  margin: 3rem auto;
  position: relative;
}
@media (max-width: 559.9px) {
  .lot_box {
    margin: 2rem auto;
  }
}
.lot_box .lot {
  height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .lot_box .lot {
    height: 3.6rem;
  }
}
.lot_box .lot .box1 {
  background-color: #999;
  height: 100%;
  width: 30%;
}
.lot_box .lot .box2 {
  background-color: #b80008;
  height: 100%;
  width: 70%;
  position: relative;
}
.lot_box .lot .box2 .p5 {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  letter-spacing: 0.4rem;
}
@media (max-width: 559.9px) {
  .lot_box .lot .box2 .p5 {
    font-size: 16px;
  }
}
.lot_box .p1 {
  position: absolute;
  left: 0;
  bottom: -68%;
}
@media (max-width: 559.9px) {
  .lot_box .p1 {
    font-size: 14px;
  }
}
.lot_box .p2 {
  position: absolute;
  left: 28%;
  bottom: -68%;
}
@media (max-width: 559.9px) {
  .lot_box .p2 {
    font-size: 14px;
    left: 26%;
  }
}
.lot_box .p3 {
  position: absolute;
  left: 95%;
  bottom: -68%;
  white-space: nowrap;
}
@media (max-width: 559.9px) {
  .lot_box .p3 {
    font-size: 14px;
    left: 84%;
  }
}
.lot_box .p4 {
  position: absolute;
  left: 101%;
  bottom: -68%;
}
@media (max-width: 559.9px) {
  .lot_box .p4 {
    font-size: 14px;
    left: 95%;
  }
}

.flex_page_section {
  padding: 100px 0;
}
.flex_page_section.relative {
  position: relative;
}
@media (max-width: 559.9px) {
  .flex_page_section {
    padding: 60px 0;
  }
}

.flex_item {
  width: 80%;
  margin: 0 auto;
  position: relative;
  padding-top: 10rem;
  z-index: 3;
}
@media (max-width: 999.9px) {
  .flex_item {
    padding-top: 5rem;
  }
}
@media (max-width: 834.9px) {
  .flex_item {
    width: 90%;
  }
}
@media (max-width: 559.9px) {
  .flex_item {
    padding-top: 0;
  }
}
.flex_item.mt160 {
  margin-bottom: 160px;
}
.flex_item.mt0 {
  margin-bottom: 0;
}
.flex_item .flex_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 35vw;
  height: auto;
  aspect-ratio: 40/26;
  z-index: 1;
}
@media (max-width: 834.9px) {
  .flex_item .flex_img {
    width: 43vw;
  }
}
@media (max-width: 559.9px) {
  .flex_item .flex_img {
    position: inherit;
    width: 100%;
  }
}
.flex_item .flex_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.flex_item .text_area {
  margin: 0 0 0 auto;
  background-color: rgb(255, 255, 255);
  padding: 5rem;
  width: 49vw;
  min-height: 40rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 999.9px) {
  .flex_item .text_area {
    padding: 3rem 3rem 6rem;
  }
}
@media (max-width: 834.9px) {
  .flex_item .text_area {
    width: 53vw;
  }
}
@media (max-width: 559.9px) {
  .flex_item .text_area {
    width: 100%;
    padding: 1.6rem 0 4rem;
    min-height: 25rem;
  }
}
.flex_item .text_area.bg_gray {
  background-color: #f5f5f5;
}
.flex_item .text_area .page_sub_text {
  font-size: 4.6rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 999.9px) {
  .flex_item .text_area .page_sub_text {
    font-size: 3.6rem;
  }
}
@media (max-width: 834.9px) {
  .flex_item .text_area .page_sub_text {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .flex_item .text_area .page_sub_text {
    text-align: center;
    font-size: 2.2rem;
  }
}
.flex_item .text_area .text {
  margin-top: 3rem;
}
@media (max-width: 559.9px) {
  .flex_item .text_area .text {
    margin-top: 2rem;
  }
}
@media (max-width: 834.9px) {
  .flex_item .text_area .btn-box4 {
    margin-top: 2rem;
  }
}
.flex_item_r .flex_img {
  left: auto;
  right: 0;
}
.flex_item_r .text_area {
  margin: 0 auto 0 0;
}

.c_method_table_content {
  width: 94%;
  margin: 40px auto 0;
}
@media (max-width: 559.9px) {
  .c_method_table_content {
    margin: 20px auto 0;
  }
}
.c_method_table_content .top_text {
  margin-bottom: 4rem;
}

.c_method_table {
  min-width: 490px;
  margin: 0 auto;
  border: 1px solid #9C9C9C;
}
@media (min-width: 835px) {
  .c_method_table {
    width: 770px;
  }
}
.c_method_table tr th {
  background-color: #4c4c4c;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  padding: 20px 16px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border: 1px solid #9C9C9C;
}
@media (max-width: 559.9px) {
  .c_method_table tr th {
    padding: 12px;
  }
}
.c_method_table tr td {
  text-align: center;
  padding: 20px 12px;
  color: #0E0E0E;
  background-color: white;
  border: 1px solid #9C9C9C;
  font-size: 30px;
  line-height: 0.8;
}
@media (max-width: 559.9px) {
  .c_method_table tr td {
    padding: 12px;
  }
}

.c_method_flex {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
}
@media (max-width: 559.9px) {
  .c_method_flex {
    margin-top: 2rem;
    gap: 16px;
  }
}
.c_method_flex dl {
  width: 300px;
  background-color: #DCE1E4;
  border-radius: 16px;
}
.c_method_flex dl dt {
  text-align: center;
  border-bottom: 1px solid #ffffff;
  padding: 1rem;
  font-weight: 700;
}
.c_method_flex dl .box {
  padding: 1rem 3rem 1rem 5rem;
}
.c_method_flex dl .box p {
  text-align: right;
}

.bg_gray {
  margin-top: 80px;
  padding: 80px 0;
  background-color: #f5f5f5;
}
@media (max-width: 834.9px) {
  .bg_gray {
    padding-bottom: 0;
  }
}
@media (max-width: 559.9px) {
  .bg_gray {
    margin-top: 50px;
    padding: 40px 0;
  }
}

.bg_text_content {
  margin-top: 16rem;
  position: relative;
}
.bg_text_content .bg_text_inner {
  position: relative;
  z-index: 2;
}
.bg_text_content .bg_text {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 26rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.5rem;
  color: rgba(217, 56, 63, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1;
  z-index: 1;
}

/**************
少量量産
**************/
.movie-zero-setup {
  aspect-ratio: 192/108;
  width: 100%;
}

.small_lot_table {
  width: 100%;
  margin-top: 40px;
  min-width: 420px;
}
.small_lot_table th, .small_lot_table td {
  border: 1px solid #7a7a7a;
  text-align: center;
  padding: 18px 24px;
}
@media (max-width: 559.9px) {
  .small_lot_table th, .small_lot_table td {
    padding: 12px;
  }
}
.small_lot_table thead th {
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 559.9px) {
  .small_lot_table thead th {
    font-size: 15px;
  }
}
.small_lot_table thead th.empty {
  background-color: transparent;
  border: none;
}
.small_lot_table thead th.col_seiwa {
  background-color: #D9383F;
  color: white;
  border: 2px solid #D9383F;
}
.small_lot_table thead th.col_seiwa img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 559.9px) {
  .small_lot_table thead th.col_seiwa img {
    height: 18px;
  }
}
.small_lot_table thead th.col_conventional {
  background-color: #7a7a7a;
  color: white;
  border-color: #7a7a7a;
}
.small_lot_table tbody th {
  background-color: white;
  color: #0E0E0E;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 559.9px) {
  .small_lot_table tbody th {
    font-size: 15px;
  }
}
.small_lot_table tbody td {
  font-size: 18px;
  font-weight: 600;
}
.small_lot_table tbody td.col_seiwa {
  color: #D9383F;
  border-left: 2px solid #D9383F;
  border-right: 2px solid #D9383F;
  font-size: 24px;
}
@media (max-width: 559.9px) {
  .small_lot_table tbody td.col_seiwa {
    font-size: 18px;
  }
}
.small_lot_table tbody td.col_conventional {
  color: #7a7a7a;
}
@media (max-width: 559.9px) {
  .small_lot_table tbody td.col_conventional {
    font-size: 15px;
  }
}
.small_lot_table tbody tr:last-child td.col_seiwa {
  border-bottom: 2px solid #D9383F;
}

.support_team_content {
  margin: 30px auto 120px;
  position: relative;
  z-index: 3;
}
@media (max-width: 559.9px) {
  .support_team_content {
    margin: 10px auto 50px;
  }
}

.support_team_list {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .support_team_list {
    flex-direction: column;
    gap: 16px;
  }
}
.support_team_list li {
  width: calc((100% - 6rem) / 3);
  background-color: #0E0E0E;
  border-radius: 16px;
}
@media (max-width: 559.9px) {
  .support_team_list li {
    width: 100%;
  }
}
.support_team_list li.w100 {
  width: 100%;
}
.support_team_list li .head {
  border-bottom: 2px #ffffff solid;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  padding: 16px 20px;
  text-align: center;
}
.support_team_list li .content {
  padding: 2rem 5rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 999.9px) {
  .support_team_list li .content {
    padding: 2rem;
  }
}
.support_team_list li .content dl {
  display: flex;
  margin-bottom: 8px;
}
.support_team_list li .content dl:last-child {
  margin-bottom: 0;
}
.support_team_list li .content dl dt {
  font-weight: 600;
}
.support_team_list li .content .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #D9383F;
}
.support_team_list li .content2 {
  padding: 3rem 10rem;
}

.support_info_content {
  position: relative;
  z-index: 3;
  margin-bottom: 60px;
}
@media (max-width: 999.9px) {
  .support_info_content {
    margin-bottom: 0;
  }
}
@media (max-width: 559.9px) {
  .support_info_content {
    padding: 0 1rem;
  }
}
.support_info_content .support_info_box {
  display: flex;
  gap: 3.6rem;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}
@media (max-width: 999.9px) {
  .support_info_content .support_info_box {
    margin-top: 3rem;
    gap: 24px;
  }
}
@media (max-width: 559.9px) {
  .support_info_content .support_info_box {
    flex-direction: column;
    gap: 16px;
  }
}
.support_info_content .support_info_box .support_info_item {
  max-width: 330px;
  width: calc((100% - 4.8rem) / 3);
}
@media (max-width: 559.9px) {
  .support_info_content .support_info_box .support_info_item {
    width: 280px;
  }
}
.support_info_content .support_info_box .support_info_item .img_area {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 220px;
}
.support_info_content .support_info_box .support_info_item .img_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.support_info_content .support_info_box .support_info_item .support_info_text {
  font-size: 2.2rem;
  text-align: center;
  color: #ffffff;
  padding: 1.2rem;
  width: 100%;
  background-color: #d1272e;
}
@media (max-width: 999.9px) {
  .support_info_content .support_info_box .support_info_item .support_info_text {
    font-size: 18px;
  }
}

.bg_logo {
  position: absolute;
  bottom: 3%;
  left: 6%;
  width: 30vw;
  z-index: 1;
}
.bg_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.bg_logo_r {
  right: 6%;
  left: auto;
}
@media (max-width: 559.9px) {
  .bg_logo {
    width: 80vw;
    left: -8%;
    bottom: 1%;
  }
}

.small-lot-range {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 30px auto 2px;
}

/**************
組立
**************/
.corres_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: #0E0E0E;
  padding: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .corres_content {
    flex-direction: column;
    gap: 16px;
  }
}
.corres_content .corres_item {
  max-width: 300px;
  width: calc((100% - 48px) / 3);
  position: relative;
}
@media (max-width: 559.9px) {
  .corres_content .corres_item {
    width: 260px;
  }
}
.corres_content .corres_item .corres_head {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.4rem;
  font-weight: 700;
  color: #D9383F;
  white-space: nowrap;
}
@media (max-width: 834.9px) {
  .corres_content .corres_item .corres_head {
    font-size: 18px;
  }
}
@media (max-width: 559.9px) {
  .corres_content .corres_item .corres_head {
    font-size: 2rem;
  }
}
.corres_content .corres_item .emphasis {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  font-weight: 700;
  color: #D9383F;
  white-space: nowrap;
}
@media (max-width: 999.9px) {
  .corres_content .corres_item .emphasis {
    font-size: 6vw;
  }
}
@media (max-width: 559.9px) {
  .corres_content .corres_item .emphasis {
    font-size: 5rem;
  }
}
.corres_content .corres_item .small_text {
  position: absolute;
  top: 54%;
  right: 10%;
  font-size: 1.8rem;
  color: #D9383F;
  white-space: nowrap;
  font-weight: 700;
}

.onayami_content {
  margin-bottom: 8rem;
  z-index: 2;
}
@media (max-width: 559.9px) {
  .onayami_content {
    margin-bottom: 4rem;
  }
}
.onayami_content .page_sub_text {
  margin-bottom: 1.6rem;
}
.onayami_content .onayami_inner {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 559.9px) {
  .onayami_content .onayami_inner {
    flex-direction: column;
    gap: 16px;
  }
}
.onayami_content .onayami_inner .onayami li {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 999.9px) {
  .onayami_content .onayami_inner .onayami li {
    font-size: 18px;
  }
}
@media (max-width: 559.9px) {
  .onayami_content .onayami_inner .onayami li {
    font-size: 16px;
  }
}
.onayami_content .onayami_inner .onayami li:last-child {
  margin-bottom: 0;
}
.onayami_content .onayami_inner .onayami li::before {
  content: "\f14a";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
  font-size: 2.8rem;
  color: #D9383F;
}
@media (max-width: 999.9px) {
  .onayami_content .onayami_inner .onayami li::before {
    font-size: 2rem;
  }
}
.onayami_content .onayami_inner .onayami li.blue::before {
  color: #3857D9;
}
.onayami_content .onayami_inner .onayami li.yellow::before {
  color: #F9DC4E;
}
.onayami_content .onayami_inner .onayami-img {
  width: 280px;
}
@media (max-width: 999.9px) {
  .onayami_content .onayami_inner .onayami-img {
    width: 28vw;
  }
}
@media (max-width: 559.9px) {
  .onayami_content .onayami_inner .onayami-img {
    width: 150px;
  }
}

.kaiketsu_content {
  padding: 10rem 5rem 80px;
  background-color: #fff7f7;
  position: relative;
  z-index: 1;
}
@media (max-width: 559.9px) {
  .kaiketsu_content {
    padding: 4rem 2rem 40px;
  }
}
.kaiketsu_content .angle_down {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 559.9px) {
  .kaiketsu_content .angle_down {
    width: 80px;
  }
}
.kaiketsu_content .kaiketsu_head {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 559.9px) {
  .kaiketsu_content .kaiketsu_head {
    font-size: 18px;
  }
}
.kaiketsu_content .kaiketsu_head .red {
  color: #D9383F;
  font-size: 4.6rem;
}
@media (max-width: 999.9px) {
  .kaiketsu_content .kaiketsu_head .red {
    font-size: 4rem;
  }
}
@media (max-width: 559.9px) {
  .kaiketsu_content .kaiketsu_head .red {
    font-size: 2.2rem;
  }
}
.kaiketsu_content .kaiketsu-img {
  position: absolute;
  bottom: 9%;
  left: 8%;
  width: 9vw;
  transform: scale(-1, 1);
}
@media (max-width: 834.9px) {
  .kaiketsu_content .kaiketsu-img {
    width: 112px;
    bottom: 1%;
    left: 3%;
  }
}
@media (max-width: 559.9px) {
  .kaiketsu_content .kaiketsu-img {
    display: none;
  }
}

/**************
トータルサポート
**************/
.jyuyo_content {
  width: 80%;
  background-color: #ffffff;
  padding: 5rem;
  margin: 30px auto 120px;
  border: 1px #0E0E0E solid;
}
@media (max-width: 559.9px) {
  .jyuyo_content {
    width: 90%;
    padding: 24px;
    margin-bottom: 50px;
  }
}
.jyuyo_content .jyuyo_content_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7rem;
  margin-top: 4rem;
}
@media (max-width: 999.9px) {
  .jyuyo_content .jyuyo_content_inner {
    gap: 3rem;
  }
}
@media (max-width: 834.9px) {
  .jyuyo_content .jyuyo_content_inner {
    flex-direction: column;
  }
}
@media (max-width: 559.9px) {
  .jyuyo_content .jyuyo_content_inner {
    margin-top: 2rem;
  }
}
.jyuyo_content .jyuyo_content_inner .text_area {
  width: calc(70% - 7rem);
  line-height: 2;
  font-size: 18px;
}
@media (max-width: 999.9px) {
  .jyuyo_content .jyuyo_content_inner .text_area {
    width: calc(70% - 3rem);
  }
}
@media (max-width: 834.9px) {
  .jyuyo_content .jyuyo_content_inner .text_area {
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .jyuyo_content .jyuyo_content_inner .text_area {
    font-size: 16px;
  }
}
.jyuyo_content .jyuyo_content_inner .img_area {
  width: 30%;
  max-width: 330px;
}
@media (max-width: 834.9px) {
  .jyuyo_content .jyuyo_content_inner .img_area {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 559.9px) {
  .jyuyo_content .jyuyo_content_inner .img_area {
    width: 260px;
  }
}

.flow_page_section {
  padding-bottom: 80px;
}
.flow_page_section .next_panel {
  margin-top: 13rem;
}
@media (max-width: 834.9px) {
  .flow_page_section .next_panel {
    margin-top: 8rem;
  }
}
@media (max-width: 559.9px) {
  .flow_page_section .next_panel {
    margin-top: 5rem;
  }
}

.delivery_flow .delivery_flow_item {
  background-color: #f5f5f5;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  position: relative;
  margin-top: 8rem;
}
@media (max-width: 559.9px) {
  .delivery_flow .delivery_flow_item {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }
}
.delivery_flow .delivery_flow_item:first-child {
  margin-top: 0;
}
.delivery_flow .delivery_flow_item:not(:last-child)::after {
  content: "";
  background-color: #D9383F;
  display: block;
  width: 3rem;
  height: 2rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
}
.delivery_flow .delivery_flow_item > dl {
  width: calc(100% - 5rem - 300px);
}
@media (max-width: 559.9px) {
  .delivery_flow .delivery_flow_item > dl {
    width: 100%;
  }
}
.delivery_flow .delivery_flow_item > dl dt .delivery_head {
  font-size: 3.6rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .delivery_flow .delivery_flow_item > dl dt .delivery_head {
    font-size: 2.6rem;
    text-align: center;
  }
}
.delivery_flow .delivery_flow_item > dl dd {
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .delivery_flow .delivery_flow_item > dl dd {
    margin-top: 1rem;
  }
}
.delivery_flow .delivery_flow_item .flow_img {
  width: 300px;
  aspect-ratio: 40/28;
  position: relative;
}
.delivery_flow .delivery_flow_item .flow_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.number {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #D9383F;
  margin-bottom: 0.8rem;
}
@media (max-width: 559.9px) {
  .number {
    margin-bottom: 0;
    font-size: 16px;
    text-align: center;
  }
}
.number span {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .number span {
    font-size: 22px;
  }
}

.flow_btn_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem 1.2rem;
  flex-wrap: wrap;
  margin-top: 24px;
}

.flow_btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  background-color: #0E0E0E;
  color: #ffffff;
  padding: 0.8rem 3rem;
  display: block;
  transition: all 0.2s ease;
}
.flow_btn:hover {
  background-color: #585858;
  color: #ffffff;
}

/**************
提案力
**************/
.proposal_illust {
  max-width: 1100px;
  width: 90%;
  margin: 6rem auto 120px;
  padding: 32px;
  background-color: #0E0E0E;
}
@media (max-width: 559.9px) {
  .proposal_illust {
    margin: 3rem auto 40px;
    padding: 12px;
  }
}
.proposal_illust .inner {
  background-color: #ffffff;
  padding: 6rem;
}
@media (max-width: 559.9px) {
  .proposal_illust .inner {
    padding: 1rem;
  }
}

.veva_content {
  margin: 0 auto;
  max-width: 1100px;
  width: 68%;
}
@media (max-width: 999.9px) {
  .veva_content {
    width: 80%;
  }
}
@media (max-width: 559.9px) {
  .veva_content {
    width: 92%;
  }
}
.veva_content .veva_item {
  margin-top: 5rem;
  padding: 6rem;
  background-color: #ffffff;
}
@media (max-width: 559.9px) {
  .veva_content .veva_item {
    margin-top: 2.4rem;
    padding: 3rem;
  }
}
.veva_content .veva_item .veva_head_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .veva_content .veva_item .veva_head_box {
    flex-direction: column;
    gap: 24px;
  }
}
.veva_content .veva_item .veva_head_box .text {
  font-size: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1.6rem;
}
@media (max-width: 559.9px) {
  .veva_content .veva_item .veva_head_box .text {
    font-size: 16px;
    justify-content: center;
  }
}
.veva_content .veva_item .veva_head_box .text .num {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #D9383F;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .veva_content .veva_item .veva_head_box .text .num {
    font-size: 3.6rem;
  }
}
.veva_content .veva_item .veva_head_box .text_side {
  width: calc(60% - 2rem);
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
@media (max-width: 559.9px) {
  .veva_content .veva_item .veva_head_box .text_side {
    width: 100%;
    gap: 12px;
  }
}
.veva_content .veva_item .veva_head_box .text_side .text {
  font-size: 18px;
}
.veva_content .veva_item .veva_head_box .text_side .head {
  font-size: 3.8rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .veva_content .veva_item .veva_head_box .text_side .head {
    font-size: 2.6rem;
    text-align: center;
  }
}
.veva_content .veva_item .veva_head_box .text_side .veva_dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #0E0E0E;
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 16px;
  font-size: 14px;
}
@media (max-width: 559.9px) {
  .veva_content .veva_item .veva_head_box .text_side .veva_dl {
    margin: 0 auto;
  }
}
.veva_content .veva_item .veva_head_box .img_side {
  width: 40%;
  max-width: 330px;
}
@media (max-width: 559.9px) {
  .veva_content .veva_item .veva_head_box .img_side {
    width: 100%;
  }
}
.veva_content .veva_item .veva_item_inner {
  margin-top: 2.4rem;
  padding: 4rem;
  border: 1px solid #D9383F;
  border-radius: 8px;
}
@media (max-width: 559.9px) {
  .veva_content .veva_item .veva_item_inner {
    padding: 24px;
  }
}
.veva_content .veva_item .veva_item_inner dl {
  margin-bottom: 2.4rem;
}
.veva_content .veva_item .veva_item_inner dl:last-child {
  margin-bottom: 0;
}
.veva_content .veva_item .veva_item_inner dl dt {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.8rem;
  position: relative;
}
.veva_content .veva_item .veva_item_inner dl dt::before {
  content: "";
  display: inline-block;
  background-color: #D9383F;
  width: 2rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.veva_content .veva_item .veva_item_inner dl dd {
  margin-top: 0.4rem;
}

/**************
品質力
**************/
.quality_content {
  margin: 0 auto;
  width: 68%;
  max-width: 1000px;
  position: relative;
}
@media (max-width: 999.9px) {
  .quality_content {
    width: 90%;
  }
}
.quality_content .quality_content_inner {
  display: flex;
  gap: 6rem;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .quality_content .quality_content_inner {
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }
}
.quality_content .quality_content_inner .text_side {
  line-height: 2;
}
.quality_content .quality_content_inner .quality_content_img {
  max-width: 330px;
}
@media (max-width: 999.9px) {
  .quality_content .quality_content_inner .quality_content_img {
    width: 250px;
  }
}
@media (max-width: 559.9px) {
  .quality_content .quality_content_inner .quality_content_img {
    margin: 0 auto;
  }
}
.quality_content .bg_logo_quality {
  position: absolute;
  top: 0;
  left: -29%;
  width: 28vw;
}
@media (max-width: 999.9px) {
  .quality_content .bg_logo_quality {
    top: 38%;
    left: -1%;
    width: 34vw;
  }
}
@media (max-width: 559.9px) {
  .quality_content .bg_logo_quality {
    top: 31%;
    left: -3%;
    width: 55vw;
  }
}

/**************
設備情報
**************/
.equip_content {
  margin-top: 5rem;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .equip_content {
    margin-top: 2rem;
    gap: 24px;
  }
}
.equip_content .equip_item {
  max-width: 330px;
  width: calc((100% - 8rem) / 3);
}
@media (max-width: 559.9px) {
  .equip_content .equip_item {
    width: 300px;
  }
}
.equip_content .equip_item .facility {
  text-align: center;
  font-weight: 700;
  margin-top: 0.8rem;
}
.equip_content .equip_item .model {
  text-align: center;
}

.facility_table_content {
  margin: 5rem 0 12rem;
}
@media (max-width: 559.9px) {
  .facility_table_content {
    margin: 3.2rem 0;
  }
}
.facility_table_content:last-child {
  margin-bottom: 0;
}
.facility_table_content .table_content_head {
  font-size: 2.4rem;
  text-align: center;
  position: relative;
  padding-bottom: 6px;
}
.facility_table_content .table_content_head::after {
  content: "";
  display: block;
  width: 5rem;
  height: 3px;
  background-color: #D9383F;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.facility_table_content .table_content_head.yellow::after {
  background-color: #F9DC4E;
}
.facility_table_content .table_item {
  margin-top: 7rem;
}
@media (max-width: 559.9px) {
  .facility_table_content .table_item {
    margin-top: 32px;
  }
}
.facility_table_content .table_item .table_head {
  font-size: 18px;
  margin-bottom: 2.4rem;
  padding-left: 10px;
  border-left: 4px #D9383F solid;
}
@media (max-width: 559.9px) {
  .facility_table_content .table_item .table_head {
    margin-bottom: 12px;
  }
}
.facility_table_content_blue .table_content_head::after {
  background-color: #3857D9;
}
.facility_table_content_blue .table_item .table_head {
  border-left: 4px #3857D9 solid;
}
.facility_table_content_yellow {
  margin: 0 auto;
}
.facility_table_content_yellow .table_content_head::after {
  background-color: #F9DC4E;
}
.facility_table_content_yellow .table_item .table_head {
  border-left: 4px #F9DC4E solid;
}

/**************
製品・提案事例
**************/
.product_filter {
  background-color: #f5f5f5;
  padding: 3.2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 5rem auto 0;
  width: 100%;
}
@media (max-width: 559.9px) {
  .product_filter {
    padding: 24px;
    margin: 2rem auto 0;
  }
}
.product_filter .filter_row {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 559.9px) {
  .product_filter .filter_row {
    display: block;
  }
}
.product_filter .filter_row + .filter_row {
  padding-top: 2rem;
  border-top: 1px solid #ffffff;
}
.product_filter .filter_row .filter_label {
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #0E0E0E;
  min-width: 8em;
  text-align: right;
  padding-right: 2rem;
  border-right: 2px solid #D9383F;
}
@media (max-width: 559.9px) {
  .product_filter .filter_row .filter_label {
    border-right: none;
    text-align: center;
    padding-right: 0;
    margin: 0 auto 18px;
    display: block;
    position: relative;
    line-height: 2.2;
  }
  .product_filter .filter_row .filter_label::after {
    content: "";
    display: block;
    width: 24px;
    height: 0.2rem;
    background-color: #D9383F;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}
.product_filter .filter_row .filter_checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
}
.product_filter .filter_check {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  color: #0E0E0E;
  transition: color 0.25s ease;
}
.product_filter .filter_check input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.6rem;
  height: 1.6rem;
  border: 1.5px solid #4c4c4c;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.product_filter .filter_check input[type=checkbox]:checked {
  background-color: #D9383F;
  border-color: #D9383F;
}
.product_filter .filter_check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 3px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.product_filter .filter_check:hover {
  color: #D9383F;
}
.product_filter .filter_check:hover input[type=checkbox] {
  border-color: #D9383F;
}

.product_category_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.product_category_box li {
  padding: 3px 20px;
  font-size: 12px;
  color: #ffffff;
  background-color: #D9383F;
  border-radius: 30px;
}

/***single***/
.single_wrap {
  width: 88%;
  margin: 0 auto;
}

.product_single {
  background-color: #ffffff;
  padding: 6rem;
}
@media (max-width: 559.9px) {
  .product_single {
    padding: 24px;
  }
}
.product_single .product_single_inner {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  margin-bottom: 6rem;
}
@media (max-width: 559.9px) {
  .product_single .product_single_inner {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 3rem;
  }
}
.product_single .product_single_inner .img_side {
  aspect-ratio: 340/233;
  width: 45%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .product_single .product_single_inner .img_side {
    width: 100%;
  }
}
.product_single .product_single_inner .img_side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.product_single .product_single_inner .text_side {
  width: calc(55% - 5rem);
}
@media (max-width: 559.9px) {
  .product_single .product_single_inner .text_side {
    width: 100%;
  }
}
.product_single .product_single_inner .text_side .product_name {
  margin-top: 2.4rem;
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 834.9px) {
  .product_single .product_single_inner .text_side .product_name {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .product_single .product_single_inner .text_side .product_name {
    margin-top: 16px;
  }
}
.product_single .product_single_inner .text_side .product_single_table {
  margin-top: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 834.9px) {
  .product_single .product_single_inner .text_side .product_single_table {
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .product_single .product_single_inner .text_side .product_single_table {
    margin-top: 2.4rem;
  }
}
.product_single .product_single_inner .text_side .product_single_table dl {
  display: flex;
  padding: 4px 0;
  gap: 1.2rem;
}
@media (max-width: 559.9px) {
  .product_single .product_single_inner .text_side .product_single_table dl {
    flex-direction: column;
    gap: 0;
  }
}
.product_single .product_single_inner .text_side .product_single_table dl dt {
  font-size: 14px;
  padding: 2px;
  width: 68px;
  background-color: #0E0E0E;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_single .product_single_inner .text_side .product_single_table dl dd {
  padding: 3px 0;
}
.product_single .p_single_sub_title {
  margin-bottom: 1.6rem;
}
@media (max-width: 559.9px) {
  .product_single .p_single_sub_title {
    margin-bottom: 8px;
  }
}

/**************
企業情報
**************/
.about_top_section {
  padding: 80px 0 100px;
  position: relative;
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .about_top_section {
    padding: 60px 0;
  }
}
@media (max-width: 559.9px) {
  .about_top_section {
    padding: 40px 0;
  }
}
.about_top_section .bg_logo_about {
  position: absolute;
  top: 41%;
  left: 5%;
  width: 30vw;
}
@media (max-width: 559.9px) {
  .about_top_section .bg_logo_about {
    width: 90vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

.page_link {
  margin-bottom: 100px;
}
@media (max-width: 559.9px) {
  .page_link {
    margin-bottom: 50px;
  }
}
.page_link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .page_link ul {
    gap: 4px 4px;
  }
}
.page_link ul li > a {
  padding: 5px 24px;
  background-color: #0E0E0E;
  color: #ffffff;
  font-size: 15px;
}
@media (max-width: 559.9px) {
  .page_link ul li > a {
    font-size: 12px;
    padding: 8px 12px;
  }
}
.page_link ul li > a:hover, .page_link ul li > a :active {
  background-color: #3c3c3c;
}

.greeting_content_inner {
  display: flex;
  gap: 8rem;
  align-items: center;
  margin-top: 6rem;
  justify-content: space-between;
}
@media (max-width: 559.9px) {
  .greeting_content_inner {
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }
}
.greeting_content_inner .text_area {
  width: 60%;
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 559.9px) {
  .greeting_content_inner .text_area {
    width: 100%;
    font-size: 16px;
  }
}
.greeting_content_inner .img_area {
  width: calc(40% - 8rem);
}
@media (max-width: 559.9px) {
  .greeting_content_inner .img_area {
    width: 100%;
  }
}
.greeting_content_inner .img_area .president-img {
  width: 100%;
}
.greeting_content_inner .img_area p {
  font-size: 20px;
  text-align: center;
  margin-top: 1.6rem;
}

.about_policy_section {
  padding: 100px 0;
  background: url(../images/page/about/policy-bg-white.jpg) center no-repeat;
  background-size: cover;
}
@media (max-width: 559.9px) {
  .about_policy_section {
    padding: 40px 0;
  }
}

.policy_content {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
@media (max-width: 559.9px) {
  .policy_content {
    margin-top: 4rem;
    gap: 4rem;
  }
}
.policy_content .policy_content_item .head {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-align: center;
}
.policy_content .policy_content_item > p {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  line-height: 2;
}
.policy_content .policy_content_item > p.about_policy {
  text-align: center;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 4vw;
  font-weight: 700;
  font-size: min(5rem, 5vw);
}
.policy_content .policy_content_item .mincho {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item .mincho {
    font-size: 1.5rem;
  }
}
.policy_content .policy_content_item .rinen {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2rem;
  font-weight: 400;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item .rinen {
    font-size: 1.5rem;
  }
}
.policy_content .policy_content_item .line_text {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.4rem;
  font-weight: 400;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item .line_text {
    font-size: 1.6rem;
  }
}
.policy_content .policy_content_item .line_text::before, .policy_content .policy_content_item .line_text::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #0E0E0E;
  width: 5rem;
  height: 1px;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item .line_text::before, .policy_content .policy_content_item .line_text::after {
    width: 10px;
  }
}
.policy_content .policy_content_item .line_text::before {
  left: -7rem;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item .line_text::before {
    left: -13px;
  }
}
.policy_content .policy_content_item .line_text::after {
  right: -7rem;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item .line_text::after {
    right: -13px;
  }
}
.policy_content .policy_content_item .line_text .ruby {
  font-size: 1rem;
  position: absolute;
  top: -8px;
  left: 65.5%;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item .line_text .ruby {
    font-size: 8px;
  }
}
.policy_content .policy_content_item ol {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.policy_content .policy_content_item ol.mt20 {
  margin-top: 20px;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item ol {
    margin-left: 16px;
  }
}
.policy_content .policy_content_item ol li {
  padding-left: 0.8rem;
  list-style: decimal;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 1.2rem;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item ol li {
    font-size: 15px;
    padding-left: 0;
  }
}
.policy_content .policy_content_item ol li:last-child {
  margin-bottom: 0;
}
.policy_content .policy_content_item ol li span {
  font-size: 2.2rem;
}
@media (max-width: 559.9px) {
  .policy_content .policy_content_item ol li span {
    font-size: 15px;
  }
}

.seiwan_page_section {
  background-color: #fffcfc;
  padding: 120px 0 160px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 834.9px) {
  .seiwan_page_section {
    padding: 80px 0 130px;
  }
}
@media (max-width: 559.9px) {
  .seiwan_page_section {
    padding: 50px 0;
  }
}
.seiwan_page_section .wrap {
  position: relative;
  z-index: 2;
}
.seiwan_page_section .seiwan-info {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-top: 5rem;
}
@media (max-width: 559.9px) {
  .seiwan_page_section .seiwan-info {
    padding-top: 4rem;
  }
}
.seiwan_page_section .seiwan-info .hukidashi {
  font-size: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  left: -10rem;
  transform: rotate(-8deg);
}
@media (max-width: 559.9px) {
  .seiwan_page_section .seiwan-info .hukidashi {
    font-size: 15px;
    left: -5rem;
  }
}
.seiwan_page_section .seiwan-info .hukidashi::before, .seiwan_page_section .seiwan-info .hukidashi::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #0E0E0E;
  top: 50%;
  position: absolute;
}
@media (max-width: 559.9px) {
  .seiwan_page_section .seiwan-info .hukidashi::before, .seiwan_page_section .seiwan-info .hukidashi::after {
    width: 16px;
  }
}
.seiwan_page_section .seiwan-info .hukidashi::before {
  left: -3rem;
  transform: translateY(-50%) rotate(60deg);
}
@media (max-width: 559.9px) {
  .seiwan_page_section .seiwan-info .hukidashi::before {
    left: -1.6rem;
  }
}
.seiwan_page_section .seiwan-info .hukidashi::after {
  right: -3rem;
  transform: translateY(-50%) rotate(-60deg);
}
@media (max-width: 559.9px) {
  .seiwan_page_section .seiwan-info .hukidashi::after {
    right: -1.6rem;
  }
}
@media (min-width: 560px) {
  .seiwan_page_section .seiwan-info .hukidashi br {
    display: none;
  }
}
.seiwan_page_section .seiwan-info .seiwan-logo {
  text-align: center;
  display: block;
  width: 400px;
}
@media (max-width: 559.9px) {
  .seiwan_page_section .seiwan-info .seiwan-logo {
    width: 200px;
  }
}
.seiwan_page_section .nikukyu {
  position: absolute;
  bottom: 4%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%) rotate(-15deg);
  opacity: 0.1;
  z-index: 1;
}
.seiwan_page_section .about-seiwan4 {
  position: absolute;
  bottom: 3%;
  right: 8%;
  z-index: 2;
  width: 190px;
}
@media (max-width: 1199.9px) {
  .seiwan_page_section .about-seiwan4 {
    right: 0;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .seiwan_page_section .about-seiwan4 {
    bottom: 0;
    width: 160px;
  }
}
@media (max-width: 559.9px) {
  .seiwan_page_section .about-seiwan4 {
    display: none;
  }
}

.seiwan_content {
  margin-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 999.9px) {
  .seiwan_content {
    gap: 3rem;
  }
}
@media (max-width: 559.9px) {
  .seiwan_content {
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }
}
.seiwan_content .text_area {
  width: 40%;
}
@media (max-width: 999.9px) {
  .seiwan_content .text_area {
    width: 50%;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .seiwan_content .text_area {
    width: calc(100% - 27vw);
  }
}
@media (max-width: 559.9px) {
  .seiwan_content .text_area {
    width: 100%;
  }
}
.seiwan_content .text_area .head {
  padding: 2rem 0;
  font-size: 20px;
}
@media (max-width: 559.9px) {
  .seiwan_content .text_area .head {
    text-align: center;
  }
}
.seiwan_content .text_area .intro {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.seiwan_content .text_area .intro dl {
  display: flex;
  border-bottom: 1px solid #f8e7e7;
  padding: 0 3px;
}
@media (max-width: 559.9px) {
  .seiwan_content .text_area .intro dl {
    flex-direction: column;
  }
}
.seiwan_content .text_area .intro dl dt {
  font-weight: 700;
  white-space: nowrap;
  padding: 5px 0;
}
@media (min-width: 560px) {
  .seiwan_content .text_area .intro dl dt {
    font-size: 1.85rem;
  }
}
@media (max-width: 559.9px) {
  .seiwan_content .text_area .intro dl dt {
    text-align: center;
    padding: 0;
  }
}
@media (max-width: 559.9px) {
  .seiwan_content .text_area .intro dl dt span {
    display: none;
  }
}
.seiwan_content .text_area .intro dl dd {
  padding: 5px 0;
}
@media (min-width: 560px) {
  .seiwan_content .text_area .intro dl dd {
    font-size: 1.85rem;
  }
}
@media (max-width: 559.9px) {
  .seiwan_content .text_area .intro dl dd {
    text-align: center;
  }
}
.seiwan_content .img_area {
  width: calc(40% - 8rem);
}
@media (max-width: 999.9px) {
  .seiwan_content .img_area {
    width: 27vw;
  }
}
@media (max-width: 559.9px) {
  .seiwan_content .img_area {
    width: 100%;
  }
}
.seiwan_content .about-seiwan {
  width: 350px;
}
@media (max-width: 999.9px) {
  .seiwan_content .about-seiwan {
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .seiwan_content .about-seiwan {
    opacity: 1;
    display: block;
    margin: 0 auto;
    width: 180px;
  }
}
.seiwan_content .about-seiwan3 {
  position: absolute;
  bottom: -12%;
  left: -2%;
  z-index: 2;
  width: 120px;
}
@media (max-width: 999.9px) {
  .seiwan_content .about-seiwan3 {
    left: -3%;
    width: 100px;
  }
}
@media (min-width: 560px) and (max-width: 834.9px) {
  .seiwan_content .about-seiwan3 {
    bottom: -31%;
  }
}
@media (max-width: 559.9px) {
  .seiwan_content .about-seiwan3 {
    display: none;
  }
}

.environmental_item {
  background-color: #ffffff;
  padding: 6rem;
  margin-bottom: 8rem;
}
@media (max-width: 559.9px) {
  .environmental_item {
    padding: 3rem;
    margin-bottom: 4rem;
  }
}
.environmental_item:last-child {
  margin-bottom: 0;
}
.environmental_item .sdgs_logo {
  max-width: 330px;
  width: 100%;
  margin: 0 auto 3rem;
  display: block;
}
.environmental_item .environmental_item_inner {
  margin-top: 4rem;
}
@media (max-width: 559.9px) {
  .environmental_item .environmental_item_inner {
    margin-top: 2rem;
  }
}
.environmental_item .environmental_item_inner .sdgs_img_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 559.9px) {
  .environmental_item .environmental_item_inner .sdgs_img_box {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.environmental_item .environmental_item_inner .sdgs_img_box img {
  width: 88px;
}
.environmental_item .environmental_item_inner ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto 0;
}
.environmental_item .head {
  font-size: 2rem;
  color: #D9383F;
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 559.9px) {
  .environmental_item .head {
    font-size: 18px;
    margin-top: 2rem;
  }
}
.environmental_item .head.black {
  color: #0E0E0E;
}
.environmental_item .text {
  margin-top: 2rem;
  text-align: center;
}
.environmental_item ol {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.environmental_item ol.mt4 {
  margin-top: 4rem;
}
.environmental_item ol li {
  list-style: decimal;
  padding-left: 1rem;
}

.map {
  width: 100%;
  aspect-ratio: 10/4;
}

.access_content {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 4rem;
}
@media (max-width: 559.9px) {
  .access_content {
    margin-top: 2rem;
    flex-direction: column;
    gap: 2rem;
  }
}
.access_content .access-img {
  width: 40%;
}
@media (max-width: 559.9px) {
  .access_content .access-img {
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .access_content .text_area {
    width: 100%;
  }
}
.access_content .text_area .access_info {
  margin-top: 3rem;
}
.access_content .text_area .access_info dt {
  font-weight: 700;
  padding-left: 10px;
  border-left: 3px #D9383F solid;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

/**************
新着情報
**************/
/***single***/
.news_single_head {
  display: flex;
  gap: 24px;
  margin-bottom: 2.4rem;
}
.news_single_head .date {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.news_single_head .tags {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 3px 3px;
}
.news_single_head .tags > span {
  background-color: #0E0E0E;
  color: white;
  font-size: 1.2rem;
  padding: 1px 8px;
}

.n-single_title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}

.n-single_thumb {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 3/2;
  position: relative;
}
.n-single_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.n-single_content {
  margin-top: 4rem;
}
@media (max-width: 559.9px) {
  .n-single_content {
    margin-top: 24px;
  }
}

/**************
お問い合わせ
**************/
.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .contact {
    margin-top: 2rem;
    gap: 16px;
  }
}

.contact_box {
  width: 37rem;
  border-radius: 16px;
  background-color: #0E0E0E;
}
@media (max-width: 559.9px) {
  .contact_box {
    width: 28rem;
  }
}
.contact_box > dt {
  color: #ffffff;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ffffff;
  height: 5.6rem;
}
.contact_box > dd {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  color: #ffffff;
}
@media (max-width: 559.9px) {
  .contact_box > dd {
    font-family: "Saira", Arial, Helvetica, sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
.contact_box > dd span {
  font-family: "Noto+Sans+JP";
  font-size: 2rem;
}

.mail_cont {
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .mail_cont {
    margin-top: 40px;
  }
}

.saiyou_link {
  color: #D9383F;
  font-weight: 700;
  transition: all 0.3s ease;
}
.saiyou_link:hover, .saiyou_link :active {
  color: #e68085;
}

.contact_table {
  width: 100%;
}
.contact_table tr th {
  border: 1px solid #4c4c4c;
  padding: 1.8rem 2.4rem;
  width: 32%;
  vertical-align: middle;
  text-align: left;
  background-color: #DCE1E4;
}
@media (max-width: 999.9px) {
  .contact_table tr th {
    display: block;
    padding: 1rem 0.5rem;
    width: 100%;
    text-align: left;
    border: none;
  }
}
@media (max-width: 559.9px) {
  .contact_table tr th {
    padding: 0.8rem 0.5rem;
  }
}
.contact_table tr th .hissu_cell {
  position: relative;
}
@media (max-width: 999.9px) {
  .contact_table tr th .hissu_cell {
    padding-left: 10px;
  }
}
.contact_table tr th .hissu_cell .hissu {
  background-color: #ffffff;
  border: 1px #4c4c4c solid;
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-block;
  padding: 0.4rem 1.1rem;
  position: absolute;
  right: 0;
  top: 50%;
  color: #D9383F;
  margin-top: -1.3rem;
}
@media (max-width: 999.9px) {
  .contact_table tr th .hissu_cell .hissu {
    padding: 0 0.7rem 0.1rem;
    margin-top: -1rem;
    margin-right: 1rem;
  }
}
.contact_table tr td {
  padding: 18px 24px;
  border: 1px solid #4c4c4c;
  width: 68%;
}
@media (max-width: 999.9px) {
  .contact_table tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0 20px;
    border: none;
  }
}
@media (max-width: 559.9px) {
  .contact_table tr td {
    padding: 8px 5px;
  }
}

.privacy_cont {
  width: 90%;
  margin: 5rem auto 0;
}
@media (max-width: 559.9px) {
  .privacy_cont {
    margin: 2rem auto 0;
  }
}
.privacy_cont .text {
  margin-bottom: 1rem;
}
@media (max-width: 559.9px) {
  .privacy_cont .text br {
    display: none;
  }
}

.privacy_policy {
  margin-top: 3rem;
  height: 50rem;
  padding: 3rem;
  border: 1px #4c4c4c solid;
  overflow-y: scroll;
}
@media (max-width: 559.9px) {
  .privacy_policy {
    width: 100%;
    padding: 1rem;
  }
}
@media (min-width: 560px) {
  .privacy_policy .privacy_policy_box {
    padding: 0 2.4rem;
  }
}
.privacy_policy .privacy_policy_box *:first-child {
  margin-top: 0;
}
.privacy_policy .privacy_policy_box ul {
  margin-top: 1rem;
}
.privacy_policy .privacy_policy_box p {
  margin-top: 1rem;
}
.privacy_policy .privacy_policy_box h3 {
  font-size: 110%;
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}
.privacy_policy .privacy_policy_box h4 {
  font-size: 105%;
  margin-top: 2rem;
}
.privacy_policy .privacy_policy_box h5 {
  margin-top: 1.5rem;
}

.privacyCheck {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 30px 0 15px;
}

input,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-input,
.c-select,
.c-textarea {
  background: #fff;
  border: 1px solid #d3d3d3;
  transition: background-color 100ms, border-color 100ms;
  width: 100%;
  box-sizing: border-box;
}

.c-select {
  padding: 5px 10px;
}

.c-input {
  height: 40px;
  padding: 2px 10px;
}
@media (max-width: 999.9px) {
  .c-input {
    height: auto;
    padding: 8px 10px;
    box-sizing: border-box;
  }
}

@media (min-width: 560px) {
  .c-select-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.c-select-list__item {
  display: flex;
  align-items: center;
}
@media (min-width: 560px) {
  .c-select-list__item {
    width: 32%;
  }
}
@media (max-width: 834.9px) {
  .c-select-list__item {
    width: 80%;
    margin-bottom: 4px;
  }
}

.c-radio-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px -5px 0;
  width: 100%;
}
.c-radio-list__item {
  margin: 0 0 5px 0;
}
@media (max-width: 999.9px) {
  .c-radio-list__item {
    text-align: left;
  }
}
.c-radio-list__item label {
  cursor: pointer;
  margin-right: 20px;
}
@media (max-width: 999.9px) {
  .c-radio-list__item label {
    margin-right: 10px;
  }
}

.c-radio {
  position: relative;
  top: -3px;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

.c-textarea {
  height: 200px;
  width: 100%;
  padding: 8px 10px;
}
@media (max-width: 999.9px) {
  .c-textarea {
    box-sizing: border-box;
    width: 100%;
    height: 120px;
  }
}

.form-btn {
  margin-top: 30px;
  text-align: center;
}

.form-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 640px;
  margin: 30px auto 0;
}
.form-btns.column {
  flex-direction: column;
}
.form-btns .btn {
  color: white;
  font-weight: bold;
  height: auto;
  width: calc(50% - 10px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1.6rem;
}

.c-submit,
.c-confirm,
.c-back {
  padding: 18px 0;
  text-align: center;
  width: 280px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .c-submit,
.c-confirm,
.c-back {
    transition: all 0.3s ease 0s;
  }
}
@media (max-width: 999.9px) {
  .c-submit,
.c-confirm,
.c-back {
    width: 48%;
    padding: 15px 0;
  }
}

.c-submit {
  border: 2px #1D2088 solid;
  color: #fff;
  background-color: #1D2088;
  font-weight: bold;
  font-size: 1.8rem;
}

.c-submit:hover {
  opacity: 0.8;
}

.c-confirm,
.c-back {
  border: 2px #777 solid;
  color: #777;
  background-color: #fff;
}

.c-confirm:hover,
.c-back:hover {
  background-color: #eee;
}

.btn-confirm, #btn_confirm {
  display: block;
  border: 1px #999 solid;
  border-radius: 5px;
  max-width: 400px;
  width: 90%;
  padding: 15px 0;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 auto;
  background-color: #ddd;
  transition: all 0.3s ease 0s;
  color: #0E0E0E;
}
.btn-confirm.hoverOn, .hoverOn#btn_confirm {
  border: 1px solid #5d3fff;
  background-color: #fff;
  color: #5d3fff;
  cursor: pointer;
}

.btns .btn {
  color: white;
  font-size: 22px;
  font-weight: 600;
  height: auto;
  width: 370px;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 18px 0;
  margin: 0 5px 20px;
}
@media (max-width: 999.9px) {
  .btns .btn {
    font-size: 18px;
    width: 90%;
    margin: 0 auto 20px;
  }
}

.wpcf7cp-btns {
  margin-top: 30px;
  text-align: center;
}
.wpcf7cp-btns button {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  height: auto;
  width: 370px;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 18px 0;
  margin: 0 5px 20px;
}
@media (max-width: 999.9px) {
  .wpcf7cp-btns button {
    font-size: 18px;
    width: 90%;
    margin: 0 auto 20px;
  }
}
.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background-color: #81c320;
  border-bottom: 3px solid #679b1b;
}
.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn:hover {
  background-color: #a2d400;
  border-color: #a2d400;
}
.wpcf7cp-btns button.wpcf7cp-cfm-submit-btn {
  background-color: #21b2c1;
  border-bottom: 3px solid #1d8691;
  border-color: #21b2c1 #21b2c1 #1d8691;
}
.wpcf7cp-btns button.wpcf7cp-cfm-submit-btn:hover {
  background-color: #2fccdc;
  border-bottom: 3px solid #1d8691;
  border-color: #2fccdc #2fccdc #2fccdc;
}

.btn-conta {
  color: white;
  font-size: 22px;
  font-weight: 600;
  height: 51px;
  width: 80%;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  text-align: center;
  padding-top: 18px;
  margin: 0 auto 20px;
  background-color: #333;
  border-bottom: 3px solid #888;
}
.btn-conta:hover {
  background-color: #555;
  border-bottom: 3px solid #999;
}

.btns .btn-primary {
  background-color: #81c320;
  border-color: #a2d400;
  border-bottom: 3px solid #679b1b;
}
.btns .btn-primary:hover {
  background-color: #a2d400;
  border-color: #a2d400;
}

.btn-back {
  background-color: #ccc;
}
.btn-back:hover {
  background-color: #ddd;
}

.btn-info {
  background-color: #21b2c1;
}
.btn-info:not(.btn-info:disabled):hover {
  background-color: #2fccdc;
}
.btn-info:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  border-radius: 50%;
  position: relative;
  top: -2px;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  border-radius: 50%;
}

.c-radio,
.c-checkbox {
  margin-right: 5px;
  position: relative;
  top: -0.1em;
}

.alert-block {
  border: 2px tomato solid;
  padding: 24px;
  color: red;
  font-weight: bold;
}

.help-block {
  display: block;
  color: tomato;
  font-size: 12px;
  font-weight: bold;
  margin-top: 3px;
}

.wpcf7-response-output {
  background-color: #fff0f0;
  text-align: center;
  color: red;
  padding: 24px !important;
  border-radius: 4px;
  border: none !important;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.3rem !important;
  font-weight: bold !important;
  margin-top: 3px !important;
}
/*# sourceMappingURL=styles.css.map */