@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
html {
  scroll-behavior: auto;
}

:root {
  --black: #161616;
  --bg_gray: #EFF5F7;
  --border_gray: #BDBDBD;
  --gray: #E7E7E7;
  --font_color: #383838;
  --white: #fff;
  --accent-red: #FF3B6A;
  --blue: #173AB6;
  --light-blue: #4FD7E9;
  --dark-blue: #112878;
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: var(--font_color);
  position: relative;
}

@media screen and (min-width: 768px) {
  body {
    min-width: none !important;
  }
}
main {
  font-size: initial;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  main {
    width: 100%;
  }
}

a {
  text-decoration: none;
  transition-duration: 0.3s;
  color: var(--accent_color);
}

a:where(:not(.wp-element-button)) {
  color: var(--accent_color);
}

* ul {
  padding-left: 0;
}

.wrap_primary {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5rem;
  width: 100%;
  font-weight: inherit;
  font-size: inherit;
}
@media screen and (max-width: 1000px) {
  .wrap_primary {
    padding: 0 2rem;
    max-width: initial;
    box-sizing: border-box;
  }
}
.wrap_primary.none_padding {
  padding: 0;
}

ul li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 765px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.link_btn.normal {
  position: relative;
  z-index: 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  background: var(--blue);
  color: var(--white);
  position: relative;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
}
.link_btn.normal:hover {
  background-color: var(--light-blue);
}
.link_btn.rounded {
  display: block;
  padding: 0.8rem 2rem;
  background-color: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 5rem;
  white-space: nowrap;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
}
.link_btn.rounded:hover {
  background: var(--light-blue);
}
.link_btn.banner {
  display: flex;
  width: 100%;
  min-height: 14rem;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 765px) {
  .link_btn.banner {
    min-height: 10rem;
  }
}
.link_btn.banner .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
.link_btn.banner .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
  transition-duration: 0.3s;
  transform: scale(1);
}
.link_btn.banner .background::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  transition-duration: 0.3s;
}
.link_btn.banner .label {
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: inherit;
  height: 100%;
  justify-content: center;
  box-sizing: border-box;
}
.link_btn.banner .arrow {
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  background-color: #Eff5f7;
  display: flex;
  min-width: 4rem;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 765px) {
  .link_btn.banner .arrow {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
  }
}
.link_btn.banner .arrow::after {
  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);
}
.link_btn.banner.prev {
  padding: 2rem 6rem 2rem 7rem;
}
.link_btn.banner.prev .arrow {
  position: absolute;
  left: 3rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 765px) {
  .link_btn.banner.prev .arrow {
    left: 2rem;
  }
}
.link_btn.banner.prev .arrow::after {
  border: 0.1em solid currentColor;
  border-right: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-45deg);
}
.link_btn.banner.next {
  padding: 2rem 7rem 2rem 6rem;
}
.link_btn.banner.next .arrow {
  position: absolute;
  right: 3rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 765px) {
  .link_btn.banner.next .arrow {
    right: 2rem;
  }
}
.link_btn.banner:hover .background::before {
  opacity: 0.8;
  transition-duration: 0.3s;
}
.link_btn.banner:hover .background img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}

.link_block.right_align {
  display: flex;
  justify-content: flex-end;
}

.pager {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 9rem 0 0 0;
}
@media screen and (max-width: 765px) {
  .pager {
    padding: 4rem 0 0 0;
  }
}
.pager .pager_bar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
}
@media screen and (max-width: 765px) {
  .pager .pager_bar {
    gap: 5px;
  }
}
.pager .page-numbers {
  background-color: var(--white);
  border: 1px solid var(--font_color);
  border-radius: 10px;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--font_color);
  font-size: 1.6rem;
  overflow: hidden;
}
.pager .page-numbers:hover {
  background-color: var(--font_color);
  color: var(--white);
}
.pager .current {
  background-color: var(--font_color);
  color: var(--white);
}
.pager .prev,
.pager .next {
  position: relative;
}
.pager .prev::before,
.pager .next::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--font_color);
  border-right: 2px solid var(--font_color);
}
.pager .prev:hover,
.pager .next:hover {
  background-color: var(--font_color);
}
.pager .prev:hover::before,
.pager .next:hover::before {
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
.pager .prev::before {
  left: 4px;
  transform: rotate(-135deg);
}
.pager .next::before {
  right: 4px;
  transform: rotate(45deg);
}

.column2 {
  display: flex;
}

.wpcf7 p {
  font-size: 1.6rem;
  font-weight: bold;
}

.information_title {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--accent-blue);
}
@media screen and (max-width: 900px) {
  .information_title {
    font-size: 2.4rem;
  }
}
.information_title::after {
  content: "";
  display: block;
  margin-top: 3rem;
  width: 25%;
  min-width: 32rem;
  height: 3px;
  background-color: var(--accent-blue);
}
@media screen and (max-width: 900px) {
  .information_title::after {
    margin-top: 2rem;
  }
}

.information_banner_list {
  display: flex;
  padding: 10rem 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 765px) {
  .information_banner_list {
    padding: 3rem 0;
    flex-direction: column;
  }
}
.information_banner_list .list_item {
  flex: 1 1 50%;
  box-sizing: border-box;
  height: 20rem;
  max-width: 50%;
}
@media screen and (max-width: 765px) {
  .information_banner_list .list_item {
    flex: 1 1 100%;
    max-width: initial;
  }
}
.information_banner_list .list_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--white);
  overflow: hidden;
}
@media screen and (max-width: 765px) {
  .information_banner_list .list_item a {
    height: 10rem;
    font-size: 2rem;
  }
}
.information_banner_list .list_item a .arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
}
.information_banner_list .list_item a .arrow::after {
  content: "";
  display: block;
  position: relative;
  left: -2px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--accent-blue);
  border-right: 2px solid var(--accent-blue);
  transform: rotate(45deg);
}
.information_banner_list .list_item a:hover img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.information_banner_list .list_item a:hover .arrow {
  background-color: var(--light-blue);
  transition-duration: 0.3s;
}
.information_banner_list .list_item .title {
  display: block;
  position: relative;
  font-weight: inherit;
}
.information_banner_list .list_item .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.information_banner_list .list_item .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -15;
  transition-duration: 0.3s;
}
.information_banner_list .list_item .background::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 135, 202, 0.5);
  mix-blend-mode: multiply;
}
.information_banner_list .list_item .background::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/front-page/bg_texture_dots.png);
  mix-blend-mode: screen;
  background-size: cover;
}

.page_nation_block {
  padding: 3rem 0;
}
.page_nation_block ul {
  padding: 0 !important;
}
.page_nation_block ul li {
  list-style: none !important;
}
.page_nation_block a {
  text-decoration: none !important;
}
.page_nation_block .pagination {
  justify-content: center;
  padding: 0 1rem;
}
.page_nation_block .page-numbers {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
}
.page_nation_block .page-numbers li {
  width: 5rem;
  height: 5rem;
}
.page_nation_block .page-numbers li:not(:last-of-type) {
  margin-bottom: 0;
}
.page_nation_block .page-numbers li::before {
  display: none;
}
.page_nation_block .page-numbers li .prev,
.page_nation_block .page-numbers li .next {
  position: relative;
  height: inherit;
  width: inherit;
  box-sizing: border-box;
  background-color: var(--blue);
}
.page_nation_block .page-numbers li .prev::before,
.page_nation_block .page-numbers li .next::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.page_nation_block .page-numbers li .prev::before {
  transform: rotate(-135deg);
}
.page_nation_block .page-numbers li a,
.page_nation_block .page-numbers li span {
  font-size: 1.6rem;
  padding: 1rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white) !important;
  background-color: var(--blue);
  text-decoration: none;
  border: 1px solid transparent;
  width: inherit;
  height: inherit;
  box-sizing: border-box;
}
.page_nation_block .page-numbers li a:hover,
.page_nation_block .page-numbers li span:hover {
  border-color: transparent;
  background-color: var(--light-blue);
}
.page_nation_block .page-numbers li .page-numbers.dots {
  padding: 0;
  background: transparent;
  color: var(--black) !important;
}
.page_nation_block .page-numbers li .current {
  border-color: transparent;
  background-color: var(--light-blue);
  font-weight: bold;
}
.page_nation_block .page-numbers li .current::after {
  display: none;
}

.body_lock {
  overflow: hidden !important;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 2rem;
  box-sizing: border-box;
  z-index: 8888;
  height: 7.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 1100px) {
  .header {
    width: 100%;
    height: 5.5rem;
    backdrop-filter: none;
    padding: 0 1rem;
  }
}
.header .inner_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .main_logo a {
  display: block;
  transition-duration: 0.3s;
  max-width: 27rem;
}
@media screen and (max-width: 1100px) {
  .header .main_logo a {
    max-width: 18rem;
  }
}
.header .main_logo a:hover {
  opacity: 0.8;
  transition-duration: 0.3s;
}
.header .main_logo_img {
  position: relative;
  z-index: 999;
  width: 100%;
}

.gnav_menu_area {
  width: 100%;
  height: inherit;
}

.gnav-menu {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .gnav-menu {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.gnav-menu .menu-item {
  height: inherit;
}
@media screen and (max-width: 1100px) {
  .gnav-menu .menu-item {
    height: initial;
  }
}
.gnav-menu .menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  padding: 0 1rem;
  white-space: nowrap;
  height: 100%;
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
}
@media screen and (max-width: 1100px) {
  .gnav-menu .menu-item a {
    padding: 1rem 0;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.gnav-menu .menu-item a::after {
  transition-duration: 0.3s;
}
.gnav-menu .menu-item a:hover {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}
.gnav-menu .current a,
.gnav-menu .current-page-ancestor a,
.gnav-menu .current-menu-item a,
.gnav-menu .current_page_item a {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}
.gnav-menu .menu-item.contact_btn {
  --btn-icon-size: 2rem;
  --btn-icon-gap: 0.7rem;
  --btn-padding-h: 2rem;
  height: 4.4rem;
  padding: 0 var(--btn-padding-h);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}
.gnav-menu .menu-item.contact_btn a {
  color: var(--white);
}
.gnav-menu .menu-item.contact_btn {
  border-bottom: none !important;
}
.gnav-menu .menu-item.contact_btn:hover {
  border-bottom: none !important;
}
@media screen and (max-width: 1100px) {
  .gnav-menu .menu-item.contact_btn {
    width: 100%;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 1100px) {
  .is-togglemenu-active .header_cta {
    display: flex;
    width: 100%;
    padding: 0 1rem;
    margin-left: 0;
    margin-top: 0.4rem;
  }
  .is-togglemenu-active .header_cta .contact_btn {
    --btn-icon-size: 2.2rem;
    --btn-padding-h: 1.8rem;
    width: 100%;
    height: 5rem;
    font-size: 1.6rem;
  }
}

.toggle_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 auto;
  gap: 2rem;
  box-sizing: border-box;
  width: inherit;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .toggle_menu {
    display: none;
    position: fixed;
    top: 5.5rem;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(255, 255, 255, 0.95);
    left: 0;
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
}

.menu-btn {
  height: 4rem;
  width: 4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: transparent;
  box-sizing: border-box;
  border-radius: 50%;
  display: none;
  margin-left: 2rem;
  font-size: 10px;
  color: var(--blue);
  font-weight: bold;
  margin-top: -20px;
}
@media screen and (max-width: 1100px) {
  .menu-btn {
    display: flex;
  }
}
.menu-btn:hover {
  cursor: pointer;
}
.menu-btn .line,
.menu-btn .line:before,
.menu-btn .line:after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--blue);
  position: relative;
  transition: 0.3s;
  top: 5px;
}
.menu-btn .line:before {
  bottom: 7px;
}
.menu-btn .line:after {
  top: 8px;
}

.is-togglemenu-active {
  background: rgba(255, 255, 255, 0.95);
}
.is-togglemenu-active .toggle_menu {
  display: flex;
}
.is-togglemenu-active .toggle_menu .gnav-menu {
  display: flex;
}
.is-togglemenu-active .menu-btn .line {
  background-color: transparent;
}
.is-togglemenu-active .menu-btn .line:before {
  transform: rotate(45deg);
  top: auto;
  bottom: -6px;
  background-color: var(--blue);
}
.is-togglemenu-active .menu-btn .line:after {
  transform: rotate(-45deg);
  top: 4px;
  background-color: var(--blue);
}

.logged-in .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .logged-in .header {
    top: 46px;
  }
}
.logged-in body {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .logged-in body {
    top: 46px;
  }
}
.logged-in .toggle_menu {
  top: 107px;
}
@media screen and (max-width: 782px) {
  .logged-in .toggle_menu {
    top: 101px;
  }
}
@media screen and (max-width: 1199px) {
  .logged-in .header_menu_area {
    top: 120px;
  }
}
@media screen and (max-width: 782px) {
  .logged-in .header_menu_area {
    top: 134px;
  }
}

.footer {
  color: var(--white);
  position: relative;
  z-index: 2000;
}
@media screen and (max-width: 1100px) {
  .footer {
    width: 100%;
  }
}
.footer .area_wrap {
  position: relative;
  background: linear-gradient(90deg, #08C0C0 0%, #194DD2 100%);
}
.footer .area_wrap .column2 {
  gap: 1rem;
}
@media screen and (max-width: 900px) {
  .footer .area_wrap .column2 {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 3rem;
  }
}
.footer .area_wrap .wrap_primary {
  width: 100%;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.footer .area_wrap .infomation_block {
  flex: 1 1 50%;
}
.footer .area_wrap .infomation_block a {
  display: inline-block;
  margin-bottom: 2rem;
  max-width: 20rem;
  transition-duration: 0.3s;
}
.footer .area_wrap .infomation_block a:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
@media screen and (max-width: 900px) {
  .footer .area_wrap .infomation_block a {
    margin: 0 auto 3rem auto;
    max-width: 20rem;
  }
}
.footer .area_wrap .infomation_block .main_logo_img {
  width: 100%;
}
.footer .area_wrap .infomation_block .company_name,
.footer .area_wrap .infomation_block .company_data {
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer .area_wrap .infomation_block .company_name {
  font-weight: bold;
}
.footer .area_wrap .infomation_block .company_data {
  margin-top: 1em;
}
@media screen and (max-width: 730px) {
  .footer .area_wrap .infomation_block .company_data {
    margin-top: 0.5rem;
  }
}
.footer .area_wrap .footer_menu_block {
  flex: 1 1 50%;
  display: flex;
  align-items: baseline;
  gap: 2rem;
}
@media screen and (max-width: 900px) {
  .footer .area_wrap .footer_menu_block {
    gap: 2rem;
  }
}
@media screen and (max-width: 730px) {
  .footer .area_wrap .footer_menu_block {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
}
@media screen and (max-width: 730px) {
  .footer .area_wrap .footer_menu_block .menu-box {
    width: 100%;
  }
}
.footer .area_wrap .footer_menu_block .menu-box .title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 730px) {
  .footer .area_wrap .footer_menu_block .menu-box .title {
    margin-top: 2rem;
  }
}
.footer .area_wrap .footer_menu_block .menu-box .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  margin-top: 1rem;
}
.footer .area_wrap .footer_menu_block .menu-box .common-gnav-menu .menu-item a {
  font-size: 1.4rem;
  display: block;
  font-weight: bold;
  padding: 0 2rem 2rem 0;
  line-height: 1.5;
  transition-duration: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .footer .area_wrap .footer_menu_block .menu-box .common-gnav-menu .menu-item a {
    width: 100%;
  }
}
.footer .area_wrap .footer_menu_block .menu-box .common-gnav-menu .menu-item a[target=_blank] {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.footer .area_wrap .footer_menu_block .menu-box .common-gnav-menu .menu-item a[target=_blank]::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background-image: url(../images/common/new_window_wh.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition-duration: 0.3s;
}
.footer .area_wrap .footer_menu_block .menu-box .common-gnav-menu .menu-item a[target=_blank]:hover::after {
  background-image: url(../images/common/new_window_blu.png);
  transition-duration: 0.3s;
}
.footer .area_wrap .footer_menu_block .menu-box .common-gnav-menu .menu-item a:hover {
  color: var(--light-blue);
  transition-duration: 0.3s;
}
.footer .banners {
  margin-top: 3rem;
}
.footer .banners .column2 {
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 900px) {
  .footer .banners .column2 {
    align-items: flex-start;
    gap: 3rem;
  }
}
.footer .banners .col {
  flex: 1 1 50%;
}
.footer .banners .site_seal_box {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 900px) {
  .footer .banners .site_seal_box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.footer .banners .block_wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 900px) {
  .footer .banners .block_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.footer .banners .block_wrap .image a {
  display: block;
  width: 100%;
}
.footer .banners .block_wrap img {
  width: 100%;
}
.footer .banners .gmoglobalsign {
  font-size: 1.2rem;
  line-height: 1.8;
}
.footer .banners .gmoglobalsign .image {
  max-width: 13rem;
}
.footer .banners .AIGsonpo {
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer .banners .AIGsonpo a {
  text-decoration: underline;
}
.footer .banners .AIGsonpo a:hover {
  text-decoration: none;
}
.footer .banners .AIGsonpo .image {
  max-width: 20rem;
}
.footer .banners .AIGsonpo .text {
  font-size: 1.6rem;
  font-weight: bold;
}
.footer .copyright {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 2rem 0;
  font-size: 1.4rem;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .footer .copyright {
    width: 100%;
  }
}
@media screen and (max-width: 765px) {
  .footer .copyright {
    font-size: 1.4rem;
  }
}

.tag_btn {
  display: block;
  background: var(--corp_green);
  color: var(--white);
  font-weight: bold;
  border-radius: 5rem;
  font-size: 1.2rem;
  padding: 5px 15px;
}

a.tag_btn {
  opacity: 1;
  transition-duration: 0.3s;
}
a.tag_btn:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}

/* ==========================================================================
   Reusable CTA Buttons
   ========================================================================== */
.ai_btn {
  --btn-icon-size: 2.6rem;
  --btn-icon-gap: 0.8rem;
  --btn-padding-v: 0;
  --btn-padding-h: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-icon-gap);
  background-color: #E6425E;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: var(--btn-padding-v) var(--btn-padding-h);
  transition: background-color 0.25s ease, transform 0.15s ease;
  position: relative;
  box-sizing: border-box;
  white-space: nowrap;
}
.ai_btn::before {
  content: "";
  display: block;
  flex: 0 0 var(--btn-icon-size);
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  background-image: url(../images/common/icon_ai_chat.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ai_btn:hover {
  background-color: #c73551;
}
.ai_btn:active {
  transform: translateY(0);
}

.contact_btn {
  --btn-icon-size: 2.6rem;
  --btn-icon-gap: 0.8rem;
  --btn-padding-v: 0;
  --btn-padding-h: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-icon-gap);
  background-color: #1E4AAF;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: var(--btn-padding-v) var(--btn-padding-h);
  transition: background-color 0.25s ease, transform 0.15s ease;
  position: relative;
  box-sizing: border-box;
  white-space: nowrap;
}
.contact_btn::before {
  content: "";
  display: block;
  flex: 0 0 var(--btn-icon-size);
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  background-image: url(../images/common/icon_contact.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contact_btn:hover {
  background-color: #153a8c;
}
.contact_btn:active {
  transform: translateY(0);
}

.post_date {
  font-weight: 400;
  font-size: 1.4rem;
}

.floating_btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}
@media screen and (max-width: 765px) {
  .floating_btn {
    right: 0.5rem;
  }
}
.floating_btn a {
  width: 12rem;
  height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent-red);
  color: var(--white);
  font-weight: bold;
  line-height: 1.5;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 50%;
  gap: 1rem;
  box-sizing: border-box;
}
.floating_btn a::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.5rem;
  background-image: url(../images/common/chat_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.floating_btn a:hover {
  background-color: var(--light-blue);
}

.number_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto;
  align-items: stretch;
  justify-content: center;
  max-width: 81rem;
}
@media screen and (max-width: 879px) {
  .number_list {
    flex-direction: column;
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.number_list .list_item {
  flex: 1 1 48%;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D8D8D8;
}
@media screen and (max-width: 879px) {
  .number_list .list_item {
    flex: 1 1 100%;
  }
}
.number_list .list_item .title {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.number_list .list_item .title .number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--blue);
  font-family: "Open Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50%;
  flex: 0 0 auto;
  width: 3.7rem;
  height: 3.7rem;
  color: var(--blue);
}
.number_list .list_item .title .text {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 10%;
}
.number_list .list_item .title .text strong {
  color: var(--accent-red);
  font-weight: inherit;
}
.number_list .list_item .desc {
  margin-top: 1rem;
  font-size: 1.6rem;
  height: 100%;
  line-height: 1.5;
  font-weight: 500;
}

.article_list.simple {
  width: 100%;
}
.article_list.simple .article_thumb {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 2rem;
}
@media screen and (max-width: 800px) {
  .article_list.simple .article_thumb {
    flex-direction: column;
    padding: 2rem 0;
    margin-bottom: 0;
  }
}
.article_list.simple .article_thumb .date {
  font-size: 1.6rem;
  font-weight: 400;
}
.article_list.simple .article_thumb .content {
  width: 100%;
}
.article_list.simple .article_thumb .content a {
  display: block;
  position: relative;
  padding-right: 4rem;
  transition-duration: 0.3s;
}
.article_list.simple .article_thumb .content a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transition-duration: 0.3s;
}
.article_list.simple .article_thumb .content a span {
  display: block;
}
.article_list.simple .article_thumb .content a .title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1.3;
  color: var(--blue);
  transition-duration: 0.3s;
}
.article_list.simple .article_thumb .content a .desc {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
}
.article_list.simple .article_thumb .content a:hover .title {
  color: var(--light-blue);
  transition-duration: 0.3s;
}
.article_list.simple .article_thumb .content a:hover {
  color: var(--light-blue);
  transition-duration: 0.3s;
}
.article_list.simple .article_thumb .content a:hover::after {
  color: var(--light-blue);
  transition-duration: 0.3s;
}
.article_list.card .article_thumb {
  padding: 0 1rem 3rem 1rem;
  width: 20%;
}
.article_list.card .article_thumb a {
  display: block;
  padding: 2rem;
  background-color: var(--bg_gray);
  border-radius: 1rem;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  .article_list.card .article_thumb a {
    width: 90%;
    margin: 0 auto;
  }
}
.article_list.card .article_thumb a:hover {
  color: var(--light-blue);
}
.article_list.card .article_thumb a:hover .thumbnail {
  overflow: hidden;
}
.article_list.card .article_thumb a:hover .thumbnail img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.article_list.card .article_thumb a .thumbnail {
  width: 100%;
  height: 15.5rem;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  overflow: hidden;
}
.article_list.card .article_thumb a .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-duration: 0.3s;
}
.article_list.card .article_thumb a .title {
  font-size: 1.6rem;
  font-weight: bold;
  min-height: 3em;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.article_list.card .article_thumb a .desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.article_list.card .article_thumb a .desc .text {
  display: block;
  min-height: 7em;
}
.article_list.card .article_thumb a .desc .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #d6d6d6;
  border-radius: 50%;
  margin: 1rem 0 0 auto;
}
.article_list.card .article_thumb a .desc .arrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 7px;
  height: 7px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.article_slider {
  position: relative;
}

.slider_arrow_area span {
  display: flex;
  position: absolute;
  background-color: var(--blue);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .slider_arrow_area span {
    width: 30px;
    height: 30px;
  }
}
.slider_arrow_area .left {
  left: 13.7vw;
}
@media screen and (max-width: 900px) {
  .slider_arrow_area .left {
    left: 1rem;
  }
}
.slider_arrow_area .left::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--white);
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-right: 0;
  border-top: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(45deg);
}
@media screen and (max-width: 700px) {
  .slider_arrow_area .left::after {
    width: 7px;
    height: 7px;
  }
}
.slider_arrow_area .right {
  right: 13.7vw;
}
@media screen and (max-width: 900px) {
  .slider_arrow_area .right {
    right: 1rem;
  }
}
.slider_arrow_area .right::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--white);
  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);
}
@media screen and (max-width: 700px) {
  .slider_arrow_area .right::after {
    width: 7px;
    height: 7px;
  }
}

.document_list {
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .document_list {
    flex-direction: column;
  }
}
.document_list.pdf {
  gap: 1rem;
  flex-wrap: wrap;
  display: flex;
}
@media screen and (max-width: 900px) {
  .document_list.pdf {
    flex-direction: column;
  }
}
.document_list.pdf .list_item {
  flex: 1 1 48%;
  max-width: 48%;
}
@media screen and (max-width: 900px) {
  .document_list.pdf .list_item {
    flex: 1 1 100%;
    max-width: initial;
  }
}
.document_list.pdf a {
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  padding: 1.6rem 4.6rem 1.6rem 1.6rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-size: 1.7rem;
  font-weight: bold;
  min-height: 7rem;
  position: relative;
  line-height: 1.3;
}
@media screen and (max-width: 900px) {
  .document_list.pdf a {
    font-size: 1.4rem;
    min-height: 5rem;
  }
}
.document_list.pdf a:hover {
  background-color: var(--light-blue);
}
.document_list.pdf a::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url(../images/sub-page/feature/icon_PDF.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 1.6rem;
  bottom: 0;
  top: 0;
  margin: auto;
}

.table_style {
  display: flex;
  border-bottom: 1px solid var(--border_gray);
}
@media screen and (max-width: 900px) {
  .table_style {
    flex-direction: column;
  }
}
.table_style dt,
.table_style dd {
  padding: 2rem;
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 1.6rem;
}
.table_style dt {
  font-weight: bold;
  background-color: var(--bg_gray);
  flex: 0 0 16rem;
}
@media screen and (max-width: 900px) {
  .table_style dt {
    flex: 1 1 100%;
  }
}
.table_style dd {
  font-weight: 500;
}

.other_contents {
  padding-bottom: 6rem;
}
.other_contents .link_list {
  display: flex;
}
@media screen and (max-width: 900px) {
  .other_contents .link_list {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.other_contents .link_list a {
  flex: 1 1 50%;
}
@media screen and (max-width: 900px) {
  .other_contents .link_list a {
    flex: 1 1 100%;
  }
}

.content_index {
  background: var(--bg_gray);
  border-radius: 1rem;
  max-width: 76rem;
  padding: 2.4rem 2rem;
  margin: 0 auto;
}
.content_index .wrap_primary {
  box-sizing: border-box;
  padding: 0;
}
.content_index .title {
  color: var(--blue);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}
.content_index .index_link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.content_index .index_link_list .link_btn::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--white);
  line-height: 1;
  width: 7px;
  height: 7px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  vertical-align: middle;
  margin-left: 5px;
}

.icon_list_area {
  margin-bottom: 3rem;
}
.icon_list_area .title {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  padding: 1.6rem 0px;
}
.icon_list_area .icon_list {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 900px) {
  .icon_list_area .icon_list {
    flex-wrap: wrap;
  }
}
.icon_list_area .list_item {
  flex: 0 0 20rem;
  min-height: 17rem;
  border: 1px solid var(--blue);
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 1rem;
}
@media screen and (max-width: 900px) {
  .icon_list_area .list_item {
    flex: 1 1 46%;
    padding: 1.5rem;
    height: initial;
  }
}
.icon_list_area .list_item .text {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 900px) {
  .icon_list_area .list_item .text {
    font-size: 1.6rem;
  }
}
.icon_list_area .list_item .icon {
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.icon_list_area .list_item .icon img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.voice_card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: initial;
  box-shadow: 5px 5px 10px 0px rgba(106, 246, 246, 0.6);
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .voice_card {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.voice_card::before {
  content: "";
  display: block;
  width: 10rem;
  height: 7rem;
  background-image: url(../images/sub-page/service/customer_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  flex: 0 0 10rem;
  background-position: center;
}
.voice_card .content {
  width: 100%;
}
.voice_card .title {
  color: var(--blue);
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 900px) {
  .voice_card .title {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
.voice_card .message {
  padding: 1rem 0;
  line-height: 1.5;
  font-weight: 500;
  font-size: 1.6rem;
}
.voice_card .category {
  text-align: right;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 900px) {
  .voice_card .category {
    padding-top: 1rem;
  }
}

.flow_list .list_item {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .flow_list .list_item {
    padding: 1rem 0;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.flow_list .list_item .number {
  clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
  background: #08C0C0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  width: 8.8rem;
  height: 10.5rem;
  flex-direction: column;
  flex: 0 0 8.8rem;
}
@media screen and (max-width: 900px) {
  .flow_list .list_item .number {
    flex: 0 0 4.4rem;
    height: 5.25rem;
  }
}
.flow_list .list_item .number small {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 900px) {
  .flow_list .list_item .number small {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
.flow_list .list_item .number span {
  display: block;
  position: relative;
  top: -10%;
  font-size: 2.2rem;
}
@media screen and (max-width: 900px) {
  .flow_list .list_item .number span {
    font-size: 1.6rem;
  }
}
.flow_list .list_item .text {
  position: relative;
}
.flow_list .list_item .text .title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 3px;
}
.flow_list .list_item .text .desc {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (max-width: 900px) {
  .flow_list .list_item .text .desc {
    font-size: 1.4rem;
  }
}

.msai .msai-ask {
  background-color: transparent !important;
  padding: 0 !important;
}
.msai .msai-checkboxes {
  max-width: 66rem !important;
  margin: 0 auto;
}
.msai .msai-form {
  width: 100% !important;
  max-width: 66rem;
  margin: 2rem auto 1rem auto !important;
  border: none !important;
  padding: 10px 10px 10px 20px !important;
  border-radius: 1rem !important;
}
.msai .msai-form #pseudoTextarea {
  width: 100%;
  height: initial;
  line-height: 1.5 !important;
}
.msai .msai-form #send-button {
  border-radius: 50%;
  border: none;
  background-color: var(--blue) !important;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition-duration: 0.3s;
}
.msai .msai-form #send-button img {
  width: 22px;
}
.msai .msai-form #send-button:hover {
  background-color: var(--light-blue) !important;
  transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .msai .msai-checkboxes {
    align-items: flex-start !important;
  }
}
.msai .msai-checkboxes__item {
  font-size: 1.4rem;
  font-weight: 600;
}
.msai .msai-checkboxes__item.heading {
  font-size: 1.8rem;
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 1rem;
}
.msai .msai-checkbox__mark {
  width: 1.6rem !important;
  height: 1.6rem !important;
  border: none !important;
}

.msai-replay {
  width: 100% !important;
  background-color: var(--white);
  overflow: hidden;
  border-radius: 1rem;
  margin: 0 auto;
  box-shadow: 5px 5px 10px rgba(0, 73, 150, 0.2);
}

.msai-replay__message {
  padding: 0 2rem;
}
.msai-replay__message div:last-of-type {
  padding-bottom: 4rem;
}

.msai-form__pseudo-textarea {
  padding: 1rem 0 !important;
}

.sub_page img {
  width: 100%;
}
.sub_page .page_header {
  position: relative;
  display: block;
  height: 26rem;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(193, 208, 242, 0.8) 11.44%, rgba(255, 255, 255, 0.86) 41.19%, #05CEFA 76.85%);
}
.sub_page .page_header .wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.sub_page .page_header .wave img {
  width: 100%;
}
.sub_page .page_header .wrap_primary {
  height: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sub_page .page_header .sub_page_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
.sub_page .page_header .sub_page_title span {
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  display: block;
  font-size: 3.2rem;
  color: var(--blue);
  font-weight: bold;
  position: relative;
  top: 10%;
}
.sub_page .page_header .sub_page_title::before {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  height: 100%;
  background-image: url(../images/sub-page/sub_page_header_bg.png);
  left: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: 0;
}
@media screen and (max-width: 900px) {
  .sub_page .page_header .sub_page_title::before {
    width: 100%;
  }
}
.sub_page .body_copy {
  padding-top: 6rem;
}
@media screen and (max-width: 900px) {
  .sub_page .body_copy {
    padding-top: 2rem;
  }
}
.sub_page .lead_text {
  text-align: center;
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-size: 2rem;
  line-height: 2;
  color: var(--black);
  font-weight: bold;
  max-width: 63rem;
  margin: 0 auto;
  padding: 0 0 4rem 0;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .sub_page .lead_text {
    padding: 0;
  }
}
.sub_page .lead_text .wrap_primary {
  padding: 0;
}
@media screen and (max-width: 900px) {
  .sub_page .lead_text .wrap_primary {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 900px) {
  .sub_page .lead_text {
    text-align: left;
  }
  .sub_page .lead_text br.sp_none {
    display: none;
  }
}
.sub_page .group-heading {
  text-align: center;
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.5;
  color: var(--blue);
  padding: 4rem 0;
}
@media screen and (max-width: 900px) {
  .sub_page .group-heading {
    padding: 2.4rem 0;
  }
}
.sub_page .group-heading::after {
  content: "";
  display: block;
  width: 10rem;
  height: 1px;
  background-color: var(--blue);
  margin: 1.6rem auto 0 auto;
}
.sub_page .group-heading small {
  font-size: 1.6rem;
}
.sub_page .sub-heading.simple {
  font-size: 2rem;
  margin: 5rem 0;
  font-weight: bold;
}
.sub_page .sub-heading.simple::after {
  content: "";
  display: block;
  background-color: var(--border_gray);
  width: 100%;
  height: 1px;
  margin-top: 1rem;
}
.sub_page .section:not(:first-of-type) {
  padding-top: 4rem;
}
@media screen and (max-width: 900px) {
  .sub_page .section:not(:first-of-type) {
    padding-top: 4rem;
    margin-top: -2rem;
  }
}
.sub_page .section.bg_gray {
  background: var(--bg_gray);
}
.sub_page .section.bg_blue {
  background: linear-gradient(180deg, #339BD6 0%, #4FD7E9 100%);
  color: var(--white);
}
.sub_page .section.bg_blue .group-heading {
  color: var(--white);
}
.sub_page .section.bg_blue .group-heading::after {
  background-color: var(--white);
}
.sub_page p,
.sub_page span {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
.sub_page p.left,
.sub_page span.left {
  text-align: left;
}
.sub_page p.right,
.sub_page span.right {
  text-align: right;
  display: block;
}
.sub_page p.center,
.sub_page span.center {
  text-align: center;
  display: block;
}
.sub_page p.bold,
.sub_page span.bold {
  font-weight: bold;
}
.sub_page p strong,
.sub_page span strong {
  color: var(--accent-red);
  font-weight: bold;
}
.sub_page p a,
.sub_page span a {
  font-weight: bold;
  color: var(--blue);
  text-decoration: underline;
}
.sub_page p a:hover,
.sub_page span a:hover {
  text-decoration: none;
  color: var(--light-blue);
}

.feature_page .text_and_image {
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 900px) {
  .feature_page .text_and_image {
    padding-bottom: 3rem;
  }
}
.feature_page .text_and_image .title {
  padding: 2.4rem 0;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .feature_page .text_and_image .title {
    font-size: 1.8rem;
  }
}
.feature_page .text_and_image .column2 {
  gap: 2rem;
}
@media screen and (max-width: 900px) {
  .feature_page .text_and_image .column2 {
    flex-direction: column;
    align-items: center;
  }
}
.feature_page .text_and_image .image {
  flex: 0 0 27.5rem;
  height: 20rem;
  border-radius: 1rem;
  box-shadow: 5px 5px 15px 0px rgba(86, 168, 204, 0.3);
  overflow: hidden;
}
.feature_page .text_and_image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature_page .text_and_image .text {
  font-size: 1.7rem;
  line-height: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .feature_page .text_and_image .text {
    font-size: 1.6rem;
  }
}
.feature_page .text_and_image_strong {
  position: relative;
  padding-bottom: 2.4rem;
}
.feature_page .text_and_image_strong .column2 {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .feature_page .text_and_image_strong .column2 {
    flex-direction: column;
    align-items: center;
  }
}
.feature_page .text_and_image_strong .image {
  width: 50rem;
}
@media screen and (max-width: 900px) {
  .feature_page .text_and_image_strong .image {
    width: 100%;
  }
}
.feature_page .text_and_image_strong .text {
  padding: 2rem 3rem;
  border-radius: 1rem;
  background-color: var(--white);
  font-size: 1.6rem;
  line-height: 2;
  width: 57.5rem;
  position: absolute;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 5px 5px 15px 0px rgba(86, 168, 204, 0.3);
  font-weight: 500;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .feature_page .text_and_image_strong .text {
    width: 100%;
    position: relative;
    top: -2.4rem;
  }
}
.feature_page .text_and_image_strong.text_right .text {
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
}
.feature_page .text_and_image_strong.text_left .image {
  margin: 0 0 0 auto;
}
.feature_page .text_and_image_strong.text_left .text {
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
}
.feature_page .text_and_image_strong.top_nega {
  margin-top: 4.8rem;
}
.feature_page .text_and_image_strong.top_nega .text {
  top: -2.4rem;
  bottom: auto;
}
@media screen and (max-width: 900px) {
  .feature_page .text_and_image_strong.text_right .image, .feature_page .text_and_image_strong.text_left .image, .feature_page .text_and_image_strong.top_nega .image {
    margin: initial;
  }
}
@media screen and (max-width: 900px) {
  .feature_page .text_and_image_strong.text_right .text, .feature_page .text_and_image_strong.text_left .text, .feature_page .text_and_image_strong.top_nega .text {
    top: -2.4rem;
    bottom: initial;
    right: initial;
    left: initial;
    margin: initial;
  }
}
.feature_page .experience {
  padding-bottom: 4rem;
}
.feature_page .ethics {
  padding-bottom: 4rem;
}
.feature_page .ethics .section_leadtext {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  padding-bottom: 4rem;
}
@media screen and (max-width: 900px) {
  .feature_page .ethics .section_leadtext {
    text-align: left;
  }
  .feature_page .ethics .section_leadtext br {
    display: none;
  }
}
.feature_page .ethics .cover_block {
  padding: 4rem;
  border-radius: 1rem;
  background: var(--bg_gray);
}
@media screen and (max-width: 900px) {
  .feature_page .ethics .cover_block {
    padding: 3rem 2rem;
  }
}
.feature_page .documents {
  padding-bottom: 6rem;
}
.feature_page .documents .attention {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.feature_page .documents .attention a {
  display: block;
  margin: 8px 0;
}
.feature_page .documents .attention img {
  max-width: 16rem;
}
.feature_page .documents .data_table {
  max-width: 80rem;
  margin: 0 auto;
}
.feature_page .title_and_desc {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .feature_page .title_and_desc {
    flex-direction: column;
  }
}
.feature_page .title_and_desc .list_item {
  flex: 1 1 48%;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 900px) {
  .feature_page .title_and_desc .list_item {
    flex: 1 1 100%;
  }
}
.feature_page .title_and_desc .list_item span {
  display: block;
}
.feature_page .title_and_desc .list_item .title {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.feature_page .title_and_desc .list_item .title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--blue);
  position: relative;
  top: 5px;
}
.feature_page .title_and_desc .list_item .desc {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 500px) {
  .feature_page .title_and_desc .list_item .desc br {
    display: none;
  }
}

.service_page .block_lead {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
}
.service_page .voice {
  padding-bottom: 6rem;
}
.service_page .voice .customer_voice {
  margin-top: 4rem;
}
.service_page .flow .block_lead {
  margin-bottom: 2.4rem;
}
.service_page .flow .flow_group {
  margin-bottom: 4rem;
}
.service_page .flow .flow_group .sub_heading {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 1.6rem 0;
  color: var(--blue);
}
.service_page .flow .flow_group .scene .title {
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.service_page .flow .flow_group .scene .tag_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}
.service_page .flow .flow_group .scene .tag_list .tag {
  padding: 0.5rem 2rem;
  border-radius: 5rem;
  border: 1px solid #000;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}
.service_page .flow .flow_group .image_photo {
  margin: 1rem 0 4rem 0;
}
.service_page .flow .core_message {
  background: var(--bg_gray);
  padding: 4rem;
  border-radius: 1rem;
  text-align: center;
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 4rem;
}

.company_page .access_map {
  padding-bottom: 10rem;
}
.company_page .access_map .infomation {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 2rem;
}
.company_page .access_map .infomation span {
  display: block;
  margin-bottom: 1rem;
}

.single .post_content {
  padding-bottom: 10rem;
}
.single .post_content pre {
  padding: 1rem;
  margin: 1rem 0;
  background-color: var(--bg_gray);
}
.single .post_content .date {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: right;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
}
.single .post_content .thumb_area {
  max-width: 50rem;
  margin: 2rem auto 4rem auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(86, 168, 204, 0.3);
}
.single .post_content .thumb_area img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.single .post_content .main_post {
  max-width: 80rem;
  margin: 0 auto;
}
.single .post_content p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
  padding: 0.5em 0;
}
.single .post_content p strong {
  font-weight: bold;
}
.single .post_content h1 {
  font-weight: 2.4rem;
  font-weight: bold;
  padding: 2rem 0;
  line-height: 1.3;
}
@media screen and (max-width: 900px) {
  .single .post_content h1 {
    font-size: 2rem;
  }
}
.single .post_content h2 {
  font-size: 2rem;
  font-weight: bold;
  padding: 3rem 0 2rem 0;
  line-height: 1.3;
}
@media screen and (max-width: 900px) {
  .single .post_content h2 {
    font-size: 1.8rem;
  }
}
.single .post_content h2::after {
  content: "";
  display: block;
  background-color: var(--border_gray);
  width: 100%;
  height: 1px;
  margin-top: 1rem;
}
.single .post_content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 2rem 0;
  line-height: 1.3;
}
.single .post_content h4 {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 2rem 0;
  line-height: 1.3;
}
.single .post_content figure {
  margin: 2.4rem 0;
}
.single .post_content div {
  width: 100% !important;
}
.single .post_content img {
  width: auto;
}
.single .post_content ul {
  margin: 2rem 0;
  padding-left: 2rem;
}
.single .post_content ul li {
  list-style: disc;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 400;
}
.single .post_content blockquote {
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-size: 1.2rem;
  font-style: italic;
  border-left: 5px solid var(--dark-blue01);
  background-color: #f9f9f9;
  color: #333;
}
.single .post_content blockquote::before {
  content: open-quote;
  font-size: 2rem;
  line-height: 0;
  margin-right: 0.5rem;
  vertical-align: -0.4rem;
  color: var(--dark-blue01);
}
.single .post_content blockquote::after {
  content: close-quote;
  font-size: 2rem;
  line-height: 0;
  margin-left: 0.5rem;
  vertical-align: -0.4rem;
  color: var(--dark-blue01);
}
.single .post_content blockquote p {
  margin: 0;
}
.single .post_content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #555;
  text-align: right;
  font-style: normal;
}
.single .post_content blockquote cite::before {
  content: "— ";
}
.single .author_name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: right;
  margin-top: 2rem;
}
.single table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: left;
}
.single th,
.single td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}
.single th {
  background-color: #f4f4f4;
  color: #333;
  font-weight: bold;
}
.single tr:nth-child(even) {
  background-color: #f9f9f9;
}
.single tr:hover {
  background-color: #f1f1f1;
}
.single .table-responsive {
  overflow-x: auto;
}
.single table a {
  color: var(--blue);
  text-decoration: none;
}
.single table a:hover {
  color: var(--blue);
}
.single th.primary {
  background-color: var(--blue);
  color: #fff;
}

.archive_page .articles {
  margin-top: 4rem;
}
.archive_page .articles .article_list.card {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1%;
}
@media screen and (max-width: 900px) {
  .archive_page .articles .article_list.card {
    flex-direction: column;
    align-items: center;
  }
}
.archive_page .articles .article_list.card .article_thumb {
  flex: 0 0 30%;
  width: 30rem;
}
@media screen and (max-width: 900px) {
  .archive_page .articles .article_list.card .article_thumb {
    flex: 1 1 100%;
    width: 100%;
    max-width: 40rem;
  }
}
.archive_page .category-title .list-title {
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-size: 2.8rem;
  padding: 3rem 0 1.5rem 0;
  font-weight: bold;
}
.archive_page .category-title .list-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #BDBDBD;
  margin-top: 1.5rem;
}
.archive_page .child-cat_btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.archive_page .child-cat_btn-list .child-cat_btn {
  padding: 0 0 0.5rem 0;
}
.archive_page .child-cat_btn-list .child-cat_btn a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #D9D9D9;
  font-size: 1.4rem;
  border-radius: 2rem;
}
@media screen and (max-width: 765px) {
  .archive_page .child-cat_btn-list .child-cat_btn a {
    font-size: 1.2rem;
    padding: 1rem;
  }
}
.archive_page .child-cat_btn-list .child-cat_btn a:hover {
  background-color: var(--blue);
  color: #fff;
}
.archive_page .child-cat_btn-list .child-cat_btn.current a {
  background-color: var(--blue);
  color: #fff;
  pointer-events: none;
}

.breadcrumb {
  padding: 1rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.breadcrumb a,
.breadcrumb span {
  font-size: 1.4rem;
  text-decoration: none !important;
  color: black !important;
  font-weight: 500 !important;
  line-height: 1.3;
}
.breadcrumb a:hover {
  color: var(--light-blue) !important;
}

p,
span {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

.frontpage_heading {
  text-align: center;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.5;
  color: var(--blue);
  margin-bottom: 4rem;
}
.frontpage_heading.wh {
  color: var(--white);
}
.frontpage_heading span {
  display: block;
  color: inherit;
}
.frontpage_heading .en {
  font-family: "Open Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
}
.frontpage_heading.left_layout {
  color: var(--black);
  text-align: left;
}
.frontpage_heading.left_layout span {
  display: block;
}
.frontpage_heading.left_layout .sub {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  letter-spacing: initial;
}
.frontpage_heading.left_layout .main {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
}

.frontpage .first_view {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 890px) {
  .frontpage .first_view {
    height: initial;
  }
}
.frontpage .first_view .background_image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -50;
  height: 100%;
  width: 100%;
}
.frontpage .first_view .background_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 890px) {
  .frontpage .first_view .background_image img {
    bottom: -10rem;
  }
}
.frontpage .first_view .background_image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(360deg, rgba(193, 208, 242, 0.8) 11.44%, #F7FFF7 41.63%, #05CEFA 102.92%);
  z-index: -100;
}
.frontpage .first_view .wave {
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 100%;
}
.frontpage .first_view .wave img {
  width: 100%;
}
.frontpage .first_view .wrap_primary {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 10rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 890px) {
  .frontpage .first_view .wrap_primary {
    padding: 2rem 0 0 0;
  }
}
.frontpage .first_view .wrap_primary .deco {
  position: absolute;
  top: 13rem;
  max-width: 18.5rem;
}
@media screen and (max-width: 765px) {
  .frontpage .first_view .wrap_primary .deco {
    max-width: 10rem;
    top: initial;
  }
}
.frontpage .first_view .wrap_primary .deco.deco_left {
  left: 0;
  right: auto;
}
@media screen and (max-width: 765px) {
  .frontpage .first_view .wrap_primary .deco.deco_left {
    top: 7rem;
    left: -25px;
  }
}
.frontpage .first_view .wrap_primary .deco.deco_right {
  right: 0;
  left: auto;
}
@media screen and (max-width: 765px) {
  .frontpage .first_view .wrap_primary .deco.deco_right {
    bottom: 10rem;
    right: -25px;
  }
}
.frontpage .first_view .wrap_primary .main_copy {
  position: relative;
  text-align: center;
  font-size: 3.2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.9);
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 890px) {
  .frontpage .first_view .wrap_primary .main_copy {
    font-size: 2.4rem;
    margin-top: 8rem;
  }
}
.frontpage .first_view .wrap_primary .main_logo_area {
  display: none;
  margin-top: 2rem;
}
.frontpage .first_view .wrap_primary .main_logo_area img {
  width: 100%;
}
@media screen and (max-width: 890px) {
  .frontpage .first_view .wrap_primary .main_logo_area {
    display: block;
    max-width: 20rem;
  }
}
.frontpage .promiss {
  padding: 6rem 0 13rem 0;
  position: relative;
  background-color: var(--white);
  z-index: 2;
}
.frontpage .promiss::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/front-page/philosophy_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 879px) {
  .frontpage .promiss::before {
    background-image: url(../images/front-page/philosophy_bg_SMP.png);
  }
}
.frontpage .promiss::after {
  content: "";
  display: block;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}
.frontpage .promiss .frontpage_heading {
  margin-bottom: 0;
  text-align: center;
}
.frontpage .promiss .sub_title {
  font-size: 2.4rem;
  text-align: center;
  font-family: "Open Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  color: var(--accent-red);
  font-weight: bold;
  margin-top: 1.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}
.frontpage .strength {
  background-color: var(--bg_gray);
  padding: 13rem 0 13rem 0;
  margin-top: -7rem;
  position: relative;
  z-index: 1;
}
.frontpage .strength .column3_card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1%;
}
@media screen and (max-width: 840px) {
  .frontpage .strength .column3_card {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
.frontpage .strength .card_item {
  flex: 0 0 32%;
  background-color: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--blue);
  padding: 2rem 2.1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .frontpage .strength .card_item {
    max-width: 40rem;
  }
}
.frontpage .strength .card_item .title {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.frontpage .strength .card_item .thumb {
  margin: 2rem auto;
  box-shadow: 5px 5px 15px rgba(86, 168, 204, 0.3);
  border-radius: 1rem;
  overflow: hidden;
  max-width: 25rem;
}
.frontpage .strength .card_item .thumb img {
  width: 100%;
  vertical-align: bottom;
}
.frontpage .strength .card_item .desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
  min-height: 8em;
}
@media screen and (max-width: 840px) {
  .frontpage .strength .card_item .desc {
    min-height: initial;
  }
}
.frontpage .strength .card_item .desc strong {
  color: var(--accent-red);
  font-weight: bold;
}
.frontpage .service {
  background: linear-gradient(180deg, #339BD6 0%, #4FD7E9 100%);
  padding: 13rem 0 6rem 0;
  margin-top: -7rem;
  position: relative;
}
.frontpage .service .column2_card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1%;
  flex-wrap: wrap;
}
@media screen and (max-width: 830px) {
  .frontpage .service .column2_card {
    flex-direction: column;
    align-items: center;
  }
}
.frontpage .service .column2_card .card_item {
  flex: 1 1 48%;
  margin-bottom: 2rem;
  height: inherit;
}
@media screen and (max-width: 830px) {
  .frontpage .service .column2_card .card_item {
    flex: 1 1 100%;
    max-width: 40rem;
  }
}
.frontpage .service .column2_card .card_item a {
  display: block;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(106, 246, 246, 0.6);
  background-color: var(--white);
  box-sizing: border-box;
  transition-duration: 0.3s;
  height: 100%;
}
.frontpage .service .column2_card .card_item a:hover .text {
  color: var(--light-blue);
  transition-duration: 0.3s;
}
.frontpage .service .column2_card .card_item a:hover .arrow-right {
  background-color: var(--light-blue);
  transition-duration: 0.3s;
}
.frontpage .service .column2_card .card_item a:hover .thumb img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.frontpage .service .column2_card .card_item .title {
  font-weight: bold;
  color: var(--blue);
  font-size: 2rem;
  letter-spacing: 10%;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 830px) {
  .frontpage .service .column2_card .card_item .title {
    text-align: center;
  }
}
.frontpage .service .column2_card .card_item .data {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 830px) {
  .frontpage .service .column2_card .card_item .data {
    flex-direction: column;
    align-items: center;
  }
}
.frontpage .service .column2_card .card_item .thumb {
  overflow: hidden;
  width: 15rem;
  height: 15rem;
}
.frontpage .service .column2_card .card_item .thumb img {
  transition-duration: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: -1px;
     object-position: -1px;
  width: 101%;
  height: 100%;
}
.frontpage .service .column2_card .card_item .text {
  flex: 1 1 60%;
  line-height: 1.5;
  font-size: 1.8rem;
  display: block;
  position: relative;
  padding-bottom: 4rem;
  box-sizing: border-box;
  font-weight: 500;
  transition-duration: 0.3s;
}
.frontpage .service .column2_card .card_item .text .arrow-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  background-color: var(--bg_gray);
  display: flex;
  flex: 0 0 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition-duration: 0.3s;
}
.frontpage .service .column2_card .card_item .text .arrow-right::after {
  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);
}
.frontpage .customers {
  padding: 7rem 0 8rem 0;
}
.frontpage .customers .column2_card-B {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
}
.frontpage .customers .column2_card-B .card_item {
  flex: 1 1 45%;
  padding: 2rem;
  background: var(--bg_gray);
  border-radius: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 580px) {
  .frontpage .customers .column2_card-B .card_item {
    flex-direction: column;
    align-items: center;
  }
}
.frontpage .customers .column2_card-B .card_item .image {
  width: 15rem;
  height: 15rem;
  flex: 0 0 auto;
}
.frontpage .customers .column2_card-B .card_item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.frontpage .customers .column2_card-B .card_item .title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.frontpage .customers .column2_card-B .card_item .desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.frontpage .news {
  padding-bottom: 10rem;
}
.frontpage .news .column2 {
  gap: 6rem;
}
@media screen and (max-width: 800px) {
  .frontpage .news .column2 {
    flex-direction: column;
    gap: 0;
  }
}
.frontpage .news .column2 .content {
  width: 100%;
}
.frontpage .news .heading_area {
  padding: 2rem 0;
  flex: 0 0 20rem;
}
@media screen and (max-width: 800px) {
  .frontpage .news .heading_area {
    flex: 1 1 100%;
  }
}
.frontpage .news .heading_area .left_heading span {
  display: block;
}
.frontpage .news .heading_area .left_heading .en {
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  padding-bottom: 5px;
}
.frontpage .news .heading_area .left_heading .ja {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 8px;
}
.frontpage .news .heading_area .archive_link {
  margin-top: 3rem;
}
.frontpage .topic {
  position: relative;
  margin-bottom: 10rem;
}
.frontpage .message {
  position: relative;
  margin-bottom: 16rem;
}
.frontpage .message .content .column2 {
  gap: 5rem;
}
@media screen and (max-width: 765px) {
  .frontpage .message .content .column2 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
  }
}
.frontpage .message .content .photo {
  flex: 0 0 27rem;
  max-width: 27rem;
}
.frontpage .message .content .photo img {
  width: 100%;
  margin-bottom: 3rem;
  border-radius: 1rem;
}
@media screen and (max-width: 765px) {
  .frontpage .message .content .photo img {
    margin-bottom: 1rem;
  }
}
.frontpage .message .content .name {
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 765px) {
  .frontpage .message .content .name {
    text-align: right;
    width: 100%;
  }
}
.frontpage .message .content .name small {
  font-family: "Open Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.frontpage .message .content .message_text {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

.archive_link.pc_heading_group .wrap_primary {
  position: absolute;
  top: 1em;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}
@media screen and (max-width: 765px) {
  .archive_link.pc_heading_group .wrap_primary {
    position: relative;
  }
}
.archive_link.pc_heading_group .wrap_primary a {
  max-width: 26rem;
  width: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 765px) {
  .archive_link.pc_heading_group .wrap_primary a {
    margin: 0 auto;
  }
}

.maxstone-ai-chat .frontpage_heading {
  font-size: 2.4rem;
}
.maxstone-ai-chat {
  padding: 0 1rem;
}

.hero_cta_area {
  margin: 4rem auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 100%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 765px) {
  .hero_cta_area {
    flex-direction: column;
    align-items: center;
    width: 32rem;
    gap: 1.2rem;
    margin-top: 3rem;
  }
}
.hero_cta_area .ai_btn,
.hero_cta_area .contact_btn {
  width: 30rem;
  height: 6.4rem;
  font-size: 1.8rem;
  --btn-icon-size: 2.8rem;
  --btn-icon-gap: 1rem;
  --btn-padding-h: 2rem;
}
@media screen and (max-width: 765px) {
  .hero_cta_area .ai_btn,
  .hero_cta_area .contact_btn {
    width: 100%;
    height: 5.6rem;
    font-size: 1.6rem;
    --btn-icon-size: 2.4rem;
  }
}

.bottom_curve {
  border-bottom-left-radius: 1000px 70px;
  border-bottom-right-radius: 1000px 70px;
  width: 100%;
  margin: 0 auto;
  padding-left: 100px;
  padding-right: 100px;
  box-sizing: border-box;
  overflow: hidden;
}

.page-template .page_header {
  position: relative;
  display: block;
  height: 26rem;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(193, 208, 242, 0.8) 11.44%, rgba(255, 255, 255, 0.86) 41.19%, #05CEFA 76.85%);
}
.page-template .page_header .wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.page-template .page_header .wave img {
  width: 100%;
}
.page-template .page_header .wrap_primary {
  height: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-template .page_header .sub_page_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
.page-template .page_header .sub_page_title span {
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  display: block;
  font-size: 3.2rem;
  color: var(--blue);
  font-weight: bold;
  position: relative;
  top: 10%;
}
.page-template .page_header .sub_page_title::before {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  height: 100%;
  background-image: url(../images/sub-page/sub_page_header_bg.png);
  left: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: 0;
}
@media screen and (max-width: 765px) {
  .page-template .page_header .sub_page_title::before {
    width: 100%;
  }
}
.page-template .post_content {
  padding-bottom: 10rem;
}
.page-template .post_content pre {
  padding: 1rem;
  margin: 1rem 0;
  background-color: var(--bg_gray);
}
.page-template .post_content .date {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: right;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
}
.page-template .post_content .thumb_area {
  max-width: 50rem;
  margin: 2rem auto 4rem auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(86, 168, 204, 0.3);
}
.page-template .post_content .thumb_area img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.page-template .post_content .main_post {
  max-width: 80rem;
  margin: 0 auto;
}
.page-template .post_content p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}
.page-template .post_content p strong {
  font-weight: bold;
}
.page-template .post_content h1 {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 4rem 0;
  line-height: 1.3;
}
.page-template .post_content h2 {
  font-size: 2rem;
  font-weight: bold;
  padding: 3rem 0 2rem 0;
  line-height: 1.3;
}
.page-template .post_content h2::after {
  content: "";
  display: block;
  background-color: var(--border_gray);
  width: 100%;
  height: 1px;
  margin-top: 1rem;
}
.page-template .post_content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 2rem 0;
  line-height: 1.3;
}
.page-template .post_content h4 {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 2rem 0;
  line-height: 1.3;
}
.page-template .post_content figure {
  margin: 2.4rem 0;
}
.page-template .post_content img {
  width: auto;
}
.page-template .post_content ul {
  margin: 2rem 0;
  padding-left: 2rem;
  box-sizing: border-box;
  width: 100%;
}
.page-template .post_content ul li {
  list-style: disc;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 400;
}
.page-template .post_content ol {
  margin: 2rem 0;
  padding-left: 2rem;
  box-sizing: border-box;
  width: 100%;
}
.page-template .post_content ol li {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 400;
}
.page-template .post_content blockquote {
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-size: 1.2rem;
  font-style: italic;
  border-left: 5px solid var(--dark-blue01);
  background-color: #f9f9f9;
  color: #333;
}
.page-template .post_content blockquote::before {
  content: open-quote;
  font-size: 2rem;
  line-height: 0;
  margin-right: 0.5rem;
  vertical-align: -0.4rem;
  color: var(--dark-blue01);
}
.page-template .post_content blockquote::after {
  content: close-quote;
  font-size: 2rem;
  line-height: 0;
  margin-left: 0.5rem;
  vertical-align: -0.4rem;
  color: var(--dark-blue01);
}
.page-template .post_content blockquote p {
  margin: 0;
}
.page-template .post_content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #555;
  text-align: right;
  font-style: normal;
}
.page-template .post_content blockquote cite::before {
  content: "— ";
}
.page-template .author_name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: right;
  margin-top: 2rem;
}
.page-template {
  /* 汎用的なテーブルスタイル */
}
.page-template table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: left;
}
.page-template th,
.page-template td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}
.page-template th {
  background-color: #f4f4f4;
  color: #333;
  font-weight: bold;
}
.page-template tr:nth-child(even) {
  background-color: #f9f9f9;
}
.page-template tr:hover {
  background-color: #f1f1f1;
}
.page-template .table-responsive {
  overflow-x: auto;
}
.page-template table a {
  color: #0073aa;
  text-decoration: none;
}
.page-template table a:hover {
  color: #005177;
}
.page-template th.primary {
  background-color: #0073aa;
  color: #fff;
}

/* Form Container */
.from-heading {
  text-align: center;
  font-family: "Noto Serif JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-weight: bold;
  font-size: 2.8rem !important;
  line-height: 1.5;
  color: var(--blue);
  padding: 4rem 0;
}
@media screen and (max-width: 765px) {
  .from-heading {
    padding: 2.4rem 0;
  }
}
.from-heading::after {
  content: "";
  display: block;
  width: 10rem !important;
  height: 1px;
  background-color: var(--blue) !important;
  margin: 1.6rem auto 3rem auto;
}
.from-heading small {
  font-size: 1.6rem;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 30px;
}
@media screen and (max-width: 765px) {
  .form-container {
    gap: 20px;
  }
}

.form-intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--font_color);
  text-align: left;
}
.form-intro a {
  text-decoration: underline;
  color: var(--blue);
  font-weight: 700;
}
.form-intro a:hover {
  text-decoration: none;
  color: var(--font_color);
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 765px) {
  .form-row {
    flex-direction: column;
    gap: 40px;
  }
}
.form-row .form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-label .required,
.form-label .optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5px 5px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.7;
  white-space: nowrap;
}

.form-label .required {
  background-color: var(--accent-red);
}

.form-label .optional {
  background-color: #767676;
  /* fallback if var not available */
}

.form-label .label-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.2;
}

.form-input {
  width: 100%;
}
.form-input .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  position: relative;
}
.form-input input[type=text],
.form-input input[type=email],
.form-input input[type=tel],
.form-input input[type=date],
.form-input textarea {
  width: 100%;
  padding: 8.5px 14px;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
.form-input input[type=text]::-moz-placeholder, .form-input input[type=email]::-moz-placeholder, .form-input input[type=tel]::-moz-placeholder, .form-input input[type=date]::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-input input[type=text]::placeholder,
.form-input input[type=email]::placeholder,
.form-input input[type=tel]::placeholder,
.form-input input[type=date]::placeholder,
.form-input textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-input input[type=text]:focus,
.form-input input[type=email]:focus,
.form-input input[type=tel]:focus,
.form-input input[type=date]:focus,
.form-input textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-input input[type=date] {
  position: relative;
  /* 日付入力欄の高さがテキスト欄と揃うよう調整 */
  height: 41px;
}
.form-input input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0;
  margin: 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form-input input[type=date]::-webkit-calendar-picker-indicator:hover {
  opacity: 0.8;
}
.form-input input[type=date] {
  /* プレースホルダー（未入力時）の文字色を薄くする対応 */
}
.form-input input[type=date]::before {
  content: attr(data-placeholder);
  width: 100%;
  color: rgba(0, 0, 0, 0.5);
}
.form-input input[type=date]:focus::before, .form-input input[type=date]:valid::before {
  display: none;
}
.form-input textarea {
  height: 120px;
  resize: vertical;
}

/* CF7 Radio items */
.list-input .wpcf7-list-item {
  margin: 0 0 15px 0;
  display: block;
}
.list-input .wpcf7-list-item:last-child {
  margin-bottom: 0;
}

/* CF7 Checkbox items (wrap layout) */
.list-input-wrap .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  align-items: center;
}
.list-input-wrap .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* small gap between radio/checkbox and text */
}

/* Generic Radio & Checkbox label styling */
.wpcf7-list-item-label {
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.3;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  cursor: pointer;
  vertical-align: middle;
}

/* Submit Button */
.form-submit-wrap {
  text-align: center;
  margin-top: 40px;
}
.form-submit-wrap input[type=submit] {
  display: inline-block;
  background-color: var(--blue);
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 20px 30px;
  width: 100%;
  max-width: 400px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
}
@media screen and (max-width: 765px) {
  .form-submit-wrap input[type=submit] {
    font-size: 2.2rem;
    padding: 15px 20px;
  }
}
.form-submit-wrap input[type=submit]:hover {
  background-color: var(--light-blue);
}

/* Confirmation Step - side by side buttons */
.confirm-submit-wrap {
  margin-top: 60px;
}
.confirm-submit-wrap p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 765px) {
  .confirm-submit-wrap p {
    flex-direction: column-reverse;
    gap: 15px;
  }
}
.confirm-submit-wrap p br {
  display: none;
}
.confirm-submit-wrap p .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 765px) {
  .confirm-submit-wrap p .wpcf7-spinner {
    top: 20px;
    right: 20px;
  }
}
.confirm-submit-wrap .btn-back,
.confirm-submit-wrap input[type=submit] {
  flex: 1;
  width: 100%;
  max-width: 280px;
  padding: 10px;
  min-height: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  border: none;
  margin: 0;
}
@media screen and (max-width: 765px) {
  .confirm-submit-wrap .btn-back,
  .confirm-submit-wrap input[type=submit] {
    max-width: 100%;
    min-width: 50px;
  }
}
.confirm-submit-wrap .btn-back {
  background-color: #a0a0a0;
  color: var(--white);
  font-size: 2rem;
}
@media screen and (max-width: 765px) {
  .confirm-submit-wrap .btn-back {
    font-size: 1.8rem;
  }
}
.confirm-submit-wrap .btn-back:hover {
  background-color: #888;
}
.confirm-submit-wrap input[type=submit] {
  background-color: var(--blue);
  color: var(--white);
  font-size: 2.2rem;
}
@media screen and (max-width: 765px) {
  .confirm-submit-wrap input[type=submit] {
    font-size: 2rem;
  }
}
.confirm-submit-wrap input[type=submit]:hover {
  background-color: var(--light-blue);
}

/* Confirmation Step - Values Display */
.confirm-form-container .confirm-value {
  padding: 12px 15px;
  border-radius: 4px;
  font-size: 1.6rem;
  color: var(--font_color);
  min-height: 48px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 765px) {
  .confirm-form-container .confirm-value {
    padding: 10px 12px;
    min-height: 40px;
  }
}
.confirm-form-container .confirm-value p {
  margin: 0;
  line-height: 1.5;
  font-weight: normal;
}/*# sourceMappingURL=common.css.map */