@charset "UTF-8";
html {
  font-size: 62.5%;
  /*16px62.5%=10px*/
}

:root {
  --white: #fff;
  --main_blue: #2F6EC5;
  --light_blue: #00D8FF;
  --bg_gray: #F8F8F7;
  --bg_blue: #F0F9FD;
  --bg_bluegray: #F8F8F7;
  --font_blue: #2F6EC5;
  --font_color: #525151;
}

body {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--font_color);
  overflow-x: hidden;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
}

.wrap_primary {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wrap_wide {
  max-width: 1240px;
  margin: 0 auto;
}

.common_padding {
  padding: 0 20px;
  box-sizing: border-box;
}

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

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

img {
  width: 100%;
}

a {
  transition-duration: 0.3s;
}
a:hover {
  transition-duration: 0.3s;
}

.smp_scroll_area {
  width: 100%;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .smp_scroll_area {
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.smp_scroll_area .scroll_inner {
  overflow-x: scroll;
  position: relative;
}
.smp_scroll_area .scroll_inner::-webkit-scrollbar {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-top: 20px;
  min-width: 1080px;
}
table tr:first-of-type th {
  background-color: var(--blue);
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  padding: 4px 20px;
}
table td,
table th {
  border: 1px solid var(--white);
  padding: 10px 20px;
  text-align: left;
}
table td[rowspan],
table th[rowspan] {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  table td,
  table th {
    font-size: 14px;
    padding: 10px;
  }
}
table th {
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  table th:first-of-type {
    position: sticky;
    top: 0;
    left: -1px;
  }
}
table.normal_table tr:nth-child(even) {
  background-color: rgba(3, 110, 184, 0.07);
}
table.normal_table tr:nth-child(odd) {
  background-color: #F5F7F8;
}
table.not_sticky th:first-of-type {
  position: relative;
}
table.simple_table tr th,
table.simple_table tr td {
  padding: 10px 20px;
}
table.simple_table tr:not(:first-of-type) th {
  background-color: #EDF5FA;
  color: var(--blue);
}
table.simple_table tr:not(:first-of-type) td {
  background-color: #F5F7F8;
}

.caption {
  font-size: 14px;
  font-weight: 400;
  margin-top: 1em;
  line-height: 1.5;
}

.column2 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .column2 {
    flex-direction: column;
  }
}

#header {
  z-index: 9999;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
  border-radius: 0 0 1rem 1rem;
}
#header .wrap_primary {
  max-width: 1240px;
}
#header .primary_group {
  display: flex;
  padding: 1.1rem 2.2rem 0 2.2rem;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #header .primary_group {
    padding: 1.1rem 0;
  }
}
#header .main_logo {
  max-width: 265px;
}
#header .main_logo a {
  display: block;
  transition-duration: 0.3s;
}
#header .main_logo a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
#header .navigation {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  #header .navigation {
    overflow-x: scroll;
    position: fixed;
    border-radius: 1rem 1rem 0 0;
    top: 68px;
    width: 100%;
    height: calc(100vh - 68px);
    transition-duration: 0.3s;
    left: 0;
    box-sizing: border-box;
    transform: translateX(150%);
  }
}
#header .navigation.is-menu_in {
  transform: translateX(0);
  transition-duration: 0.3s;
}
@media screen and (max-width: 1024px) {
  #header .scroll_area {
    padding: 2rem;
    background-color: var(--white);
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
  }
}
#header .functions_block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  margin-bottom: 1rem;
}
#header .functions_block a {
  display: inline-block;
  font-size: 1.2rem;
  color: #525151;
  transition-duration: 0.3s;
}
#header .functions_block a:hover {
  transition-duration: 0.3s;
  opacity: 0.6;
}
#header .functions_block .normal {
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#header .functions_block .normal::before {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  background-image: url(../image/arrow_tri_right.png);
  background-repeat: no-repeat;
  background-size: contain;
}
#header .functions_block .language {
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#header .functions_block .language::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../image//icon_language.png);
  background-repeat: no-repeat;
  background-size: contain;
}
#header .header-navigation {
  display: flex;
  gap: 2vw;
  padding-left: 1em;
}
@media screen and (max-width: 1024px) {
  #header .header-navigation {
    flex-direction: column;
    gap: 1rem;
  }
}
#header .header-navigation .child_menu {
  position: fixed;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #25406C;
  padding: 0;
  top: 71px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  padding: 4rem 0;
  color: var(--white);
  gap: 2.8rem;
  display: none;
}
@media screen and (max-width: 1024px) {
  #header .header-navigation .child_menu {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    top: initial !important;
    left: initial !important;
    right: initial !important;
    left: initial !important;
    background-color: transparent;
    gap: 1rem;
    padding: 0.5rem;
  }
  #header .header-navigation .child_menu a {
    font-size: 1.2rem;
    padding: 0.2rem;
  }
  #header .header-navigation .child_menu .wrap_primary {
    max-width: none;
    margin: 0;
  }
}
#header .header-navigation .child_menu .title {
  font-size: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1.6rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  #header .header-navigation .child_menu .title {
    display: none;
  }
}
#header .header-navigation .child_menu_group {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  #header .header-navigation .child_menu_group {
    flex-direction: column;
  }
}
#header .header-navigation .child_menu_subpage {
  flex: 1 1 33%;
}
#header .header-navigation .child_menu_subpage a {
  color: var(--white);
  display: block;
  white-space: nowrap;
  transition-duration: 0.3s;
}
@media screen and (max-width: 1024px) {
  #header .header-navigation .child_menu_subpage a {
    color: var(--font_color);
  }
}
#header .header-navigation .child_menu_subpage a:hover {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
#header .header-navigation .child_menu_subpage .child {
  width: 100%;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  #header .header-navigation .child_menu_subpage .child {
    margin-bottom: 1rem;
  }
}
#header .header-navigation .child_menu_subpage .child.has-grandchild > a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.4rem;
}
#header .header-navigation .child_menu_subpage .child.has-grandchild > a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--light_blue);
  border-radius: 50%;
}
#header .header-navigation .grandchild_menu {
  padding-left: 2rem;
}
#header .header-navigation .grandchild_menu .grandchild > a {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#header .header-navigation .grandchild_menu .grandchild > a::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--white);
}
@media screen and (max-width: 1024px) {
  #header .header-navigation .grandchild_menu .grandchild > a::before {
    background-color: var(--font_color);
  }
}
#header .header-navigation .grandchild_menu .grandchild:not(:last-of-type) a {
  margin-bottom: 0.8rem;
}
#header .header-navigation .parent > a {
  font-size: 1.4rem;
  color: #525151;
  display: block;
  white-space: nowrap;
  transition-duration: 0.3s;
  padding-bottom: 1.1rem;
}
#header .header-navigation .parent > a:hover {
  color: var(--font_blue);
  transition-duration: 0.3s;
}
#header .header-navigation .parent.has-child {
  position: relative;
}
#header .header-navigation .parent.has-child > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
#header .header-navigation .parent.has-child > a::after {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../image/child_menu_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  #header .header-navigation .parent.has-child > a::after {
    display: none;
  }
}
#header .header-navigation .parent.has-child:hover {
  color: var(--main_blue);
  transition-duration: 0.3s;
}
#header .header-navigation .parent.has-child:hover > a::after {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../image/child_menu_arrow-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition-duration: 0.3s;
}
@media screen and (max-width: 1024px) {
  #header .header-navigation .parent.has-child:hover > a::after {
    display: none;
  }
}
#header .header-navigation .parent.has-child:hover .child_menu {
  display: block;
}
@media screen and (max-width: 1024px) {
  #header .header-navigation .parent.has-child:hover .child_menu {
    display: flex;
  }
}
#header .menu-btn_area {
  margin-left: auto;
}
#header .menu-btn {
  height: 46px;
  width: 46px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: transparent;
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .menu-btn:hover {
  cursor: pointer;
}
#header .menu-btn span,
#header .menu-btn span:before,
#header .menu-btn span:after {
  content: "";
  display: block;
  height: 1px;
  width: 25px;
  border-radius: 2px;
  background-color: var(--font_color);
  position: absolute;
  transition: 0.3s;
}
#header .menu-btn span:before {
  bottom: 6px;
}
#header .menu-btn span:after {
  top: 6px;
}
#header .is-togglemenu-active .menu-btn {
  background-color: rgba(255, 255, 255, 0.8);
}
#header .is-togglemenu-active .menu-btn span {
  background-color: transparent;
}
#header .is-togglemenu-active .menu-btn span:before {
  bottom: 0;
  transform: rotate(45deg);
  transition: 0.3s;
  background-color: var(--font_color);
}
#header .is-togglemenu-active .menu-btn span:after {
  top: 0;
  transform: rotate(-45deg);
  transition: 0.3s;
  background-color: var(--font_color);
}
#header .is-open {
  background-color: rgba(255, 255, 255, 0.8);
}
#header .is-open span {
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  #header .is-open span::before {
    top: 0 !important;
    bottom: 0 !important;
    transform: rotate(45deg);
    background-color: var(--font_color);
  }
  #header .is-open span::after {
    top: 0 !important;
    bottom: 0 !important;
    transform: rotate(-45deg);
    background-color: var(--font_color);
  }
}
#header .menu-btn_area {
  display: none;
}
@media screen and (max-width: 1024px) {
  #header .menu-btn_area {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  #header .primary_group .main_nav {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: var(--white);
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition-duration: 0.3s;
  }
  #header .primary_group .nav_item {
    width: 100%;
  }
  #header .primary_group .nav_item a {
    font-weight: 500;
    max-width: 600px;
    font-size: 18px;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) {
    position: relative;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) .child_menu_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg_blue03);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) .child_menu_arrow::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: var(--white);
    line-height: 1;
    width: 6px;
    height: 6px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(0%) rotate(135deg);
    transition-duration: 0.1s;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) .child_menu_arrow.is-arrow-up::after {
    transform: translateX(0%) rotate(-45deg);
    transition-duration: 0.1s;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#header .sub_nav_smp {
  display: none;
  margin-top: 10px;
}
#header .sub_nav_smp a {
  font-size: 16px !important;
  width: 100%;
}
#header .sub_nav_smp.hidden {
  display: none;
}
@media screen and (max-width: 1024px) {
  #header .sub_nav_smp {
    display: block;
    padding-left: 20px;
    line-height: 2.5;
  }
}
@media screen and (max-width: 1024px) {
  #header .secondary_group {
    display: none;
  }
}
#header .is-menu_in .main_nav {
  transform: translateX(0%);
  transition-duration: 0.3s;
}
#header .link_btn {
  padding: 25px;
  border-radius: 50px;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 20px;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 765px) {
  #header .link_btn {
    padding: 20px;
    font-size: 18px;
  }
}
#header .link_btn span {
  color: var(--white);
  position: relative;
  z-index: 1;
}
#header .link_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background: #ccc;
  transition: right 0.2s ease-in-out;
  z-index: 0;
}
#header .link_btn:hover::after {
  right: 0;
}
#header .link_btn.green {
  background-color: var(--link_primary);
}
#header .link_btn.green::after {
  background-color: var(--link_primary);
  filter: brightness(180%);
}

.toTop_btn a {
  position: fixed;
  bottom: 10rem;
  right: 8rem;
  color: var(--white);
  background-color: #525151;
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
  box-sizing: border-box;
  z-index: 8888;
}
@media screen and (max-width: 768px) {
  .toTop_btn a {
    bottom: 4rem;
    right: 2rem;
  }
}
.toTop_btn a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.toTop_btn a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--white);
  line-height: 1;
  width: 14px;
  height: 14px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  vertical-align: middle;
}

.logged-in #header {
  margin-top: 32px !important;
}
.logged-in .child_menu {
  top: 103px !important;
}

#footer {
  background-color: var(--bg_gray);
  padding: 4.7rem 0 0 0;
}
#footer .column2 {
  justify-content: space-between;
  gap: 5vw;
}
@media screen and (max-width: 1024px) {
  #footer .column2 {
    flex-direction: column;
    gap: 2rem;
  }
}
#footer .infomation {
  max-width: 264px;
}
#footer .logo {
  margin-bottom: 1.6rem;
}
#footer .address {
  font-size: 1.4rem;
}
#footer .footer_navigation {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #footer .footer_navigation {
    flex-direction: column;
  }
}
#footer .footer_navigation .footer_nav_block {
  flex: 1 0 24%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  #footer .footer_navigation .footer_nav_block {
    padding-bottom: 1rem;
    gap: 1rem;
  }
}
#footer .footer_navigation .footer_nav_block a {
  color: #525151;
  white-space: nowrap;
  transition-duration: 0.3s;
}
#footer .footer_navigation .footer_nav_block a:hover {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
#footer .footer_navigation .child_menu {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
@media screen and (max-width: 1024px) {
  #footer .footer_navigation .child_menu {
    gap: 0.5rem;
    margin-top: 1rem;
  }
}
#footer .footer_navigation .parent > a {
  font-size: 1.4rem;
}
#footer .footer_navigation .child > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.4rem;
  gap: 6px;
}
#footer .footer_navigation .child > a::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #525151;
}
#footer .copylight {
  padding-top: 5.5rem;
  text-align: center;
  font-size: 1rem;
  padding: 2rem 0;
}

.contact_block {
  color: var(--white);
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .contact_block .wrap_primary {
    padding: 0;
  }
}
.contact_block .wrap_wide {
  padding: 8rem 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .contact_block .wrap_wide {
    padding: 4rem 1rem;
  }
}
.contact_block .wrap_wide::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main_blue);
  opacity: 0.93;
}
.contact_block .wrap_wide .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.contact_block .wrap_wide .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.contact_block .heading {
  text-align: center;
}
.contact_block .heading span {
  display: block;
}
.contact_block .heading .en {
  font-family: "Josefin Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  font-weight: bold;
}
.contact_block .heading .ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 768px) {
  .contact_block .heading .ja {
    font-size: 2.4rem;
  }
}
.contact_block .lead_text {
  text-align: center;
  font-size: 1.6rem;
}
.contact_block .link_block {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .contact_block .link_block {
    margin-top: 2rem;
  }
}
.contact_block .contact_link {
  padding: 0 3.5rem;
  width: 100%;
  max-width: 525px;
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  border-radius: 10rem;
  min-width: 450px;
}
@media screen and (max-width: 768px) {
  .contact_block .contact_link {
    min-width: initial;
  }
}
.contact_block .contact_link.wh {
  background-color: var(--white);
  color: var(--font_blue);
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact_block .contact_link.wh {
    font-size: 1.8rem;
  }
}
.contact_block .contact_link.trn {
  background-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.contact_block .contact_link.tel_btn .number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 5px;
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .contact_block .contact_link.tel_btn .number {
    font-size: 2.4rem;
  }
}
.contact_block .contact_link.tel_btn .number::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../image/icon_phone.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.contact_block .contact_link.tel_btn .attention {
  font-size: 1.2rem;
}
.contact_block .contact_link:hover {
  background-color: var(--light_blue);
  transition-duration: 0.3s;
}

.wisiwyg {
  /* strong / b */
  /* em / i */
  /* link */
  /* blockquote */
  /* del */
  /* ins */
  /* image */
  /* list */
  /* inline code */
}
.wisiwyg strong,
.wisiwyg b {
  font-weight: 700;
}
.wisiwyg em,
.wisiwyg i {
  font-style: italic;
}
.wisiwyg a {
  color: var(--link-color, #0066cc);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.wisiwyg a:hover {
  opacity: 0.7;
}
.wisiwyg blockquote {
  margin: 2rem 0;
  padding: 1.6rem 2rem;
  background-color: #f8f8f8;
  border-left: 4px solid var(--main_blue, #003a8f);
  font-size: 0.95em;
  color: #555;
}
.wisiwyg blockquote p {
  margin: 0;
}
.wisiwyg del {
  text-decoration: line-through;
}
.wisiwyg ins {
  background-color: #fff3cd;
  text-decoration: none;
  padding: 0 0.2em;
}
.wisiwyg img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
}
.wisiwyg ul,
.wisiwyg ol {
  margin: 1.6rem 0 1.6rem 2rem;
  padding: 0;
}
.wisiwyg ul {
  list-style: disc;
}
.wisiwyg ol {
  list-style: decimal;
}
.wisiwyg li {
  margin-bottom: 0.6rem;
}
.wisiwyg code {
  font-family: Menlo, Consolas, Monaco, monospace;
  font-size: 0.9em;
  background-color: #f4f4f4;
  padding: 0.5em;
  border-radius: 4px;
}

a {
  color: inherit;
}

.section__head {
  margin-bottom: 6rem;
}
.section__head .en {
  font-size: 1.8rem;
  font-family: "Josefin Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  color: var(--main_blue);
  position: relative;
  display: inline-block;
  letter-spacing: 0.05em;
  margin-left: -1.5rem;
}
@media screen and (max-width: 1110px) {
  .section__head .en {
    margin-left: 0;
  }
}
.section__head .en.l-blue {
  color: var(--light_blue);
}
.section__head .en.l-blue::before {
  background: var(--light_blue);
}
.section__head .en::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--main_blue);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .section__head .en {
    margin-left: 0;
  }
  .section__head .en::before {
    left: -1.2rem;
  }
}
.section__head .title {
  font-size: 3.6rem;
  font-weight: 600;
  margin: 3rem 0;
}
@media screen and (max-width: 768px) {
  .section__head .title {
    font-size: 2.4rem;
    margin: 2rem 0;
  }
}
.section__head .lead {
  font-size: 1.8rem;
  color: var(--font_color);
}

.more_btn-wrap {
  text-align: center;
}
.more_btn-wrap .more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: var(--main_blue);
  padding: 1.8rem 1.8rem 1.8rem 3.2rem;
  border-radius: 5rem;
  text-decoration: none;
  transition: 0.3s;
  min-width: 31rem;
  box-sizing: border-box;
  border: 1px solid var(--main_blue);
}
.more_btn-wrap .more__btn img {
  width: 2.4rem;
  height: auto;
}
.more_btn-wrap .more__btn:hover {
  background-color: var(--white);
  border: 1px solid var(--main_blue);
  color: var(--main_blue);
}
.more_btn-wrap .more__btn::after {
  content: "";
  display: block;
  background-color: var(--light_blue);
  background-image: url(../image/arrow-right_bl.png);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  width: 56px;
  height: 29px;
  border-radius: 5rem;
}
.more_btn-wrap .more__btn.wh {
  background: var(--white);
  color: var(--font_blue);
  border: 1px solid var(--white);
}
.more_btn-wrap .more__btn.wh::after {
  background-color: var(--light_blue);
  background-image: url("../image/arrow-right_bl.png");
}
.more_btn-wrap .more__btn.wh:hover {
  background-color: var(--main_blue);
  border: 1px solid var(--white);
  color: var(--white);
}

span.link_btn {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 500;
  position: relative;
  text-decoration: none;
  padding-right: 3rem;
  display: flex;
  gap: 1.2rem;
  transition-duration: 0.3s;
}
span.link_btn::after {
  content: "";
  display: block;
  background-color: var(--light_blue);
  background-image: url(../image/arrow-right_bl.png);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  width: 56px;
  height: 29px;
  border-radius: 5rem;
}
span.link_btn.main_blue {
  color: var(--font_color);
  transition-duration: 0.3s;
}
span.link_btn.main_blue::after {
  background-color: var(--main_blue);
  background-image: url(../image/arrow-right_wh.png);
}

#firstview {
  height: 100vh;
  position: relative;
}
#firstview .slick-list {
  width: 100%;
  height: 100%;
}
#firstview .slick-list .slick-track {
  width: 100%;
  height: 100%;
}
#firstview .slick-list .slick-track div,
#firstview .slick-list .slick-track li,
#firstview .slick-list .slick-track img {
  width: inherit;
  height: inherit;
}
#firstview .background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
#firstview .background .kv_slide {
  width: 100%;
  height: 100%;
}
#firstview .background .kv_slide .slide_item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#firstview .background .kv_slide .slide_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
}
#firstview .background .slick-active img,
#firstview .background .slick-slide:has(+ .slick-active) img,
#firstview .background .is-zoom-prev img {
  animation: zoom-in 10s ease-out infinite;
}
@keyframes zoom-in {
  100% {
    transform: scale(1.15);
  }
}
#firstview .background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 64, 108, 0.43);
  z-index: 1;
}
#firstview .wrap_primary {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
#firstview .main_copy {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  #firstview .main_copy {
    font-size: 2.8rem;
  }
}

.cta_btn_group {
  display: flex;
  justify-content: center;
  margin-top: 7rem;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .cta_btn_group {
    flex-direction: column;
    align-items: center;
  }
}
.cta_btn_group .cta_btn {
  height: 67px;
  text-align: center;
  border-radius: 5rem;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  width: 100%;
  max-width: 29rem;
  background-color: transparent;
}
.cta_btn_group .cta_btn::before {
  content: "";
  width: 18px;
  height: 18px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.cta_btn_group .cta_btn.download {
  background-color: var(--light_blue);
  color: var(--font_color);
  transition-duration: 0.3s;
}
@media screen and (min-width: 769px) {
  .cta_btn_group .cta_btn.download:hover {
    background-color: var(--white);
  }
}
.cta_btn_group .cta_btn.download::before {
  background-image: url(../image/icon_downloard.png);
}
.cta_btn_group .cta_btn.mail {
  background-color: var(--main_blue);
  color: var(--white);
}
@media screen and (min-width: 769px) {
  .cta_btn_group .cta_btn.mail:hover {
    background-color: var(--white);
    color: var(--main_blue);
  }
  .cta_btn_group .cta_btn.mail:hover::before {
    background-image: url(../image/icon_mail_blue.png);
  }
}
.cta_btn_group .cta_btn.mail::before {
  background-image: url(../image/icon_mail.png);
}
.cta_btn_group .cta_btn.other {
  border-radius: 1rem;
  border: 1px solid var(--main_blue);
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  height: initial;
  flex-direction: column;
  gap: 0;
  padding: 2rem;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  max-width: initial;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .cta_btn_group .cta_btn.other {
    font-size: 1.8rem;
  }
}
.cta_btn_group .cta_btn.other::before {
  display: none;
}
.cta_btn_group .cta_btn.other:hover {
  background-color: var(--light_blue);
  transition-duration: 0.3s;
}
.cta_btn_group .cta_btn.other span {
  display: block;
}
.cta_btn_group .cta_btn.other .small {
  font-size: 1.6rem;
}

.info-bar {
  border-top: 2px solid #2d5ea8;
  border-bottom: 2px solid #2d5ea8;
  background: #fff;
}
.info-bar__inr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.7rem 1rem;
  gap: 10rem;
}
@media screen and (max-width: 1090px) {
  .info-bar__inr {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.info-bar__head {
  display: flex;
  align-items: center;
  gap: 19px;
}
.info-bar__head .info-bar__title {
  font-size: 2.2rem;
  font-weight: 600;
}
.info-bar__list {
  flex: 1;
  overflow: hidden;
}
.info-bar__item a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--font_color);
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .info-bar__item a {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
  }
}
.info-bar__item a .sp_inner {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .info-bar__item a .sp_inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
  }
}
.info-bar__item a:hover {
  opacity: 0.8;
}
.info-bar__text {
  font-size: 1.4rem;
  line-height: 1.6;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .info-bar__text {
    min-height: 3.5em;
  }
}

.section {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.reason__list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .reason__list {
    flex-direction: column;
    gap: 4rem;
  }
}
.reason__item {
  width: 32%;
  text-align: left;
  max-width: 33rem;
  margin: 0 auto 2rem auto;
}
@media screen and (max-width: 768px) {
  .reason__item {
    width: 100%;
  }
}
.reason__item .image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.reason__item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.reason__item .image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--main_blue);
  opacity: 0.15;
  z-index: 1;
  mix-blend-mode: hard-light;
}
.reason__item .reason__subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.reason__item .reason__text {
  font-size: 1.6rem;
  line-height: 1.8;
}

.feature-product {
  color: var(--white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature-product {
    padding: 6rem 0;
  }
}
.feature-product .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.feature-product .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature-product .background::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--main_blue);
  opacity: 0.91;
}
.feature-product .section__head .title {
  color: var(--white);
}
.feature-product .section__head .lead {
  color: var(--white);
}
.feature-product__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 6rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .feature-product__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media screen and (max-width: 425px) {
  .feature-product__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .feature-product__item {
    margin-bottom: 4rem;
  }
}
.feature-product__item a {
  display: block;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 3.4rem;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .feature-product__item a {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}
.feature-product__item a:hover .thumb img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.feature-product__item a:hover .content {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
.feature-product__item a:hover .content .link_btn {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .feature-product__item {
    flex-direction: column;
  }
}
.feature-product__item .thumb {
  flex-shrink: 0;
  width: 16.8rem;
  height: 16.8rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .feature-product__item .thumb {
    margin: 0 auto;
  }
}
.feature-product__item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1);
  transition-duration: 0.3s;
}
.feature-product__item .content {
  flex: 1;
  color: var(--white);
}
.feature-product__item .content .item_title {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-product__item .content .item_title span {
  display: block;
}
.feature-product__item .content .item_title .inner_block {
  padding-left: 1.4rem;
}
.feature-product__item .content .item_title::before {
  content: "";
  display: inline-block;
  border-radius: 2rem;
  background-color: var(--light_blue);
  min-height: 6rem;
  height: 100%;
  width: 3px;
  flex: 0 0 3px;
}
.feature-product__item .content .item_title .en {
  font-size: 1.4rem;
  font-family: "Josefin Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.feature-product__item .content .item_title .title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.feature-product__item .content .text {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}

.case-study {
  background: var(--white);
}
.case-study .section__head .en {
  color: var(--main_blue);
}

.case-study_article {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .case-study_article {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
@media screen and (max-width: 425px) {
  .case-study_article {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}
.case-study_article__item {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.case-study_article__item a {
  display: block;
}
.case-study_article__item a:hover {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
.case-study_article__item a:hover .link_btn {
  transition-duration: 0.3s;
  color: var(--light_blue);
}
.case-study_article__item a:hover .thumb img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.case-study_article__item .thumb {
  border-radius: 1rem;
  width: 100%;
  height: 18rem;
  overflow: hidden;
  max-width: 34rem;
  margin: 0 auto 3rem auto;
}
.case-study_article__item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition-duration: 0.3s;
}
.case-study_article__item .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-study_article__item .content .client {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px dashed var(--font_color);
  padding-bottom: 2.5rem;
}
.case-study_article__item .content .summary {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: bold;
}
.case-study_article__item .content .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .case-study_article__item .content .tag-list {
    margin-bottom: 2rem;
  }
}
.case-study_article__item .content .tag-list li {
  border: 1px solid #C3C3C3;
  border-radius: 5rem;
  font-size: 1.4rem;
  padding: 0.6rem 1.6rem;
  line-height: 1;
  background: var(--white);
}

.product-lineup {
  background: var(--bg_gray);
  padding-bottom: 2rem;
}
.product-lineup .section__head .en {
  color: var(--main_blue);
}
.product-lineup .group_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-lineup__block {
  margin-bottom: 8rem;
  flex: 1 1 auto;
}
.product-lineup__block.half {
  flex: 1 1 47%;
  display: inline-block;
  vertical-align: top;
  max-width: 47%;
}
@media screen and (max-width: 768px) {
  .product-lineup__block.half {
    width: 100%;
    margin-right: 0;
    flex: 1 1 100%;
    max-width: initial;
  }
}
.product-lineup__block:not(.half) {
  width: 100%;
  display: block;
}
.product-lineup__block .product-lineup__heading {
  font-size: 2.4rem;
  font-weight: 600;
  display: flex;
  gap: 1.8rem;
  margin-bottom: 4rem;
  color: var(--font_color);
  position: relative;
  padding-left: 2.9rem;
}
.product-lineup__block .product-lineup__heading::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 11px;
  height: 100%;
  background-color: var(--main_blue);
}
.product-lineup__block .product-lineup__heading::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2rem;
  width: 100%;
  height: 1px;
  background: var(--main_blue);
}
.product-lineup__block .product-lineup__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 3rem;
  justify-items: center;
}
@media screen and (max-width: 425px) {
  .product-lineup__block .product-lineup__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-lineup__block .product-lineup__list li {
  max-width: 24rem;
  width: 100%;
}
.product-lineup__block .product-lineup__list li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--font_color);
  transition-duration: 0.3s;
  width: 100%;
}
.product-lineup__block .product-lineup__list li a .image_area {
  border-radius: 1rem;
  background-color: var(--white);
  margin-bottom: 2.4rem;
  max-width: 24rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.product-lineup__block .product-lineup__list li a .image_area::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.product-lineup__block .product-lineup__list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.product-lineup__block .product-lineup__list li a p {
  font-size: 1.8rem;
  text-align: left;
  font-weight: bold;
}
.product-lineup__block .product-lineup__list li a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}

.column .column__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .column .column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
@media screen and (max-width: 425px) {
  .column .column__list {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4rem;
  }
}
.column .column__item a {
  display: block;
  border-radius: 1rem;
  text-decoration: none;
  color: var(--font_color);
  position: relative;
}
.column .column__item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background: var(--bg_blue);
  position: absolute;
  top: 20%;
  left: 0;
  z-index: -1;
  border-radius: 1rem;
  transition-duration: 0.3s;
}
.column .column__item a:hover {
  transition-duration: 0.3s;
  color: var(--light_blue);
}
.column .column__item a:hover img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.column .column__item a:hover .link_btn {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
.column .column__item .thumb {
  width: 95%;
  height: auto;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}
.column .column__item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition-duration: 0.3s;
}
.column .column__item .content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition-duration: 0.3s;
}
.column .column__item .content .company {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.column .column__item .content .title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.column .column__item .content .text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.column .column__item .content .link_btn {
  color: var(--font_color);
}

.download {
  background: var(--main_blue);
  color: var(--white);
}
.download .section__head .en {
  color: var(--light_blue);
}
.download .section__head .title {
  color: var(--white);
}
.download__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .download__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media screen and (max-width: 425px) {
  .download__list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.download__item {
  max-width: 245px;
  margin: 0 auto;
  transition-duration: 0.3s;
}
.download__item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--white);
  transition: 0.3s;
}
.download__item a .title {
  transition-duration: 0.3s;
}
.download__item a:hover {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
.download__item a:hover .thumb img {
  transition-duration: 0.3s;
  transform: scale(1.1);
}
.download__item a:hover .title {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
.download__item a:hover .link_btn {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
.download__item .thumb {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  max-width: 245px;
  margin-bottom: 3rem;
  position: relative;
  background-color: var(--white);
}
.download__item .thumb::before {
  content: "";
  padding-top: 122.857%;
  display: block;
}
.download__item .thumb img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition-duration: 0.3s;
}
.download__item .content .title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2.1rem;
}

/* === 共通パーツとして独立させる === */
/* 一覧ボタン */
.info-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 7px 12px;
  border: 1px solid var(--font_color);
  border-radius: 5rem;
  color: var(--font_color);
  text-decoration: none;
  transition: 0.3s;
}
.info-bar__btn img {
  width: 10px;
  height: 10px;
  margin-left: 5px;
}
.info-bar__btn:hover {
  background: var(--light_blue);
}

/* タグ（ラベル） */
.info-bar__label {
  font-size: 1.4rem;
  padding: 2px 17px;
  min-width: 9rem;
  color: #fff;
  border-radius: 3px;
  flex-shrink: 0;
  text-align: center;
  box-sizing: border-box;
}

/* 投稿日付 */
.info-bar__date {
  font-size: 1.4rem;
  font-weight: 600;
  flex-shrink: 0;
}

.news {
  background: #fff;
}
.news .section__head {
  margin-bottom: 4rem;
}
.news .head_inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin-top: 2rem;
}
.news .head_inner .title {
  margin: 0;
}
.news__head {
  display: flex;
  align-items: center;
  gap: 19px;
}
.news__head .news__title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--font_color);
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news__item a {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 2rem 4rem;
  color: var(--font_color);
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .news__item a {
    padding: 2rem;
  }
}
.news__item a:hover {
  background: var(--bg_blue);
}
@media screen and (max-width: 768px) {
  .news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.news .news__text {
  font-size: 1.4rem;
  line-height: 1.6;
  flex: 1;
}

.more-banner__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
}
@media screen and (max-width: 768px) {
  .more-banner__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
.more-banner__item {
  position: relative;
  border-radius: 1rem;
  max-width: 259px;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 100%;
}
.more-banner__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 11rem;
  color: var(--white);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .more-banner__item a {
    min-height: 9rem;
    font-size: 1.6rem;
  }
}
.more-banner__item a .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.more-banner__item a .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition-duration: 0.3s;
}
.more-banner__item a .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(47, 71, 100, 0.41);
  z-index: 1;
  transition-duration: 0.3s;
}
.more-banner__item a .text {
  position: relative;
  z-index: 2;
}
.more-banner__item a:hover .bg img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.more-banner__item a:hover .overlay {
  opacity: 0;
  transition-duration: 0.3s;
}

.sub-page.no-header-nav main,
.sub-page-detail.no-header-nav main {
  margin: 0 !important;
}
.sub-page.no-header-nav .page_header,
.sub-page-detail.no-header-nav .page_header {
  padding-top: 4.5rem;
}
.sub-page .page_breadcrumb,
.sub-page-detail .page_breadcrumb {
  padding: 1.5rem 0;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .sub-page .page_breadcrumb,
  .sub-page-detail .page_breadcrumb {
    margin-bottom: 4rem;
  }
}
.sub-page .page_breadcrumb .page_breadcrumb__inner > span,
.sub-page-detail .page_breadcrumb .page_breadcrumb__inner > span {
  display: flex;
  flex-wrap: wrap;
}
.sub-page .page_breadcrumb a,
.sub-page-detail .page_breadcrumb a {
  transition-duration: 0.3s;
}
.sub-page .page_breadcrumb a:hover,
.sub-page-detail .page_breadcrumb a:hover {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
.sub-page .breadcrumb__link,
.sub-page-detail .breadcrumb__link {
  display: inline-flex;
  gap: 0.5em;
  margin-left: 0.5em;
  align-items: center;
  font-size: 1.4rem;
}
.sub-page .breadcrumb__link::after,
.sub-page-detail .breadcrumb__link::after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.sub-page .breadcrumb__link.breadcrumb_last::after,
.sub-page-detail .breadcrumb__link.breadcrumb_last::after {
  display: none;
}
.sub-page .cta_btn_group,
.sub-page-detail .cta_btn_group {
  margin: 0;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .sub-page .cta_btn_group,
  .sub-page-detail .cta_btn_group {
    align-items: flex-start;
  }
}
.sub-page .download,
.sub-page-detail .download {
  background: var(--bg_blue);
  color: var(--font_color);
}
.sub-page .download a,
.sub-page-detail .download a {
  color: inherit;
}
.sub-page .download .link_btn,
.sub-page-detail .download .link_btn {
  color: inherit;
}
.sub-page .download .headline_lv3,
.sub-page-detail .download .headline_lv3 {
  color: inherit;
}
.sub-page .section,
.sub-page-detail .section {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .sub-page .section,
  .sub-page-detail .section {
    padding: 4rem 0;
  }
}
.sub-page .section.wide-wrap,
.sub-page-detail .section.wide-wrap {
  border-radius: 1rem;
}
@media screen and (min-width: 769px) {
  .sub-page .section.wide-wrap,
  .sub-page-detail .section.wide-wrap {
    margin: 0 3rem;
  }
}
.sub-page .section.bg-blue,
.sub-page-detail .section.bg-blue {
  background-color: var(--bg_blue);
}
.sub-page .section.bg-gray,
.sub-page-detail .section.bg-gray {
  background: #F8F8F7;
}
.sub-page .headline_lv2,
.sub-page-detail .headline_lv2 {
  margin-bottom: 6rem;
}
.sub-page .headline_lv2 .en,
.sub-page-detail .headline_lv2 .en {
  font-size: 1.8rem;
  font-family: "Josefin Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  color: var(--main_blue);
  position: relative;
  display: inline-block;
  letter-spacing: 0.05em;
  margin-left: -1.5rem;
}
@media screen and (max-width: 1110px) {
  .sub-page .headline_lv2 .en,
  .sub-page-detail .headline_lv2 .en {
    margin-left: 0;
  }
}
.sub-page .headline_lv2 .en.l-blue,
.sub-page-detail .headline_lv2 .en.l-blue {
  color: var(--light_blue);
}
.sub-page .headline_lv2 .en.l-blue::before,
.sub-page-detail .headline_lv2 .en.l-blue::before {
  background: var(--light_blue);
}
.sub-page .headline_lv2 .en::before,
.sub-page-detail .headline_lv2 .en::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--main_blue);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .sub-page .headline_lv2 .en,
  .sub-page-detail .headline_lv2 .en {
    margin-left: 0;
  }
  .sub-page .headline_lv2 .en::before,
  .sub-page-detail .headline_lv2 .en::before {
    left: -1.2rem;
  }
}
.sub-page .headline_lv2 .title,
.sub-page-detail .headline_lv2 .title {
  font-size: 3.6rem;
  font-weight: 600;
  margin: 3rem 0;
}
@media screen and (max-width: 768px) {
  .sub-page .headline_lv2 .title,
  .sub-page-detail .headline_lv2 .title {
    font-size: 2.8rem;
    margin: 2rem 0;
  }
  .sub-page .headline_lv2 .title br,
  .sub-page-detail .headline_lv2 .title br {
    display: none;
  }
}
.sub-page .headline_lv2 .lead,
.sub-page-detail .headline_lv2 .lead {
  font-size: 1.8rem;
  color: var(--font_color);
}
.sub-page .headline_lv3,
.sub-page-detail .headline_lv3 {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .sub-page .headline_lv3,
  .sub-page-detail .headline_lv3 {
    font-size: 2.4rem;
  }
}
.sub-page .headline_lv3::before,
.sub-page-detail .headline_lv3::before {
  content: "";
  display: inline-block;
  border-left: 12px solid #2F6EC5;
  border-right: 12px solid #00D8FF;
  height: 6px;
}
.sub-page .headline_lv4.normal,
.sub-page-detail .headline_lv4.normal {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .sub-page .headline_lv4.normal,
  .sub-page-detail .headline_lv4.normal {
    font-size: 2.2rem;
  }
  .sub-page .headline_lv4.normal br,
  .sub-page-detail .headline_lv4.normal br {
    display: none;
  }
}
.sub-page .headline_lv4.dot,
.sub-page-detail .headline_lv4.dot {
  font-size: 2.2rem;
  font-weight: 500;
  padding: 1.3rem 1rem 1.3rem 5rem;
  position: relative;
  border: 1px solid #C3C3C3;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .sub-page .headline_lv4.dot,
  .sub-page-detail .headline_lv4.dot {
    font-size: 1.8rem;
  }
  .sub-page .headline_lv4.dot br,
  .sub-page-detail .headline_lv4.dot br {
    display: none;
  }
}
.sub-page .headline_lv4.dot::before,
.sub-page-detail .headline_lv4.dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--main_blue);
  position: absolute;
  top: 0;
  left: 2.4rem;
  right: auto;
  bottom: 0;
  margin: auto;
}
.sub-page .headline_lv5,
.sub-page-detail .headline_lv5 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .sub-page .headline_lv5,
  .sub-page-detail .headline_lv5 {
    font-size: 2rem;
  }
}
.sub-page .headline_lv6,
.sub-page-detail .headline_lv6 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .sub-page .headline_lv6,
  .sub-page-detail .headline_lv6 {
    font-size: 1.8rem;
  }
}
.sub-page .body_copy,
.sub-page-detail .body_copy {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  padding: 1rem 0;
}
.sub-page .body_copy:not(:last-of-type),
.sub-page-detail .body_copy:not(:last-of-type) {
  margin-bottom: 1em;
}
.sub-page .body_copy a,
.sub-page-detail .body_copy a {
  color: var(--main_blue);
  text-decoration: underline;
}
.sub-page .body_copy a:hover,
.sub-page-detail .body_copy a:hover {
  color: #ccc;
}
.sub-page .body_copy p,
.sub-page-detail .body_copy p {
  margin-bottom: 1em;
}
.sub-page .body_copy.learge,
.sub-page-detail .body_copy.learge {
  font-size: 1.8rem;
  font-weight: 600;
}
.sub-page .image_box,
.sub-page-detail .image_box {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 3rem 0;
  background: transparent;
}
.sub-page .image_box img,
.sub-page-detail .image_box img {
  border-radius: 1rem;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.sub-page .image_box figcaption,
.sub-page-detail .image_box figcaption {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 1.6rem;
}
.sub-page .video_box,
.sub-page-detail .video_box {
  overflow: hidden;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 3rem 0;
  max-width: 800px;
}
.sub-page .video_box .video_area,
.sub-page-detail .video_box .video_area {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin: 2rem 0;
}
.sub-page .video_box .video_area iframe,
.sub-page-detail .video_box .video_area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub-page .video_box figcaption,
.sub-page-detail .video_box figcaption {
  font-size: 1.6rem;
  line-height: 1.875;
}
.sub-page .product__list,
.sub-page-detail .product__list {
  display: flex;
  gap: 4rem;
  justify-content: center;
  justify-items: center;
  margin-bottom: 8rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sub-page .product__list,
  .sub-page-detail .product__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.sub-page .product__list li,
.sub-page-detail .product__list li {
  width: 100%;
  flex: 0 0 30%;
  max-width: 30%;
}
@media screen and (max-width: 768px) {
  .sub-page .product__list li,
  .sub-page-detail .product__list li {
    flex: initial;
    max-width: initial;
  }
}
.sub-page .product__list li a,
.sub-page-detail .product__list li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--font_color);
  transition-duration: 0.3s;
  box-sizing: border-box;
}
.sub-page .product__list li a .image_area,
.sub-page-detail .product__list li a .image_area {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #E2E2E2;
  border-radius: 1rem;
}
.sub-page .product__list li a .image_area::before,
.sub-page-detail .product__list li a .image_area::before {
  content: "";
  display: block;
  padding-top: 70.36%;
}
.sub-page .product__list li a .image_area > img,
.sub-page-detail .product__list li a .image_area > img {
  width: 100%;
  border-radius: 1rem;
  background: #fff;
  margin-bottom: 2.4rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.sub-page .product__list li a p,
.sub-page-detail .product__list li a p {
  font-size: 1.8rem;
  text-align: left;
  margin-top: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sub-page .product__list li a p,
  .sub-page-detail .product__list li a p {
    font-size: 1.4rem;
  }
}
.sub-page .product__list li a:hover,
.sub-page-detail .product__list li a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.sub-page .anchor_area .anchor_list,
.sub-page-detail .anchor_area .anchor_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .sub-page .anchor_area .anchor_list,
  .sub-page-detail .anchor_area .anchor_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sub-page .anchor_area .anchor_list a,
.sub-page-detail .anchor_area .anchor_list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #C3C3C3;
  border-radius: 5px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  gap: 1rem;
  box-sizing: border-box;
  transition-duration: 0.3s;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-page .anchor_area .anchor_list a,
  .sub-page-detail .anchor_area .anchor_list a {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
}
.sub-page .anchor_area .anchor_list a::after,
.sub-page-detail .anchor_area .anchor_list a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #707070;
  line-height: 1;
  width: 13px;
  height: 13px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  vertical-align: middle;
}
.sub-page .anchor_area .anchor_list a:hover,
.sub-page-detail .anchor_area .anchor_list a:hover {
  background-color: var(--light_blue);
  transition-duration: 0.3s;
}
.sub-page .info_tag,
.sub-page-detail .info_tag {
  display: inline-block;
  font-size: 1.6rem;
  padding: 0.6rem 1.6rem;
  border-radius: 5rem;
  border: 1px solid #C3C3C3;
  margin-right: 6px;
  margin-bottom: 6px;
  background: #fff;
  box-sizing: border-box;
  line-height: 1;
  white-space: nowrap;
}
.sub-page a.info_tag,
.sub-page-detail a.info_tag {
  transition-duration: 0.3s;
}
.sub-page a.info_tag:hover,
.sub-page-detail a.info_tag:hover {
  background-color: var(--light_blue);
  transition-duration: 0.3s;
}
.sub-page a.info_tag.current,
.sub-page-detail a.info_tag.current {
  pointer-events: none;
  background-color: var(--main_blue);
  color: var(--white);
}

.sub-page .page_header {
  position: relative;
  height: 47rem;
}
.sub-page .page_header .background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sub-page .page_header .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
}
.sub-page .page_header .background::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(37, 64, 108, 0.43);
  z-index: 0;
}
.sub-page .page_header .inner_wrap {
  position: absolute;
  top: 15rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  left: 0;
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .sub-page .page_header .inner_wrap {
    padding: 0 1rem;
    box-sizing: border-box;
  }
}
.sub-page .page_header .page_title span {
  display: block;
  text-align: center;
}
.sub-page .page_header .page_title .en {
  font-size: 1.4rem;
  font-family: "Josefin Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.sub-page .page_header .page_title .ja {
  font-size: 4rem;
  margin-bottom: 3rem;
}
.sub-page .page_header .lead_text {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 400;
}
.sub-page .page_header .cta_btn_group {
  width: 100%;
  justify-content: center;
  margin-top: 5rem;
}
.sub-page .page_header .cta_btn_group a {
  margin: 0 auto;
}
.sub-page .summary {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .sub-page .summary {
    margin-bottom: 4rem;
  }
}
.sub-page .anchor_area {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .sub-page .anchor_area {
    margin-bottom: 4rem;
  }
}
.sub-page .category_group {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .sub-page .category_group {
    margin-bottom: 4rem;
  }
}

.sub-page-detail {
  /* ============================
   投稿パーツ
   ============================ */
}
.sub-page-detail .page_header {
  padding-top: calc(4.7rem + 68px);
  background: linear-gradient(to left, #74adef 0%, #2f6ec5 100%);
  padding-bottom: 4.5rem;
  color: var(--white);
}
.sub-page-detail .page_header .post_type {
  background-color: var(--font_color);
  padding: 0.5rem 1.5rem;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.4rem;
}
.sub-page-detail .page_header .page_title span {
  display: block;
  letter-spacing: 0.05em;
}
.sub-page-detail .page_header .page_title .en {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.sub-page-detail .page_header .page_title .ja {
  font-size: 3.6rem;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-page-detail .page_header .page_title .ja {
    font-size: 2.8rem;
  }
}
.sub-page-detail .page_header .cta_btn_group {
  margin-top: 3rem;
  width: 100%;
}
.sub-page-detail .page_header .cta_btn_group a {
  max-width: 29rem;
  width: 100%;
}
.sub-page-detail .overview .overview_head {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .sub-page-detail .overview .overview_head {
    margin-bottom: 2rem;
  }
}
.sub-page-detail .overview .overview_body {
  border-top: 1px solid var(--main_blue);
  border-bottom: 1px solid var(--main_blue);
  padding: 6rem 0;
}
.sub-page-detail .overview .overview_body .inner_wrap {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .sub-page-detail .overview .overview_body .inner_wrap {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1rem;
  }
}
.sub-page-detail .overview .overview_image {
  flex: 1 0 43rem;
  width: 100%;
  max-width: 43rem;
  overflow: hidden;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .sub-page-detail .overview .overview_image {
    max-width: initial;
    flex: 1 1 100%;
  }
}
.sub-page-detail .overview .overview_image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1000px) {
  .sub-page-detail .overview .overview_image {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
.sub-page-detail .overview .overview_info {
  flex: 1;
}
.sub-page-detail .overview .info_block {
  margin-bottom: 24px;
}
.sub-page-detail .overview .info_block .info_title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  padding-left: 1em;
  position: relative;
}
.sub-page-detail .overview .info_block .info_title::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--main_blue);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.sub-page-detail .overview .info_block .info_content .info_list li {
  font-size: 15px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
}
.sub-page-detail .overview .info_block .info_content .info_list li::before {
  content: "・";
}
.sub-page-detail .overview .info_block .info_content .info_list.long_text li:not(:last-of-type) {
  margin-bottom: 1em;
}
.sub-page-detail .overview .info_block .info_content.pattarn_B .info_tag {
  border-radius: 0.5rem;
}
.sub-page-detail .detail_item {
  padding: 0 0 6rem 0;
}
@media screen and (max-width: 768px) {
  .sub-page-detail .detail_item {
    padding: 3rem 0 0 0;
  }
}
.sub-page-detail .detail_item .detail_text {
  flex: 1;
}
.sub-page-detail .detail_item .detail_text .detail_list li {
  font-size: 15px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1em;
}
.sub-page-detail .detail_item .detail_text .detail_list li::before {
  content: "・";
}
.sub-page-detail .detail_item .detail_image_card {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sub-page-detail .detail_item .detail_image_card {
    width: 100%;
  }
}
.sub-page-detail .detail_item.right_image {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .sub-page-detail .detail_item.right_image {
    flex-direction: column;
    gap: 0;
  }
}
.sub-page-detail .detail_item.left_image {
  display: flex;
  flex-direction: row-reverse;
  gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .sub-page-detail .detail_item.left_image {
    flex-direction: column;
    gap: 0;
  }
}

.subpage-detail .main_content {
  width: 100%;
  max-width: initial;
}
.subpage-detail .page_title {
  margin-bottom: 3rem;
}
.subpage-detail .cta_btn_group {
  margin-top: 0;
}
.subpage-detail.simple #footer {
  padding-top: 0;
  margin-top: 8rem;
}
.subpage-detail .column_block {
  margin-top: 4rem;
  padding-bottom: 5rem;
}
.subpage-detail .column_block .inner_wrap {
  display: flex;
  gap: 5.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .subpage-detail .column_block .inner_wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.subpage-detail .column_block .inner_wrap .body_copy {
  flex: 1 0 48%;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .subpage-detail .column_block .inner_wrap .body_copy {
    flex: 1 1 auto;
  }
}
.subpage-detail .column_block .inner_wrap .image_box {
  padding: 0;
}
.subpage-detail .column_block.right_image .inner_wrap {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .subpage-detail .column_block.right_image .inner_wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.subpage-detail .number_title {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .subpage-detail .number_title {
    gap: 1.5rem;
  }
}
.subpage-detail .number_title .number {
  font-size: 4rem;
  font-weight: bold;
  color: var(--main_blue);
}
@media screen and (max-width: 768px) {
  .subpage-detail .number_title .number {
    font-size: 2rem;
  }
}
.subpage-detail .number_title .title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .subpage-detail .number_title .title {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.subpage-detail .content_group {
  padding-bottom: 8rem;
}
.subpage-detail .content_group:not(:last-of-type) {
  margin-bottom: 8rem;
  border-bottom: 1px solid var(--main_blue);
}

.custom-made .headline_lv4.dot {
  border: none;
  font-size: 2.2rem;
  padding: 0 2rem;
}
.custom-made .headline_lv4.dot::before {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.custom-made .product_archive_list .list_item {
  background-color: var(--white);
}
.custom-made .product_archive_list .overview .thumb img {
  border: 1px solid #C3C3C3;
}
.custom-made .product_archive_list .overview .description {
  border: none;
  padding: 0;
  font-size: 1.4rem;
}
.custom-made .product_archive_list .overview .description .body-copy {
  border-top: 1px solid #C3C3C3;
  border-bottom: 1px solid #C3C3C3;
  padding: 2rem 0;
}
.custom-made .product_archive_list .overview .more_btn-wrap {
  margin: 3rem auto 0 auto;
}

.about-us .headline_lv4.dot {
  border: none;
  font-size: 2.2rem;
  padding: 0 2rem;
}
.about-us .headline_lv4.dot::before {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.about-us .product_archive_list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .about-us .product_archive_list {
    flex-direction: column;
    gap: 8rem;
  }
}
.about-us .product_archive_list .list_item {
  background-color: var(--white);
  padding: 0;
  display: flex;
  gap: 4rem;
  width: 100%;
  flex: 1 0 48%;
  max-width: 60rem;
}
@media screen and (max-width: 768px) {
  .about-us .product_archive_list .list_item {
    flex: 1 1 100%;
    flex-direction: column-reverse;
    gap: 0;
  }
}
.about-us .product_archive_list .list_item .name_area .product_name {
  font-size: 2rem;
  font-weight: bold;
}
.about-us .product_archive_list .list_item .name_area::before {
  display: none;
}
.about-us .product_archive_list .thumb {
  max-width: 24.3rem;
  margin: 0 auto;
}
.about-us .product_archive_list .thumb img {
  border: 1px solid #C3C3C3;
  border-radius: 1rem;
}
.about-us .product_archive_list .overview {
  display: block;
}
.about-us .product_archive_list .overview .product_name {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #E2E2E2;
  font-weight: bold;
}
.about-us .product_archive_list .overview .description {
  display: block;
  border: none;
  padding: 0;
  font-size: 1.4rem;
}
.about-us .product_archive_list .overview .description .body-copy {
  padding: 2rem 0;
}
.about-us .product_archive_list .overview .more_btn-wrap {
  margin: 3rem auto 0 auto;
}
.about-us .related_products_block {
  border-top: 1px solid var(--main_blue);
  border-bottom: 1px solid var(--main_blue);
  padding: 2.4rem 0 6rem 0;
}

.product_archive_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  justify-items: center;
}
@media screen and (max-width: 768px) {
  .product_archive_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product_archive_list .list_item {
  background-color: var(--bg_gray);
  border-radius: 1rem;
  padding: 5rem 4.5rem;
  max-width: 52rem;
}
@media screen and (max-width: 768px) {
  .product_archive_list .list_item {
    padding: 2rem;
  }
}
.product_archive_list .name_area {
  position: relative;
}
.product_archive_list .name_area::before {
  content: "";
  display: block;
  position: absolute;
  left: -4.5rem;
  width: 4px;
  height: 100%;
  background-color: var(--main_blue);
}
@media screen and (max-width: 768px) {
  .product_archive_list .name_area::before {
    left: -2rem;
  }
}
.product_archive_list .name_area .data {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1rem;
}
.product_archive_list .name_area .data .en-name {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.product_archive_list .name_area .data .info_tag {
  margin: 0;
}
.product_archive_list .name_area .product_name {
  font-size: 2.2rem;
  font-weight: bold;
}
.product_archive_list .overview {
  margin-top: 3rem;
  display: flex;
  gap: 2.7rem;
}
@media screen and (max-width: 768px) {
  .product_archive_list .overview {
    flex-direction: column;
  }
}
.product_archive_list .overview .thumb {
  flex: 0 0 15.4rem;
  max-width: 15.4rem;
  margin: 0 auto;
  border-radius: 1rem;
  background-color: var(--white);
  margin-bottom: 2.4rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.product_archive_list .overview .thumb::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.product_archive_list .overview .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.product_archive_list .overview .description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 0;
  border-top: 1px solid #C3C3C3;
  border-bottom: 1px solid #C3C3C3;
  gap: 1.6rem;
  font-size: 1.4rem;
}
.product_archive_list .overview .purpose span {
  display: block;
}
.product_archive_list .overview .purpose .info_tag {
  display: inline-block;
  border: 1px solid #525151;
  padding: 2px 8px;
  background-color: transparent;
  box-sizing: border-box;
  border-radius: 3px;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.product_archive_list .overview .purpose .purpose_list li {
  display: inline;
}
.product_archive_list .overview .purpose .purpose_list li:not(:last-of-type)::after {
  content: "、";
  display: inline;
}
.product_archive_list .more_btn-wrap {
  margin-top: 3.5rem;
}
.product_archive_list .more_btn-wrap a {
  min-width: 20rem;
}

.sidebar_wrap {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 1024px) {
  .sidebar_wrap {
    flex-direction: column;
  }
}

.wrap_wide .main_content {
  box-sizing: border-box;
  max-width: 913px;
}
@media screen and (max-width: 1024px) {
  .wrap_wide .main_content {
    max-width: initial;
  }
}
.wrap_wide .content_body {
  padding: 0 7rem;
}
@media screen and (max-width: 1024px) {
  .wrap_wide .content_body {
    padding: 0 2rem;
  }
}
.wrap_wide .content_body.bg_gray {
  padding: 10rem 7rem;
  background-color: var(--bg_gray);
  margin-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  .wrap_wide .content_body.bg_gray {
    padding: 4rem 2rem;
  }
}
.wrap_wide .content_body.bg_blue {
  padding: 10rem 7rem;
  background-color: var(--bg_blue);
  margin-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  .wrap_wide .content_body.bg_blue {
    padding: 4rem 2rem;
  }
}

.casestudy-detail .section:first-of-type,
.column-detail .section:first-of-type {
  padding-top: 0;
}
.casestudy-detail .overview_head,
.column-detail .overview_head {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .overview_head,
  .column-detail .overview_head {
    margin-bottom: 2rem;
  }
}
.casestudy-detail .overview_head .title,
.column-detail .overview_head .title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .overview_head .title,
  .column-detail .overview_head .title {
    font-size: 2.4rem;
  }
}
.casestudy-detail .overview,
.column-detail .overview {
  display: flex;
  gap: 4.5rem;
  /* -----------------------------------
   ※SP調整（768px以下）
   ----------------------------------- */
}
@media screen and (max-width: 768px) {
  .casestudy-detail .overview,
  .column-detail .overview {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.casestudy-detail .overview .tag-list,
.column-detail .overview .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .overview .tag-list,
  .column-detail .overview .tag-list {
    margin-bottom: 2rem;
  }
}
.casestudy-detail .overview .text_area,
.column-detail .overview .text_area {
  flex: 0 0 31rem;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .overview .text_area,
  .column-detail .overview .text_area {
    flex: initial;
  }
}
.casestudy-detail .overview .text_area .lead,
.column-detail .overview .text_area .lead {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.casestudy-detail .overview .text_area .lead p:not(:last-child),
.column-detail .overview .text_area .lead p:not(:last-child) {
  margin-bottom: 1.6rem;
}
.casestudy-detail .overview .text_area .note,
.column-detail .overview .text_area .note {
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #666;
}
.casestudy-detail .overview .image_area,
.column-detail .overview .image_area {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .overview .image_area,
  .column-detail .overview .image_area {
    margin-bottom: 3rem;
  }
}
.casestudy-detail .overview .image_area .mv_image,
.column-detail .overview .image_area .mv_image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .overview .image_area .mv_image,
  .column-detail .overview .image_area .mv_image {
    max-width: 40rem;
    margin: 0 auto;
  }
}
.casestudy-detail .overview .image_area .mv_image img,
.column-detail .overview .image_area .mv_image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.casestudy-detail .overview .image_area .mv_image .mv_caption,
.column-detail .overview .image_area .mv_image .mv_caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
}
.casestudy-detail .overview .image_area .mv_image .mv_caption .mv_label,
.column-detail .overview .image_area .mv_image .mv_caption .mv_label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.8rem 1.4rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .overview,
  .column-detail .overview {
    padding: 0 0 4rem 0;
  }
  .casestudy-detail .overview__title,
  .column-detail .overview__title {
    font-size: 2.8rem;
  }
  .casestudy-detail .overview__mv,
  .column-detail .overview__mv {
    margin-bottom: 3rem;
  }
  .casestudy-detail .overview__mv .mv_image .mv_caption,
  .column-detail .overview__mv .mv_image .mv_caption {
    bottom: 1.2rem;
    left: 1.2rem;
  }
  .casestudy-detail .overview__mv .mv_image .mv_caption .mv_label,
  .column-detail .overview__mv .mv_image .mv_caption .mv_label {
    font-size: 1.4rem;
    padding: 0.6rem 1rem;
  }
  .casestudy-detail .overview__lead,
  .column-detail .overview__lead {
    font-size: 1.6rem;
  }
}
.casestudy-detail .overview_section,
.column-detail .overview_section {
  padding: 0;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .overview_section,
  .column-detail .overview_section {
    margin-bottom: 0;
  }
}
.casestudy-detail .casestudy_index,
.column-detail .casestudy_index {
  padding: 0;
}
.casestudy-detail .column_block,
.column-detail .column_block {
  margin-top: 4rem;
  padding-bottom: 5rem;
}
.casestudy-detail .column_block .inner_wrap,
.column-detail .column_block .inner_wrap {
  display: flex;
  gap: 5.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .column_block .inner_wrap,
  .column-detail .column_block .inner_wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.casestudy-detail .column_block .inner_wrap .body_copy,
.column-detail .column_block .inner_wrap .body_copy {
  flex: 1 0 36rem;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .column_block .inner_wrap .body_copy,
  .column-detail .column_block .inner_wrap .body_copy {
    flex: 1 1 auto;
  }
}
.casestudy-detail .column_block .inner_wrap .image_box,
.column-detail .column_block .inner_wrap .image_box {
  padding: 0;
}
.casestudy-detail .column_block.right_image .inner_wrap,
.column-detail .column_block.right_image .inner_wrap {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .casestudy-detail .column_block.right_image .inner_wrap,
  .column-detail .column_block.right_image .inner_wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.casestudy-detail .product__list li,
.column-detail .product__list li {
  flex: 1 1 47%;
  max-width: 368px;
}
.casestudy-detail .more_btn-wrap,
.column-detail .more_btn-wrap {
  margin-bottom: 10rem;
}

.column-detail .mt-100 {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .column-detail .mt-100 {
    margin-top: 6rem;
  }
}
.column-detail .product__list {
  margin-top: 4rem;
}

.category-tag {
  background-color: var(--light_blue);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 5rem;
  min-width: 20rem;
  display: inline-block;
  box-sizing: border-box;
  color: var(--font_color);
}

.news-detail .post-date {
  font-size: 1.6rem;
  margin-top: 5px;
  margin-bottom: 3rem;
}
.news-detail .more_btn-wrap {
  margin-top: 7rem;
}
.news-detail .image_box img {
  width: auto;
  max-width: 100%;
}
.news-detail .image_box a {
  display: block;
  transition-duration: 0.3s;
}
.news-detail .image_box a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.news-detail .image_box figcaption {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news-detail .image_box figcaption {
    text-align: left;
  }
}

.casestudy_index {
  padding: 0;
  border-radius: 1rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .casestudy_index {
    margin-bottom: 4rem;
  }
}

.column_index li:not(:last-of-type) {
  margin-bottom: 1rem;
}
.column_index li a {
  display: flex;
  align-items: baseline;
  gap: 1.7rem;
  font-size: 2.2rem;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .column_index li a {
    font-size: 1.8rem;
  }
}
.column_index li a:hover {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
.column_index li a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--main_blue);
  flex-shrink: 0;
}

.index_item {
  margin-bottom: 1.4rem;
}
.index_item .index_head {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  text-align: left;
  transition: 0.3s;
  box-sizing: border-box;
  background-color: var(--bg_blue);
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index_item .index_head {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 8rem 1.5rem 1.5rem;
  }
}
.index_item .index_head:hover {
  background-color: var(--light_blue);
}
.index_item .index_head .title {
  width: 20rem;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--font_color);
  flex: 0 0 auto;
  border-right: 1px solid var(--font_color);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
.index_item .index_head .title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--main_blue);
  border-radius: 0;
  margin-right: 1.4rem;
  flex-shrink: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .index_item .index_head .title {
    font-size: 1.8rem;
    flex: 0 0 100%;
    border: none;
  }
}
.index_item .index_head .summary {
  flex: 1;
  font-size: 1.8rem;
  color: var(--font_color);
  padding-left: 2rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .index_item .index_head .summary {
    padding-left: 0;
    font-size: 1.6rem;
  }
}
.index_item .index_head .arrow {
  width: 4.6rem;
  height: 2.4rem;
  border-radius: 5rem;
  background: var(--main_blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index_item .index_head .arrow {
    position: absolute;
    right: 2rem;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.index_item .index_head .arrow::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 0.1em solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(135deg);
  transition: 0.3s;
  position: relative;
  top: -2px;
}

.sidebar {
  position: relative;
  width: 23rem;
  flex: 0 0 23rem;
  /* 閉じるボタン（右上） */
  /* アイテム */
  /* CTAボタン */
}
@media screen and (max-width: 1024px) {
  .sidebar {
    display: none;
  }
}
.sidebar .sticky_box {
  position: sticky;
  top: 12rem;
}
.sidebar .sidebar_card {
  background: var(--main_blue);
  border-radius: 1rem;
  padding: 1.6rem 2.3rem 2.4rem 2.3rem;
  color: #fff;
  box-sizing: border-box;
}
.sidebar .close_btn {
  display: block;
  position: absolute;
  right: 5px;
  top: -13px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--main_blue);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 10;
}
.sidebar .close_btn::before, .sidebar .close_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 10px;
  background: #2F6EC5;
  transform-origin: center;
}
.sidebar .close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sidebar .close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sidebar .sidebar_title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  text-align: center;
}
.sidebar .sidebar_item {
  margin-bottom: 3rem;
  color: #fff;
}
.sidebar .sidebar_item a {
  display: block;
  transition-duration: 0.3s;
}
.sidebar .sidebar_item a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.sidebar .sidebar_item .thumb {
  width: 100%;
  height: 7.5rem;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.sidebar .sidebar_item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar .sidebar_item .title {
  font-size: 1.4rem;
  line-height: 1.6;
}
.sidebar .sidebar_btns {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 3rem;
}
.sidebar .sb_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--font_color);
  text-decoration: none;
}
.sidebar .sb_btn:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.sidebar .sb_btn::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-image: url(../image/arrow_right_mini.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.sidebar .sb_btn.gray {
  background: #E2E2E2;
}
.sidebar .sb_btn.blue {
  background: #A5CFFF;
}
.sidebar .sb_btn.grad {
  background: #00D8FF;
}

.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.pagenation .page_num,
.pagenation .page_btn {
  width: 4rem;
  height: 4rem;
  border: 1px solid #707070;
  border-radius: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--font_color);
  text-decoration: none;
}
.pagenation .page_num:hover,
.pagenation .page_btn:hover {
  background: var(--light_blue);
  color: #fff;
}
.pagenation .page_num.current,
.pagenation .page_btn.current {
  background: var(--main_blue);
  color: #fff;
}
.pagenation .page_btn {
  position: relative;
}
.pagenation .page_btn.prev::before, .pagenation .page_btn.next::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  display: block;
  position: relative;
}
.pagenation .page_btn.prev::before {
  transform: rotate(135deg);
  right: -3px;
}
.pagenation .page_btn.next::before {
  transform: rotate(-45deg);
  left: -3px;
}

.archive-casestudy .case-study,
.archive-column .case-study {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .archive-casestudy .case-study,
  .archive-column .case-study {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .archive-casestudy .section__head,
  .archive-column .section__head {
    margin-bottom: 2rem;
  }
}

.archive-column .column {
  padding-bottom: 0;
}
.archive-column .column .column__list {
  margin-bottom: 0;
}
.archive-column .column .column__list .column__item {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .archive-column .column .column__list .column__item {
    margin-bottom: 4rem;
  }
}
.archive-column .column .column__list .column__item a .thumb {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.archive-column .column .column__list .column__item a .thumb::before {
  content: "";
  padding-top: 53.5%;
  display: block;
}
.archive-column .column .column__list .column__item a .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.archive-column .column .column__list .column__item a::after {
  display: none;
}
.archive-column .column .column__list .column__item .content {
  padding: 3rem 0 0 0;
}
.archive-column .column .column__list .column__item .content .title {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: 400;
}
.archive-column .column .column__list .column__item .link_btn {
  margin-top: 4rem;
}
.archive-column .column .column__list .column__item .link_btn::after {
  background: var(--main_blue);
  background-image: url(../image/arrow-right_wh.png);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  width: 56px;
  height: 29px;
  border-radius: 5rem;
}

.archive-news .news {
  padding: 0 0 8rem 0;
}
@media screen and (max-width: 768px) {
  .archive-news .news {
    padding: 0 0 4rem 0;
  }
}
.archive-news .info-bar__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.document-download .download__item a {
  color: var(--font_color);
}
.document-download .download__item .link_btn {
  color: var(--font_color);
}

.faq-page .headline_lv3 {
  margin-bottom: 6rem !important;
}
@media screen and (max-width: 768px) {
  .faq-page .headline_lv3 {
    margin-bottom: 4rem !important;
  }
}
.faq-page .category_block:not(:first-of-type) {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .faq-page .category_block:not(:first-of-type) {
    margin-top: 6rem;
  }
}

.faq_list .faq_item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .faq_list .faq_item {
    padding-bottom: 2rem;
  }
}
.faq_list .faq_item:not(:first-of-type) {
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .faq_list .faq_item:not(:first-of-type) {
    padding-top: 2rem;
  }
}
.faq_list .faq_item:not(:last-of-type) {
  border-bottom: 1px solid #E2E2E2;
}
.faq_list .question,
.faq_list .answer {
  display: flex;
  gap: 2rem;
  line-height: 1.875;
  align-items: baseline;
}
.faq_list .question span,
.faq_list .answer span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.faq_list .question span p,
.faq_list .answer span p {
  padding-bottom: 0.5em;
}
.faq_list .question span a,
.faq_list .answer span a {
  text-decoration: underline;
  color: var(--main_blue);
  transition-duration: 0.3s;
}
.faq_list .question span a:hover,
.faq_list .answer span a:hover {
  color: var(--font_color);
  text-decoration: none;
  transition-duration: 0.3s;
}
.faq_list .question::before,
.faq_list .answer::before {
  content: "";
  font-family: "Josefin Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 5px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
}
.faq_list .question {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .faq_list .question {
    font-size: 1.8rem;
  }
}
.faq_list .question::before {
  content: "Q";
  background-color: var(--main_blue);
  top: -3px;
}
.faq_list .answer {
  font-size: 1.6rem;
}
.faq_list .answer::before {
  background-color: #525151;
  content: "A";
}

.detail_content .summary {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .detail_content .summary {
    margin-bottom: 4rem;
  }
}

.number_index {
  counter-reset: number 0;
  padding: 4rem 0 6rem 0;
}
.number_index .number_index_item {
  counter-increment: number 1;
  margin-bottom: 1.4rem;
}
.number_index .number_index_item .index_head {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 7rem 3rem 2rem;
  text-align: left;
  transition: 0.3s;
  box-sizing: border-box;
  background-color: var(--bg_blue);
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .number_index .number_index_item .index_head {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 8rem 1.5rem 1.5rem;
  }
}
.number_index .number_index_item .index_head:hover {
  background-color: var(--light_blue);
}
.number_index .number_index_item .index_head .title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--font_color);
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  white-space: inherit;
  width: 100%;
}
.number_index .number_index_item .index_head .title::before {
  display: inline-block;
  content: "0" counter(number);
  border-radius: 0;
  margin-right: 1.4rem;
  flex-shrink: 0;
  font-size: 3rem;
  font-weight: bold;
  color: var(--main_blue);
}
@media screen and (max-width: 768px) {
  .number_index .number_index_item .index_head .title {
    font-size: 1.8rem;
    flex: 0 0 100%;
    border: none;
  }
}
.number_index .number_index_item .index_head .arrow {
  width: 4.6rem;
  height: 2.4rem;
  border-radius: 5rem;
  background: var(--main_blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 2rem;
  left: auto;
}
@media screen and (max-width: 768px) {
  .number_index .number_index_item .index_head .arrow {
    position: absolute;
    right: 2rem;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.number_index .number_index_item .index_head .arrow::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 0.1em solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(135deg);
  transition: 0.3s;
  position: relative;
  top: -2px;
}

.feature_item {
  padding: 4rem 0;
}
.feature_item .feature_head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 4rem;
}
.feature_item .feature_head .feature_num {
  width: 7.4rem;
  height: 7.4rem;
  background: var(--main_blue);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  flex-shrink: 0;
}
.feature_item .feature_head .feature_num .num_ja {
  font-size: 1rem;
  text-align: center;
  color: inherit;
}
.feature_item .feature_head .feature_num .num_en {
  font-family: "Josefin Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: inherit;
}
.feature_item .feature_head .feature_title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--font_color);
}
@media screen and (max-width: 768px) {
  .feature_item .feature_head .feature_title {
    font-size: 2.4rem;
  }
}
.feature_item .column2 {
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .feature_item .column2 {
    flex-direction: column;
  }
}
.feature_item .feature_photo {
  max-width: 82.5rem;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  padding-bottom: -4rem;
}
.feature_item .feature_photo span {
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  display: block;
  position: relative;
}
.feature_item .feature_photo span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main_blue);
  opacity: 0.15;
  mix-blend-mode: hard-light;
}
@media screen and (max-width: 768px) {
  .feature_item .feature_photo {
    position: relative;
  }
}
.feature_item .feature_photo img {
  width: 100%;
  height: auto;
  display: block;
}
.feature_item .feature_body {
  background: #f6f9fc;
  padding: 4rem 4.5rem;
  border-radius: 1.2rem;
  box-sizing: border-box;
  width: 70%;
  position: absolute;
  bottom: 0;
  z-index: 10;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .feature_item .feature_body {
    width: 98%;
    padding: 2rem;
    position: relative;
  }
}
.feature_item .feature_body .feature_text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--font_color);
}
.feature_item .feature_body .feature_text strong {
  color: var(--main_blue);
  font-weight: 700;
}
.feature_item.left-image .feature_photo {
  margin: 0 0 4rem 0;
}
@media screen and (max-width: 768px) {
  .feature_item.left-image .feature_photo {
    margin: 0 auto;
  }
}
.feature_item.left-image .feature_body {
  right: 0;
}
@media screen and (max-width: 768px) {
  .feature_item.left-image .feature_body {
    margin: -1rem auto 0 auto;
  }
}
.feature_item.right-image .feature_photo {
  margin: 0 0 4rem auto;
}
@media screen and (max-width: 768px) {
  .feature_item.right-image .feature_photo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .feature_item.right-image .feature_body {
    margin: -1rem auto 0 auto;
  }
}

.company .headline_lv3 {
  margin-bottom: 6rem;
}
.company .message .column2 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .company .message .column2 {
    flex-direction: column;
  }
}
.company .message .column2 .text_area {
  flex: 1 1 46rem;
  padding-top: 4.4rem;
  position: relative;
  z-index: 1;
  max-width: 46rem;
}
@media screen and (max-width: 768px) {
  .company .message .column2 .text_area {
    max-width: initial;
    padding-top: 0;
  }
}
.company .message .column2 .text_area .title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .company .message .column2 .text_area .title {
    font-size: 1.8rem;
  }
  .company .message .column2 .text_area .title br {
    display: none;
  }
}
.company .message .column2 .text_area .body_copy {
  font-size: 1.6rem;
  line-height: 1.875;
}
.company .message .column2 .text_area .name span {
  display: block;
}
.company .message .column2 .text_area .name .small {
  font-size: 1.4rem;
}
.company .message .column2 .text_area .name .normal {
  font-size: 2.2rem;
}
.company .message .column2 .photo_area {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  max-width: 70rem;
}
@media screen and (max-width: 768px) {
  .company .message .column2 .photo_area {
    position: relative;
    width: 100%;
    margin-top: 2rem;
  }
}
.company .message .column2 .photo_area img {
  border-radius: 1rem;
  overflow: hidden;
}
.company .headline_lv4.dot {
  border: 0;
  padding: 2rem 0 0;
  text-indent: 2rem;
}
.company .headline_lv4.dot::before {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.company .headline_lv4.dot::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--main_blue);
  margin-top: 2rem;
}
.company .base {
  padding: 10rem 0 0 0;
}
@media screen and (max-width: 768px) {
  .company .base {
    padding: 4rem 0;
  }
}
.company .base .gallary .count-3 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}
.company .base .gallary .count-3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
.company .base .gallary .count-3 img:nth-child(1) {
  grid-row: span 2;
}
.company .base .gallary .count-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.company .base .gallary .count-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .company .base .gallary .count-3,
  .company .base .gallary .count-2 {
    grid-template-columns: 1fr;
  }
}

.map_block iframe {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.company-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E2E2E2;
  margin: 6rem 0;
}
.company-table__inner {
  width: 100%;
}
.company-table__row {
  display: flex;
  border-bottom: 1px solid #E2E2E2;
}
.company-table__row:last-child {
  border-bottom: none;
}
.company-table__head {
  background: #F8F8F7;
  width: 23.4rem;
  padding: 2rem;
  font-weight: 600;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.company-table__data {
  padding: 2rem;
  line-height: 1.8;
  flex: 1;
}
.company-table__data a {
  color: var(--main_blue);
  text-decoration: underline;
  word-break: break-all;
  display: inline;
}
.company-table__data a:hover {
  color: var(--font_color);
}
@media screen and (max-width: 768px) {
  .company-table__row {
    display: block;
  }
  .company-table__head {
    width: 100%;
    padding: 1.6rem;
  }
  .company-table__data {
    padding: 1.6rem;
  }
}

.textbox_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  justify-items: center;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .textbox_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.textbox_list .list_item {
  background-color: var(--bg_gray);
  border-radius: 1rem;
  padding: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .textbox_list .list_item {
    padding: 2rem;
  }
}
.textbox_list .title_area {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
}
.textbox_list .title_area::before {
  content: "";
  display: block;
  position: absolute;
  left: -2.5rem;
  width: 4px;
  height: 100%;
  background-color: var(--main_blue);
}
@media screen and (max-width: 768px) {
  .textbox_list .title_area::before {
    left: -2rem;
  }
}

.page-recruit .section {
  padding-bottom: 0;
}
.page-recruit .section.benefits {
  padding-top: 0;
}
.page-recruit .section.career_recruit {
  padding-bottom: 10rem;
}
.page-recruit .anchor_area .wrap_primary {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-recruit .anchor_area .anchor_list a {
    font-size: 1.4rem;
  }
}

.sub-page .content h3.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 1.6rem;
  box-sizing: border-box;
}
.sub-page .content h3.wp-block-heading:not(:first-of-type) {
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .sub-page .content h3.wp-block-heading:not(:first-of-type) {
    padding-top: 4rem;
  }
}
.sub-page .content p {
  font-size: 1.6rem;
  line-height: 1.875;
  padding-bottom: 1em;
}
.sub-page .content p a {
  color: var(--main_blue);
  text-decoration: underline;
  word-break: break-all;
  display: inline;
}
.sub-page .content p a:hover {
  color: var(--font_color);
}
.sub-page.default .content li {
  line-height: 1.875;
}
.sub-page.default .content li a {
  color: var(--main_blue);
  text-decoration: underline;
  word-break: break-all;
  display: inline;
}
.sub-page.default .content li a:hover {
  color: var(--font_color);
}
.sub-page.default .content ol {
  padding: initial;
  padding-left: 2em;
  box-sizing: border-box;
  width: 100%;
}
.sub-page.default .content ol li {
  list-style: decimal;
  padding-left: 0.5em;
}
.sub-page.default .content ul {
  padding: initial;
  padding-left: 2em;
  box-sizing: border-box;
  width: 100%;
}
.sub-page.default .content ul li {
  list-style: disc;
  padding-left: 0.5em;
}

.post-password-form {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: bold;
}
.post-password-form input[type=password] {
  width: 100%;
  max-width: 300px;
  font-size: 1.8rem;
  padding: 0.5rem 1rem;
  margin-top: 2rem;
  box-sizing: border-box;
}
.post-password-form input[type=submit] {
  width: 100%;
  max-width: 100px;
  font-size: 1.8rem;
  padding: 0 1rem;
  margin-top: 2rem;
  box-sizing: border-box;
}

span.must-label {
  background: #D01945;
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 0.8rem;
}

.contact-form-template main {
  margin-top: 0 !important;
}
.contact-form-template .page_header {
  height: 40rem;
}
.contact-form-template .page_header .inner_wrap {
  top: 50%;
}

.body_copy_area {
  line-height: 1.875;
  margin-bottom: 1em;
}
.body_copy_area a {
  color: var(--main_blue);
}
.body_copy_area a:hover {
  color: var(--light_blue);
}
.body_copy_area p br {
  display: block;
  margin-bottom: 1em;
}

.contact-form {
  margin: 0 auto;
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 4rem 0;
  }
}
.contact-form .form-row {
  display: flex;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
  }
}
.contact-form .form-row.must .label::after {
  content: "必須";
  background: #D01945;
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 0.8rem;
}
.contact-form .form-row.free .label::after {
  content: "任意";
  background: #767676;
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 0.8rem;
}
.contact-form .label {
  width: 22%;
  font-size: 1.6rem;
  font-weight: 700;
  background: #F8F8F7;
  display: flex;
  align-items: center;
  padding: 2rem;
  height: inherit;
  justify-content: space-between;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .contact-form .label {
    width: 100%;
  }
}
.contact-form .label:first-of-type {
  border-radius: 10px 10px 0 0;
}
.contact-form .input-area {
  width: 78%;
  padding: 3rem 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .contact-form .input-area {
    width: 100%;
  }
}
.contact-form .input-area input,
.contact-form .input-area textarea {
  width: 100%;
  border: 1px solid #BABABA;
  border-radius: 6px;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  box-sizing: border-box;
}
.contact-form .input-area input::-moz-placeholder, .contact-form .input-area textarea::-moz-placeholder {
  color: #BABABA;
}
.contact-form .input-area input::placeholder,
.contact-form .input-area textarea::placeholder {
  color: #BABABA;
}
.contact-form .input-area textarea {
  height: 18rem;
}
.contact-form .checkbox-area .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
}
.contact-form .checkbox-area .wpcf7-form-control .wpcf7-list-item {
  margin: 0;
}
.contact-form .checkbox-area .wpcf7-form-control label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  white-space: nowrap;
}
.contact-form .checkbox-area .wpcf7-form-control label input {
  margin-right: 0.6rem;
}
.contact-form .name-area {
  display: flex;
  gap: 2.4rem;
}
.contact-form .name-area .name-col {
  width: 50%;
}
.contact-form .name-area .name-col p {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.contact-form .name-area .name-col p br {
  display: none;
}
.contact-form .name-area .name-col span {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.contact-form .address-area {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form .address-area .post {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-form .address-area .post p {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.contact-form .address-area .post p br {
  display: none;
}
.contact-form .address-area .post span {
  font-size: 1.6rem;
}
.contact-form .address-area .post input {
  max-width: 200px;
}
.contact-form .privacy-note {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 6rem 0 0 0;
}
.contact-form .submit-area {
  text-align: center;
}
.contact-form .submit-area .btn-submit {
  background: var(--main_blue);
  color: var(--white);
  font-size: 2.8rem;
  padding: 3rem;
  border-radius: 5rem;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  width: 100%;
  max-width: 40rem;
  font-weight: bold;
  margin-top: 4rem;
  transition-duration: 0.3s;
}
.contact-form .submit-area .btn-submit:hover {
  background-color: var(--light_blue);
  transition-duration: 0.3s;
}
.contact-form .submit-area .btn-submit.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.contact-form-template #footer {
  padding: 0;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .contact-form-template #footer {
    margin-top: 4rem;
  }
}

.wpforms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0 !important;
}

.wpforms-field.must .wpforms-field-label::before {
  content: "必須";
  background: #D01945;
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 5px;
  border-radius: 4px;
}
.wpforms-field.free .wpforms-field-label::before {
  content: "任意";
  background: #767676;
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 5px;
  border-radius: 4px;
}
.wpforms-field .wpforms-field-medium {
  max-width: initial !important;
}
.wpforms-field .wpforms-field-label {
  width: 22%;
  font-size: 1.6rem;
  font-weight: 700;
}
.wpforms-field .wpforms-field-label::before {
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .wpforms-field .wpforms-field-label {
    width: 100%;
  }
}
.wpforms-field fieldset {
  width: 100% !important;
}
.wpforms-field fieldset input {
  display: 100%;
}

.wpforms-field-limit-text {
  display: none;
}

.wpforms-required-label {
  display: none;
}

.wpforms-field-row {
  width: 100%;
}

.name .wpforms-field-row-block {
  display: flex;
  align-items: center;
  gap: 1em;
}
.name .wpforms-field-row-block::before {
  content: "名";
  display: inline-block;
  font-weight: 600;
}
.name .wpforms-field-row-block.wpforms-first::before {
  content: "姓";
  display: inline-block;
}

.wpforms-submit-container::before {
  content: "当社の 「 プライバシーポリシー 」 に同意のうえ、送信してください";
  font-size: 2rem;
  font-weight: bold;
  margin: 4rem 0;
  display: block;
  text-align: center;
}

.wpforms-submit {
  display: block !important;
  box-sizing: border-box !important;
  background: var(--main_blue) !important;
  color: var(--white);
  font-size: 2.8rem !important;
  padding: 3rem !important;
  border-radius: 5rem !important;
  border: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  width: 100% !important;
  max-width: 40rem !important;
  font-weight: bold !important;
  margin-top: 4rem !important;
  transition-duration: 0.3s !important;
  height: initial !important;
  margin: 0 auto !important;
}
.wpforms-submit:hover {
  background-color: var(--light_blue) !important;
  transition-duration: 0.3s !important;
}
.wpforms-submit.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}/*# sourceMappingURL=common.css.map */