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

body {
  color: #1B1B1B;
  font-size: 1.5em;
  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.8;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  letter-spacing: 0.04em;
}
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: 10;
}
@media (min-width: 560px) {
  #pagetop {
    width: 60px;
    height: 60px;
    bottom: -60px;
  }
}
@media (max-width: 820.9px) {
  #pagetop {
    width: 40px;
    height: 40px;
    bottom: -50px;
  }
}
#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

a {
  text-decoration: none;
  color: #284B7D;
  outline: none;
  font-weight: bold;
}
a:hover {
  color: #5f79ad;
}

/**************
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: 80px 0 40px;
}
@media (max-width: 1199.9px) {
  .page_section {
    padding: 40px 0;
  }
}
@media (max-width: 559.9px) {
  .page_section {
    padding: 30px 0;
  }
}
.page_section.pb80 {
  padding-bottom: 80px;
}
@media (max-width: 820.9px) {
  .page_section.pb80 {
    padding-bottom: 40px;
  }
}
.page_section.ptb80 {
  padding: 80px 0;
}
@media (max-width: 820.9px) {
  .page_section.ptb80 {
    padding: 40px 0;
  }
}
.page_section.pb0 {
  padding-bottom: 0;
}
.page_section__white {
  background-color: #fff;
}
.page_section__gray {
  background-color: #DADADA;
}
.page_section__black {
  background-color: #1B1B1B;
}
.page_section__bgBlue {
  background-color: #F1F6FA;
}
.page_section__lightGray {
  background-color: #F5F5F5;
}
.page_section__darkGray {
  background-color: #595757;
}
.page_section__lavender {
  background-color: #EDE7F6;
}

/**************
Header
**************/
#header {
  z-index: 10;
  width: 100%;
  height: 96px;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background-color: transparent;
  position: fixed;
  left: 0;
}
@media (max-width: 559.9px) {
  #header {
    height: 64px;
  }
}
#header.fixed {
  background-color: #FFFFFF;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  top: 0;
}

.header_inner {
  position: relative;
  width: 97%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 559.9px) {
  .header_inner {
    width: 85%;
  }
}

.header_logo {
  text-align: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media (min-width: 560px) {
  .header_logo {
    width: 180px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .header_logo {
    width: 160px;
  }
}
@media (max-width: 559.9px) {
  .header_logo {
    width: 144px;
  }
}
.header_logo img {
  display: block;
  max-width: 100%;
  transition: opacity 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  opacity: 1;
}
.fixed .header_logo {
  background: url(../images/common/logo.png) no-repeat center;
  background-size: contain;
}
.fixed .header_logo img {
  opacity: 0;
}

@media (min-width: 1200px) {
  .global_navi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    margin-left: auto;
  }
}
@media (max-width: 1199.9px) {
  .global_navi {
    height: 100%;
    position: fixed;
    top: 0;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    overflow: auto;
    z-index: 11;
    background-color: #FFFFFF;
    box-shadow: -2px 0 3px rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .global_navi {
    width: 400px;
    right: -440px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .global_navi {
    width: 400px;
    right: -440px;
  }
}
@media (max-width: 559.9px) {
  .global_navi {
    width: 100vw;
    left: 100%;
    top: 0;
    height: 100vh;
    padding-top: 96px;
  }
}

@media (min-width: 821px) and (max-width: 1199.9px) {
  .opened .global_navi {
    right: 0;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .opened .global_navi {
    right: 0;
  }
}
@media (max-width: 559.9px) {
  .opened .global_navi {
    left: 0;
  }
}

.navi_ul {
  position: relative;
}
@media (min-width: 1200px) {
  .navi_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-right: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.9px) {
  .navi_ul {
    gap: 8px;
  }
}
@media (max-width: 1199.9px) {
  .navi_ul {
    width: 80%;
    margin: 0 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .navi_ul {
    margin-top: 120px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .navi_ul {
    margin-top: 120px;
  }
}
@media (max-width: 559.9px) {
  .navi_ul {
    padding-bottom: 10px;
  }
}
.navi_ul > li {
  position: relative;
}
@media (min-width: 1440px) {
  .navi_ul > li {
    height: 100%;
    margin: 0 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.9px) {
  .navi_ul > li {
    height: 100%;
  }
}
@media (max-width: 1199.9px) {
  .navi_ul > li {
    margin-bottom: 8px;
  }
}
.navi_ul > li::after {
  content: "";
  display: block;
  width: 100%;
  background-color: white;
  height: 2px;
  max-width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: max-width 0.3s ease;
}
.navi_ul > li.toggle {
  position: relative;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .navi_ul > li.toggle:hover .megamenu {
    max-height: 9999px;
    opacity: 1;
  }
}
.navi_ul > li:hover::after {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .fixed .navi_ul > li::after {
    background: #003C97;
  }
}

.header-nav-item {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  color: #FFFFFF;
  gap: 10px;
}
@media (min-width: 1200px) {
  .header-nav-item {
    width: 100%;
    height: 100%;
    position: relative;
    font-weight: bold;
    padding: 0 3px;
    cursor: pointer;
    color: #FFFFFF;
  }
  .header-nav-item:hover {
    color: white;
  }
}
@media (max-width: 1199.9px) {
  .header-nav-item {
    color: #1B1B1B;
    padding: 8px 0;
    display: block;
    width: 100%;
    line-height: 1.3;
  }
  .header-nav-item:hover {
    color: #67569E;
  }
}
@media (min-width: 1200px) {
  .fixed .header-nav-item {
    color: #1B1B1B;
  }
  .fixed .header-nav-item:hover {
    color: #67569E;
  }
}

.megamenu {
  background-color: #1B1B1B;
  border-radius: 4px;
}
@media (min-width: 1200px) {
  .megamenu {
    transition: all 0.6s ease-in;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: 160px;
    z-index: 4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
  }
  .megamenu.w200 {
    width: 200px;
  }
  .megamenu.w240 {
    width: 240px;
  }
}
@media (max-width: 1199.9px) {
  .megamenu {
    display: none;
    padding: 6px 0 12px 0;
    margin-top: 4px;
  }
}
@media (min-width: 1200px) {
  .megamenu .inner_ul {
    padding: 3px 0 0;
  }
}
@media (max-width: 1199.9px) {
  .megamenu .inner_ul {
    margin-top: 16px;
    padding: 0 24px 12px;
  }
}
.megamenu .inner_ul li {
  padding: 3px 0 0;
}
.megamenu .inner_ul li a {
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
@media (min-width: 1200px) {
  .megamenu .inner_ul li a {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .megamenu .inner_ul li a:hover {
    color: #95a9bb;
  }
}
@media (max-width: 1199.9px) {
  .megamenu .inner_ul li a {
    display: block;
    position: relative;
    font-size: 1.3rem;
    justify-content: flex-start;
    text-align: left;
    padding: 5px 0 5px 12px;
  }
}
@media (min-width: 1200px) {
  .megamenu .inner_ul .less-spc {
    display: none;
  }
}
.fixed .megamenu .inner_ul li a {
  color: #FFFFFF;
}
.fixed .megamenu .inner_ul li a:hover, .fixed .megamenu .inner_ul li a :active {
  color: #95a9bb;
}

.header_buttons {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}
@media (max-width: 1199.9px) {
  .header_buttons {
    max-width: 296px;
    margin: 20px auto 0;
    flex-direction: column;
  }
}
.header_buttons a {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.header_buttons a:hover.header_button-contact {
  background-color: rgba(40, 75, 125, 0.7);
}
.header_buttons a.header_button-faq {
  height: 48px;
  background-color: #284B7D;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.4rem;
  gap: 8px;
  border-radius: 4px;
}
.header_buttons a.header_button-faq:hover, .header_buttons a.header_button-faq :active {
  background-color: #4074bb;
}
.header_buttons a.header_button-faq i {
  color: #FFFFFF;
}
.header_buttons a.header_button-contact {
  height: 48px;
  background-color: #67569E;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.4rem;
  gap: 8px;
  border-radius: 4px;
}
.header_buttons a.header_button-contact > img {
  width: 20px;
}
.header_buttons a.header_button-contact:hover, .header_buttons a.header_button-contact :active {
  background-color: rgba(103, 86, 158, 0.8);
}

.header_buttons_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}
@media (min-width: 1200px) {
  .header_buttons_inner {
    width: 294px;
  }
}
.header_buttons_inner .question_hb {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 10px;
}
@media (max-width: 1199.9px) {
  .header_buttons_inner .question_hb {
    margin-top: 10px;
  }
}
.header_buttons_inner .question_hb .text {
  font-size: 1.4rem;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.header_buttons_inner .question_hb i {
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.header_buttons_inner .question_hb:hover .text, .header_buttons_inner .question_hb :active .text {
  color: #FFD700;
  opacity: 0.7;
}
.header_buttons_inner .question_hb:hover i, .header_buttons_inner .question_hb :active i {
  color: #FFD700;
  opacity: 0.7;
}
.fixed .header_buttons_inner .question_hb .text {
  color: #1B1B1B;
}
.fixed .header_buttons_inner .question_hb i {
  color: #1B1B1B;
}
.fixed .header_buttons_inner .question_hb:hover .text, .fixed .header_buttons_inner .question_hb :active .text {
  color: #67569E;
}
.fixed .header_buttons_inner .question_hb:hover i, .fixed .header_buttons_inner .question_hb :active i {
  color: #67569E;
}

.icon-mail {
  width: 20px;
  height: 20px;
  background: url(../images/icon/icon-mail-white.png) no-repeat;
  background-size: cover;
  display: block;
}

@media (min-width: 1200px) {
  .menuBtn {
    display: none;
  }
}
@media (max-width: 1199.9px) {
  .menuBtn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    z-index: 11;
    width: 50px;
    height: 50px;
    background-color: #EDE7F6;
    border: 1px #1B1B1B solid;
    transition: all 0.3s ease-in-out 0.2s;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .menuBtn {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 1199.9px) {
  .menuBtn .nav-open {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
  }
}
@media (max-width: 1199.9px) {
  .menuBtn .nav-open span,
.menuBtn .nav-open span:before,
.menuBtn .nav-open span:after {
    position: absolute;
    background: #1B1B1B;
    display: block;
    content: "";
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    height: 2px;
    width: 20px;
    border-radius: 1px;
  }
}
@media (max-width: 1199.9px) {
  .menuBtn .nav-open span::before {
    bottom: 8px;
  }
}
@media (max-width: 1199.9px) {
  .menuBtn .nav-open span::after {
    bottom: -8px;
  }
}
.menuBtn.menu-open {
  -webkit-animation: menuClose 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: menuClose 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  right: 16px;
  top: 16px;
  width: 56px;
  height: 56px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 559.9px) {
  .menuBtn.menu-open {
    right: 0;
  }
}
@media (max-width: 1199.9px) {
  .menuBtn.menu-open .nav-open span {
    background-color: transparent;
  }
}
@media (max-width: 1199.9px) {
  .menuBtn.menu-open .nav-open span::before, .menuBtn.menu-open .nav-open span::after {
    height: 2px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    top: 0px;
    left: 0;
    content: "";
  }
}
.menuBtn.menu-open .nav-open span::before {
  transform: rotate(45deg);
}
.menuBtn.menu-open .nav-open span::after {
  transform: rotate(-45deg);
}

@-webkit-keyframes menuClose {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes menuClose {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/**************
WordPressログイン時
**************/
@media (min-width: 560px) {
  .admin-bar #header {
    top: 32px;
  }
}
@media (min-width: 1200px) {
  .admin-bar .fixed-header .megamenu {
    top: 108px;
  }
}
@media (min-width: 1200px) {
  .admin-bar .megamenu {
    top: 152px;
  }
}
@media (min-width: 1200px) {
  .admin-bar .fixed .megamenu {
    top: 126px;
  }
}

/**************
Footer
**************/
.footer-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  color: #FFFFFF;
}
.footer-title .jp {
  font-size: min(4.4rem, 4vw);
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .footer-title .jp {
    font-size: 3rem;
  }
}
.footer-title .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 559.9px) {
  .footer-title .eng {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }
}

.foot_cta {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background-color: #67569E;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .foot_cta {
    padding: 40px 0;
  }
}
@media (max-width: 559.9px) {
  .foot_cta {
    padding: 40px 0;
  }
}
.foot_cta .foot_cta_wrap {
  width: 80%;
  margin: 60px auto 0;
}
@media (min-width: 560px) {
  .foot_cta .foot_cta_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .foot_cta .foot_cta_wrap {
    margin-top: 10px;
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .foot_cta_wrap {
    width: 100%;
    margin-top: 20px;
  }
}
.foot_cta .fcta_column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  flex-wrap: wrap;
  padding: 0 1vw;
  gap: 0.5vw;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .foot_cta .fcta_column {
    padding: 0 24px;
  }
}
@media (min-width: 560px) {
  .foot_cta .fcta_column:first-child {
    border-right: 1px #D9D9D9 solid;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .fcta_column:first-child {
    border-bottom: 1px #D9D9D9 solid;
    padding-bottom: 20px;
  }
}
@media (min-width: 560px) {
  .foot_cta .fcta_column {
    width: 50%;
    transition: all 0.3s ease;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .fcta_column {
    width: 100%;
    margin-bottom: 25px;
  }
  .foot_cta .fcta_column:last-child {
    margin-bottom: 0;
  }
}
.foot_cta .fcta_column .txt {
  font-weight: bold;
  font-size: 2.1rem;
  color: white;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .foot_cta .fcta_column .txt {
    font-size: 2rem;
  }
}
@media (max-width: 820.9px) {
  .foot_cta .fcta_column .txt {
    font-size: 1.6rem;
  }
}
.foot_cta .fcta_column .txt_mini {
  color: white;
  font-size: 1.5rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .foot_cta .fcta_column .txt_mini {
    font-size: 1.2rem;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .fcta_column .txt_mini {
    font-size: 1.4rem;
  }
}
.foot_cta .fcta_column .telNum {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1;
  font-size: min(4.3rem, 4vw);
  color: white;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .foot_cta .fcta_column .telNum {
    margin-top: 8px;
    line-height: 1;
    padding-top: 8px;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .fcta_column .telNum {
    font-size: 3rem;
    margin-top: 8px;
    line-height: 1;
    padding-top: 8px;
  }
}
.foot_cta .fcta_column .telNum .pack39 {
  color: white;
  font-size: 1rem;
  position: absolute;
  right: 10px;
  top: -10px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .foot_cta .fcta_column .telNum .pack39 {
    right: -1px;
    top: 0;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .fcta_column .telNum .pack39 {
    right: -3px;
    top: 2px;
  }
}
.foot_cta .fcta_column .telNum a {
  color: white;
  text-decoration: none;
}
.foot_cta .fcta_column .btn_box-mt20 {
  margin-top: 20px;
}

#footer {
  bottom: 0;
  box-sizing: border-box;
  background-color: #EDE7F6;
  padding: 80px 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #footer {
    padding: 56px 0;
  }
}
@media (max-width: 559.9px) {
  #footer {
    padding-top: 40px;
  }
}

.footer_inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 900px;
}
@media (max-width: 559.9px) {
  .footer_inner {
    padding-bottom: 0;
  }
}

.footer_body {
  width: 100%;
  gap: 5vw 8%;
}
@media (min-width: 560px) {
  .footer_body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .footer_body {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}

.footer_left {
  width: 130px;
}
@media (max-width: 820.9px) {
  .footer_left {
    width: 100%;
  }
}

.footer_right {
  width: calc(95% - 130px);
}
@media (max-width: 820.9px) {
  .footer_right {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}

.footer_right_flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .footer_right_flex {
    align-items: center;
    justify-content: center;
  }
}

.footer-logo-img {
  width: 130px;
}
@media (max-width: 820.9px) {
  .footer-logo-img {
    width: 80px;
    margin: 0 auto;
  }
}

.footer_info {
  font-size: 1.5rem;
  width: 60%;
}
@media (max-width: 559.9px) {
  .footer_info {
    width: 100%;
  }
}

.sns_box .sns-img {
  margin-right: 10px;
}
.sns_box .sns-img:last-child {
  margin-right: 0;
}

.footer_navi {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 40%;
}
@media (max-width: 820.9px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi .foot_navi_column .head {
  margin-bottom: 4px;
  color: #1B1B1B;
}
.footer_navi .foot_navi_column .head a {
  color: #1B1B1B;
  transition: all 0.2s ease;
}
.footer_navi .foot_navi_column .head a:hover, .footer_navi .foot_navi_column .head a :active {
  color: #67569E;
}
.footer_navi .foot_navi_column ul {
  margin-left: 10px;
  margin-bottom: 5px;
}
.footer_navi .foot_navi_column ul > li {
  position: relative;
  padding-left: 12px;
}
.footer_navi .foot_navi_column ul > li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer_navi .foot_navi_column ul > li > a {
  color: #1B1B1B;
}
.footer_navi .foot_navi_column ul > li:hover > a, .footer_navi .foot_navi_column ul > li :active > a {
  color: #DADADA;
}

.footer-img-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 820.9px) {
  .footer-img-box {
    justify-content: center;
  }
}
.footer-img-box > a img {
  height: 70px;
}
.footer-img-box .emidas {
  margin-right: 40px;
}
.footer-img-box .emidas:last-child {
  margin-right: 0;
}
@media (max-width: 559.9px) {
  .footer-img-box .emidas {
    margin-right: 7px;
  }
}

.footer_bottom {
  width: 100%;
  margin-top: 60px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .footer_bottom {
    margin: 40px auto 0;
  }
}
@media (max-width: 559.9px) {
  .footer_bottom {
    margin-top: 32px;
    flex-direction: column;
  }
}
.footer_bottom .nc-logo {
  display: block;
  width: 200px;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .footer_bottom .nc-logo {
    width: 180px;
    margin: 30px auto 0;
  }
}

.copyright {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1B1B1B;
  padding: 24px 0;
}
@media (max-width: 820.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: 820.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: #003C97;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .title2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 820.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: 820.9px) {
  .title3 {
    font-size: 1.7rem;
  }
}
.title3::before {
  display: inline-block;
  content: "";
  width: 5px;
  height: 90%;
  background-color: #003C97;
  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: #003C97;
  position: absolute;
  left: 0;
  top: 10%;
}

.top-title-undertext {
  margin-bottom: 20px;
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .top-title-undertext {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }
}

.top-title {
  margin-bottom: 40px;
}
@media (max-width: 559.9px) {
  .top-title {
    margin-bottom: 20px;
  }
}
.top-title .jp {
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .top-title .jp {
    font-size: 1.6rem;
  }
}
.top-title .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(8rem, 7.6vw);
  color: #67569E;
  letter-spacing: 0.8rem;
  text-transform: uppercase;
}
@media (max-width: 559.9px) {
  .top-title .eng {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
  }
}
.top-title.animation .jp {
  opacity: 0;
}
.top-title.animation .eng {
  opacity: 0;
}
.top-title.animation.moved .jp {
  -webkit-animation: slideIn 0.4s ease forwards;
          animation: slideIn 0.4s ease forwards;
}
.top-title.animation.moved .eng {
  -webkit-animation: slideIn 0.4s ease 0.3s forwards;
          animation: slideIn 0.4s ease 0.3s forwards;
}

.title-backgroundImg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .title-backgroundImg {
    width: 540px;
    height: 540px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .title-backgroundImg {
    width: 384px;
    height: 384px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .title-backgroundImg {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 559.9px) {
  .title-backgroundImg {
    width: 80%;
    aspect-ratio: 1/1;
    margin: 0 auto;
  }
}
.title-backgroundImg::before, .title-backgroundImg::after {
  content: "";
  display: block;
  transform: rotate(0) translate(-50%, -50%) scale(0);
  position: absolute;
  left: 13%;
  top: 66%;
}
@media (min-width: 1200px) {
  .title-backgroundImg::before, .title-backgroundImg::after {
    width: 380px;
    height: 380px;
    border-radius: 24px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .title-backgroundImg::before, .title-backgroundImg::after {
    width: 280px;
    height: 280px;
    border-radius: 20px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .title-backgroundImg::before, .title-backgroundImg::after {
    width: 240px;
    height: 240px;
    border-radius: 20px;
  }
}
@media (max-width: 559.9px) {
  .title-backgroundImg::before, .title-backgroundImg::after {
    width: 72%;
    top: 62%;
    aspect-ratio: 1/1;
    border-radius: 2vw;
  }
}
.title-backgroundImg::before {
  background-color: #67569E;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.5s;
}
.title-backgroundImg::after {
  background-color: #F2E85C;
  margin-left: 20px;
  transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.3s;
  z-index: 1;
}
.title-backgroundImg .charactor-white {
  display: block;
  width: 133px;
  position: absolute;
  left: 100%;
  top: 50%;
  z-index: 3;
  opacity: 0.2;
}
@media (max-width: 820.9px) {
  .title-backgroundImg .charactor-white {
    width: 96px;
  }
}
.title-backgroundImg .text_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -50%);
  z-index: 3;
}
.title-backgroundImg .text_box .jp {
  font-size: min(4.8rem, 3vw);
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
}
@media (max-width: 559.9px) {
  .title-backgroundImg .text_box .jp {
    font-size: 2.4rem;
  }
}
.title-backgroundImg .text_box .eng {
  text-transform: uppercase;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  font-size: min(2.4rem, 2vw);
  color: #FFD700;
  text-align: center;
  opacity: 0;
}
@media (max-width: 559.9px) {
  .title-backgroundImg .text_box .eng {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
  }
}
.title-backgroundImg.moved::before, .title-backgroundImg.moved::after {
  transform: rotate(45deg) translate(-50%, -50%) scale(1);
}
.title-backgroundImg.moved .charactor-white {
  -webkit-animation: charactor-in 1.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.8s forwards;
          animation: charactor-in 1.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.8s forwards;
}
.title-backgroundImg.moved .text_box .jp {
  -webkit-animation: blurIn 0.3s ease 1s forwards;
          animation: blurIn 0.3s ease 1s forwards;
}
.title-backgroundImg.moved .text_box .eng {
  -webkit-animation: blurIn 0.3s ease 1.2s forwards;
          animation: blurIn 0.3s ease 1.2s forwards;
}

@-webkit-keyframes charactor-in {
  0% {
    left: 100%;
    transform: translate(-50%, -50%) rotate(0deg);
    transform: rotate(0deg);
  }
  20% {
    left: 90%;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  40% {
    left: 80%;
    transform: translate(-50%, -50%) rotate(15deg);
  }
  60% {
    left: 70%;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  80% {
    left: 60%;
    transform: translate(-50%, -50%) rotate(25deg);
  }
  100% {
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes charactor-in {
  0% {
    left: 100%;
    transform: translate(-50%, -50%) rotate(0deg);
    transform: rotate(0deg);
  }
  20% {
    left: 90%;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  40% {
    left: 80%;
    transform: translate(-50%, -50%) rotate(15deg);
  }
  60% {
    left: 70%;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  80% {
    left: 60%;
    transform: translate(-50%, -50%) rotate(25deg);
  }
  100% {
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.title-backgroundImg-small {
  background: url(../images/common/title-big.png) no-repeat center;
  background-size: cover;
  width: 20vw;
  aspect-ratio: 1/1;
  position: relative;
}
@media (max-width: 559.9px) {
  .title-backgroundImg-small {
    width: 40vw;
    margin: 0 auto;
  }
}
.title-backgroundImg-small .text_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -50%);
}
.title-backgroundImg-small .text_box .jp {
  font-size: min(2rem, 1.8vw);
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 559.9px) {
  .title-backgroundImg-small .text_box .jp {
    font-size: 1.6rem;
  }
}
.title-backgroundImg-small .text_box .eng {
  text-transform: uppercase;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #FFD700;
  text-align: center;
}
@media (max-width: 559.9px) {
  .title-backgroundImg-small .text_box .eng {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
  }
}

.deco-title {
  font-size: min(4.8rem, 4vw);
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 60px;
}
@media (max-width: 559.9px) {
  .deco-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.deco-title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #67569E;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: -50px;
}
@media (max-width: 559.9px) {
  .deco-title::before {
    left: -30px;
  }
}
.deco-title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #67569E;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: -50px;
}
@media (max-width: 559.9px) {
  .deco-title::after {
    right: -30px;
  }
}

.small-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (max-width: 559.9px) {
  .small-title {
    margin-bottom: 20px;
  }
}
.small-title .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .small-title .eng {
    font-size: 1.6rem;
  }
}
.small-title .jp {
  font-size: 3.4rem;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .small-title .jp {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .small-title .jp {
    font-size: 2.4rem;
  }
}

.underLine-title {
  display: inline-block;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.underLine-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #d9d9d9;
  display: block;
  left: 0;
  bottom: 20px;
}
.underLine-title .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  font-size: min(12rem, 10vw);
  line-height: 1;
}
@media (max-width: 559.9px) {
  .underLine-title .eng {
    font-size: 4rem;
  }
}
.underLine-title .jp {
  display: inline-block;
  font-size: 2.4rem;
  background-color: #F1F6FA;
  padding-right: 20px;
  position: relative;
  z-index: 3;
}
@media (max-width: 559.9px) {
  .underLine-title .jp {
    font-size: 1.8rem;
  }
}

.leftLine-title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
@media (max-width: 559.9px) {
  .leftLine-title {
    font-size: 2rem;
  }
}
.leftLine-title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  background-color: #FFD700;
  width: 8px;
  height: 100%;
}
.leftLine-title.small {
  font-size: min(1.8rem, 2.8vw);
}
.leftLine-title.small::before {
  width: 6px;
}
@media (max-width: 559.9px) {
  .leftLine-title.small {
    font-size: 1.8rem;
  }
}
.leftLine-title.middle {
  font-size: min(2.8rem, 2.4vw);
}
@media (max-width: 559.9px) {
  .leftLine-title.middle {
    font-size: 1.8rem;
  }
}

.leftSquare-title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
@media (max-width: 559.9px) {
  .leftSquare-title {
    font-size: 2rem;
    margin-bottom: 12px;
    padding-left: 25px;
  }
}
.leftSquare-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background-color: #F1F6FA;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px #1B1B1B solid;
}
@media (max-width: 559.9px) {
  .leftSquare-title::before {
    width: 15px;
    height: 15px;
  }
}
.leftSquare-title.small {
  font-size: min(1.8rem, 2.8vw);
}
.leftSquare-title.small::before {
  width: 10px;
  height: 10px;
}
@media (max-width: 559.9px) {
  .leftSquare-title.small {
    font-size: 1.8rem;
  }
}
.leftSquare-title.middle {
  font-size: min(2.8rem, 2.4vw);
}
@media (max-width: 559.9px) {
  .leftSquare-title.middle {
    font-size: 1.8rem;
  }
}

.topSquare-title {
  font-size: 3.2rem;
  text-align: center;
  margin: 27px 0 30px;
  font-weight: bold;
  position: relative;
}
@media (max-width: 559.9px) {
  .topSquare-title {
    font-size: 2.4rem;
    margin: 30px 0 20px;
  }
}
.topSquare-title::before {
  position: absolute;
  top: -21px;
  left: 50.2%;
  content: "";
  display: inline-block;
  border: 1px #FFFFFF solid;
  background-color: #1B1B1B;
  width: 14px;
  height: 14px;
}
@media (max-width: 1199.9px) {
  .topSquare-title::before {
    left: 50.4%;
  }
}
@media (max-width: 559.9px) {
  .topSquare-title::before {
    left: 51%;
  }
}
.topSquare-title::after {
  position: absolute;
  top: -26px;
  left: 49.8%;
  content: "";
  display: inline-block;
  border: 2px #1B1B1B solid;
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
}
@media (max-width: 1199.9px) {
  .topSquare-title::after {
    left: 49.6%;
  }
}
@media (max-width: 559.9px) {
  .topSquare-title::after {
    left: 49%;
  }
}
.topSquare-title.nuanceG::before {
  border: 1px #95a9bb solid;
}
.topSquare-title.small {
  font-size: min(1.8rem, 2.8vw);
}
.topSquare-title.small::before {
  width: 10px;
  height: 10px;
}
@media (max-width: 559.9px) {
  .topSquare-title.small {
    font-size: 1.8rem;
  }
}
.topSquare-title.middle {
  font-size: min(2.8rem, 2.4vw);
}
@media (max-width: 559.9px) {
  .topSquare-title.middle {
    font-size: 1.8rem;
  }
}
.topSquare-title.beaf-none {
  margin-top: 0;
}
.topSquare-title.beaf-none::before {
  display: none;
}
.topSquare-title.beaf-none::after {
  display: none;
}
.topSquare-title.mb85 {
  margin-bottom: 85px;
}
@media (max-width: 559.9px) {
  .topSquare-title.mb85 {
    margin-bottom: 50px;
  }
}
.topSquare-title .fa-microphone-alt {
  position: absolute;
  color: #FFFFFF;
  font-size: 25px;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}

@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: #1B1B1B;
  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: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #003C97;
  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: #003C97;
    position: absolute;
    left: 0;
    top: 12%;
  }
}

.center-title {
  font-size: min(3.2rem, 3vw);
  text-align: center;
  margin: 50px 0 30px;
  font-weight: bold;
}
.center-title.mt0 {
  margin-top: 0;
}
.center-title span {
  color: #67569E;
  font-size: 6.4rem;
}
@media (max-width: 559.9px) {
  .center-title span {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .center-title {
    font-size: 2.1rem;
    margin: 30px 0 20px;
  }
}
.center-title .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.center-title.white {
  color: #fff;
}
.center-title.white::after {
  background-color: #fff;
}

.center-title2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  margin-bottom: 50px;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .center-title2 {
    margin-bottom: 20px;
    margin-bottom: 10px;
  }
}
.center-title2 .jp {
  font-size: 3.8rem;
}
@media (max-width: 559.9px) {
  .center-title2 .jp {
    font-size: 2.8rem;
  }
}
.center-title2 .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  color: #67569E;
}

.blue-title {
  background-color: #003C97;
  padding: 10px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .blue-title {
    font-size: 2rem;
  }
}
@media (max-width: 820.9px) {
  .blue-title {
    font-size: 1.8rem;
  }
}

.lined_title {
  width: 100%;
  text-align: center;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 3px;
  margin-bottom: 10px;
  color: #595757;
}
.lined_title::after {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: darkgoldenrod;
}
.lined_title span {
  display: inline-block;
  padding: 0 16px 8px;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  color: #003C97;
  position: relative;
  z-index: 1;
  border-bottom: 3px solid #003C97;
}
.lined_title.blue::after {
  background-color: white;
}
.lined_title.blue span {
  background-color: #003C97;
  color: white;
}
.lined_title.gblue::after {
  background-color: white;
}
.lined_title.gblue span {
  background-color: #003C97;
  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(201, 63, 63, 0.3);
  font-size: 6rem;
}
@media (max-width: 559.9px) {
  .title_with_num::before {
    font-size: 3.2rem;
    top: -38%;
  }
}
.title_with_num::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(-45deg, #d99e9e 0px, #b48383 2px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 10px 10px;
  z-index: 1;
}

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

.centerline-title {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.centerline-title .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  font-weight: 600;
  font-size: min(4.2rem, 3vw);
  line-height: 1;
  padding-right: 30px;
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .centerline-title .eng {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
  }
}
@media (max-width: 559.9px) {
  .centerline-title .eng {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    padding-right: 15px;
  }
}
.centerline-title .eng::after {
  content: "";
  width: 4px;
  height: 30px;
  background-color: #1B1B1B;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.centerline-title .jp {
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: 30px;
}
@media (max-width: 559.9px) {
  .centerline-title .jp {
    margin-left: 15px;
  }
}

.number-title {
  color: #003C97;
  text-align: center;
  margin: 0 auto 40px;
}
@media (max-width: 559.9px) {
  .number-title {
    margin-bottom: 20px;
  }
}
.number-title .num {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  font-size: min(6rem, 6vw);
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
}
@media (max-width: 559.9px) {
  .number-title .num {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    line-height: 1;
  }
}
.number-title .eng_box {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.number-title .eng_box::after {
  content: "";
  width: calc(100% + 140px);
  height: 2px;
  background-color: #003C97;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 559.9px) {
  .number-title .eng_box::after {
    width: calc(100% + 80px);
  }
}
.number-title .eng_box .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  font-weight: 500;
  background-color: #FFFFFF;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
@media (min-width: 560px) {
  .number-title .eng_box .eng br {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .number-title .eng_box .eng {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1;
    padding: 0 15px;
  }
}
.number-title .jp {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .number-title .jp {
    font-size: 3rem;
  }
}

/* Buttons */
.btn_box-mt70 {
  margin-top: 70px;
}
@media (max-width: 559.9px) {
  .btn_box-mt70 {
    margin-top: 40px;
  }
}

.btn_box-mt50 {
  margin-top: 50px;
}
@media (max-width: 559.9px) {
  .btn_box-mt50 {
    margin-top: 20px;
  }
}

.btn_box-mt30 {
  margin-top: 30px;
}

.btn-purple {
  width: 280px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  background-color: #67569E;
}
@media (max-width: 559.9px) {
  .btn-purple {
    height: 50px;
  }
}
.btn-purple.w310 {
  width: 310px;
}
@media (max-width: 1199.9px) {
  .btn-purple.w310 {
    width: 225px;
  }
}
.btn-purple .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
  color: #FFFFFF;
}
.btn-purple .jp {
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
  color: #FFFFFF;
}
.btn-purple i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #FFFFFF;
}
.btn-purple:hover, .btn-purple :active {
  background-color: rgba(103, 86, 158, 0.8);
}
.btn-purple_white {
  background-color: #FFFFFF;
  border: 1px solid #1B1B1B;
  height: 53px;
}
.btn-purple_white .jp {
  color: #1B1B1B;
}
.btn-purple_white i {
  color: #1B1B1B;
}
.btn-purple_white:hover, .btn-purple_white :active {
  background-color: rgba(255, 255, 255, 0.8);
}

.btn-blue {
  width: 230px;
  height: 50px;
  background-color: #95a9bb;
  border: 1px #1B1B1B solid;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn-blue.w310 {
  width: 310px;
}
@media (max-width: 1199.9px) {
  .btn-blue.w310 {
    width: 225px;
  }
}
.btn-blue .text {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #1B1B1B;
}
.btn-blue .jp {
  font-size: 1.5rem;
  font-weight: 700;
}
.btn-blue i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #1B1B1B;
}

.btn-01 {
  width: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.btn-01 .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 56px);
  height: 56px;
  font-weight: bold;
}
.btn-01 .arrow {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EE4343;
  transition: all 0.3s ease;
}
.btn-01 .arrow i {
  color: white;
  transition: all 0.3s ease;
}
.btn-01.gr .txt {
  background-color: #F5F5F5;
}
.btn-01.wr .txt {
  background-color: #FFFFFF;
}
.btn-01:hover .arrow {
  background-color: #F2E85C;
}
.btn-01:hover .arrow i {
  transform: scale(1.5);
}

.btn-02 {
  width: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.btn-02 .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px);
  height: 40px;
  font-weight: bold;
}
.btn-02 .arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003C97;
  transition: all 0.3s ease;
}
.btn-02 .arrow i {
  color: white;
  transition: all 0.3s ease;
}
.btn-02.gr .txt {
  background-color: #F5F5F5;
}
.btn-02.wh .txt {
  background-color: #FFFFFF;
}
.btn-02:hover .arrow {
  background-color: #F2E85C;
}
.btn-02:hover .arrow i {
  transform: scale(1.5);
}

.btn-black {
  width: 280px;
  height: 60px;
  border: 2px #1B1B1B solid;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #1B1B1B;
  transition: all 0.4s ease;
}
.btn-black.w300 {
  width: 300px;
}
.btn-black.w350 {
  width: 350px;
}
@media (max-width: 559.9px) {
  .btn-black.w350 {
    width: 320px;
  }
}
.btn-black.bg_white {
  background-color: #fff;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .btn-black.bg_white {
    width: 200px;
    line-height: 1.2;
  }
}
.btn-black.qa {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 2px #1B1B1B solid;
}
@media (min-width: 560px) {
  .btn-black.qa br {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .btn-black.qa:nth-child(n+2) {
    margin-top: 10px;
  }
}
.btn-black.qa .txt {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 10px 50px 10px 20px;
  line-height: 1.2;
}
@media (max-width: 559.9px) {
  .btn-black {
    height: 50px;
  }
}
.btn-black .txt {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 64px 0 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 559.9px) {
  .btn-black .txt {
    font-size: 1.4rem;
    padding: 0 30px 0 15px;
  }
}
.btn-black i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 559.9px) {
  .btn-black i {
    right: 12px;
  }
}
.btn-black:hover {
  background-color: #1B1B1B;
  color: white;
}

.equipment-link_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #F5F5F5;
  border-radius: 20px;
  padding: 3px 35px;
  border: 1px #1B1B1B solid;
  transition: all 0.3s ease;
}
.equipment-link_btn .text {
  font-weight: 700;
}
.equipment-link_btn i {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.equipment-link_btn:hover, .equipment-link_btn :active {
  background-color: #FFD700;
}

.link_img_box {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw 4%;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .link_img_box {
    margin-top: 40px;
  }
}
.link_img_box .border {
  border: 2px #FFFFFF solid;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
.link_img_box .link_img_box01 {
  position: relative;
  width: 48%;
  max-width: 430px;
  aspect-ratio: 500/280;
  background: url(../images/page/equipment-tel.jpg) no-repeat center;
  background-size: cover;
  padding: 20px;
}
@media (max-width: 559.9px) {
  .link_img_box .link_img_box01 {
    width: 100%;
  }
}
.link_img_box .link_img_box01::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}
.link_img_box .link_img_box02 {
  position: relative;
  width: 48%;
  max-width: 430px;
  aspect-ratio: 500/280;
  background: url(../images/page/equipment-mail.jpg) no-repeat center;
  background-size: cover;
  padding: 20px;
}
@media (max-width: 559.9px) {
  .link_img_box .link_img_box02 {
    width: 100%;
  }
}
.link_img_box .link_img_box02 .circle {
  position: absolute;
  right: 12%;
  bottom: 16%;
  width: 43px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
}
.link_img_box .link_img_box02::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}
.link_img_box .link_img_box02 .float_link {
  z-index: 3;
}
.link_img_box .link_img_box02:hover .circle, .link_img_box .link_img_box02 :active .circle {
  background-color: rgba(255, 255, 255, 0.4);
}
.link_img_box .link_img_box02:hover::after, .link_img_box .link_img_box02 :active::after {
  background-color: rgba(0, 0, 0, 0);
}
.link_img_box .text {
  color: #FFFFFF;
  font-size: min(2.8rem, 2.6vw);
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .link_img_box .text {
    font-size: 2rem;
  }
}
.link_img_box .num {
  color: #FFFFFF;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  font-size: min(3.2rem, 4vw);
  font-style: italic;
}
@media (max-width: 559.9px) {
  .link_img_box .num {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }
}

@-webkit-keyframes btn_anim {
  0% {
    max-width: 50px;
    max-height: 50px;
    right: 7px;
  }
  20% {
    right: 0;
    max-width: 70px;
    max-height: 70px;
  }
  50% {
    right: 0;
    max-width: 100%;
    max-height: 70px;
  }
  100% {
    right: 0;
    max-width: 100%;
    max-height: 100%;
  }
}

@keyframes btn_anim {
  0% {
    max-width: 50px;
    max-height: 50px;
    right: 7px;
  }
  20% {
    right: 0;
    max-width: 70px;
    max-height: 70px;
  }
  50% {
    right: 0;
    max-width: 100%;
    max-height: 70px;
  }
  100% {
    right: 0;
    max-width: 100%;
    max-height: 100%;
  }
}
@-webkit-keyframes btn_anim_out {
  0% {
    right: 0;
    max-width: 100%;
    max-height: 100%;
  }
  20% {
    right: 0;
    max-width: 100%;
    max-height: 70px;
  }
  50% {
    right: 0;
    max-width: 70px;
    max-height: 70px;
  }
  100% {
    max-width: 50px;
    max-height: 50px;
    right: 7px;
  }
}
@keyframes btn_anim_out {
  0% {
    right: 0;
    max-width: 100%;
    max-height: 100%;
  }
  20% {
    right: 0;
    max-width: 100%;
    max-height: 70px;
  }
  50% {
    right: 0;
    max-width: 70px;
    max-height: 70px;
  }
  100% {
    max-width: 50px;
    max-height: 50px;
    right: 7px;
  }
}
.btn-default {
  width: 240px;
  height: 54px;
  background-color: transparent;
  color: #003C97;
  font-weight: bold;
  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;
  padding-right: 16px;
  border: 1px #003C97 solid;
}
@media (min-width: 560px) {
  .btn-default {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .btn-default {
    max-width: 100%;
  }
}
.btn-default.eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}
.btn-default i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.btn-default:hover {
  color: white;
  background-color: #003C97;
}
.btn-default.white {
  color: white;
  border: 1px white solid;
}
.btn-default.white:hover {
  color: #003C97;
  background-color: white;
}

.btn-pink {
  width: 240px;
  height: 56px;
  background-color: #FA3EE1;
  border-radius: 4px;
  color: #1B1B1B;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  overflow: hidden;
  padding-left: 16px;
}
@media (max-width: 559.9px) {
  .btn-pink {
    max-width: 100%;
  }
}
.btn-pink i {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  z-index: 1;
}
.btn-pink:hover {
  color: #1B1B1B;
  background-color: #ffa3c3;
}

.btn-yellow {
  width: 240px;
  height: 56px;
  background-color: #F2E85C;
  border-radius: 4px;
  color: #1B1B1B;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  overflow: hidden;
  padding-left: 16px;
}
@media (max-width: 559.9px) {
  .btn-yellow {
    max-width: 100%;
  }
}
.btn-yellow i {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  z-index: 1;
}
.btn-yellow:hover {
  color: #1B1B1B;
  background-color: #ffea83;
}

.lined_link {
  width: 280px;
  color: #003C97;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px #003C97 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: #ACCFE7;
  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: #003C97;
  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: #1B1B1B;
}
.btn-with-arrow .txt::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #1B1B1B;
}
.btn-with-arrow:hover .arrow {
  transform: scale(1.1);
}
.btn-with-arrow.white .arrow {
  background-color: white;
}
.btn-with-arrow.white .arrow i {
  color: #003C97;
}
.btn-with-arrow.white .txt {
  color: white;
}
.btn-with-arrow.white .txt::before {
  background-color: white;
}

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

.table-fixform {
  width: 90%;
  margin: 0 auto;
}
.table-fixform th {
  width: 25%;
  font-weight: 700;
  border-bottom: #67569E 1px solid;
  padding: 20px 5px;
}
@media (max-width: 820.9px) {
  .table-fixform th {
    padding: 20px 5px;
    width: 25%;
  }
}
@media (max-width: 559.9px) {
  .table-fixform th {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 10px 0 2px;
    font-size: 1.4rem;
  }
}
.table-fixform td {
  padding: 20px 24px;
  border-bottom: #d3d3d3 1px solid;
  gap: 0 60px;
}
.table-fixform td.flex {
  display: flex;
  align-items: center;
}
@media (max-width: 559.9px) {
  .table-fixform td.flex {
    display: block;
  }
}
.table-fixform td.flex .table-img {
  width: 200px;
}
@media (max-width: 559.9px) {
  .table-fixform td.flex .table-img {
    margin-top: 10px;
  }
}
@media (max-width: 820.9px) {
  .table-fixform td {
    padding: 20px 24px;
  }
}
@media (max-width: 559.9px) {
  .table-fixform td {
    display: block;
    width: 100%;
    padding: 0 0 10px;
    font-size: 1.4rem;
  }
}
.table-fixform td dl {
  margin-bottom: 20px;
}
.table-fixform td dl:last-child {
  margin-bottom: 0;
}
.table-fixform td dl dt {
  align-items: center;
  position: relative;
  padding-left: 25px;
}
@media (max-width: 820.9px) {
  .table-fixform td dl dt {
    display: block;
    padding-left: 15px;
  }
}
.table-fixform td dl dt::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 15px;
  height: 15px;
  display: inline-flex;
  background-color: #F2E85C;
  border-radius: 4px;
}
@media (max-width: 820.9px) {
  .table-fixform td dl dt::before {
    width: 10px;
    height: 10px;
  }
}
.table-fixform td dl dd {
  margin-left: calc(1rem + 15px);
}
.table-fixform td dl .link_btn {
  margin-top: 10px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  font-weight: 700;
  background-color: #003C97;
  color: #FFFFFF;
  padding: 6px 15px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.table-fixform td dl .link_btn i {
  margin-left: 20px;
}
.table-fixform td dl .link_btn:hover, .table-fixform td dl .link_btn :active {
  background-color: #95a9bb;
}

.table-f {
  width: 100%;
  min-width: 740px;
}
@media (max-width: 820.9px) {
  .table-f {
    font-size: 1.4rem;
  }
}
.table-f th {
  width: 180px;
  padding: 8px 20px;
  background-color: #1B1B1B;
  color: #FFFFFF;
  text-align: left;
}
@media (max-width: 1199.9px) {
  .table-f th {
    padding: 5px 10px;
  }
}
.table-f td {
  border-bottom: 1px #ddd solid;
  text-align: left;
  padding: 5px 15px;
}
@media (max-width: 1199.9px) {
  .table-f td {
    padding: 5px 10px;
  }
}

.table-f2 {
  width: 90%;
  margin: 50px auto 0;
  position: relative;
  z-index: 3;
  min-width: 800px;
}
@media (max-width: 559.9px) {
  .table-f2 {
    margin-top: 20px;
  }
}
.table-f2 tr th {
  color: #003C97;
  border-bottom: 2px #EE4343 solid;
  padding: 6px 5px;
}
@media (max-width: 820.9px) {
  .table-f2 tr th {
    font-size: 1.4rem;
    padding: 4px 5px;
  }
}
.table-f2 tr td {
  border-bottom: 1px #DADADA solid;
  padding: 6px 5px;
  text-align: center;
}
@media (max-width: 820.9px) {
  .table-f2 tr td {
    font-size: 1.3rem;
    padding: 4px 5px;
  }
}

.table_content {
  background-color: #FFFFFF;
  padding: 30px;
}
.table_content .table-bgcolor {
  width: 100%;
}
.table_content .table-bgcolor th {
  width: 25%;
  font-weight: 700;
  border-bottom: #284B7D 1px solid;
  padding: 20px 5px;
}
@media (max-width: 820.9px) {
  .table_content .table-bgcolor th {
    padding: 20px 5px;
    width: 25%;
  }
}
@media (max-width: 559.9px) {
  .table_content .table-bgcolor th {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 10px 0 2px;
  }
}
.table_content .table-bgcolor td {
  padding: 20px 24px;
  border-bottom: #d3d3d3 1px solid;
  gap: 0 60px;
}
.table_content .table-bgcolor td.flex {
  display: flex;
  align-items: center;
}
@media (max-width: 559.9px) {
  .table_content .table-bgcolor td.flex {
    display: block;
  }
}
.table_content .table-bgcolor td.flex .table-img {
  width: 200px;
}
@media (max-width: 559.9px) {
  .table_content .table-bgcolor td.flex .table-img {
    margin-top: 10px;
  }
}
@media (max-width: 820.9px) {
  .table_content .table-bgcolor td {
    padding: 20px 24px;
  }
}
@media (max-width: 559.9px) {
  .table_content .table-bgcolor td {
    display: block;
    width: 100%;
    padding: 0 0 10px;
    font-size: 1.4rem;
  }
}
.table_content .table-bgcolor td dl { /***消さない***/
  margin-bottom: 20px;
}
.table_content .table-bgcolor td dl:last-child {
  margin-bottom: 0;
}
.table_content .table-bgcolor td dl dt {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.table_content .table-bgcolor td dl dt .circleNum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 1.4rem;
  border-radius: 50%;
  border: 1px #1B1B1B solid;
  line-height: 1;
  margin-right: 8px;
}
.table_content .table-bgcolor td dl dd {
  padding-left: 26px;
}
.table_content .table-bgcolor td ul li {
  margin-left: 26px;
  list-style: disc;
}

.table-a {
  width: 85%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 20px 15px;
}
@media (max-width: 820.9px) {
  .table-a {
    width: 100%;
    border-spacing: 10px 10px;
  }
}
.table-a tr th {
  padding: 8px 0;
}
.table-a tr td {
  padding: 8px 0;
}

/* Parts */
.sq1, .sq_black {
  padding-left: 15px;
  position: relative;
  font-weight: bold;
  line-height: 1.5;
}
.sq1::before, .sq_black::before {
  width: 10px;
  height: 10px;
  background-color: #F2E85C;
  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: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  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: #003C97;
}

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

.blueBox {
  background-color: #F1F6FA;
  padding: 40px;
  border-radius: 16px;
}
@media (max-width: 820.9px) {
  .blueBox {
    padding: 16px;
  }
}

.br4 {
  border-radius: 4px;
  overflow: hidden;
}

/* Texts */
@media (min-width: 1200px) {
  .strong_text {
    font-size: 1.8rem;
    text-align: center;
  }
}

.t-undertext {
  font-size: 3.2rem;
  font-weight: 700;
  font-size: min(3.2rem, 2.8vw);
}
@media (max-width: 559.9px) {
  .t-undertext {
    font-size: 1.8rem;
  }
}

.page_top_text {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 80px;
}
.page_top_text.lot {
  margin-top: 30px;
}
@media (max-width: 820.9px) {
  .page_top_text {
    margin-bottom: 50px;
  }
}
@media (max-width: 559.9px) {
  .page_top_text {
    margin-bottom: 30px;
  }
}
@media (max-width: 559.9px) {
  .page_top_text br {
    display: none;
  }
}

.textWhite {
  color: white;
}

.textBlue {
  color: #284B7D;
}

.textNG {
  color: #95a9bb;
}

.textRed {
  color: #EE4343;
}

.textDG {
  color: darkgoldenrod;
}

.textYellow {
  color: #F2E85C;
}

.text18 {
  font-size: 1.8rem;
}

.text16 {
  font-size: 1.6rem;
}

.text14 {
  font-size: 1.4rem;
}

.text32 {
  font-size: 3.2rem;
}

.text30 {
  font-size: 3rem;
}

.text40 {
  font-size: 4rem;
}

.text20 {
  font-size: 2rem;
}

.text26 {
  font-size: 2.6rem;
}

.textBold {
  font-weight: 700;
}

.textMedium {
  font-weight: 500;
}

.mb80 {
  margin-bottom: 80px;
}

.center {
  text-align: center;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

/* Others */
.mauto {
  margin-left: auto;
  margin-right: auto;
}

.mright {
  margin-left: auto;
  margin-right: 0;
}

.anchor {
  padding-top: 100px;
  margin-top: -100px;
}
@media (max-width: 820.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 (max-width: 820.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: 10;
}

/* 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;
  }
}
@keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-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 slide-in-100 {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@keyframes slide-in-100 {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
/**************
HOME
**************/
.bg-color {
  background-color: #F1F6FA;
}

#main_wrap {
  width: 100%;
  position: relative;
}

#mainVisual {
  width: 100%;
  display: block;
  position: relative;
  z-index: 9;
}
@media (min-width: 821px) {
  #mainVisual {
    height: 100vh;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  #mainVisual {
    max-height: 720px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #mainVisual {
    height: 680px;
  }
}
@media (max-width: 559.9px) {
  #mainVisual {
    height: 40vh;
  }
}

.mainVisual_inner {
  width: calc(100vw - 64px);
  height: calc(100vh - 64px);
  position: relative;
  overflow: hidden;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .mainVisual_inner {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
@media (max-width: 820.9px) {
  .mainVisual_inner {
    width: 100%;
    height: 100%;
  }
}

.top_main_slider {
  width: 100%;
  height: 100%;
}
.top_main_slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.top_main_slider .swiper-slide .swiper-img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.top_main_slider .swiper-slide .swiper-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;
}
@media (min-width: 560px) {
  .top_main_slider .swiper-pagination {
    width: 230px !important;
    height: 2px;
    bottom: 64px !important;
    left: 7vw !important;
    right: -60px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_main_slider .swiper-pagination {
    left: 4vw !important;
    width: 200px !important;
  }
}
@media (max-width: 559.9px) {
  .top_main_slider .swiper-pagination {
    width: 160px !important;
    bottom: 28px !important;
  }
}
.top_main_slider .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 24px;
  border-radius: 0;
  position: relative;
  background-color: transparent;
  opacity: 1;
  color: white;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 821px) {
  .top_main_slider .swiper-pagination .swiper-pagination-bullet {
    width: 48px;
    height: 32px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }
}
.top_main_slider .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: 0;
}
.top_main_slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #FFD700;
}
.top_main_slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: #FFD700;
}
.top_main_slider .progressbar {
  position: absolute;
  width: calc(52vw - 80px);
  height: 3px;
  left: 0;
  bottom: 0;
  background: #ddd;
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .top_main_slider .progressbar {
    width: 100%;
  }
}
@media (max-width: 820.9px) {
  .top_main_slider .progressbar {
    width: 100vw;
  }
}
.top_main_slider .progressbar span {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #284B7D;
  transform: scaleX(0);
  transform-origin: left center;
  transition-timing-function: linear;
}

.mainCatch {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 40px 56px;
  text-align: center;
  z-index: 2;
}
.mainCatch::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(103, 86, 158, 0.9);
  right: -100%;
  top: 0;
  -webkit-animation: slide-in-100 1s ease-out forwards;
          animation: slide-in-100 1s ease-out forwards;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mainCatch {
    padding: 24px 40px 32px;
  }
}
@media (max-width: 559.9px) {
  .mainCatch {
    display: none;
  }
}

.mainCatch-img {
  width: 48vw;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-animation: slideIn 0.6s ease 0.7s forwards;
          animation: slideIn 0.6s ease 0.7s forwards;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .mainCatch-img {
    width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mainCatch-img {
    width: 400px;
    margin: 0 auto;
  }
}

.mainCatch01 {
  font-size: min(2.9rem, 2.4vw);
  font-weight: 900;
  color: #FFFFFF;
  z-index: 2;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-animation: slideIn 0.4s ease 1s forwards;
          animation: slideIn 0.4s ease 1s forwards;
}
@media (max-width: 559.9px) {
  .mainCatch01 {
    font-size: 1.8rem;
  }
}

.mainCatch02 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-animation: slideIn 0.4s ease 1.2s forwards;
          animation: slideIn 0.4s ease 1.2s forwards;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mainCatch02 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 8px;
  }
}
@media (min-width: 1200px) {
  .mainCatch02 br {
    display: none;
  }
}

.mainCatch-sp {
  background-color: rgba(103, 86, 158, 0.9);
  padding: 20px 30px 24px;
  text-align: center;
  margin-left: auto;
  margin-right: 0;
  width: 94%;
  margin-top: -22px;
  position: relative;
  z-index: 9;
}
@media (min-width: 560px) {
  .mainCatch-sp {
    display: none;
  }
}
.mainCatch-sp .mainCatch-sp-img {
  width: 100%;
}
.mainCatch-sp .mainCatch01-sp {
  font-size: 1.72rem;
  font-weight: 700;
  color: #FFFFFF;
  z-index: 2;
  margin-top: 15px;
  line-height: 1.5;
}
.mainCatch-sp .mainCatch02-sp {
  font-size: 1.3rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 10px;
  line-height: 1.5;
}

.bgi-box {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.top_news_section {
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_news_section {
    padding: 50px 0;
  }
}
@media (max-width: 559.9px) {
  .top_news_section {
    padding: 30px 0;
  }
}
.top_news_section .wrap {
  position: relative;
  z-index: 2;
}
@media (max-width: 559.9px) {
  .top_news_section .btn_box-mt50 {
    margin: 20px auto 0;
  }
}

.back-circle {
  position: absolute;
  z-index: 1;
  right: -3%;
  top: 27%;
  width: 1200px;
}
@media (max-width: 1199.9px) {
  .back-circle {
    right: -18%;
    top: 30%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .back-circle {
    right: -39%;
    top: 21%;
  }
}
@media (max-width: 559.9px) {
  .back-circle {
    right: -151%;
    top: 19%;
  }
}

.packman-bg {
  position: absolute;
  transform: rotate(0);
  width: 220px;
  opacity: 0;
  top: 72%;
  right: 5%;
  z-index: 1;
  transition: all 1s ease;
}
@media (max-width: 820.9px) {
  .packman-bg {
    width: 157px;
    top: 60%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .packman-bg {
    top: 65%;
  }
}
@media (max-width: 559.9px) {
  .packman-bg {
    width: 100px;
    top: 73%;
  }
}
.packman-bg.moved {
  opacity: 0.4;
  transform: rotate(-30deg);
}

.news_archive {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 3vw;
}
@media (max-width: 559.9px) {
  .news_archive {
    row-gap: 10vw;
  }
}
.news_archive .news_item {
  width: 25%;
  transition: all 0.5s ease;
  position: relative;
  padding: 0 10px;
  justify-content: center;
  max-width: 364px;
  min-width: 250px;
}
@media (max-width: 1199.9px) {
  .news_archive .news_item {
    width: 50%;
  }
}
@media (max-width: 559.9px) {
  .news_archive .news_item {
    width: 100%;
  }
}
.news_archive .news_item.news_index {
  width: 33.3333333333%;
}
@media (max-width: 1199.9px) {
  .news_archive .news_item.news_index {
    width: 50%;
  }
}
@media (max-width: 559.9px) {
  .news_archive .news_item.news_index {
    width: 100%;
  }
}
.news_archive .news_item .news_img {
  overflow: hidden;
}
.news_archive .news_item .news_img img {
  transition: all 0.3s ease;
}
.news_archive .news_item .news_inner {
  margin-top: 8px;
  background-color: #FFFFFF;
  padding: 20px;
}
.news_archive .news_item .news_inner .news_item_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.news_archive .news_item .news_inner .news_item_head .news_item_cat_tags {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.news_archive .news_item .news_inner .news_item_head .news_item_cat_tags .cat_tag_item {
  background-color: #F1F6FA;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  padding: 0 16px;
  color: #1B1B1B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_archive .news_item .news_inner .news_item_head .date {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #1B1B1B;
}
.news_archive .news_item .news_inner .news_text {
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.news_archive .news_item:hover .news_img img, .news_archive .news_item :active .news_img img {
  transform: scale(1.1);
}
.news_archive .news_item:hover .news_inner .news_text, .news_archive .news_item :active .news_inner .news_text {
  opacity: 0.6;
}

.top_strength_section {
  padding: 70px 0 80px;
  position: relative;
  z-index: 3;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_strength_section {
    padding: 50px 0 0;
  }
}
@media (max-width: 559.9px) {
  .top_strength_section {
    padding: 30px 0 0;
  }
}
.top_strength_section .top-strength {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 820.9px) {
  .top_strength_section .top-strength {
    justify-content: flex-start;
    gap: 5vw 5%;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.top_strength_section .top-strength .top-strength-left {
  display: flex;
  gap: 4%;
}
@media (min-width: 821px) {
  .top_strength_section .top-strength .top-strength-left {
    width: 54%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_strength_section .top-strength .top-strength-left {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 559.9px) {
  .top_strength_section .top-strength .top-strength-left {
    width: 100%;
    margin-top: 20px;
  }
}
.top_strength_section .top-strength .top-strength-left.moved .top-strength_item1 {
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}
.top_strength_section .top-strength .top-strength-left.moved .top-strength_item1:nth-child(2) {
  -webkit-animation: fadeIn 0.4s ease 0.3s forwards;
          animation: fadeIn 0.4s ease 0.3s forwards;
}
@media (min-width: 821px) {
  .top_strength_section .top-strength .top-strength-right {
    width: 40%;
  }
}
@media (max-width: 820.9px) {
  .top_strength_section .top-strength .top-strength-right {
    width: 100%;
    margin-top: 20px;
  }
}
.top_strength_section .top-strength .top-strength_item1 {
  width: 48%;
  opacity: 0;
}
@media (max-width: 820.9px) {
  .top_strength_section .top-strength .top-strength_item1 {
    width: 47.5%;
  }
}
@media (max-width: 559.9px) {
  .top_strength_section .top-strength .top-strength_item1 .mt20 {
    margin-top: 5px;
  }
}
.top_strength_section .top-strength .top-strength_item2 {
  width: 100%;
}
@media (max-width: 820.9px) {
  .top_strength_section .top-strength .top-strength_item2 {
    width: 100%;
  }
}
.top_strength_section .top-strength .top-strength_item2 .top-strength_head {
  font-size: min(3rem, 2.6vw);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .top_strength_section .top-strength .top-strength_item2 .top-strength_head {
    font-size: 2.6rem;
  }
}
@media (max-width: 559.9px) {
  .top_strength_section .top-strength .top-strength_item2 .top-strength_head {
    font-size: 2rem;
  }
}
.top_strength_section .top-strength .top-strength_item2 .text {
  font-size: 1.8rem;
  margin-top: 30px;
}
@media (max-width: 559.9px) {
  .top_strength_section .top-strength .top-strength_item2 .text {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}

.top_technology_section {
  padding: 0 0 100px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_technology_section {
    padding-top: 40px;
  }
}
@media (max-width: 559.9px) {
  .top_technology_section {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
  }
}
@media (max-width: 559.9px) {
  .top_technology_section .top_technology_head {
    padding: 0;
  }
}
.top_technology_section .top_technology_head .top_technology_head_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3vw 4%;
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .top_technology_section .top_technology_head .top_technology_head_flex {
    flex-wrap: wrap;
  }
}
.top_technology_section .top_technology_head .top_technology_head_flex .top_technology_head_text {
  width: calc(100% - 580px);
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .top_technology_section .top_technology_head .top_technology_head_flex .top_technology_head_text {
    width: calc(100% - 412px);
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_technology_section .top_technology_head .top_technology_head_flex .top_technology_head_text {
    width: calc(100% - 380px);
  }
}
@media (max-width: 559.9px) {
  .top_technology_section .top_technology_head .top_technology_head_flex .top_technology_head_text {
    width: 100%;
    padding: 0 4vw;
  }
}
.top_technology_section .top_technology_head .top_technology_head_flex .top_technology_head_text .top_technology_head_title {
  font-size: min(4rem, 3.2vw);
  line-height: 1.5;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_technology_section .top_technology_head .top_technology_head_flex .top_technology_head_text .top_technology_head_title {
    font-size: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .top_technology_section .top_technology_head .top_technology_head_flex .top_technology_head_text .top_technology_head_title {
    font-size: 1.8rem;
    text-align: center;
  }
}
.top_technology_section .top_technology_head .top_technology_head_flex .top_technology_head_text .top_technology_head_p {
  font-size: 1.6rem;
  margin-top: 20px;
}
@media (max-width: 559.9px) {
  .top_technology_section .top_technology_head .top_technology_head_flex .top_technology_head_text .top_technology_head_p {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}
.top_technology_section .top_technology_head .top_technology-bigimg {
  width: 80vw;
  margin-left: auto;
  margin-right: 0;
  margin-top: -50px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 821px) {
  .top_technology_section .top_technology_head .top_technology-bigimg {
    height: 48vh;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .top_technology_section .top_technology_head .top_technology-bigimg {
    margin-top: -5px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_technology_section .top_technology_head .top_technology-bigimg {
    margin-top: 20px;
    width: 100%;
    height: auto;
    text-align: center;
    background-color: #888;
    padding-top: 8px;
  }
}
@media (max-width: 559.9px) {
  .top_technology_section .top_technology_head .top_technology-bigimg {
    margin-top: 10px;
    width: 100%;
  }
}
@media (min-width: 821px) {
  .top_technology_section .top_technology_head .top_technology-bigimg video {
    position: absolute;
    left: -20px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 110%;
  }
}
@media (max-width: 559.9px) {
  .top_technology_section .top_technology_head .top_technology-bigimg video {
    width: 100%;
  }
}
.top_technology_section .top_technology_head .top_technology-img_content {
  margin-top: 60px;
  width: 100%;
  margin: 60px auto;
}
@media (max-width: 559.9px) {
  .top_technology_section .top_technology_head .top_technology-img_content {
    margin: 30px 0 0;
  }
}
.top_technology_section .top_technology_head .top_technology-img_content .swiper-wrapper {
  transition-timing-function: linear;
}
.top_technology_section .top_technology_head .top_technology-img_content .top_technology-img_content_item {
  width: 100%;
}
@media (max-width: 559.9px) {
  .top_technology_section .top_technology_head .top_technology-img_content .top_technology-img_content_item .bold {
    font-size: 1.3rem;
  }
}

.top_product_section {
  background-color: #F2E85C;
  padding: 100px 0 80px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_product_section {
    padding-top: 80px;
  }
}
@media (max-width: 559.9px) {
  .top_product_section {
    padding: 40px 0;
  }
}
.top_product_section .top_product_text_box {
  width: 78%;
  margin: 0 auto;
  padding-top: 45px;
  border-top: 3px #FFFFFF solid;
  position: relative;
}
@media (max-width: 820.9px) {
  .top_product_section .top_product_text_box {
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .top_product_section .top_product_text_box {
    padding-top: 20px;
  }
}
.top_product_section .top_product_text_box::after {
  content: "";
  display: inline-block;
  width: 33.3333333333%;
  height: 3px;
  background-color: #67569E;
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.checkBox {
  width: 70%;
  margin: 40px auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .checkBox {
    margin-top: 30px;
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .checkBox {
    width: 100%;
    margin: 25px 0 30px;
  }
}
.checkBox .check {
  width: 100%;
}
.checkBox .check tr {
  gap: 3vw;
}
.checkBox .check th {
  font-size: 2rem;
  white-space: nowrap;
  text-align: left;
  margin-left: 30px;
  width: 25%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .checkBox .check th {
    font-size: 1.6rem;
    width: 120px;
  }
}
@media (max-width: 559.9px) {
  .checkBox .check th {
    display: block;
    width: 100%;
    margin-left: 0;
  }
}
.checkBox .check td {
  width: 75%;
  line-height: 3;
  padding: 10px;
}
@media (max-width: 820.9px) {
  .checkBox .check td {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 3px;
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .checkBox .check td {
    width: 100%;
    padding: 0 0 10px;
    gap: 3px 3px;
  }
}
.checkBox .check td .check_btns {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
}
.checkBox .check td .check_btns li a {
  background-color: #FFFFFF;
  border-radius: 5px;
  border: 1px #1B1B1B solid;
  color: #1B1B1B;
  white-space: nowrap;
}
@media (min-width: 821px) {
  .checkBox .check td .check_btns li a {
    padding: 5px 10px;
    font-size: 1.4rem;
    margin-right: 10px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .checkBox .check td .check_btns li a {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 10px;
    font-feature-settings: "palt";
  }
}
@media (max-width: 559.9px) {
  .checkBox .check td .check_btns li a {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 10px;
  }
}
.checkBox .check td .check_btns li a:hover, .checkBox .check td .check_btns li a :active {
  background-color: #DADADA;
}

.product_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 2%;
  background-color: #FFFFFF;
  padding: 50px;
}
@media (max-width: 1199.9px) {
  .product_list {
    padding: 20px;
  }
}
@media (max-width: 559.9px) {
  .product_list {
    display: block;
  }
}
.product_list .product_box {
  width: 32%;
  position: relative;
}
@media (max-width: 559.9px) {
  .product_list .product_box {
    width: 100%;
    margin-bottom: 20px;
  }
  .product_list .product_box:last-child {
    margin-bottom: 0;
  }
}
.product_list .product_box .product-img {
  transition: all 0.3s ease;
  position: relative;
}
.product_list .product_box .product-img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 4px;
  opacity: 0;
}
.product_list .product_box .product-img img {
  transition: all 0.3s ease;
}
.product_list .product_box .title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
  transition: all 0.3s ease;
}
@media (max-width: 820.9px) {
  .product_list .product_box .title {
    font-size: 1.6rem;
  }
}
.product_list .product_box:hover .product-img::before, .product_list .product_box :active .product-img::before {
  opacity: 0.4;
}
.product_list .product_box:hover .product-img img, .product_list .product_box :active .product-img img {
  transform: scale(1.1);
}

.prod-table {
  width: 90%;
  margin: 0 auto;
}
.prod-table th {
  width: 80px;
  padding: 2px 0;
  color: #284B7D;
  font-size: 1.5rem;
  text-align: left;
  border-bottom: 1px #67569E solid;
  color: #1B1B1B;
}
@media (max-width: 820.9px) {
  .prod-table th {
    font-size: 1.3rem;
    width: 72px;
    line-height: 1.5;
    padding: 5px;
  }
}
.prod-table td {
  width: calc(100% - 80px);
  padding: 2px 5px;
  border-bottom: 1px #DADADA solid;
  font-size: 1.4rem;
}
@media (max-width: 820.9px) {
  .prod-table td {
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 5px;
  }
}

.top-link-section {
  padding: 80px 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top-link-section {
    padding: 48px 0;
  }
}
@media (max-width: 559.9px) {
  .top-link-section {
    padding: 40px 0 100px;
  }
}

.top_page_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25vw 4%;
  flex-wrap: wrap;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_page_link {
    align-items: flex-start;
  }
}
@media (max-width: 559.9px) {
  .top_page_link {
    flex-direction: column;
    gap: 30px;
  }
}
.top_page_link .top_page_link_item {
  width: 48%;
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_page_link .top_page_link_item {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 559.9px) {
  .top_page_link .top_page_link_item {
    width: 100%;
  }
}
.top_page_link .top_page_link_item::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
}
.top_page_link .top_page_link_item .top_page_link_item_inner {
  position: relative;
}
.top_page_link .top_page_link_item .top_page_link_item_inner .img {
  width: 100%;
}
.top_page_link .top_page_link_item .top_page_link_item_inner .text {
  color: #FFFFFF;
  font-weight: 500;
  z-index: 3;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 20px;
}
@media (min-width: 821px) {
  .top_page_link .top_page_link_item .top_page_link_item_inner .text {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_page_link .top_page_link_item .top_page_link_item_inner .text {
    position: relative;
    background-color: white;
    padding: 10px 0;
    color: #1B1B1B;
  }
}
@media (max-width: 559.9px) {
  .top_page_link .top_page_link_item .top_page_link_item_inner .text {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.7);
  }
}
.top_page_link .top_page_link_item .top_page_link_item_inner .text > p {
  width: calc(100% - 70px);
}
@media (max-width: 559.9px) {
  .top_page_link .top_page_link_item .top_page_link_item_inner .text > p {
    font-size: 1.2rem;
    width: calc(100% - 40px);
  }
}
.top_page_link .top_page_link_item .top_page_link_item_inner .circle_btn {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 48px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.5s ease;
}
@media (max-width: 559.9px) {
  .top_page_link .top_page_link_item .top_page_link_item_inner .circle_btn {
    width: 32px;
  }
}
.top_page_link .top_page_link_item .top_page_link_item_inner .circle_btn i {
  color: #FFFFFF;
  font-size: 12px;
  transition: all 0.5s ease;
}
.top_page_link .top_page_link_item .top_page_link_title_box {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 5%;
  z-index: 3;
  width: 100%;
  position: relative;
  text-align: right;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_page_link .top_page_link_item .top_page_link_title_box {
    justify-content: flex-start;
    text-align: left;
    padding-bottom: 12px;
    padding-left: 64px;
  }
}
.top_page_link .top_page_link_item .top_page_link_title_box .packman {
  width: 58px;
  position: absolute;
  top: -20px;
  right: 144px;
  z-index: 10;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_page_link .top_page_link_item .top_page_link_title_box .packman {
    width: 50px;
    left: 0;
  }
}
@media (max-width: 559.9px) {
  .top_page_link .top_page_link_item .top_page_link_title_box .packman {
    width: 40px;
    right: 90px;
    top: -12px;
  }
}
.top_page_link .top_page_link_item .top_page_link_title_box .top_page_link_title {
  width: 100%;
  padding-top: 8px;
}
.top_page_link .top_page_link_item .top_page_link_title_box .top_page_link_title .jp {
  color: #67569E;
  font-size: min(3.2rem, 3vw);
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .top_page_link .top_page_link_item .top_page_link_title_box .top_page_link_title .jp {
    font-size: 1.8rem;
  }
}
.top_page_link .top_page_link_item .top_page_link_title_box .top_page_link_title .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #67569E;
}
@media (max-width: 559.9px) {
  .top_page_link .top_page_link_item .top_page_link_title_box .top_page_link_title .eng {
    font-size: 1.4rem;
  }
}
.top_page_link .top_page_link_item:hover .circle_btn, .top_page_link .top_page_link_item :active .circle_btn {
  background-color: rgba(255, 255, 255, 0.6);
}
.top_page_link .top_page_link_item:hover .circle_btn i, .top_page_link .top_page_link_item :active .circle_btn i {
  color: #1B1B1B;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 120s infinite linear 0.5s both;
          animation: infinity-scroll-left 120s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 360px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .scroll-infinity__item {
    width: 280px;
  }
}
@media (max-width: 559.9px) {
  .scroll-infinity__item {
    width: 256px;
  }
}
.scroll-infinity__item > img {
  width: 100%;
}

@-webkit-keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.scroll-infinity__list--right {
  -webkit-animation: infinity-scroll-right 120s infinite linear 0.5s both;
          animation: infinity-scroll-right 120s infinite linear 0.5s both;
}

/**************
Under PageTitle
**************/
.pageTitle {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 450px;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .pageTitle {
    height: 50vh;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle {
    height: 320px;
  }
}
@media (max-width: 559.9px) {
  .pageTitle {
    height: 200px;
  }
}
.pageTitle .title_inner {
  width: 100%;
  height: 100%;
  position: relative;
  color: #FFFFFF;
  overflow: hidden;
}
.pageTitle .title_inner::after {
  content: "";
  width: 50%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 559.9px) {
  .pageTitle .title_inner::after {
    width: 90%;
  }
}
.pageTitle .textArea {
  position: absolute;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  bottom: 18%;
  left: 8vw;
}
@media (max-width: 559.9px) {
  .pageTitle .textArea {
    left: 6vw;
  }
}
.pageTitle .textArea .jp {
  letter-spacing: 0.4rem;
  font-size: min(4rem, 4vw);
  font-weight: 700;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle .textArea .jp {
    font-size: 3.2rem;
  }
}
@media (max-width: 559.9px) {
  .pageTitle .textArea .jp {
    font-size: 2rem;
  }
}
.pageTitle .textArea .eng {
  text-transform: uppercase;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  font-size: min(2.4rem, 2vw);
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle .textArea .eng {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .pageTitle .textArea .eng {
    font-size: 1.6rem;
  }
}
.pageTitle .logo-big-underPage {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
}
.pageTitle .logo-big-underPage .underPage-logo {
  width: 500px;
}
.pageTitle .imgArea {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.pageTitle .imgArea::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.pageTitle .imgArea img, .pageTitle .imgArea video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 560px) {
  .pageTitle.single_page {
    height: 200px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle.single_page {
    height: 200px;
  }
}
@media (max-width: 559.9px) {
  .pageTitle.single_page {
    height: 120px;
  }
}
@media (min-width: 821px) {
  .pageTitle.single_page .textArea {
    opacity: 1;
    padding-top: 120px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle.single_page .textArea {
    padding-top: 64px;
  }
}
@media (max-width: 559.9px) {
  .pageTitle.single_page .textArea {
    padding-top: 48px;
  }
}
@media (min-width: 821px) {
  .pageTitle.single_page .textArea .jp {
    display: none;
  }
}

.breadcrumbs {
  font-size: 1.2rem;
  box-sizing: border-box;
  font-weight: 500;
  color: #1B1B1B;
  display: flex;
  align-items: center;
  height: 35px;
  background-color: #F5F5F5;
}
.breadcrumbs a {
  display: inline-block;
  font-weight: normal;
  color: #67569E;
  font-weight: 500;
  transition: all 0.2s ease;
}
.breadcrumbs a:hover, .breadcrumbs a :active {
  color: #595757;
}

.flex_content {
  width: 100%;
  margin-bottom: 80px;
}
@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.mt70 {
    margin-top: 70px;
  }
}
@media (max-width: 559.9px) {
  .flex_content {
    margin-bottom: 40px;
  }
}
@media (min-width: 560px) {
  .flex_content_r {
    flex-direction: row-reverse;
  }
}
.flex_content.mb0 {
  margin-bottom: 0;
}
@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%;
  }
}
@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%;
  }
}

@media (min-width: 1200px) {
  .leftColumn {
    width: 230px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .leftColumn {
    width: 22%;
  }
}

@media (min-width: 1200px) {
  .rightColumn {
    width: calc(100% - 340px);
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .rightColumn {
    width: 72%;
  }
}
@media (max-width: 820.9px) {
  .rightColumn {
    margin-top: 40px;
  }
}

.c_container {
  width: 100%;
}
@media (min-width: 560px) {
  .c_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 820.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: 821px) {
  .news_container {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
  }
}
@media (max-width: 820.9px) {
  .news_container {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1200px) {
  .news_container .rightColumn {
    width: calc(100% - 300px);
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .news_container .rightColumn {
    width: 72%;
  }
}
@media (max-width: 820.9px) {
  .news_container .rightColumn {
    width: 100%;
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  .news_container .leftColumn {
    width: 220px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .news_container .leftColumn {
    width: 22%;
  }
}
@media (max-width: 820.9px) {
  .news_container .leftColumn {
    margin-top: 50px;
    width: 100%;
  }
}

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

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

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

.sidebar_title {
  background-color: #ACCFE7;
  padding: 16px 18px;
}
@media (max-width: 820.9px) {
  .sidebar_title {
    display: none;
  }
}
.sidebar_title.mt35 {
  margin-top: 35px;
}
.sidebar_title .jp {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .sidebar_title .jp {
    font-size: 1.8rem;
  }
}
@media (max-width: 820.9px) {
  .sidebar_title .jp {
    font-size: 1.6rem;
  }
  .sidebar_title .jp br {
    display: none;
  }
}
.sidebar_title .eng {
  color: #fff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  line-height: 1;
}

@media (max-width: 820.9px) {
  .side_links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (min-width: 821px) {
  .side_links li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-bottom: 2px #F1F6FA solid;
  }
}
@media (min-width: 560px) and (max-width: 820.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: #1B1B1B;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .side_links li a {
    border: 1px #1B1B1B solid;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px 0 16px;
    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: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  display: block;
  position: absolute;
  right: 5px;
  top: 22px;
}
@media (max-width: 820.9px) {
  .side_links li a::before {
    top: 50%;
  }
}
.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: #ACCFE7;
  }
}

.sidebar_title02 {
  line-height: 1.4;
  padding: 0 15px;
  border-left: #1B1B1B 4px solid;
  margin-bottom: 12px;
}
.sidebar_title02.mt35 {
  margin-top: 35px;
}
.sidebar_title02 .jp {
  font-size: 1.5rem;
  color: #1B1B1B;
  font-weight: 600;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .sidebar_title02 .jp {
    font-size: 1.8rem;
  }
}
@media (max-width: 820.9px) {
  .sidebar_title02 .jp {
    font-size: 1.6rem;
  }
  .sidebar_title02 .jp br {
    display: none;
  }
}
.sidebar_title02 .eng {
  color: #b2b2b2;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  line-height: 1;
}

@media (max-width: 820.9px) {
  .side_links02 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.side_links02 li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
  background-color: #f3f3f3;
  margin-bottom: 1px;
}
@media (max-width: 820.9px) {
  .side_links02 li {
    display: block;
    width: 49.4%;
    margin-bottom: 4px;
  }
}
.side_links02 li .link_text {
  color: #1B1B1B;
  font-size: 1.4rem;
  padding: 13px 0 13px 10px;
}
.side_links02 li a {
  display: flex;
  align-items: center;
  padding: 6.4px 0 6.4px 18px;
  position: relative;
  color: #999;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .side_links02 li a {
    border: 1px #003C97 solid;
    font-size: 3vw;
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #003C97;
  }
}
@media (min-width: 560px) {
  .side_links02 li a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background-color: #ccc;
    position: absolute;
    left: 5px;
    top: 15px;
  }
}
@media (min-width: 560px) {
  .side_links02 li.active a {
    color: #333;
  }
  .side_links02 li.active a::before {
    background-color: #ACCFE7;
  }
}

/**************
技術情報
**************/
.title-backgroundImg_flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5vw;
}
@media (max-width: 559.9px) {
  .title-backgroundImg_flex {
    display: block;
  }
}
.title-backgroundImg_flex .title-backgroundImg_text {
  width: calc(100% - 25vw);
  font-size: min(3.2rem, 2.6vw);
}
@media (max-width: 559.9px) {
  .title-backgroundImg_flex .title-backgroundImg_text {
    width: 100%;
    font-size: 1.8rem;
  }
}

.undertop_flex {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 1199.9px) {
  .undertop_flex {
    margin-top: 20px;
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .undertop_flex {
    padding-bottom: 20px;
  }
}
.undertop_flex .undertop_flex_img {
  width: 45%;
  position: relative;
  z-index: 2;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .undertop_flex .undertop_flex_img {
    width: 40%;
  }
}
@media (max-width: 559.9px) {
  .undertop_flex .undertop_flex_img {
    width: 100%;
  }
}
.undertop_flex .text_item {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  background-color: rgba(243, 236, 247, 0.3);
  padding: 50px 50px 50px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .undertop_flex .text_item {
    padding: 40px 40px 40px 50px;
  }
}
@media (max-width: 559.9px) {
  .undertop_flex .text_item {
    display: none;
  }
}
.undertop_flex .text_item .text {
  font-size: 1.6rem;
}

.text_item-sp {
  background-color: rgba(243, 236, 247, 0.3);
  padding: 20px;
}
@media (min-width: 560px) {
  .text_item-sp {
    display: none;
  }
}

.undertopImg2_flex_box {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 1199.9px) {
  .undertopImg2_flex_box {
    margin-top: 20px;
  }
}
@media (max-width: 559.9px) {
  .undertopImg2_flex_box {
    padding-bottom: 20px;
    width: 100%;
  }
}
.undertopImg2_flex_box .undertopImg2_flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3vw 4%;
}
.undertopImg2_flex_box .undertopImg2_flex .undertopImg2_flex_img {
  width: 48%;
  position: relative;
  z-index: 2;
}
.undertopImg2_flex_box .undertopImg2_flex_text_item {
  background-color: rgba(243, 236, 247, 0.3);
  padding: 70px 50px 50px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin: -30px 70px 30px -70px;
}
@media (max-width: 820.9px) {
  .undertopImg2_flex_box .undertopImg2_flex_text_item {
    padding: 40px 40px 40px 50px;
  }
}
@media (max-width: 559.9px) {
  .undertopImg2_flex_box .undertopImg2_flex_text_item {
    margin: 20px 0 0 0;
    padding: 20px;
  }
}
.undertopImg2_flex_box .undertopImg2_flex_text_item .text {
  font-size: 1.6rem;
}

.tech-box {
  display: flex;
  justify-content: flex-start;
  background-color: #EDE7F6;
  position: relative;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .tech-box {
    margin-bottom: 50px;
  }
}
.tech-box:nth-child(3) {
  margin-bottom: 0;
}
.tech-box:nth-child(5) {
  margin-bottom: 0;
}
.tech-box:last-child {
  margin-bottom: 0;
}
.tech-box .left-item {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5vw;
  padding: 30px;
}
@media (max-width: 559.9px) {
  .tech-box .left-item {
    width: 100%;
  }
}
.tech-box .left-item .text {
  font-size: 1.6rem;
}
.tech-box .right_item {
  width: 50%;
}
@media (max-width: 559.9px) {
  .tech-box .right_item {
    width: 100%;
  }
}
.tech-box .right_item .tech-img {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (min-width: 560px) {
  .tech-box .right_item .tech-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;
  }
}

.pinkText {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  color: #FA3EE1;
  text-transform: uppercase;
}

.underLine_text {
  font-size: 2.4rem;
  font-weight: 900;
  color: #67569E;
  padding: 0 5px 5px;
  border-bottom: 2px solid #67569E;
}
@media (max-width: 559.9px) {
  .underLine_text {
    font-size: 2rem;
    padding-bottom: 0;
    margin-bottom: 16px;
  }
}

.diamond {
  width: 90px;
  height: 90px;
  background: url(../images/common/diamond.png) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10%;
  left: -2%;
}
@media (max-width: 559.9px) {
  .diamond {
    width: 60px;
    height: 60px;
    top: -5%;
  }
}
.diamond.small {
  width: 70px;
  height: 70px;
}
@media (max-width: 1199.9px) {
  .diamond.small {
    width: 50px;
    height: 50px;
  }
}
.diamond .num {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: #EDE7F6;
}
@media (max-width: 559.9px) {
  .diamond .num {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
  }
}

.diamond_small {
  width: 70px;
  height: 70px;
  background: url(../images/common/diamond.png) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10%;
  left: -2%;
}
@media (max-width: 1199.9px) {
  .diamond_small {
    width: 50px;
    height: 50px;
    top: -33px;
  }
}
.diamond_small .num {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #EDE7F6;
}
@media (max-width: 559.9px) {
  .diamond_small .num {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
  }
}

.tech-merit {
  width: 100%;
  background-color: #EDE7F6;
  padding: 20px 20px 30px;
  margin-bottom: 70px;
}
@media (max-width: 559.9px) {
  .tech-merit .center-title {
    margin: 0;
    line-height: 1.2;
    margin: 0 auto 10px;
  }
}

.tech-merit_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw 2%;
}
.tech-merit_flex .tech-merit_item {
  width: 32%;
  aspect-ratio: 344/320;
  min-width: 315px;
  background: url(../images/common/packmanBox.png) no-repeat center;
  background-size: cover;
  padding: 20px 10px 10px;
}
.tech-merit_flex .tech-merit_item > img {
  width: 8vw;
}
@media (max-width: 559.9px) {
  .tech-merit_flex .tech-merit_item > img {
    width: 52px;
  }
}
.tech-merit_flex .tech-merit_item .head {
  width: 90%;
  margin: 0 auto;
  background-color: #483875;
  padding: 8px 0;
  text-align: center;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 10px;
}
@media (max-width: 559.9px) {
  .tech-merit_flex .tech-merit_item .head {
    padding: 3px 0;
  }
}
.tech-merit_flex .tech-merit_item .text {
  font-size: 1.4rem;
  width: 90%;
  margin: 20px auto 0;
}
@media (max-width: 559.9px) {
  .tech-merit_flex .tech-merit_item .text {
    margin: 10px auto 0;
  }
}

.tech-features {
  width: 100%;
  background-color: #EDE7F6;
  padding: 20px 20px 30px;
  margin-bottom: 70px;
}
@media (max-width: 559.9px) {
  .tech-features {
    padding: 20px 0 30px;
  }
}
.tech-features .text {
  font-size: 1.6rem;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .tech-features .text {
    width: 90%;
  }
}

.btn_box .center-title {
  margin-top: 80px;
}

/**************
強み
**************/
.str-features-box {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .str-features-box {
    margin-bottom: 20px;
    row-gap: 10px;
  }
}
.str-features-box:last-child {
  margin-bottom: 0;
}
.str-features-box .left-item {
  width: 45%;
  height: 100%;
  padding-right: 40px;
}
@media (max-width: 559.9px) {
  .str-features-box .left-item {
    width: 100%;
    padding-right: 0;
  }
}
.str-features-box .left-item > img {
  width: 8vw;
  margin-bottom: 20px;
}
@media (max-width: 559.9px) {
  .str-features-box .left-item > img {
    width: 53px;
  }
}
.str-features-box .left-item .point {
  font-size: 1.6rem;
  color: #67569E;
  width: 8vw;
  text-align: center;
}
@media (max-width: 559.9px) {
  .str-features-box .left-item .point {
    width: 53px;
  }
}
.str-features-box .left-item .head {
  width: 100%;
  background-color: #483875;
  padding: 8px 0;
  text-align: center;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 559.9px) {
  .str-features-box .left-item .head {
    font-size: 1.6rem;
  }
}
.str-features-box .left-item .text {
  font-size: 1.6rem;
  margin: 20px auto 0;
}
.str-features-box .right_item {
  width: 55%;
}
@media (max-width: 559.9px) {
  .str-features-box .right_item {
    width: 100%;
  }
}
.str-features-box .right_item .str-img {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (min-width: 560px) {
  .str-features-box .right_item .str-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;
  }
}

.stre-flow {
  display: flex;
  justify-content: space-between;
  gap: 4vw 4%;
  flex-wrap: wrap;
}
@media (max-width: 1199.9px) {
  .stre-flow {
    gap: 6vw 4%;
  }
}
@media (max-width: 559.9px) {
  .stre-flow {
    row-gap: 12vw;
  }
}
.stre-flow .stre-flow_item {
  width: 48%;
  background-color: #FFFFFF;
  padding: 20px 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
}
@media (max-width: 559.9px) {
  .stre-flow .stre-flow_item {
    width: 100%;
  }
}
.stre-flow .stre-flow_item .left-item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1vw;
  padding: 0 20px;
}
@media (max-width: 559.9px) {
  .stre-flow .stre-flow_item .left-item {
    width: 100%;
  }
}
.stre-flow .stre-flow_item .left-item .head {
  font-size: 1.8rem;
  font-weight: 700;
  color: #483875;
}
.stre-flow .stre-flow_item .left-item .text {
  font-size: 1.2rem;
  color: #483875;
}
.stre-flow .stre-flow_item .right-item {
  padding: 0 20px;
  width: 50%;
}
@media (max-width: 559.9px) {
  .stre-flow .stre-flow_item .right-item {
    width: 100%;
  }
}

/**************
会社案内
**************/
.page_navi {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw 3%;
}
.page_navi .page_navi_linkbtn {
  position: relative;
  background-color: #67569E;
  padding: 9px 40px;
  border: 1px #67569E solid;
  transition: all 0.3s ease;
}
@media (max-width: 559.9px) {
  .page_navi .page_navi_linkbtn {
    padding: 6px 40px;
  }
}
.page_navi .page_navi_linkbtn .eng {
  color: #FFFFFF;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  transition: all 0.3s ease;
}
@media (max-width: 559.9px) {
  .page_navi .page_navi_linkbtn .eng {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
  }
}
.page_navi .page_navi_linkbtn .jp {
  font-size: 1.6rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.5;
  transition: all 0.3s ease;
}
@media (max-width: 559.9px) {
  .page_navi .page_navi_linkbtn .jp {
    font-size: 1.5rem;
  }
}
.page_navi .page_navi_linkbtn i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.page_navi .page_navi_linkbtn:hover, .page_navi .page_navi_linkbtn :active {
  background-color: #F5F5F5;
}
.page_navi .page_navi_linkbtn:hover .eng, .page_navi .page_navi_linkbtn :active .eng {
  color: #67569E;
}
.page_navi .page_navi_linkbtn:hover .jp, .page_navi .page_navi_linkbtn :active .jp {
  color: #67569E;
}
.page_navi .page_navi_linkbtn:hover i, .page_navi .page_navi_linkbtn :active i {
  color: #67569E;
}

.presidentText {
  margin-bottom: 20px;
}
.presidentText:last-child {
  margin-bottom: 0;
}

.ptLink {
  color: #284B7D;
  border-bottom: 1px solid #284B7D;
}

.p-name {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.tiger_head {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.tiger_text {
  font-size: 1.4rem;
  text-align: center;
}

.pachet {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
.pachet:last-child {
  margin-bottom: 0;
}
.pachet img {
  transition: all 0.3s ease;
}
.pachet .bgBox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(12, 12, 12, 0.5);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pachet .bgBox .pachet_text {
  font-size: 1.4rem;
  color: #FFFFFF;
}
.pachet .bgBox i {
  color: #FFFFFF;
}
.pachet:hover img, .pachet :active img {
  transform: scale(1.1);
}

.philosophy {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 820.9px) {
  .philosophy {
    width: 100%;
  }
}

.philosophy_inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.philosophy_inner:last-child {
  margin-bottom: 0;
}
@media (max-width: 559.9px) {
  .philosophy_inner {
    display: block;
    margin-bottom: 20px;
  }
}
.philosophy_inner .phil-diamond {
  width: 100px;
  height: 100px;
  background: url(../images/common/diamond.png) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .philosophy_inner .phil-diamond {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
}
.philosophy_inner .phil-diamond .num {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #EDE7F6;
}
@media (max-width: 559.9px) {
  .philosophy_inner .phil-diamond .num {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }
}
.philosophy_inner .phil-text {
  font-size: 2rem;
  width: calc(95% - 100px);
}
@media (max-width: 559.9px) {
  .philosophy_inner .phil-text {
    font-size: 1.6rem;
    width: 100%;
    margin-top: 10ppx;
  }
}

.history_box {
  width: 100%;
  padding: 40px 50px;
  background-color: #EDE7F6;
}
@media (max-width: 559.9px) {
  .history_box {
    padding: 20px;
  }
}

.solution_box_inner {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 4px;
  overflow: hidden;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media (min-width: 560px) {
  .solution_box_inner:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 559.9px) {
  .solution_box_inner {
    display: block;
  }
}
.solution_box_inner .left {
  width: 25%;
  text-align: center;
  position: relative;
}
@media (max-width: 559.9px) {
  .solution_box_inner .left br {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .solution_box_inner .left {
    width: 100%;
  }
}
.solution_box_inner .left::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 30px;
  background-color: #EE4343;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 559.9px) {
  .solution_box_inner .left::after {
    width: 60px;
    height: 2px;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
  }
}
.solution_box_inner .right {
  width: 75%;
  padding: 0 15px;
}
@media (max-width: 559.9px) {
  .solution_box_inner .right {
    width: 100%;
    padding: 10px;
    text-align: center;
  }
}
.solution_box_inner__h-ver {
  font-weight: 400;
}
.solution_box_inner__h-ver .left {
  width: 140px;
}
@media (max-width: 559.9px) {
  .solution_box_inner__h-ver .left {
    margin: 0 auto;
  }
}
.solution_box_inner__h-ver .left::after {
  background-color: lightgray;
}
@media (max-width: 559.9px) {
  .solution_box_inner__h-ver .right {
    text-align: left;
  }
}

/**************
製品情報
**************/
.sort_tabs {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .sort_tabs {
    width: 90%;
  }
}

.sort_tab_area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media (min-width: 560px) {
  .sort_tab_area {
    flex-wrap: wrap;
  }
}
@media (max-width: 559.9px) {
  .sort_tab_area {
    margin-bottom: 10px;
  }
}
.sort_tab_area .sort_name {
  color: #1B1B1B;
  font-weight: bold;
  width: 140px;
  position: relative;
}
@media (min-width: 560px) {
  .sort_tab_area .sort_name::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #595757;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (max-width: 820.9px) {
  .sort_tab_area .sort_name {
    background-color: #1B1B1B;
    width: 120px;
    height: 32px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 559.9px) {
  .sort_tab_area .sort_name {
    width: 100px;
    font-size: 1.2rem;
    border-top: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
    background-color: #aaa;
    height: 34px;
  }
}
.sort_tab_area .sort_tab_scroll {
  overflow-x: scroll;
  scrollbar-width: none;
  flex: 1;
}
@media (min-width: 560px) {
  .sort_tab_area .sort_tab_scroll {
    padding-left: 20px;
  }
}
@media (max-width: 820.9px) {
  .sort_tab_area .sort_tab_scroll {
    width: calc(100% - 120px);
  }
}
@media (max-width: 559.9px) {
  .sort_tab_area .sort_tab_scroll {
    width: calc(100% - 100px);
    border-top: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
  }
}
.sort_tab_area .sort_tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sort_tab_area .sort_tab li {
  background-color: white;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 559.9px) {
  .sort_tab_area .sort_tab li {
    font-size: 1.2rem;
  }
}
.sort_tab_area .sort_tab li.current-cat {
  background-color: #f3f6f9;
  color: #1B1B1B;
}
.sort_tab_area .sort_tab li a {
  color: #76828f;
  padding: 0 16px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  font-feature-settings: "palt";
}
.sort_tab_area .sort_tab li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 60%;
  background-color: #ACCFE7;
  display: block;
  position: absolute;
  right: -1px;
  top: 20%;
  opacity: 0.6;
  z-index: 1;
}
@media (min-width: 560px) {
  .sort_tab_area .sort_tab li:not(:last-child)::after {
    transform: rotate(30deg);
  }
}
@media (max-width: 559.9px) {
  .sort_tab_area .sort_tab li:not(:last-child)::after {
    top: 0;
    height: 100%;
  }
}

.product_list_area {
  margin-top: 50px;
  padding-bottom: 80px;
}

.products {
  width: 100%;
}
@media (min-width: 560px) {
  .products {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px 24px;
    flex-wrap: wrap;
  }
}
.products .products_item {
  position: relative;
}
@media (min-width: 560px) {
  .products .products_item {
    width: calc(33.3333333333% - 16px);
  }
}
@media (max-width: 559.9px) {
  .products .products_item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.products .products_item .thumb {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  overflow: hidden;
}
.products .products_item .thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.4s ease;
}
.products .products_item .thumb:hover img {
  transform: scale(1.05);
}
.products .products_item .products_name {
  font-size: 1.6rem;
  color: #595757;
  font-weight: 500;
  margin: 5px 0 8px;
}
.products .products_item .inner {
  margin-top: 10px;
}
.products .products_item .inner dl dt {
  border-bottom: 1px #DADADA solid;
  font-size: 1.33rem;
  color: #6c6e70;
  font-weight: 500;
  padding: 0 4px;
}
.products .products_item .inner dl dd {
  padding: 3px 4px 7px;
}

.product_cat_tags {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.product_cat_tags .product_cat_tag {
  display: inline-block;
  padding: 1px 12px;
  background-color: white;
  color: #284B7D;
  font-size: 1.2rem;
  border: 1px #284B7D solid;
}
@media (max-width: 559.9px) {
  .product_cat_tags .product_cat_tag {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
.product_cat_tags .product_cat_tag:not(:last-child) {
  margin-right: 3px;
}
.product_cat_tags .product_cat_tag.t_cat {
  border-color: #EE4343;
  color: #EE4343;
}

.searchHead {
  margin: 30px 0;
}

/**************
製品詳細
**************/
.product_container {
  width: 100%;
}
@media (min-width: 821px) {
  .product_container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 821px) {
  .product_container .imgSide {
    width: 50%;
  }
}
@media (max-width: 820.9px) {
  .product_container .imgSide {
    width: 100%;
  }
}
@media (min-width: 821px) {
  .product_container .textSide {
    width: 45%;
  }
}
@media (max-width: 820.9px) {
  .product_container .textSide {
    width: 100%;
    margin-top: 30px;
  }
}

.product_single_slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product_single_slider .swiper-button-next,
.product_single_slider .swiper-button-prev {
  --swiper-navigation-color: #fff;
}
.product_single_slider .swiper-slide img {
  display: block;
  width: 100%;
}

.product_single_thumbnail {
  width: 100%;
  margin-top: 24px;
}
.product_single_thumbnail .swiper-wrapper {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.product_single_thumbnail .swiper-slide {
  cursor: pointer;
  position: relative;
}
.product_single_thumbnail .swiper-slide.swiper-slide-thumb-active::after {
  content: "";
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  border: 5px #284B7D solid;
}

.p_exp {
  margin-top: 24px;
}

.p_detail {
  margin-top: 30px;
}
.p_detail dl dt {
  border-bottom: 1px #DADADA solid;
  font-size: 1.33rem;
  color: #6c6e70;
  font-weight: 500;
  padding: 0 4px;
}
.p_detail dl dd {
  padding: 3px 4px 7px;
}

/**************
会社情報
**************/
.top-message {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.9px) {
  .top-message {
    margin-bottom: 40px;
  }
}
@media (max-width: 559.9px) {
  .top-message {
    margin-bottom: 20px;
  }
}
.top-message .logo_bgBlue {
  position: absolute;
  width: 40%;
  top: 60%;
  right: -22%;
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: darken;
}
@media (max-width: 559.9px) {
  .top-message .logo_bgBlue {
    width: 90%;
    top: 68%;
    right: -40%;
  }
}

.president-img {
  width: 60%;
  margin: 0 auto 10px;
}

.overview {
  padding: 80px 0;
}
@media (max-width: 1199.9px) {
  .overview {
    padding: 40px 0;
  }
}
@media (max-width: 559.9px) {
  .overview {
    padding: 20px 0;
  }
}

.history {
  padding: 80px 0;
}
@media (max-width: 1199.9px) {
  .history {
    padding: 40px 0;
  }
}
@media (max-width: 559.9px) {
  .history {
    padding: 20px 0;
  }
}

.table-row3 {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-top: 2px #FFFFFF solid;
  padding: 10px;
}
.table-row3:last-child {
  border-bottom: 2px #FFFFFF solid;
}
@media (max-width: 559.9px) {
  .table-row3 {
    display: block;
  }
}
.table-row3 .history_flex_box {
  width: 40%;
  display: flex;
}
@media (max-width: 559.9px) {
  .table-row3 .history_flex_box {
    width: 100%;
  }
}
.table-row3 .history_flex_box .year {
  width: 75%;
}
@media (max-width: 559.9px) {
  .table-row3 .history_flex_box .year {
    width: 50%;
  }
}
.table-row3 .history_flex_box .year .year_text {
  text-align: center;
  position: relative;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  border-right: 2px #FFFFFF solid;
}
@media (max-width: 820.9px) {
  .table-row3 .history_flex_box .year .year_text {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }
}
.table-row3 .history_flex_box .year .year_text::before {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 2px;
  display: inline-block;
  background-color: #EE4343;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .table-row3 .history_flex_box .year .year_text::before {
    width: 14%;
    left: 10%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .table-row3 .history_flex_box .year .year_text::before {
    left: 5%;
  }
}
@media (max-width: 559.9px) {
  .table-row3 .history_flex_box .year .year_text::before {
    left: 0;
  }
}
.table-row3 .history_flex_box .month {
  width: 25%;
}
@media (max-width: 559.9px) {
  .table-row3 .history_flex_box .month {
    width: 50%;
  }
}
.table-row3 .history_flex_box .month .month_text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #EE4343;
  border-right: 2px #FFFFFF solid;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .table-row3 .history_flex_box .month .month_text {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .table-row3 .history_flex_box .month .month_text {
    border-right: none;
  }
}
.table-row3 .text {
  width: 60%;
}
@media (max-width: 559.9px) {
  .table-row3 .text {
    width: 100%;
  }
}
.table-row3 .text .text-inner {
  padding-left: 40px;
}
@media (max-width: 559.9px) {
  .table-row3 .text .text-inner {
    padding-left: 34px;
  }
}

.access {
  margin-bottom: 60px;
}
.access:last-child {
  margin-bottom: 0;
}
@media (max-width: 559.9px) {
  .access {
    margin-bottom: 30px;
  }
}

.access_head {
  color: #67569E;
  font-size: 2.4rem;
  text-align: center;
}

.access_box {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4vw 3%;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .access_box {
    margin-top: 20px;
  }
}
.access_box .left_item {
  width: 47%;
}
@media (max-width: 559.9px) {
  .access_box .left_item {
    width: 100%;
  }
}
.access_box .right_item {
  width: 50%;
}
@media (max-width: 559.9px) {
  .access_box .right_item {
    width: 100%;
  }
}
.access_box .right_item .com-info .com-info-inner {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 1vw 2%;
  flex-wrap: wrap;
}
.access_box .right_item .com-info .com-info-inner .info-head {
  background-color: #595757;
  padding: 5px 0;
  width: 102px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}
.access_box .right_item .com-info .com-info-inner .com-info-text {
  font-size: 1.7rem;
  width: calc(98% - 102px);
}
@media (max-width: 559.9px) {
  .access_box .right_item .com-info .com-info-inner .com-info-text {
    width: 100%;
  }
}
.access_box .right_item .access_info_box {
  background-color: #F5F5F5;
  margin-top: 20px;
  padding: 30px;
  display: inline-block;
}
@media (max-width: 820.9px) {
  .access_box .right_item .access_info_box {
    padding: 20px;
  }
}
@media (max-width: 559.9px) {
  .access_box .right_item .access_info_box {
    margin-top: 10px;
  }
}
.access_box .right_item .access-info {
  margin-bottom: 10px;
}
.access_box .right_item .access-info:last-child {
  margin-bottom: 0;
}
.access_box .right_item .access-info .head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  line-height: 1.2;
}
.access_box .right_item .access-info .head i {
  font-size: 2.6rem;
  color: #67569E;
}
.access_box .right_item .access-info .head .text {
  font-weight: 700;
  font-size: 1.7rem;
}
@media (max-width: 820.9px) {
  .access_box .right_item .access-info .head .text {
    font-size: 1.6rem;
  }
}

.map {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 600/250;
}
@media (max-width: 559.9px) {
  .map {
    aspect-ratio: 2/1;
  }
}

.landmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw 5%;
  margin-top: 20px;
  flex-wrap: wrap;
}
.landmark .left_item {
  width: 55%;
}
@media (max-width: 559.9px) {
  .landmark .left_item {
    width: 100%;
  }
}
.landmark .left_item img {
  width: 180px;
  margin: 0 auto 20px;
  display: block;
}
.landmark .left_item .text {
  font-size: 2rem;
}
@media (max-width: 559.9px) {
  .landmark .left_item .text {
    font-size: 1.6rem;
  }
}
.landmark .landmark-img {
  width: 40%;
}
@media (max-width: 559.9px) {
  .landmark .landmark-img {
    width: 100%;
  }
}

.environmental {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .environmental {
    width: 100%;
  }
}
.environmental .environmental_head_box {
  background-color: #019D76;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px;
  position: relative;
  color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .environmental .environmental_head_box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
  }
}
.environmental .environmental_head_box .head {
  font-size: 2.6rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .environmental .environmental_head_box .head {
    font-size: 1.8rem;
  }
}
.environmental .environmental_head_box .head_com {
  position: absolute;
  font-size: 2.2rem;
  font-weight: 700;
  right: 30px;
  bottom: 15px;
}
@media (max-width: 559.9px) {
  .environmental .environmental_head_box .head_com {
    right: 10px;
    bottom: -2px;
    font-size: 1.4rem;
  }
}

.environmental_text {
  font-size: 2rem;
  margin-top: 20px;
}
@media (max-width: 559.9px) {
  .environmental_text {
    font-size: 1.6rem;
  }
}

.environmentSheet {
  margin-top: 30px;
}
@media (max-width: 559.9px) {
  .environmentSheet {
    margin-top: 20px;
  }
}

.environmental_text_box {
  margin-top: 20px;
}

.kome {
  color: #595757;
}

.company-logo-img {
  width: 180px;
  margin: 10px 0 0 auto;
}

.QandA_content {
  background-color: #FFFFFF;
  padding: 30px;
}
@media (max-width: 559.9px) {
  .QandA_content {
    padding: 20px;
  }
}
.QandA_content .access_head {
  margin-bottom: 30px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .QandA_content .access_head {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
  }
}

.QandA {
  width: 80%;
  margin: 0 auto 30px;
}
.QandA:last-child {
  margin-bottom: 0;
}
@media (max-width: 559.9px) {
  .QandA {
    width: 100%;
  }
}
.QandA .QandA_inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
  gap: 20px;
}
@media (max-width: 559.9px) {
  .QandA .QandA_inner {
    gap: 10px;
  }
}

.icon_ques {
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #67569E;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
@media (max-width: 559.9px) {
  .icon_ques {
    width: 30px;
  }
}
.icon_ques > p {
  color: #FFFFFF;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.question {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 2px solid #EDE7F6;
  width: calc(100% - 60px);
}
@media (max-width: 559.9px) {
  .question {
    width: calc(100% - 40px);
    font-size: 1.6rem;
  }
}

.icon_answ {
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #FA3EE1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
@media (max-width: 559.9px) {
  .icon_answ {
    width: 30px;
  }
}
.icon_answ > p {
  color: #FFFFFF;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.answer {
  width: calc(100% - 60px);
}
@media (max-width: 559.9px) {
  .answer {
    width: calc(100% - 40px);
  }
}

.answer-ol {
  list-style: decimal;
  width: calc(100% - 60px);
}
@media (max-width: 559.9px) {
  .answer-ol {
    width: calc(100% - 40px);
  }
}

/**************
お問い合わせ
**************/
.telfax_box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  padding: 40px;
}
@media (max-width: 559.9px) {
  .telfax_box {
    width: 100%;
    row-gap: 25px;
    padding: 20px;
  }
}

.contact_box {
  width: 50%;
  border-right: 2px #FFFFFF solid;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact_box:last-child {
  border-right: 0 #FFFFFF solid;
}
@media (max-width: 559.9px) {
  .contact_box {
    width: 100%;
    border-right: 0 #FFFFFF solid;
    border-bottom: 2px #FFFFFF solid;
  }
  .contact_box:last-child {
    border-bottom: 0 #FFFFFF solid;
  }
}
.contact_box .tel {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #483875;
  border-radius: 20px;
  color: #FFFFFF;
}
.contact_box .numBox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  margin-top: 20px;
}
.contact_box .numBox i {
  color: #67569E;
  font-size: min(4rem, 3.2vw);
}
@media (max-width: 559.9px) {
  .contact_box .numBox i {
    font-size: 2.4rem;
  }
}
.contact_box .numBox .num {
  font-size: min(4rem, 3.2vw);
  font-weight: 700;
  color: #67569E;
}
@media (max-width: 559.9px) {
  .contact_box .numBox .num {
    font-size: 2.8rem;
  }
}
.contact_box .numBox .small {
  font-size: 1.1rem;
  color: #67569E;
  position: absolute;
  right: 3%;
  top: 0;
}
.contact_box .numBox .small.item2 {
  right: 6%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .contact_box .numBox .small.item2 {
    right: 2%;
  }
}
@media (max-width: 559.9px) {
  .contact_box .numBox .small.item2 {
    right: 3%;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .contact_box .numBox .small {
    right: 1%;
    top: -10%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .contact_box .numBox .small {
    right: -4%;
    top: -10%;
  }
}
@media (max-width: 559.9px) {
  .contact_box .numBox .small {
    right: -1%;
    top: -10%;
  }
}

.mail_cont {
  max-width: 900px;
  margin: 80px auto 0;
}
@media (max-width: 559.9px) {
  .mail_cont {
    margin-top: 40px;
  }
}

.con02_text {
  font-size: 1em;
  margin-bottom: 15px;
}
@media (max-width: 559.9px) {
  .con02_text {
    font-size: 0.9em;
    margin-bottom: 8px;
  }
}

.contact_table {
  width: 100%;
}
.contact_table tr th {
  border: 1px solid #1B1B1B;
  padding: 18px 24px;
  width: 32%;
  vertical-align: middle;
  text-align: left;
  background-color: #F5F5F5;
}
@media (max-width: 1199.9px) {
  .contact_table tr th {
    display: block;
    padding: 16px 5px;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 559.9px) {
  .contact_table tr th {
    padding: 8px 5px;
    font-size: 1.4rem;
    border-collapse: collapse;
  }
}
.contact_table tr th .hissu_cell {
  position: relative;
  color: #1B1B1B;
}
@media (max-width: 1199.9px) {
  .contact_table tr th .hissu_cell {
    padding-left: 10px;
  }
}
.contact_table tr th .hissu_cell .hissu {
  background-color: #483875;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  padding: 4px 11px;
  position: absolute;
  right: 0;
  top: 50%;
  color: #FFFFFF;
  margin-top: -13px;
}
@media (max-width: 1199.9px) {
  .contact_table tr th .hissu_cell .hissu {
    padding: 0 7px 1px;
    margin-top: -10px;
    margin-right: 10px;
  }
}
.contact_table tr td {
  padding: 18px 24px;
  border: 1px solid #1B1B1B;
  width: 68%;
}
@media (max-width: 1199.9px) {
  .contact_table tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 6px;
    border-top: 0;
  }
}
@media (max-width: 559.9px) {
  .contact_table tr td {
    padding: 8px 5px;
    font-size: 1.4rem;
  }
}
@media (min-width: 560px) {
  .contact_table tr:last-child th {
    border-bottom: 1px solid #1B1B1B;
  }
}
.contact_table tr:last-child td {
  border-bottom: 1px solid #1B1B1B;
}

.privacy_cont {
  width: 90%;
  margin: 80px auto 0;
}
@media (max-width: 559.9px) {
  .privacy_cont {
    margin: 40px auto 0;
  }
}

.privacy_policy {
  height: 400px;
  padding: 30px;
  border: 1px #595757 solid;
  overflow-y: scroll;
}
@media (max-width: 559.9px) {
  .privacy_policy {
    width: 100%;
    padding: 10px;
    font-size: 1.3rem;
  }
}
@media (min-width: 560px) {
  .privacy_policy .privacy_policy_box {
    padding: 0 24px;
  }
}
.privacy_policy .privacy_policy_box *:first-child {
  margin-top: 0;
}
.privacy_policy .privacy_policy_box ul {
  margin-top: 10px;
}
.privacy_policy .privacy_policy_box p {
  margin-top: 10px;
}
.privacy_policy .privacy_policy_box h3 {
  font-size: 110%;
  margin-top: 24px;
  margin-bottom: 8px;
}
.privacy_policy .privacy_policy_box h4 {
  font-size: 105%;
  margin-top: 20px;
}
.privacy_policy .privacy_policy_box h5 {
  margin-top: 15px;
}

.privacyCheck {
  text-align: center;
  margin: 40px 0;
}
.privacyCheck p {
  margin: 20px 0;
}

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: 1199.9px) {
  .c-input {
    height: auto;
    padding: 8px 4%;
    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: 820.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: 1199.9px) {
  .c-radio-list__item {
    text-align: left;
  }
}
.c-radio-list__item label {
  cursor: pointer;
  margin-right: 20px;
}
@media (max-width: 1199.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: 1199.9px) {
  .c-textarea {
    box-sizing: border-box;
    width: 100%;
    height: 120px;
  }
}

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

.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: 1199.9px) {
  .c-submit,
.c-confirm,
.c-back {
    width: 48%;
    padding: 15px 0;
  }
}

.c-submit {
  border: 2px #003C97 solid;
  color: #fff;
  background-color: #003C97;
  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;
}
.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: 1199.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: 1199.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-info {
  background-color: #21b2c1;
  border-color: #21b2c1 #21b2c1 #1d8691;
  border-bottom: 3px solid #1d8691;
}
.btn-info:hover {
  background-color: #2fccdc;
  border-bottom: 3px solid #1d8691;
  border-color: #2fccdc #2fccdc #2fccdc;
}

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;
}

/**************
プライバシーポリシー
**************/
.sq_black::before {
  background-color: black;
}

.privacy {
  background-color: #fff;
}
@media (min-width: 560px) {
  .privacy {
    padding: 0 24px;
  }
}
.privacy *:first-child {
  margin-top: 0;
}
.privacy ul {
  margin-top: 10px;
}
.privacy ul li {
  margin-top: 5px;
}
.privacy p {
  margin-top: 24px;
}
.privacy h3 {
  font-size: 110%;
  margin-top: 24px;
  margin-bottom: 8px;
}
.privacy h4 {
  font-size: 105%;
  margin-top: 20px;
}
.privacy h5 {
  margin-top: 15px;
}

/**************
設備情報
**************/
.imgList {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 2%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .imgList {
    gap: 16px 2%;
  }
}
.imgList > li {
  position: relative;
}
@media (min-width: 560px) {
  .imgList > li {
    width: 32%;
  }
}
@media (max-width: 559.9px) {
  .imgList > li {
    width: 100%;
  }
}
.imgList > li .thumb {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.imgList > li .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.5s ease;
}
.imgList > li .inner {
  padding: 16px 24px;
}
@media (max-width: 820.9px) {
  .imgList > li .inner {
    padding: 10px 18px 14px;
  }
}

.equips {
  width: 100%;
  overflow: hidden;
}

.equip_box {
  margin-top: 64px;
}

.table_facility {
  width: 100%;
  position: relative;
  z-index: 3;
  min-width: 720px;
}
@media (max-width: 559.9px) {
  .table_facility {
    margin-top: 20px;
    width: 800px;
    table-layout: fixed;
    -webkit-text-size-adjust: 100%;
  }
}
.table_facility thead tr th {
  background-color: #F5F5F5;
  padding: 8px 16px;
  text-align: left;
  color: #1B1B1B;
}
@media (min-width: 560px) {
  .table_facility thead tr th {
    width: 47%;
  }
}
@media (max-width: 820.9px) {
  .table_facility thead tr th {
    font-size: 13px;
    padding: 8px;
  }
}
.table_facility thead tr th:last-child {
  text-align: center;
  width: 80px;
}
.table_facility tbody tr td {
  border-bottom: 1px #DADADA solid;
  padding: 8px 16px;
}
.table_facility tbody tr td:last-child {
  text-align: center;
  width: 80px;
}
@media (max-width: 820.9px) {
  .table_facility tbody tr td {
    font-size: 13px;
    padding: 8px;
  }
}

/**************
新着情報
**************/
.news_single {
  padding: 24px 64px 64px;
  background-color: white;
  margin-bottom: 90px;
}
@media (max-width: 820.9px) {
  .news_single {
    margin-bottom: 50px;
    padding: 30px;
  }
}
@media (max-width: 559.9px) {
  .news_single {
    padding: 16px 24px 24px;
  }
}

.single_title {
  font-size: 2.4rem;
  line-height: 1.5;
  margin: 40px 0 50px;
}
@media (max-width: 820.9px) {
  .single_title {
    font-size: 2rem;
    margin: 20px 0 30px;
  }
}
@media (max-width: 559.9px) {
  .single_title {
    padding: 0 0;
  }
}

.post_data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post_data .news_date {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.single_icatch {
  width: 100%;
  background-color: #1B1B1B;
  position: relative;
  margin-bottom: 20px;
}
.single_icatch img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single_cat_tag {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.single_cat_tag .single_cat_tag_item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px #67569E solid;
  padding: 1px 10px;
  font-size: 1.3rem;
}
@media (max-width: 559.9px) {
  .single_cat_tag .single_cat_tag_item {
    font-size: 1.2rem;
  }
}

.single_content {
  padding: 24px 0;
}
@media (max-width: 559.9px) {
  .single_content {
    padding: 20px 0;
  }
}
.single_content *:first-child {
  margin-top: 0;
}
.single_content img {
  max-width: 100% !important;
  height: auto;
}
.single_content .auto {
  margin: 15px 0;
}
.single_content h1 {
  font-size: 3rem;
  margin-top: 56px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 820.9px) {
  .single_content h1 {
    font-size: 2.1rem;
    margin: 30px 0 12px;
  }
}
.single_content h2 {
  font-size: 2.4rem;
  font-weight: 700 !important;
  margin: 40px 0 24px;
  border-radius: 4px;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px #ccc solid;
}
@media (max-width: 820.9px) {
  .single_content h2 {
    font-size: 1.9rem;
    margin: 30px 0 12px;
  }
}
.single_content h3 {
  font-size: 2rem;
  color: #444;
  margin: 40px 0 20px;
  font-weight: 700 !important;
}
@media (max-width: 820.9px) {
  .single_content h3 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
  }
}
.single_content h4 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
}
@media (max-width: 820.9px) {
  .single_content h4 {
    font-size: 1.7rem;
    margin: 20px 0 16px;
  }
}
.single_content h5 {
  position: relative;
  margin: 40px 0 16px;
  font-size: 1.7rem;
  padding-left: 15px;
}
@media (max-width: 820.9px) {
  .single_content h5 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
  }
}
.single_content h5::before {
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #07afbf;
  content: "";
  display: block;
}
.single_content h6 {
  font-size: 1.6rem;
  color: #666;
  position: relative;
  padding-left: 16px;
  margin: 40px 0 16px;
}
@media (max-width: 820.9px) {
  .single_content h6 {
    margin: 32px 0 16px;
  }
}
.single_content h6::before {
  background: #3875a1;
  width: 5px;
  height: 90%;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 5%;
}
.single_content table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}
.single_content table th,
.single_content table td {
  vertical-align: middle;
  padding: 15px 10px;
  border: 1px solid #ddd;
  margin: 0;
}
.single_content table th {
  text-align: center;
  background: #eee;
  font-weight: bold;
}
.single_content blockquote {
  position: relative;
  box-sizing: border-box;
  padding: 45px 20px 45px 30px;
  margin: 0 0 30px;
  font-weight: 400;
  color: #444;
  background-color: #f3f3f3;
  border: 1px #ddd solid;
}
@media (max-width: 820.9px) {
  .single_content blockquote {
    padding: 20px 5%;
  }
}
.single_content pre {
  padding: 20px;
  margin: 20px;
  background: #eee;
  border-radius: 5px;
  font-size: 1.5rem;
  white-space: pre-line;
}
.single_content code {
  word-wrap: break-word;
  font-size: 1.5rem;
}
.single_content .word-set {
  display: inline-table;
  position: relative;
  vertical-align: baseline;
  white-space: initial;
}
.single_content .aligncenter {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
}
.single_content .alignright {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
}
.single_content img {
  height: auto;
}
.single_content ul {
  list-style: inherit;
}
.single_content ul li {
  list-style-type: inherit;
  list-style-position: inside;
}
.single_content ol {
  list-style: inherit;
}
.single_content ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

.single_page_navi {
  background-color: #f3f3f3;
  padding: 30px;
  border-radius: 8px;
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820.9px) {
  .single_page_navi {
    padding: 16px;
    margin-top: 36px;
    border-radius: 8px;
  }
}
.single_page_navi a {
  color: #666;
}
.single_page_navi a:nth-child(2) {
  margin: 0 72px;
}
@media (max-width: 820.9px) {
  .single_page_navi a:nth-child(2) {
    margin: 0 24px;
  }
}
.single_page_navi a img {
  display: block;
  width: 22px;
}

@media (max-width: 820.9px) {
  .single_info {
    margin-top: 25px;
    padding-top: 15px;
  }
}

.side_title {
  padding: 8px 12px;
  color: #595757;
  font-weight: bold;
  background: rgba(10, 51, 89, 0.2);
}
@media (max-width: 820.9px) {
  .side_title {
    margin-bottom: 12px;
  }
}

.side_list li a {
  border-bottom: 1px #ccc solid;
  display: block;
  padding: 8px;
  color: #666;
  background-color: #fff;
  font-size: 1.4rem;
}
@media (min-width: 560px) {
  .side_list li a {
    transition: all 0.3s ease;
  }
  .side_list li a:hover {
    background-color: #f3f3f3;
  }
}
.side_list li a i {
  margin-right: 4px;
}

.side_column_list li {
  border-bottom: 1px #ddd solid;
}
.side_column_list li a {
  width: 100%;
  padding: 12px 0;
  display: block;
  transition: all 0.3s ease;
}
.side_column_list li a:hover {
  background-color: #f3f3f3;
}
.side_column_list li a .inner {
  width: 100%;
}
.side_column_list li a .inner .date {
  color: #666;
  font-size: 1.2rem;
}
.side_column_list li a .inner .tit {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .side_column_list li a .inner .tit {
    -webkit-line-clamp: 2;
  }
}

.side_btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  width: 100%;
  padding: 0 16px;
  background: linear-gradient(0deg, #003C97 0 50%, #0b39af 50% 100%);
  color: #fff;
  margin-top: 8px;
  line-height: 1.6;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .side_btn {
    padding: 0 12px;
    font-size: 1.4rem;
  }
}
@media (min-width: 560px) {
  .side_btn {
    transition: all 0.3s ease;
  }
  .side_btn:hover {
    opacity: 0.8;
    color: white;
  }
}
.side_btn i {
  font-size: 2.4rem;
  margin-right: 16px;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .side_btn i {
    font-size: 1.8rem;
    margin-right: 12px;
  }
}

.single_info {
  padding-bottom: 16px;
  border-bottom: #ddd 1px solid;
  margin-bottom: 24px;
}
@media (min-width: 560px) {
  .single_info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.single_info .date {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: #666;
}

/* ------------
PAGENATION
------------- */
.wp-pagenavi {
  padding: 12px 5px;
  background: #f3f3f3;
  border-radius: 4px;
  font-size: 100%;
  text-align: center;
  border: 1px #ddd solid;
  margin-top: 30px;
}

.all_seminar .wp-pagenavi {
  margin: 0 auto;
}

.wp-pagenavi span,
.wp-pagenavi a {
  padding: 5px 7px !important;
  border-radius: 3px;
}

.wp-pagenavi .page,
.wp-pagenavi .pages,
.wp-pagenavi .extend,
.wp-pagenavi .last,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  background: #fff;
}

.wp-pagenavi .current {
  background: #1eb0d6;
  color: #fff;
}
/*# sourceMappingURL=styles.css.map */