@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://use.fontawesome.com/releases/v6.7.1/css/all.css");
:root {
  --navi_event_type: hover;
  --header_break_point: 768;
  --main_slide_break_point: 768;
}

/*!
  12 COLUMN : RESPONSIVE GRID SYSTEM
  DEVELOPER : DENIS LEBLANC
  URL : http://responsive.gs
  VERSION : 3.0
  LICENSE : GPL & MIT
*/
*, *:after, *:before {
  box-sizing: border-box;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

.row {
  padding-bottom: 0;
}

.col {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .span_1 {
    width: 8.33333333333%;
  }
  .span_2 {
    width: 16.6666666667%;
  }
  .span_3 {
    width: 25%;
  }
  .span_4 {
    width: 33.3333333333%;
  }
  .span_5 {
    width: 41.6666666667%;
  }
  .span_6 {
    width: 50%;
  }
  .span_7 {
    width: 58.3333333333%;
  }
  .span_8 {
    width: 66.6666666667%;
  }
  .span_9 {
    width: 75%;
  }
  .span_10 {
    width: 83.3333333333%;
  }
  .span_11 {
    width: 91.6666666667%;
  }
  .span_12 {
    width: 100%;
  }
  .gutters .row {
    -moz-column-gap: 2%;
         column-gap: 2%;
    row-gap: 20px;
  }
  .gutters .span_1 {
    width: 6.5%;
  }
  .gutters .span_2 {
    width: 15%;
  }
  .gutters .span_3 {
    width: 23.5%;
  }
  .gutters .span_4 {
    width: 32%;
  }
  .gutters .span_5 {
    width: 40.5%;
  }
  .gutters .span_6 {
    width: 49%;
  }
  .gutters .span_7 {
    width: 57.5%;
  }
  .gutters .span_8 {
    width: 66%;
  }
  .gutters .span_9 {
    width: 74.5%;
  }
  .gutters .span_10 {
    width: 83%;
  }
  .gutters .span_11 {
    width: 91.5%;
  }
  .gutters .span_12 {
    width: 100%;
  }
}

/*!
 12 COLUMN : RESPONSIVE GRID SYSTEM Fix Ver. 1.2.1
*/
.container {
  padding: 0 1%;
}

.container img {
  max-width: 100%;
  height: auto;
}

* + .container {
  margin-top: 2em;
}

.row:not(:last-child) {
  margin-bottom: 4%;
}

.col:not(:last-child) {
  margin-bottom: 3%;
}

@media (min-width: 768px) {
  .container {
    max-width: 1680px;
    margin: auto;
    padding: 0 10px;
  }
  * + .container {
    margin-top: 40px;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  .row.reverse {
    flex-flow: row-reverse;
  }
  .col:not(:last-child) {
    margin-bottom: 0;
  }
  .col.offset_1 {
    margin-left: 8.33333333333%;
  }
  .col.offset_2 {
    margin-left: 16.6666666667%;
  }
  .col.offset_3 {
    margin-left: 25%;
  }
  .col.offset_4 {
    margin-left: 33.3333333333%;
  }
  .col.offset_5 {
    margin-left: 41.6666666667%;
  }
  .col.offset_6 {
    margin-left: 50%;
  }
  .col.offset_7 {
    margin-left: 58.3333333333%;
  }
  .col.offset_8 {
    margin-left: 66.6666666667%;
  }
  .col.offset_9 {
    margin-left: 75%;
  }
  .col.offset_10 {
    margin-left: 83.3333333333%;
  }
  .col.offset_11 {
    margin-left: 91.6666666667%;
  }
  .col.offset_12 {
    margin-left: 100%;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .d-flex {
    display: flex;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .flex-nowrap {
    flex-wrap: nowrap;
  }
  .reverse {
    flex-direction: row-reverse;
  }
  .align-items-start {
    align-items: flex-start;
  }
  .align-items-center {
    align-items: center;
  }
  .align-items-end {
    align-items: flex-end;
  }
  .justify-content-start {
    justify-content: flex-start;
  }
  .justify-content-center {
    justify-content: center;
  }
  .justify-content-between {
    justify-content: space-between;
  }
  .justify-content-end {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .row.col_5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}

.grid_16 .span_1 {
  width: 6.25%;
}

.grid_16 .span_2 {
  width: 12.5%;
}

.grid_16 .span_3 {
  width: 18.75%;
}

.grid_16 .span_4 {
  width: 25%;
}

.grid_16 .span_5 {
  width: 31.25%;
}

.grid_16 .span_6 {
  width: 37.5%;
}

.grid_16 .span_7 {
  width: 43.75%;
}

.grid_16 .span_8 {
  width: 50%;
}

.grid_16 .span_9 {
  width: 56.25%;
}

.grid_16 .span_10 {
  width: 62.5%;
}

.grid_16 .span_11 {
  width: 68.75%;
}

.grid_16 .span_12 {
  width: 75%;
}

.grid_16 .span_13 {
  width: 81.25%;
}

.grid_16 .span_14 {
  width: 87.5%;
}

.grid_16 .span_15 {
  width: 93.75%;
}

.grid_16 .span_16 {
  width: 100%;
}

.grid_16.gutters .span_1 {
  width: 4.375%;
}

.grid_16.gutters .span_2 {
  width: 10.75%;
}

.grid_16.gutters .span_3 {
  width: 17.125%;
}

.grid_16.gutters .span_4 {
  width: 23.5%;
}

.grid_16.gutters .span_5 {
  width: 29.875%;
}

.grid_16.gutters .span_6 {
  width: 36.25%;
}

.grid_16.gutters .span_7 {
  width: 42.625%;
}

.grid_16.gutters .span_8 {
  width: 49%;
}

.grid_16.gutters .span_9 {
  width: 55.375%;
}

.grid_16.gutters .span_10 {
  width: 61.75%;
}

.grid_16.gutters .span_11 {
  width: 68.125%;
}

.grid_16.gutters .span_12 {
  width: 74.5%;
}

.grid_16.gutters .span_13 {
  width: 80.875%;
}

.grid_16.gutters .span_14 {
  width: 87.25%;
}

.grid_16.gutters .span_15 {
  width: 93.625%;
}

.grid_16.gutters .span_16 {
  width: 100%;
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.scrollPrevent {
  overflow: hidden;
  height: 100%;
}

body {
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Arial, "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #151515;
  height: auto !important;
  overflow: hidden;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
}

main {
  overflow: hidden;
}

figure {
  margin: 0;
  text-align: center;
}

figure img {
  max-width: 100%;
  height: auto;
}

figure figcaption {
  margin-top: 0.5em;
  text-align: left;
}

picture {
  margin: 0;
  text-align: center;
}

picture img {
  max-width: unset;
  height: auto;
}

a {
  color: #1c2081;
  transition: all .3s;
  overflow-wrap: anywhere;
}

a:hover {
  color: #1c2081;
  text-decoration: none;
}

.highlight a {
  color: #151515;
}

.highlight a:hover {
  color: #1c2081;
}

a:not([class]) img, a.swipebox img {
  transition: all .3s;
}

a:not([class]):hover img, a.swipebox:hover img {
  opacity: 0.8;
}

img {
  vertical-align: middle;
}

img.circle {
  border-radius: 50%;
}

p {
  margin: 0.5em 0 1em;
  overflow-wrap: anywhere;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

ol,
ul {
  margin: 0 0 1em;
  padding: 0 0 0 2.5em;
  line-height: 1.6;
}

ol:last-child,
ul:last-child {
  margin-bottom: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0.5em 0;
  padding-left: 2em;
}

ol ol:last-child,
ol ul:last-child,
ul ol:last-child,
ul ul:last-child {
  margin-bottom: 0.5em;
}

ul.list-unstyled {
  padding-left: 0;
  list-style: none;
}

ul.list-unstyled ol,
ul.list-unstyled ul {
  padding-left: 2em;
}

ul.list-inline {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: -7px;
  font-size: 0rem;
  margin-bottom: 18px;
}

ul.list-inline > li {
  display: inline;
  padding-left: 7px;
  padding-right: 7px;
  white-space: nowrap;
  font-size: 1.8rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

main .contents_wrapper {
  max-width: 100%;
  padding: 0;
}

main section {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  main section {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  main section:last-child {
    margin-bottom: 80px;
  }
}

@media (min-width: 768px) {
  p {
    margin: 0.5em 0 1em;
  }
}

@media (max-width: 900px) {
  .gutters .span_3.column_sub,
  .gutters .span_9.column_main {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .gutters .span_3.column_sub .sidebar {
    letter-spacing: -.40em;
  }
  .gutters .span_3.column_sub .sidebar .widget_wrap {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    width: 49%;
    margin-left: 2%;
  }
  .gutters .span_3.column_sub .sidebar .widget_wrap:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 1680px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.article_button {
  margin-top: 5%;
}

@media (min-width: 768px) {
  .article_detail:not(.reverse) .col.span_12 + .span_4,
  .article_list:not(.reverse) .col.span_12 + .span_4 {
    margin-left: 0;
  }
}

.sidebar {
  visibility: hidden;
}

.sidebar > .widget_wrap {
  visibility: visible;
}

.sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 6%;
}

.sidebar ul a {
  color: #151515;
  text-decoration: none;
  display: block;
  padding: .5em;
  border-bottom: rgba(28, 32, 129, 0.1) solid 1px;
}

.sidebar ul a:hover {
  color: #1c2081;
  background: rgba(28, 32, 129, 0.05);
}

.sidebar ul.children {
  margin: 0;
}

.sidebar ul.children > li > a {
  padding-left: 1.75em;
  position: relative;
}

.sidebar ul.children > li > a:before {
  content: '';
  width: 6px;
  height: 6px;
  background: #151515;
  border-radius: 50%;
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar ul.children > li > ul {
  margin: 0;
}

.sidebar ul.children > li > ul > li a {
  padding-left: 2.75em;
  position: relative;
}

.sidebar ul.children > li > ul > li a:before {
  content: '';
  width: 8px;
  height: 8px;
  background: none;
  border-radius: 0;
  border-left: solid 2px #151515;
  border-bottom: solid 2px #151515;
  position: absolute;
  left: 1.75em;
  top: 50%;
  transform: translateY(-50%);
}

.gutters .col.span_12 + .span_12 {
  margin-left: 0;
}

.map_wide #map_canvas,
.map_wide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map_wide img {
  max-width: none;
}

.slick-track {
  margin: 0 auto;
}

.col dl p {
  line-height: 1.4;
  margin: 0;
}

.col p {
  line-height: 1.8;
}

.container {
  padding: 0 20px;
}

@media (min-width: 1700px) {
  .container {
    padding: 0;
  }
}

.highlight {
  background: rgba(28, 32, 129, 0.1);
  color: #151515;
}

.highlight.round {
  border-radius: 10px;
}

section.highlight, p.highlight, .col.highlight {
  padding: 4%;
}

.column_main .col p + *:not(p), .column_main .col table + *:not(p) {
  margin-top: 40px;
}

/*************iOS 26 Safari の上下余白対応*************/
body .fix-safari {
  display: none;
  pointer-events: none;
}

html.scrollPrevent body.ios.safari .fix-safari {
  display: block;
}

html.scrollPrevent body.ios.safari .fix-safari:before, html.scrollPrevent body.ios.safari .fix-safari:after {
  content: "";
  position: fixed;
  left: 0;
  z-index: 9999;
  transform: translate3d(0, 0, 9999px);
  width: 100%;
  height: 200px;
  background: #fff;
  pointer-events: none;
}

html.scrollPrevent body.ios.safari .fix-safari:before {
  top: -200px;
}

html.scrollPrevent body.ios.safari .fix-safari:after {
  bottom: -200px;
}

.globalHeader {
  background: #1c2081;
  color: #fff;
  font-size: 16px;
  background: #1c2081;
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  z-index: 999;
  width: 100%;
}

@media (max-width: 767px) {
  .globalHeader.high {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 768px) {
  .globalHeader.high {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 768px) {
  .globalHeader {
    background: #1c2081;
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    z-index: 999;
    width: 100%;
  }
}

.globalHeader .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  height: 80px;
  max-width: 100%;
}

.globalHeader .container .globalHeader_top {
  width: 98%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .globalHeader .container {
    height: 50px;
  }
}

.globalHeader .globalHeader_top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.globalHeader .header_logo {
  width: 365px;
  height: 42px;
  margin: 0;
}

@media (min-width: 768px) and (max-width: 767px) {
  .globalHeader .header_logo {
    width: 240px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .globalHeader .header_logo {
    width: 200px;
    height: auto;
  }
}

.globalHeader .header_logo a {
  display: block;
  height: auto;
  line-height: 0;
}

.globalHeader .header_logo a img {
  max-width: 100%;
  height: auto;
}

.global_nav {
  width: auto;
  list-style-position: inside;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  height: calc(100dvh - 50px);
  z-index: 56;
  transition: all 0.3s;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: scroll;
}

.global_nav > ul {
  list-style: none;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  display: block;
  background: rgba(28, 32, 129, 0.9);
  width: 80vw;
  max-width: 400px;
  transform: translateX(100%);
  transition: all 0.3s;
  height: 100%;
  overflow: auto;
}

.global_nav > ul li {
  border-bottom: #b3b3b3 solid 1px;
}

.global_nav > ul li:first-child {
  border-top: #b3b3b3 solid 1px;
}

.global_nav > ul li a {
  color: #151515;
  text-decoration: none;
  padding: 0.5em 1em;
  transition: all 0.3s;
  display: block;
  padding: 1em;
  color: #fff;
  position: relative;
}

.global_nav > ul li a:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -4px;
}

.global_nav > ul li a:hover {
  opacity: 0.8;
}

.global_nav > ul li:first-child a:before {
  content: none;
}

.global_nav.open {
  opacity: 1;
  visibility: visible;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.global_nav.open > ul {
  transform: translateX(0);
}

/**ハンバーガーメニュー**/
#headerToggle {
  display: none;
}

#headerToggle {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  z-index: 99;
  cursor: pointer;
  width: 30px;
  height: 25px;
  transition: all 0.3s;
  height: 19px;
  transform: translateY(-4px);
}

#headerToggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1c2081;
  transition: all 0.4s;
}

#headerToggle span:nth-of-type(1) {
  top: 0;
}

#headerToggle span:nth-of-type(2) {
  top: 11px;
  top: 8px;
}

#headerToggle span:nth-of-type(3) {
  bottom: 0;
}

#headerToggle:after {
  content: "MENU";
  position: absolute;
  top: auto;
  bottom: -16px;
  left: -100%;
  right: -100%;
  margin: auto;
  width: 100%;
  font-size: 8px !important;
  letter-spacing: -0.02em;
  color: #1c2081;
  text-align: center;
  font-weight: bold;
}

#headerToggle.active span {
  width: 80%;
  left: 10%;
}

#headerToggle.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

#headerToggle.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
}

#headerToggle.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

#headerToggle.active:after {
  content: "CLOSE";
  letter-spacing: -0.1em;
}

.hdr_info_wrapper {
  display: none;
}

@media (min-width: 768px) {
  .hdr_info_wrapper {
    display: block;
    position: absolute;
    top: 15px;
    right: 0;
  }
}

.hdr_info_wrapper .hdr_info {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.hdr_info_wrapper .hdr_info_group {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hdr_info_wrapper .hdr_info_group li {
  margin-left: 10px;
}

.hdr_info_wrapper .hdr_info_group .button, .hdr_info_wrapper .hdr_info_group .inquiry .form_button, .inquiry .hdr_info_wrapper .hdr_info_group .form_button, .hdr_info_wrapper .hdr_info_group #wpcf7cpcnf .wpcf7cp-btns button, #wpcf7cpcnf .wpcf7cp-btns .hdr_info_wrapper .hdr_info_group button {
  min-width: 220px;
  font-size: 1.4rem;
}

.sp_hdr_info_wrapper {
  display: none;
}

@media (max-width: 767px) {
  .sp_hdr_info_wrapper {
    display: block;
    position: absolute;
    top: 15px;
    right: 70px;
  }
}

.sp_hdr_info_wrapper .sp_hdr_info_group {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li {
  margin-left: 10px;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_tel {
  color: white;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_tel a {
  color: #1c2081;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_tel i {
  font-size: 3.2rem;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_mail {
  color: white;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_mail a {
  color: #1c2081;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_mail i {
  font-size: 3.2rem;
}

footer {
  position: relative;
  padding: 60px 0;
  font-size: 18px;
}

@media (max-width: 767px) {
  footer {
    padding: 0 0 1em;
  }
}

footer .fNav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .fNav ul li + li {
  border-top: 1px solid rgba(28, 32, 129, 0.3);
}

footer .fNav ul li a {
  display: block;
  padding: 1em 15px;
  text-decoration: none;
}

footer .fNav ul li.menu-item-has-children ul {
  display: block !important;
}

footer .copy_right {
  font-size: 1rem;
}

@media (max-width: 767px) {
  footer ul {
    border-top: 1px solid rgba(28, 32, 129, 0.3);
  }
  footer ul li > ul {
    border-top: 1px solid rgba(28, 32, 129, 0.3);
  }
  footer ul li.menu-item-has-children ul {
    display: block !important;
    height: auto !important;
  }
  footer ul li.menu-item-has-children ul a {
    font-size: 90%;
    padding-left: 1.5em;
  }
  footer ul li.menu-item-has-children ul ul a {
    padding-left: 2.5em;
  }
  footer .col {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 768px) {
  footer .fNav {
    margin-bottom: 5%;
  }
  footer .fNav ul {
    width: 100%;
    text-align: left;
    border-bottom: none;
  }
  footer .fNav ul li {
    border: none !important;
  }
  footer .fNav ul li a {
    padding: .2em 1em .2em 1em !important;
    text-decoration: none;
    position: relative;
  }
  footer .fNav ul li a:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #1c2081;
    border-right: solid 2px #1c2081;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -5px;
  }
  footer .fNav ul li > ul {
    padding-left: .2em;
  }
  footer .fNav ul li > ul a {
    font-size: 90%;
  }
  footer .fNav ul li > ul a:before {
    width: 5px;
    height: 5px;
    border: none;
    background: #1c2081;
    border-radius: 50%;
    margin-top: -2px;
  }
  footer .fNav ul li > ul .sub-menu {
    padding-left: 1em;
  }
  footer .fNav ul li > ul .sub-menu a:before {
    width: 5px;
    height: 2px;
    border: none;
    background: #1c2081;
    border-radius: 0;
    transform: rotate(0);
  }
}

.copy_right {
  background: #1c2081;
  color: white;
  font-size: 1.2rem;
  margin: 0;
  padding: 2em 0;
}

@media (max-width: 767px) {
  .copy_right {
    padding: 1em 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  footer nav ul li.tablet-break:after {
    content: "\A";
    white-space: pre;
  }
  footer nav ul li.tablet-break + li:before {
    display: none;
  }
}

footer {
  background: #1c2081;
  color: #fff;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  footer .container .row nav ul {
    display: inline-block;
  }
  footer .container .row nav a {
    display: inline-block;
    padding: 0.3em;
  }
}

.main_visual {
  position: relative;
  margin-bottom: 100px;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .main_visual {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .main_visual {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .main_visual {
    margin-top: 80px;
  }
}

.main_visual .main_visual_splide {
  position: relative;
  z-index: 50;
  width: 100%;
  height: 44.79167%!important;
}

.main_visual .main_visual_splide .splide {
  opacity: 0;
  transition: opacity 0.1s;
  margin: auto;
  width: 100%;
  height: 100%;
}

.main_visual .main_visual_splide .splide.is-initialized {
  opacity: 1;
}

.main_visual .main_visual_splide .splide .splide-wrapper, .main_visual .main_visual_splide .splide .splide__track {
  height: 100%;
}

.main_visual .main_visual_splide .splide .splide__slide {
  height: 100%;
}

.main_visual .main_visual_splide .splide .splide__slide picture, .main_visual .main_visual_splide .splide .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main_visual .main_visual_splide.fadeUp {
  visibility: hidden;
}

.main_visual .main_visual_copy_splide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 1680px;
  height: 100%;
  z-index: 51;
  pointer-events: none;
}

@media (max-width: 1680px) {
  .main_visual .main_visual_copy_splide {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

.main_visual .main_visual_copy_splide .splide, .main_visual .main_visual_copy_splide .splide-wrapper, .main_visual .main_visual_copy_splide .splide__track {
  height: 100%;
}

.main_visual .main_visual_copy_splide .splide__slide {
  width: 100%;
  height: 100%;
}

.main_visual .main_visual_copy_splide .splide__slide img {
  width: 400px;
  height: 400px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 767px) {
  .main_visual .main_visual_copy_splide .splide__slide img {
    max-width: 90%;
    height: auto;
  }
}

.main_visual .main_visual_copy_splide .splide__slide.is-single {
  visibility: visible !important;
}

.main_visual .main_visual_copy_splide.fadeUp {
  visibility: hidden;
}

.main_visual .main_visual_copy_splide.fadeUp .splide__slide {
  visibility: hidden;
}

.main_visual .main_visual_copy_splide .splide__slide.anime_box {
  position: absolute;
  visibility: hidden;
}

.main_visual .main_visual_swiper {
  opacity: 0;
  transition: 0.1s;
}

.main_visual .main_visual_swiper.swiper-container-initialized {
  opacity: 1;
}

.main_visual .main_visual_swiper .swiper-slide {
  position: relative;
}

.main_visual .main_visual_swiper .swiper-slide a {
  color: white;
}

.main_visual .main_visual_swiper .swiper-slide .ofi {
  padding-top: 700px;
}

.main_visual .main_visual_swiper .swiper-slide .text_wrapper {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  padding: 1em;
}

.main_visual .main_visual_swiper .swiper-slide .text_wrapper h3 {
  color: white;
  padding: 0;
  margin: 0 0 .5em;
}

.main_visual .main_visual_swiper .swiper-slide .text_wrapper h3:after {
  content: none;
}

.main_visual .swiper-button-prev, .main_visual .swiper-button-next {
  background: #1c2081;
  color: white;
  width: 60px;
  height: 60px;
}

@media (max-width: 767px) {
  .main_visual .swiper-button-prev, .main_visual .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

.main_visual .swiper-button-prev:after, .main_visual .swiper-button-next:after {
  font-size: 16px;
}

@media (max-width: 767px) {
  .main_visual .swiper-button-prev:after, .main_visual .swiper-button-next:after {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .main_visual .swiper-button-prev {
    left: 0;
  }
}

@media (max-width: 767px) {
  .main_visual .swiper-button-next {
    right: 0;
  }
}

.main_visual .swiper-pagination {
  position: static;
  margin: 1em 0;
}

.main_visual .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #1c2081;
  margin: 0 5px;
  outline-color: transparent;
}

.h1 {
  text-align: center;
  font-size: 4rem;
  font-weight: normal;
  padding: .7em 5%;
  color: #1c2081;
  background: #1c2081;
  margin: 0 0 40px;
}

@media (min-width: 768px) {
  .h1 {
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .h1 {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .h1 {
    margin-top: 50px;
  }
}

.h1 span {
  display: block;
  font-size: 1.6rem;
  padding-top: .5em;
  color: #252aab;
  font-style: italic;
}

.h1 a {
  text-decoration: none;
}

.h1 a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .h1 {
    font-size: 2.4rem;
  }
  .h1 span {
    font-size: 1.4rem;
  }
}

.h2, .article_list h2 {
  display: block;
  margin: 0 auto 1em;
  position: relative;
  text-align: center;
  border: 0;
  font-weight: bold;
  padding: 0 0 .5em;
  font-size: 3rem;
  color: #151515;
}

.h2 a, .article_list h2 a {
  text-decoration: none;
  color: #1c2081;
}

.h2 a:hover, .article_list h2 a:hover {
  text-decoration: underline;
  color: #1c2081;
}

.h2 span, .article_list h2 span {
  display: block;
  font-size: 1.4rem;
  padding-top: 1em;
}

.h2:after, .article_list h2:after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 60px;
  right: 0;
  left: 0;
  bottom: 0;
  top: auto;
  margin: auto;
  background: #1c2081;
}

@media (max-width: 767px) {
  .h2, .article_list h2 {
    font-size: 2.4rem;
  }
  .h2:after, .article_list h2:after {
    width: 20px;
  }
}

.h3 {
  margin: 0 0 1em;
  padding-bottom: 0.5em;
  color: #151515;
  font-size: 2.4rem;
  position: relative;
}

.h3 a {
  text-decoration: none;
}

.h3 a:hover {
  text-decoration: underline;
}

.h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(28, 32, 129, 0.2);
}

@media (max-width: 767px) {
  .h3 {
    font-size: 2rem;
  }
}

.h4 {
  margin: 0 0 1em;
  padding-left: 1em;
  font-size: 1.8rem;
  position: relative;
  color: #151515;
  font-weight: bold;
}

.h4 a {
  text-decoration: none;
}

.h4 a:hover {
  text-decoration: underline;
}

.h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 1em;
  margin: auto;
  background: #1c2081;
}

@media (max-width: 767px) {
  .h4 {
    font-size: 1.4rem;
  }
}

.widget_wrap .widget_header {
  font-size: 1.6rem;
  color: #151515;
  padding: .5em 0 .5em .5em;
  border-bottom: #1c2081 solid 2px;
  font-weight: bold;
}

.widget_wrap .widget_header a {
  text-decoration: none;
}

.widget_wrap .widget_header a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .widget_wrap .widget_header {
    font-size: 1.4rem;
  }
}

.bread {
  overflow: hidden;
  font-size: 1.2rem;
  margin: 0 auto 60px;
  width: 100%;
  max-width: 1680px;
}

@media (max-width: 767px) {
  .bread {
    margin: 0 auto 40px;
  }
}

.bread ul {
  padding: 1em 0;
  margin: 0 auto;
  float: none;
}

.bread ul li {
  list-style: none;
  position: relative;
  float: left;
  padding-right: 2em;
  margin-right: 1.5em;
}

.bread ul li a {
  text-decoration: none;
  color: #1c2081;
}

.bread ul li a:hover {
  color: #1c2081;
  text-decoration: none;
}

.bread ul li:after {
  content: '>';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.bread ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.bread ul li:last-child:after {
  content: none;
}

.button, .inquiry .form_button, #wpcf7cpcnf .wpcf7cp-btns button {
  display: inline-block;
  max-width: 436px;
  width: 100%;
  margin: 0;
  padding: 1em 1em;
  border: #1c2081 solid 1px;
  border-radius: 0px;
  line-height: 1;
  background: #1c2081;
  color: white;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: .3s;
  font-size: 1.6rem;
  cursor: pointer;
  /*
* ボタン矢印
*/
}

.button:hover, .inquiry .form_button:hover, #wpcf7cpcnf .wpcf7cp-btns button:hover {
  background: #171b6c;
  color: white;
  border-color: #171b6c;
}

.button.arrow, .inquiry .arrow.form_button, #wpcf7cpcnf .wpcf7cp-btns button.arrow {
  position: relative;
  font-size: 1.6rem;
}

.button.arrow:after, .inquiry .arrow.form_button:after, #wpcf7cpcnf .wpcf7cp-btns button.arrow:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 49%;
  right: 5%;
  margin: auto;
  width: 20px;
  height: 5px;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  transform: skew(45deg);
  transition: 0.2s;
}

.button.arrow:hover, .inquiry .arrow.form_button:hover, #wpcf7cpcnf .wpcf7cp-btns button.arrow:hover {
  border: 1px solid #1c2081;
}

.button.arrow:hover:after, .inquiry .arrow.form_button:hover:after, #wpcf7cpcnf .wpcf7cp-btns button.arrow:hover:after {
  right: 4%;
}

.highlight .button, .highlight .inquiry .form_button, .inquiry .highlight .form_button, .highlight #wpcf7cpcnf .wpcf7cp-btns button, #wpcf7cpcnf .wpcf7cp-btns .highlight button {
  color: white;
}

.highlight .button:hover, .highlight .inquiry .form_button:hover, .inquiry .highlight .form_button:hover, .highlight #wpcf7cpcnf .wpcf7cp-btns button:hover, #wpcf7cpcnf .wpcf7cp-btns .highlight button:hover {
  color: white;
}

.button.inverse, .inquiry .inverse.form_button, #wpcf7cpcnf .wpcf7cp-btns button.inverse {
  background: none;
  border-color: #1c2081;
  color: #1c2081;
}

.button.inverse:after, .inquiry .inverse.form_button:after, #wpcf7cpcnf .wpcf7cp-btns button.inverse:after {
  border-color: #1c2081;
}

.button.inverse:hover, .inquiry .inverse.form_button:hover, #wpcf7cpcnf .wpcf7cp-btns button.inverse:hover {
  background: #1c2081;
  color: #fff;
}

.button.inverse:hover:after, .inquiry .inverse.form_button:hover:after, #wpcf7cpcnf .wpcf7cp-btns button.inverse:hover:after {
  border-color: #fff;
}

.button.block, .inquiry .block.form_button, #wpcf7cpcnf .wpcf7cp-btns button.block {
  display: block;
  min-width: 100%;
}

.button.small, .inquiry .small.form_button, #wpcf7cpcnf .wpcf7cp-btns button.small {
  padding: .6em 1em;
  max-width: unset;
  width: auto;
}

.button.small.arrow, .inquiry .small.arrow.form_button, #wpcf7cpcnf .wpcf7cp-btns button.small.arrow {
  padding-right: 2.5em;
}

.button + .button, .inquiry .form_button + .button, #wpcf7cpcnf .wpcf7cp-btns button + .button, .inquiry .button + .form_button, .inquiry .form_button + .form_button, #wpcf7cpcnf .wpcf7cp-btns .inquiry button + .form_button, .inquiry #wpcf7cpcnf .wpcf7cp-btns button + .form_button, #wpcf7cpcnf .wpcf7cp-btns .button + button, .inquiry #wpcf7cpcnf .wpcf7cp-btns .form_button + button, #wpcf7cpcnf .wpcf7cp-btns .inquiry .form_button + button, #wpcf7cpcnf .wpcf7cp-btns button + button {
  margin-left: 0.5em;
}

@media (max-width: 767px) {
  .button + .button, .inquiry .form_button + .button, #wpcf7cpcnf .wpcf7cp-btns button + .button, .inquiry .button + .form_button, .inquiry .form_button + .form_button, #wpcf7cpcnf .wpcf7cp-btns .inquiry button + .form_button, .inquiry #wpcf7cpcnf .wpcf7cp-btns button + .form_button, #wpcf7cpcnf .wpcf7cp-btns .button + button, .inquiry #wpcf7cpcnf .wpcf7cp-btns .form_button + button, #wpcf7cpcnf .wpcf7cp-btns .inquiry .form_button + button, #wpcf7cpcnf .wpcf7cp-btns button + button {
    margin-left: 0;
    margin-top: 1em;
  }
}

.p-content_Slide {
  width: 100%;
  overflow: hidden;
}

.p-content_Slide .splide__slide {
  text-decoration: none;
  color: currentColor;
}

/* お問い合わせフォーム */
.inquiry .form_wrap {
  margin: 0;
  padding: 4%;
  border: rgba(28, 32, 129, 0.1) solid 5px;
  border-radius: 10px;
}

.inquiry .form_wrap .p-country-name {
  display: none;
}

.inquiry .table-default {
  border: none;
}

.inquiry .table-default tr:not(:last-of-type) {
  border-bottom: 1px solid #cccccc;
}

.inquiry .table-default th {
  background: none;
  border: none;
  text-align: left;
  padding: 1.4em 50px 1.2em .5em;
  vertical-align: top;
  font-weight: bold;
  position: relative;
}

@media (max-width: 767px) {
  .inquiry .table-default th {
    padding: 1em 0 0;
  }
}

.inquiry .table-default th .required {
  display: inline-block;
  background: #d43f3a;
  color: white;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 1.2rem;
  margin-left: .5em;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .inquiry .table-default th .required {
    position: absolute;
    top: 1.6em;
    right: 0;
  }
}

.inquiry .table-default td {
  background: none;
  border: none;
  padding: 1.2em .5em;
}

@media (max-width: 767px) {
  .inquiry .table-default td {
    padding: .5em 0 1em;
  }
}

.inquiry .input_wrap {
  display: block;
  margin: 0;
  padding: 0 .2em;
}

@media (max-width: 767px) {
  .inquiry .input_wrap {
    margin: 0;
  }
}

.inquiry .input_wrap input, .inquiry .input_wrap textarea {
  margin: 0;
}

.inquiry .input_wrap:last-child {
  margin-right: auto;
}

.inquiry .text-2col {
  display: flex;
}

.inquiry .text-2col .input_wrap {
  flex-basis: 50%;
}

.inquiry input[type="text"],
.inquiry input[type="url"],
.inquiry input[type="email"],
.inquiry input[type="tel"],
.inquiry input[type="date"],
.inquiry input[type="number"],
.inquiry select,
.inquiry textarea {
  width: 100%;
  max-width: 100%;
  padding: 7px 2%;
  color: #151515;
  font-size: 1.6rem;
  margin: 0 .2em;
  border: 1px solid #cccccc;
  background: #fafafa;
  border-radius: 3px;
  -webkit-appearance: none;
}

@media (max-width: 767px) {
  .inquiry input[type="text"],
  .inquiry input[type="url"],
  .inquiry input[type="email"],
  .inquiry input[type="tel"],
  .inquiry input[type="date"],
  .inquiry input[type="number"],
  .inquiry select,
  .inquiry textarea {
    margin: .2em 0;
  }
}

.inquiry input[type="number"] {
  width: 65px;
  text-align: center;
}

.inquiry input.p-postal-code {
  width: 200px;
}

.inquiry input.p-region {
  width: 100px;
}

.inquiry input.p-locality {
  width: 150px;
}

.inquiry input.p-street-address {
  width: 100%;
}

.inquiry input.p-extended-address {
  width: 100%;
}

.inquiry .mwform-tel-field {
  display: flex;
  justify-content: space-between;
}

.inquiry .submit {
  margin: 1em 0;
  text-align: center;
}

.inquiry .form_button, .inquiry .wpcf7-submit {
  background: white;
  color: #1c2081;
  border-color: #1c2081;
}

.inquiry .form_button.form_back, .inquiry .wpcf7-submit.form_back {
  background: #ccc;
  border-color: #ccc;
  color: #666;
}

.inquiry .form_button.form_back:hover, .inquiry .wpcf7-submit.form_back:hover {
  background: #bfbfbf;
  border-color: #bfbfbf;
  color: #666;
}

.inquiry .form_button.form_send, .inquiry .wpcf7-submit.form_send {
  background: #131657;
  border-color: #131657;
  color: #fff;
}

.inquiry .form_button.form_send:hover, .inquiry .wpcf7-submit.form_send:hover {
  background: #0e1042;
  border-color: #0e1042;
  color: #fff;
}

@media (min-width: 768px) {
  .inquiry input[type="text"],
  .inquiry input[type="url"],
  .inquiry input[type="email"],
  .inquiry input[type="tel"],
  .inquiry input[type="date"],
  .inquiry input[type="text"],
  .inquiry select {
    margin: 0 .2em;
  }
  .inquiry input[type="number"] {
    width: 65px;
  }
  .inquiry input.p-postal-code {
    width: 200px;
  }
  .inquiry input.p-region {
    width: 100px;
  }
  .inquiry input.p-locality {
    width: 150px;
  }
  .inquiry input.p-street-address {
    width: 100%;
  }
  .inquiry input.p-extended-address {
    width: 100%;
  }
  .inquiry textarea {
    width: 100%;
  }
  .inquiry .input_wrap {
    display: block;
    margin: 0 .2em;
  }
  .inquiry .input_wrap input, .inquiry .input_wrap textarea {
    margin: 0;
  }
  .inquiry .input_wrap:last-child {
    margin-right: auto;
  }
  .inquiry .submit {
    margin: 60px 0 0;
  }
}

.form_button_wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .form_button_wrap {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

.form_button_wrap button {
  margin: .5em !important;
}

.wpcf7-spinner {
  margin: 1em 24px !important;
}

.privacy_wrap {
  margin-top: 5%;
  border: #ccc solid 1px;
  padding: 1em;
  height: 400px;
  overflow-y: scroll;
}

.mw_wp_form_confirm .input-show {
  display: none !important;
}

.mw_wp_form_input .input-hide {
  display: none !important;
}

.mw_wp_form .error {
  color: #d43f3a !important;
}

.wpcf7cp-form-hide {
  display: none !important;
}

#wpcf7cpcnf {
  position: static !important;
  width: 100% !important;
  max-width: 1680px !important;
  margin: auto !important;
  right: 0;
  z-index: 998 !important;
}

#wpcf7cpcnf table {
  width: 94%;
  height: 94%;
  position: relative;
  margin-top: 3%;
  margin-bottom: 3%;
  margin-left: 3%;
  margin-right: 3%;
  table-layout: fixed;
}

@media (max-width: 1699px) {
  #wpcf7cpcnf table {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

#wpcf7cpcnf table:after {
  content: '';
  width: 106%;
  height: 106%;
  padding: 4%;
  border: rgba(23, 83, 150, 0.1) solid 5px;
  border-radius: 10px;
  position: absolute;
  top: -3%;
  bottom: -3%;
  left: -3%;
  right: -3%;
  pointer-events: none;
}

@media (max-width: 767px) {
  #wpcf7cpcnf table:after {
    top: 0;
    height: 100%;
  }
}

#wpcf7cpcnf table tr:not(:last-of-type) {
  border-bottom: 1px solid #cccccc;
}

#wpcf7cpcnf table th {
  width: 30%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4em 50px 1.2em .5em;
  vertical-align: top;
  font-weight: bold;
  position: relative;
}

@media (max-width: 767px) {
  #wpcf7cpcnf table th {
    display: block;
    width: 100%;
    padding: 1em 0.5em 0;
  }
}

#wpcf7cpcnf table td {
  background: none;
  border: none;
  padding: 1.2em .5em;
}

@media (max-width: 767px) {
  #wpcf7cpcnf table td {
    display: block;
    width: 100%;
  }
}

#wpcf7cpcnf .wpcf7cp-btns {
  margin-top: calc(2em + 3%);
  display: flex;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  #wpcf7cpcnf .wpcf7cp-btns {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

#wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background: #bfbfbf;
  border-color: #bfbfbf;
  color: #666;
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
  /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
  /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  /* Yellow */
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  /* Red */
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: .2em .8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: '';
  position: absolute;
  background-color: #fbfbfc;
  /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.wpcf7 [inert] {
  opacity: 0.5;
}

.wpcf7 input[type="file"] {
  cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}

.wpcf7-reflection > output[hidden] {
  display: none;
}

.p-loopSlide {
  width: 100%;
  overflow: hidden;
}

.p-loopSlide .img-cover img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

header .global_nav > ul > li.menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

header .global_nav > ul > li.menu-item-has-children > a {
  position: relative;
  width: calc(100% - 49px);
}

header .global_nav > ul > li.menu-item-has-children > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(0, -50%) rotate(135deg);
  transition: 0.2s;
  content: none;
}

header .global_nav > ul > li.menu-item-has-children.menu_under_open > a:after {
  transform: translate(0, 0) rotate(-45deg);
}

header .global_nav > ul > li > .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: none;
}

header .global_nav > ul > li > .sub-menu > li {
  border-bottom: 1px solid #b3b3b3;
}

header .global_nav > ul > li > .sub-menu > li:last-child {
  border-bottom: none;
}

header .global_nav > ul > li > .sub-menu > li > a {
  background: rgba(37, 42, 171, 0.9);
  padding-left: 2em;
  position: relative;
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > a {
  position: relative;
  width: calc(100% - 49px);
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > a:after {
  content: none;
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children.menu_under_open > a:after {
  transform: translate(0, 0) rotate(-45deg);
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
}

@media (max-width: 767px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    display: none;
  }
}

@media (min-width: 768px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    width: 100%;
    display: none;
  }
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li:not(:last-child) {
  border-bottom: #fff solid 1px;
}

@media (max-width: 767px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li:not(:last-child) {
    border-bottom: #b3b3b3 solid 1px;
  }
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li:last-child {
  border-bottom: none;
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li a {
  background: rgba(42, 48, 192, 0.9);
}

@media (max-width: 767px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li a {
    padding-left: 2.5em;
  }
}

@media (min-width: 768px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children:hover > .sub-menu, header .global_nav > ul > li > .sub-menu > li.menu-item-has-children.menu_under_open > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

.child-menu-button {
  position: relative;
  width: 49px;
  min-height: 49px;
  background: #000;
  border: 0;
  outline: 0;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.child-menu-button:before, .child-menu-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  background: #fff;
  transition: 0.2s ease;
}

.child-menu-button:before {
  width: 15px;
  height: 1px;
}

.child-menu-button:after {
  width: 1px;
  height: 15px;
}

.child-menu-button.is-open:before {
  opacity: 0;
  transform: rotate(90deg);
}

.child-menu-button.is-open:after {
  transform: rotate(90deg);
}

.child-menu-button.is-open + .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  display: none;
}

@media (min-width: 768px) {
  header .global_nav > ul > li.menu-item-has-children {
    position: relative;
    cursor: pointer;
  }
  header .global_nav > ul > li.menu-item-has-children > a {
    padding-right: 2em;
    position: relative;
  }
  header .global_nav > ul > li.menu-item-has-children > a:after {
    border-color: #151515;
    width: 6px;
    height: 6px;
  }
  header .global_nav > ul > li.menu-item-has-children > a:after {
    transform: translate(0, -50%) rotate(135deg);
  }
  header .global_nav > ul > li.menu-item-has-children > a.menu_under_open:after {
    transform: translate(0) rotate(-45deg);
  }
  header .global_nav > ul > li.menu-item-has-children > .sub-menu > li {
    letter-spacing: normal;
    display: block;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-bottom: 0;
    padding: 0;
  }
  header .global_nav > ul > li.menu-item-has-children > .sub-menu > li:not(:last-child) {
    border-bottom: white solid 1px;
  }
  header .global_nav > ul > li.menu-item-has-children > .sub-menu > li a {
    display: block;
    background: rgba(28, 32, 129, 0.9);
    color: #fff;
  }
  header .global_nav > ul > li.menu-item-has-children > .sub-menu > li a:before {
    content: none;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  header .global_nav > ul > li.menu-item-has-children {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 768px) {
  header .global_nav > ul > li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  header .global_nav > ul > li.menu-item-has-children:hover > a:after {
    transform: translate(0) rotate(-45deg);
  }
  header .global_nav > ul > li.menu-item-has-children:hover > ul {
    opacity: 1;
    height: auto;
    visibility: visible;
  }
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #1c2081;
}

.movie {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 56.25%;
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.movie.ar16to9 {
  padding-top: 56.25%;
}

.movie.ar4to3 {
  padding-top: 75%;
}

@media (max-width: 767px) {
  .news .heading {
    display: flex;
    justify-content: space-between;
  }
  .news .heading h2 {
    text-align: left;
    margin: 0 0 1em;
  }
  .news .heading h2:after {
    right: auto;
  }
}

.news dl {
  margin: 0;
  overflow-y: auto;
  max-height: 300px;
}

.news dl dt {
  margin: 0.5em 0 0;
  padding: 0 1em;
  font-weight: normal;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.news dl dd {
  margin: 0.5em 0;
  padding: 0 1em 0.5em;
  border-bottom: #ccc solid 1px;
  position: relative;
}

.news dl dd a {
  text-decoration: none;
}

.news dl dd a:hover {
  text-decoration: underline;
}

.news dl .badge_category_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news dl .badge_category {
  display: inline-block;
  background: #1c2081;
  color: white;
  padding: .2em 1em;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .news > div {
    display: flex;
    width: 100%;
    margin: 0 auto;
  }
  .news > div .heading {
    width: 23.5%;
  }
  .news h2 {
    margin: 0;
    padding: 0;
  }
  .news h2:after {
    display: none;
  }
  .news .content {
    overflow: hidden;
    width: 76.5%;
    padding-left: 2%;
  }
  .news dl {
    overflow-y: auto;
    max-height: 200px;
  }
  .news dl dt {
    margin: 0;
    padding: 1em 0 .5em 0;
  }
  .news dl dd {
    margin: 0;
    padding: .5em 0 1em 0;
  }
  .news.typeB dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0 0;
  }
  .news.typeB dt {
    max-width: 200px;
    border-bottom: #ccc solid 1px;
  }
  .news.typeB dd {
    margin: 0;
    padding: 1em 0 1em 0;
  }
  .news.typeB dd a {
    display: block;
    width: 100%;
    position: relative;
    padding-right: 20px;
  }
  .news.typeB dd a:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    margin: auto;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #1c2081;
    border-right: 2px solid #1c2081;
    transform: rotate(-45deg);
    transition: 0.2s;
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 5%;
  z-index: 98;
}

.pagetop a {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  background: rgba(28, 32, 129, 0.9);
}

@media (min-width: 768px) {
  .pagetop a {
    width: 70px;
    height: 70px;
  }
}

.pagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: translate(-50%, -20%) rotate(45deg);
  transition: .2s;
}

footer.high .pagetop {
  position: absolute;
  bottom: auto;
  right: 5%;
  top: 0;
  margin: 0;
  transform: translateY(-50%);
}

.p-qa .question {
  font-size: 1.6rem;
  border: none;
  position: relative;
  margin: 0 0 0;
  padding: 1em 50px 1em 1em;
  background-color: rgba(28, 32, 129, 0.1);
  font-weight: normal;
}

.p-qa .question:after {
  content: none;
}

.p-qa .question:before {
  content: none;
}

.p-qa .question.open:after {
  transform: rotate(180deg);
}

.p-qa .question:not(:first-child) {
  margin-top: 1em !important;
}

.p-qa .answer {
  padding: 1em 0 0 1em;
}

.p-qa.qa_active .question {
  cursor: pointer;
}

.p-qa.qa_active .question:hover {
  opacity: 0.8;
}

.p-qa.qa_active .question:after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 1em;
  left: auto;
  top: 50%;
  bottom: auto;
  margin-top: -12px;
  background: url(../../../../../wp-content/uploads/arrow_down.svg) center center no-repeat;
  background-size: 24px;
  transition: .5s;
  border: none;
}

.p-qa.qa_active .answer {
  display: none;
}

.highlight .qa .question {
  background: rgba(33, 37, 150, 0.1);
}

.highlight .qa .question:hover {
  background: rgba(30, 34, 137, 0.1);
}

.highlight .qa .question.open:hover {
  background: rgba(33, 37, 150, 0.1);
}

.nav_search {
  display: none;
}

.nav_search_box {
  display: none;
}

.p-search .article_list {
  padding: 0;
  border-bottom: rgba(28, 32, 129, 0.1) solid 1px !important;
  border-top: none;
}

.p-search .article_list:first-of-type {
  border-top: rgba(28, 32, 129, 0.1) solid 1px;
}

.p-search .article_list .col {
  margin: 0;
}

.p-search .article_list .search_item {
  display: block;
  text-decoration: none;
  color: currentColor;
  padding: 1em;
}

.p-search .article_list .search_item:hover {
  opacity: 0.8;
  background: rgba(28, 32, 129, 0.03);
}

.p-search .article_list .search_item h2 {
  margin: 0 0 0 !important;
  padding-bottom: 0 !important;
  text-align: left;
}

.p-search .article_list .search_item h2:after {
  content: none;
}

.p-search .article_list .search_item h2 ~ p {
  margin-top: .6em;
}

.shopinfo figure, .shopinfo picture {
  max-width: 80%;
  margin: 0 auto;
}

.shopinfo address {
  text-align: center;
  font-size: 2rem;
  font-style: normal;
}

.shopinfo dl {
  margin: 2em 0;
  line-height: 1.4;
}

.shopinfo dl:first-child {
  margin-top: 0;
}

.shopinfo dl dt {
  margin: 0 0 0.2em 0;
  font-weight: normal;
}

.shopinfo dl dt:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 3px;
  margin-right: 0.3em;
  vertical-align: middle;
  background: #1c2081;
}

.shopinfo dl dd {
  margin: 0 0 0.5em 1em;
  padding: 0;
}

.map_container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70%;
}

.map_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map_container + p {
  margin-top: 2em;
}

.map_wide {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70%;
}

.map_wide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.scroll .googlemap {
  pointer-events: none;
}

@media (min-width: 768px) {
  .shopinfo figure, .shopinfo picture {
    max-width: 100%;
  }
  .shopinfo address {
    margin-bottom: 15px;
    text-align: left;
    font-size: 2.6rem;
    line-height: 1;
  }
  .shopinfo dl.dl-horizontal {
    margin: 10px 0;
  }
  .shopinfo dl.dl-horizontal dd {
    margin-bottom: 0.3em;
  }
  .shopinfo .span12 .map_container {
    padding-top: 50%;
  }
  .map_wide {
    padding-top: 420px;
  }
}

.p-sitemap {
  border-top: rgba(21, 21, 21, 0.3) solid 1px;
}

.p-sitemap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-sitemap ul li a {
  display: block;
  text-decoration: none;
  position: relative;
  padding: .6em 1em .6em 1.5em;
  border-bottom: rgba(21, 21, 21, 0.3) solid 1px;
  font-size: 1.8rem;
}

.p-sitemap ul li a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #151515;
  border-right: solid 2px #151515;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: .5em;
  margin: auto;
}

.p-sitemap ul li a:hover {
  background: rgba(28, 32, 129, 0.1);
}

.p-sitemap ul.children {
  margin: 0;
}

.p-sitemap ul.children li a {
  padding-left: 3em;
  font-size: 1.7rem;
}

.p-sitemap ul.children li a:before {
  left: 2em;
}

.sns_icons {
  display: table;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0rem;
  margin: auto;
}

.sns_icons > li {
  display: inline;
  padding-left: 0;
  padding-right: 0;
  white-space: nowrap;
  font-size: 1.8rem;
}

.sns_icons li {
  display: inline-block;
}

.sns_icons li:not(:last-child) {
  margin-right: 10px;
}

.sns_icons a {
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
}

.sns_icons a.icon_facebook {
  background-image: url(../../../../../wp-content/uploads/icon_facebook.png);
}

.sns_icons a.icon_twitter {
  background-image: url(../../../../../wp-content/uploads/icon_twitter.png);
}

.sns_icons a.icon_line {
  background-image: url(../../../../../wp-content/uploads/icon_line.png);
}

.sns_icons a.icon_google {
  background-image: url(../../../../../wp-content/uploads/icon_google.png);
}

.sns_icons a.icon_instagram {
  background-image: url(../../../../../wp-content/uploads/icon_instagram.png);
}

footer .sns_icons {
  margin-top: 1.5em;
}

@media (min-width: 768px) {
  .sns_icons {
    margin: 0;
  }
  .sns_icons.center {
    margin: auto;
  }
  .sns_icons li:not(:last-child) {
    margin-right: 20px;
  }
  .sns_icons a {
    width: 68px;
    height: 68px;
  }
  footer .sns_icons {
    margin-top: 30px;
  }
}

@use "sass:math";
@media (max-width: 767px) {
  .sp_image_cols {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 2%;
         column-gap: 2%;
    row-gap: 20px;
  }
  .sp_image_cols.sp_col2 .col {
    width: 49%;
  }
  .sp_image_cols.sp_col3 {
    display: flex;
    flex-wrap: wrap;
  }
  .sp_image_cols.sp_col3 .col {
    width: 33.3333333333%;
    padding: 0 1%;
  }
}

.p-step .row:not(:last-child) {
  position: relative;
  margin-bottom: 40px;
}

.p-step .row:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  background: #1c2081;
  height: 20px;
  width: 60px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

table {
  margin: 0 auto;
}

table td,
table th {
  padding: 0.7em 1em;
}

@media (max-width: 767px) {
  table td,
  table th {
    padding: 0.7em .3em;
  }
}

table th {
  text-align: center;
  font-weight: normal;
}

.table-default {
  width: 100%;
  table-layout: fixed;
}

.table-default thead th, .table-default thead td {
  background: rgba(28, 32, 129, 0.15);
}

.table-default td,
.table-default th {
  border: 1px solid #ccc;
}

.table-default th {
  background: rgba(204, 204, 204, 0.2);
  color: #151515;
}

.table-default td {
  background: transparent;
}

.table-default.table-mini td,
.table-default.table-mini th {
  padding: .5em 1em;
}

@media (max-width: 767px) {
  .table-default.table-mini td,
  .table-default.table-mini th {
    padding: .5em .3em;
  }
}

.table-menu {
  width: 100%;
}

.table-menu caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 2rem;
}

.table-menu td,
.table-menu th {
  padding: 0.7em 1em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
  .table-menu td,
  .table-menu th {
    padding: 0.7em .3em;
  }
}

.table-menu tbody th {
  text-align: left;
}

.table-menu td:last-child {
  text-align: right;
  white-space: nowrap;
}

.table-schedule {
  width: 100%;
}

.table-schedule caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 2rem;
}

.table-schedule td,
.table-schedule th {
  border: 1px solid #ccc;
  padding: 0.7em 1em;
  text-align: center;
}

@media (max-width: 767px) {
  .table-schedule td,
  .table-schedule th {
    padding: 0.7em 0.3em;
  }
}

.table-schedule thead th {
  background: rgba(204, 204, 204, 0.2);
}

.table-schedule tbody th {
  background: rgba(204, 204, 204, 0.2);
}

.table-schedule td {
  background: transparent;
}

@media (max-width: 767px) {
  .responsive-stack {
    display: block;
  }
  .responsive-stack thead {
    display: none;
  }
  .responsive-stack tbody,
  .responsive-stack td,
  .responsive-stack th,
  .responsive-stack tr {
    display: block;
  }
  .responsive-stack td,
  .responsive-stack th {
    width: 100% !important;
  }
  .responsive-stack tr:not(:last-child) td,
  .responsive-stack tr:not(:last-child) th {
    border-bottom: 0;
  }
  .responsive-stack tr:last-child :not(:last-child) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .responsive-scroll-container {
    display: block;
    width: 100%;
    min-height: 0.01%;
    overflow-x: scroll;
  }
  .responsive-scroll-container .responsive-scroll-inner {
    width: 798px;
    padding: 0 15px 15px;
  }
  .responsive-scroll-container table {
    width: 768px;
    margin: 0;
  }
}

.js-scrollable .scroll-hint-icon-wrap {
  margin-top: unset !important;
}

@media (max-width: 767px) {
  .js-scrollable table {
    width: 768px;
  }
}

table.table-default.typeA tr td,
table.table-default.typeA tr th {
  border: 0;
}

table.table-default.typeA tr:nth-child(odd) th {
  background: #1c2081;
}

table.table-default.typeA tr:nth-child(odd) td {
  background: rgba(28, 32, 129, 0.1);
}

table.table-default.typeA tr:nth-child(even) th {
  background: #252aab;
}

table.table-default.typeA tr:nth-child(even) td {
  background: rgba(37, 42, 171, 0.1);
}

table.table-default.typeB {
  border-spacing: 0;
  overflow: hidden;
}

table.table-default.typeB tbody td,
table.table-default.typeB tbody th {
  background: transparent;
  color: #151515;
  border: 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.1);
}

table.table-default.typeB tbody tr {
  position: relative;
}

table.table-default.typeB tbody th {
  color: #1c2081;
}

table.table-default.typeC th {
  background: rgba(204, 204, 204, 0.2);
  color: #151515;
}

table.table-default.typeC td,
table.table-default.typeC th {
  border: 0;
}

table.table-default.typeC td:not(:last-child),
table.table-default.typeC th:not(:last-child) {
  border-bottom: 2px #fff solid;
}

table.table-default.typeC tr {
  position: relative;
}

table.table-default.typeC td {
  transform: translateX(2px);
}

.highlight table.table-default.typeC td,
.highlight table.table-default.typeC th {
  border: 0;
}

.highlight table.table-default.typeC td:not(:last-child),
.highlight table.table-default.typeC th:not(:last-child) {
  border-bottom: 2px rgba(28, 32, 129, 0.1) solid;
}

.article_list {
  padding: .5em;
  border-top: rgba(28, 32, 129, 0.2) solid 1px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .article_list {
    padding: 1em;
  }
}

.article_list .span_12 {
  margin: 2% 0;
}

.article_list:last-of-type {
  border-bottom: rgba(28, 32, 129, 0.2) solid 1px;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .article_list:last-of-type {
    margin-bottom: 40px;
  }
}

.article_list .post_header {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.article_list .post_header .time {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.article_list .post_header .time:before {
  display: block;
  position: absolute;
  content: '\f044';
  font-family: 'Font Awesome 5 Free';
  line-height: 10px;
  font-size: 16px;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: currentColor;
}

.article_list .post_header .category_badge {
  background: #1c2081;
  color: white;
  font-size: 1.4rem;
  display: inline-block;
}

.article_list .post_header .category_badge a {
  display: block;
  padding: .2em 1em;
  color: white;
  text-decoration: none;
}

.article_list h2 {
  text-align: left;
  margin: 0 0 .5em !important;
  padding: 0;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .article_list h2 {
    font-size: 1.9rem;
  }
}

.article_list h2:after {
  content: none;
}

.article_list h2 a:hover {
  text-decoration: none;
  color: #1c2081;
}

.m-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .m-pagenation {
    margin-bottom: 50px;
  }
}

.m-pagenation .m-pagenation__prev {
  margin-right: .5em;
}

.m-pagenation .m-pagenation__prev a {
  display: block;
  text-decoration: none;
  padding: .3em 1em;
  border: #ccc solid 1px;
}

.m-pagenation .m-pagenation__prev a:hover {
  background: rgba(28, 32, 129, 0.1);
  border-color: rgba(28, 32, 129, 0.1);
}

.m-pagenation .m-pagenation__next {
  margin-left: .5em;
}

.m-pagenation .m-pagenation__next a {
  display: block;
  text-decoration: none;
  padding: .3em 1em;
  border: #ccc solid 1px;
}

.m-pagenation .m-pagenation__next a:hover {
  background: rgba(28, 32, 129, 0.1);
  border-color: rgba(28, 32, 129, 0.1);
}

.m-pagenation .m-pagenation__body {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.m-pagenation .m-pagenation__body li {
  display: inline-block;
  margin: 0 5px;
}

.m-pagenation .m-pagenation__body li a {
  text-decoration: none;
  display: block;
  padding: .3em 1em;
  border: #ccc solid 1px;
}

.m-pagenation .m-pagenation__body li a:hover {
  background: rgba(28, 32, 129, 0.1);
  border-color: rgba(28, 32, 129, 0.1);
}

.m-pagenation .m-pagenation__body li.current {
  background: #1c2081;
  color: white;
  border: #1c2081 solid 1px;
  padding: .3em 1em;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .wp-pagenavi {
    margin-bottom: 50px;
  }
}

.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  margin: 0 5px;
  text-decoration: none;
  padding: .3em 1em;
  border: #ccc solid 1px;
  color: #1c2081;
}

.wp-pagenavi a.current, .wp-pagenavi span.current {
  background: #1c2081;
  color: white;
  border: #1c2081 solid 1px;
  padding: .3em 1em;
}

.wp-pagenavi a:hover {
  background: rgba(28, 32, 129, 0.1);
  border-color: rgba(28, 32, 129, 0.1);
}

.article_single01 .article_single01_02 {
  margin-top: 10px;
}

.article_single01 .article_single01_02 img {
  opacity: 1;
  transition: opacity 0.3s;
}

.article_single01 .article_single01_02 img:hover {
  cursor: pointer;
  opacity: 0.7;
}

.article_single01 .ofi {
  background: rgba(28, 32, 129, 0.1);
}

.article_single01 .more {
  display: block;
  text-align: center;
}

.article_single02 .article_single02_01 img {
  opacity: 1;
  transition: opacity 0.3s;
}

.article_single02 .article_single02_01 img:hover {
  cursor: pointer;
  opacity: 0.7;
}

.article_single02 .ofi {
  background: rgba(28, 32, 129, 0.1);
}

.article_single02 .more {
  display: block;
  text-align: center;
}

@media (min-width: 768px) {
  .article_single03 .article_single03_02 .span_6 {
    width: 45%;
    margin-left: 10%;
  }
  .article_single03 .article_single03_02 .span_6:first-child {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .article_single03 .article_single03_02 .span_12 {
    margin-left: 0;
    margin-top: 20px;
  }
}

.article_single03 .article_single03_02 img {
  opacity: 1;
  transition: opacity 0.3s;
}

.article_single03 .article_single03_02 img:hover {
  cursor: pointer;
  opacity: 0.7;
}

.article_single03 .case_arrow {
  position: relative;
}

@media (max-width: 767px) {
  .article_single03 .case_arrow {
    margin-bottom: 10%;
  }
}

.article_single03 .case_arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 108%;
  margin: auto;
  width: 35px;
  height: 35px;
  border-top: 3px solid #1c2081;
  border-right: 3px solid #1c2081;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left top;
  transition: 0.2s;
}

@media (max-width: 767px) {
  .article_single03 .case_arrow:after {
    left: 0;
    right: 0;
    top: 105%;
    width: 20px;
    height: 20px;
    transform: translate(0, -50%) rotate(135deg);
    transform-origin: center;
  }
}

.article_single03 .ofi {
  background: rgba(28, 32, 129, 0.1);
}

.article_single03 .more {
  display: block;
  text-align: center;
}

.article_single04 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article_single04 .article_single04_01_img1 .ofi {
  padding-top: 75%;
}

.article_single04 .article_single04_01_img2 .ofi {
  padding-top: 15%;
}

.article_single04 .article_single04_01_img3 .ofi {
  padding-top: 10.8%;
}

.article_single04 .article_single04_01_img4 .ofi {
  padding-top: 8.4%;
}

.article_single04 .article_single04_01_img5 .ofi {
  padding-top: 6.9%;
}

.article_single04 .article_single04_01_img6 .ofi {
  padding-top: 5.8%;
}

.article_single04 .article_single04_01_nav {
  margin-top: 15px;
}

.article_single04 .article_single04_01_nav .ofi {
  padding-top: 11.1%;
}

.article_single04 .article_single04_01_nav .slick-track {
  width: 100% !important;
  transform: none !important;
  left: 0 !important;
}

.article_single04 .article_single04_01_nav li {
  margin-left: 0.8%;
  width: calc(96% / 6) !important;
}

.article_single04 .article_single04_01_nav li:nth-child(1) {
  margin-left: 0;
}

.article_single04.article_container .article_single04_01_img1 .ofi {
  padding-top: 74.5%;
}

.article_single04.article_container .article_single04_01_img2 .ofi {
  padding-top: 18.7%;
}

.article_single04.article_container .article_single04_01_img3 .ofi {
  padding-top: 14.9%;
}

.article_single04.article_container .article_single04_01_img4 .ofi {
  padding-top: 12.5%;
}

.article_single04.article_container .article_single04_01_img5 .ofi {
  padding-top: 10.7%;
}

.article_single04.article_container .article_single04_01_img6 .ofi {
  padding-top: 9.4%;
}

.article_single04.article_container .article_single04_01_nav {
  margin-top: 15px;
}

.article_single04.article_container .article_single04_01_nav .ofi {
  padding-top: 12%;
}

.article_single04.article_container .article_single04_01_nav .slick-track {
  width: 100% !important;
  transform: none !important;
  left: 0 !important;
}

.article_single04.article_container .article_single04_01_nav li {
  margin-left: 0.8%;
  width: calc(96% / 6) !important;
}

.article_single04.article_container .article_single04_01_nav li:nth-child(1) {
  margin-left: 0;
}

.article_single04 .article_single04_02 {
  margin-top: 10px;
}

.article_single04 .article_single04_02 img {
  opacity: 1;
  transition: opacity 0.3s;
}

.article_single04 .article_single04_02 img:hover {
  cursor: pointer;
  opacity: 0.7;
}

.article_single04 .slick-next,
.article_single04 .slick-prev {
  z-index: 1;
}

.article_single04 .slick-next:before,
.article_single04 .slick-prev:before {
  content: none;
}

.article_single04 .slick-next:after,
.article_single04 .slick-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin: auto;
  width: 35px;
  height: 35px;
  border-top: 3px solid #1c2081;
  transition: 0.2s;
  z-index: 1;
}

.article_single04 .slick-prev {
  left: 0;
}

.article_single04 .slick-prev:after {
  left: 0;
  border-left: 3px solid #1c2081;
  transform: translate(0, -50%) rotate(-45deg);
  transform-origin: right top;
}

.article_single04 .slick-next {
  right: 0;
}

.article_single04 .slick-next:after {
  right: 0;
  border-right: 3px solid #1c2081;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left top;
}

.article_single04 .ofi {
  background: rgba(28, 32, 129, 0.1);
  height: auto !important;
}

.article_single04 .more {
  display: block;
  text-align: center;
}

@media (min-width: 768px) {
  .article_list_case02 .article_list_case02_01 {
    width: 67%;
  }
  .article_list_case02 .article_list_case02_02 {
    width: 31%;
  }
  .article_list_case02.article_single01 .article_single01_02 {
    margin-top: 0;
  }
}

.article_container .article_single01_02 {
  margin-top: 10px;
}

.article_container .article_single01_02 img {
  opacity: 1;
  transition: opacity 0.3s;
}

.article_container .article_single01_02 img:hover {
  cursor: pointer;
  opacity: 0.7;
}

.article_detail {
  margin-bottom: 4%;
  font-size: 1.5rem;
}

.article_detail .post_title {
  text-align: left;
  margin: 40px 0 2em;
  padding: 0 0 .5em !important;
  font-size: 2.4rem;
  border-bottom: #1c2081 solid 2px;
}

@media (max-width: 767px) {
  .article_detail .post_title {
    font-size: 1.9rem;
  }
}

.article_detail .post_title:after {
  content: none;
}

.article_detail .post_title a:hover {
  text-decoration: none;
  color: #1c2081;
}

.article_detail .span_12 {
  margin: 2% 0;
}

.article_detail .post_header > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.article_detail .post_header > div + div {
  margin-top: 10px;
}

.article_detail .post_header .time {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.article_detail .post_header .time:before {
  display: block;
  position: absolute;
  content: '\f044';
  font-family: 'Font Awesome 5 Free';
  line-height: 10px;
  font-size: 16px;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  color: currentColor;
}

.article_detail .post_header .updated {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.article_detail .post_header .updated:before {
  display: block;
  position: absolute;
  content: '\f2f1';
  font-family: 'Font Awesome 5 Free';
  line-height: 10px;
  font-size: 16px;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  color: currentColor;
  font-weight: bold;
}

.article_detail .post_header .category_badge {
  background: #1c2081;
  color: white;
  font-size: 1.4rem;
  display: inline-block;
}

.article_detail .post_header .category_badge a {
  display: block;
  padding: .2em 1em;
  color: white;
  text-decoration: none;
}

.pager {
  overflow: hidden;
  margin-bottom: 5%;
}

.pager .pager_prev {
  float: left;
}

.pager .pager_prev a {
  display: block;
  position: relative;
  padding-left: 20px;
  text-decoration: none;
}

.pager .pager_prev a:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #1c2081;
  border-left: solid 2px #1c2081;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 4px;
  margin-top: -6px;
}

.pager .pager_prev a:hover {
  opacity: 0.8;
}

.pager .pager_next {
  float: right;
}

.pager .pager_next a {
  display: block;
  position: relative;
  padding-right: 20px;
  text-decoration: none;
}

.pager .pager_next a:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #1c2081;
  border-right: solid 2px #1c2081;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -6px;
}

.pager .pager_next a:hover {
  opacity: 0.8;
}

.ofi {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}

.ofi.cover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.ofi > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.lead {
  color: #1c2081;
  font-size: 2rem;
}

.text-xxlarge {
  font-size: 2.4rem;
}

.text-xlarge {
  font-size: 2rem;
}

.text-large {
  font-size: 1.6rem;
}

.text-small {
  font-size: 1.2rem;
}

.text-xsmall {
  font-size: 1rem;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #000 !important;
}

.text-red {
  color: #f00 !important;
}

.text-primary {
  color: #1c2081 !important;
}

@media (max-width: 767px) {
  .sp-hide, .pc-only, .tablet-only {
    display: none !important;
  }
  .sp-text-center {
    text-align: center;
  }
  .sp-text-left {
    text-align: left;
  }
  .sp-text-right {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .lead {
    font-size: 2.8rem;
  }
  .text-xxlarge {
    font-size: 3.6rem;
  }
  .text-xlarge {
    font-size: 2.8rem;
  }
  .text-large {
    font-size: 2rem;
  }
  .text-small {
    font-size: 1.2rem;
  }
  .text-xsmall {
    font-size: 1rem;
  }
  .pc-hide, .sp-only {
    display: none !important;
  }
  .pc-text-center {
    text-align: center;
  }
  .pc-text-left {
    text-align: left;
  }
  .pc-text-right {
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tablet-hide {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .tablet-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .sp-hide02, .pc-only02, .tablet-only02 {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .pc-hide02, .sp-only02 {
    display: none !important;
  }
}

.arial {
  font-family: 'Arial', arial !important;
}

.arial_n {
  font-family: 'Arial Narrow', arial !important;
}

.js-tel a {
  color: currentColor;
  text-decoration: none;
}

@media (min-width: 768px) {
  .js-tel a {
    pointer-events: none;
  }
}

.fs12 {
  font-size: 12px;
}

@media (max-width: 767px) {
  .sp-fs12 {
    font-size: 12px !important;
  }
}

.fs13 {
  font-size: 13px;
}

@media (max-width: 767px) {
  .sp-fs13 {
    font-size: 13px !important;
  }
}

.fs14 {
  font-size: 14px;
}

@media (max-width: 767px) {
  .sp-fs14 {
    font-size: 14px !important;
  }
}

.fs15 {
  font-size: 15px;
}

@media (max-width: 767px) {
  .sp-fs15 {
    font-size: 15px !important;
  }
}

.fs16 {
  font-size: 16px;
}

@media (max-width: 767px) {
  .sp-fs16 {
    font-size: 16px !important;
  }
}

.fs17 {
  font-size: 17px;
}

@media (max-width: 767px) {
  .sp-fs17 {
    font-size: 17px !important;
  }
}

.fs18 {
  font-size: 18px;
}

@media (max-width: 767px) {
  .sp-fs18 {
    font-size: 18px !important;
  }
}

.fs19 {
  font-size: 19px;
}

@media (max-width: 767px) {
  .sp-fs19 {
    font-size: 19px !important;
  }
}

.fs20 {
  font-size: 20px;
}

@media (max-width: 767px) {
  .sp-fs20 {
    font-size: 20px !important;
  }
}

.fs21 {
  font-size: 21px;
}

@media (max-width: 767px) {
  .sp-fs21 {
    font-size: 21px !important;
  }
}

.fs22 {
  font-size: 22px;
}

@media (max-width: 767px) {
  .sp-fs22 {
    font-size: 22px !important;
  }
}

.fs23 {
  font-size: 23px;
}

@media (max-width: 767px) {
  .sp-fs23 {
    font-size: 23px !important;
  }
}

.fs24 {
  font-size: 24px;
}

@media (max-width: 767px) {
  .sp-fs24 {
    font-size: 24px !important;
  }
}

.fs25 {
  font-size: 25px;
}

@media (max-width: 767px) {
  .sp-fs25 {
    font-size: 25px !important;
  }
}

.fs26 {
  font-size: 26px;
}

@media (max-width: 767px) {
  .sp-fs26 {
    font-size: 26px !important;
  }
}

.fs27 {
  font-size: 27px;
}

@media (max-width: 767px) {
  .sp-fs27 {
    font-size: 27px !important;
  }
}

.fs28 {
  font-size: 28px;
}

@media (max-width: 767px) {
  .sp-fs28 {
    font-size: 28px !important;
  }
}

.fs29 {
  font-size: 29px;
}

@media (max-width: 767px) {
  .sp-fs29 {
    font-size: 29px !important;
  }
}

.fs30 {
  font-size: 30px;
}

@media (max-width: 767px) {
  .sp-fs30 {
    font-size: 30px !important;
  }
}

.fs31 {
  font-size: 31px;
}

@media (max-width: 767px) {
  .sp-fs31 {
    font-size: 31px !important;
  }
}

.fs32 {
  font-size: 32px;
}

@media (max-width: 767px) {
  .sp-fs32 {
    font-size: 32px !important;
  }
}

.fs33 {
  font-size: 33px;
}

@media (max-width: 767px) {
  .sp-fs33 {
    font-size: 33px !important;
  }
}

.fs34 {
  font-size: 34px;
}

@media (max-width: 767px) {
  .sp-fs34 {
    font-size: 34px !important;
  }
}

.fs35 {
  font-size: 35px;
}

@media (max-width: 767px) {
  .sp-fs35 {
    font-size: 35px !important;
  }
}

.fs36 {
  font-size: 36px;
}

@media (max-width: 767px) {
  .sp-fs36 {
    font-size: 36px !important;
  }
}

.fs37 {
  font-size: 37px;
}

@media (max-width: 767px) {
  .sp-fs37 {
    font-size: 37px !important;
  }
}

.fs38 {
  font-size: 38px;
}

@media (max-width: 767px) {
  .sp-fs38 {
    font-size: 38px !important;
  }
}

.fs39 {
  font-size: 39px;
}

@media (max-width: 767px) {
  .sp-fs39 {
    font-size: 39px !important;
  }
}

.fs40 {
  font-size: 40px;
}

@media (max-width: 767px) {
  .sp-fs40 {
    font-size: 40px !important;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.m-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.mt-4 {
  margin-top: 4em;
}

.mt-5 {
  margin-top: 5em;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mb-4 {
  margin-bottom: 4em;
}

.mb-5 {
  margin-bottom: 5em;
}

.inverse h2,
.inverse h3,
.inverse h4,
.inverse p {
  color: #fff;
}

.inverse h2:after {
  background: #fff;
}

.inverse h2 small,
.inverse h2 span {
  color: #fff;
}

.image_right {
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .image_right {
    display: inline-block;
    float: right;
    margin-left: 1em;
  }
}

.dsp-home-only {
  display: none;
}

.dsp-under-only {
  display: block;
}

.home .dsp-home-only {
  display: block;
}

.home .dsp-under-only {
  display: none;
}

.targetOffset {
  scroll-margin-top: 80px;
}

@media (max-width: 767px) {
  .targetOffset {
    scroll-margin-top: 50px;
  }
}

.icon-tel:before {
  content: '\f879';
  font-family: 'Font Awesome 5 Free';
  margin-right: 5px;
}

/*ローカルメニュー*/
.localMenu {
  list-style: none;
  display: grid;
  padding: 0;
  gap: 5px 2%;
}

.localMenu.column-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .localMenu.column-2 {
    grid-template-columns: 1fr;
  }
}

.localMenu.column-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
  .localMenu.column-3 {
    grid-template-columns: 1fr;
  }
}

.localMenu li a {
  color: #000;
  text-decoration: none;
  position: relative;
  padding: 0 0 0 20px;
  display: inline-block;
}

.localMenu li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #1c2081;
  position: absolute;
  top: 0.4em;
  left: 0;
}

.localMenu li a:hover {
  color: #1c2081;
  text-decoration: none;
}

html {
  font-size: 2.66667vw;
}

@media (min-width: 768px) {
  html {
    font-size: 0.52083vw;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .globalHeader {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.globalHeader .container {
  max-width: 168rem;
  height: 5rem;
}

@media (min-width: 768px) {
  .globalHeader .container {
    height: 8rem;
    width: calc(100% - 10rem);
  }
}

.globalHeader .container .globalHeader_top {
  width: 7.4rem;
}

@media (min-width: 768px) {
  .globalHeader .container .globalHeader_top {
    width: calc(100% - 3rem);
    flex: 1;
  }
}

@media (max-width: 767px) {
  .globalHeader .container .globalHeader_top {
    margin: 0;
  }
}

.globalHeader .container .globalHeader_top .header_logo {
  display: flex;
  align-items: center;
}

.globalHeader .container .globalHeader_top .header_logo img {
  width: 7.4rem;
  height: 3.7rem;
}

@media (min-width: 768px) {
  .globalHeader .container .globalHeader_top .header_logo img {
    width: 36.5rem;
    height: 4.2rem;
  }
}

.globalHeader .container .globalHeader_top .global_nav {
  width: 100vw;
  top: 5rem;
  height: calc(100dvh - 5rem);
}

@media (min-width: 768px) {
  .globalHeader .container .globalHeader_top .global_nav {
    top: 8rem;
    height: calc(100dvh - 8rem);
    margin-left: calc((100vw - 168rem) / -2);
  }
}

@media (max-width: 767px) {
  .globalHeader .container .globalHeader_top .global_nav {
    margin-left: -1.5rem;
  }
}

.globalHeader .container .globalHeader_top .global_nav > ul {
  width: 100%;
}

@media (min-width: 768px) {
  .globalHeader .container .globalHeader_top .global_nav > ul {
    width: 33rem;
    padding: 0 1.5rem;
  }
}

.globalHeader .container .globalHeader_top .global_nav > ul li:first-child {
  border-top: none;
}

.globalHeader .container .globalHeader_top .global_nav > ul li a {
  font-size: 1.2rem;
  padding-left: 2.8rem;
  position: relative;
}

@media (min-width: 768px) {
  .globalHeader .container .globalHeader_top .global_nav > ul li a {
    font-size: 1.4rem;
  }
}

.globalHeader .container .globalHeader_top .global_nav > ul li a:before {
  content: "";
  position: absolute;
  background: #61ff00;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
}

.globalHeader .container .globalHeader_top .global_nav > ul li a:after {
  width: 0.8rem;
  height: 0.8rem;
  right: 1.8rem;
  border-top: solid 0.2rem #fff;
  border-right: solid 0.2rem #fff;
  transform: rotate(45deg) translateY(-50%);
  margin-top: 0;
}

@media (max-width: 767px) {
  .globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children > a {
    width: calc(100% - 4rem);
  }
}

.globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children > .sub-menu > li {
  text-align: left;
}

.globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children > .sub-menu > li:first-child {
  border-top: white solid 1px;
}

.globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children > .sub-menu > li a {
  background: #494d9a;
  padding-left: 1.5rem;
}

.globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children > .sub-menu > li a:before {
  content: none;
}

.globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children .child-menu-button {
  background: none;
  width: 4rem;
  height: 4rem;
  min-height: 4rem;
}

@media (min-width: 768px) {
  .globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children .child-menu-button {
    height: 5rem;
    min-height: 5rem;
  }
}

.globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children .child-menu-button:before, .globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children .child-menu-button:after {
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  left: 50%;
}

.globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children .child-menu-button:before {
  width: 1.3rem;
  height: 0.2rem;
}

.globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children .child-menu-button:after {
  width: 0.2rem;
  height: 1.3rem;
}

.globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children .child-menu-button.is-open:before, .globalHeader .container .globalHeader_top .global_nav > ul li.menu-item-has-children .child-menu-button.is-open:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.globalHeader .container .hdr_info_wrapper {
  display: block;
  position: static;
}

.globalHeader .container .hdr_info_wrapper .hdr_info_group li {
  margin-left: 0.8rem;
}

.globalHeader .container .hdr_info_wrapper .hdr_info_group li .button, .globalHeader .container .hdr_info_wrapper .hdr_info_group li .inquiry .form_button, .inquiry .globalHeader .container .hdr_info_wrapper .hdr_info_group li .form_button, .globalHeader .container .hdr_info_wrapper .hdr_info_group li #wpcf7cpcnf .wpcf7cp-btns button, #wpcf7cpcnf .wpcf7cp-btns .globalHeader .container .hdr_info_wrapper .hdr_info_group li button {
  width: 9.3rem;
  height: 2.2rem;
  min-width: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c2081;
  font-size: 1.2rem;
  font-weight: bold;
  background: #fff;
  border-radius: 3rem;
}

@media (min-width: 768px) {
  .globalHeader .container .hdr_info_wrapper .hdr_info_group li .button, .globalHeader .container .hdr_info_wrapper .hdr_info_group li .inquiry .form_button, .inquiry .globalHeader .container .hdr_info_wrapper .hdr_info_group li .form_button, .globalHeader .container .hdr_info_wrapper .hdr_info_group li #wpcf7cpcnf .wpcf7cp-btns button, #wpcf7cpcnf .wpcf7cp-btns .globalHeader .container .hdr_info_wrapper .hdr_info_group li button {
    width: 17.1rem;
    height: 3.9rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .globalHeader .container .hdr_info_wrapper .hdr_info_group li .button, .globalHeader .container .hdr_info_wrapper .hdr_info_group li .inquiry .form_button, .inquiry .globalHeader .container .hdr_info_wrapper .hdr_info_group li .form_button, .globalHeader .container .hdr_info_wrapper .hdr_info_group li #wpcf7cpcnf .wpcf7cp-btns button, #wpcf7cpcnf .wpcf7cp-btns .globalHeader .container .hdr_info_wrapper .hdr_info_group li button {
    padding: 0.6rem 0 0.4rem;
  }
}

.globalHeader .container .hdr_info_wrapper .hdr_info_group li .button:hover, .globalHeader .container .hdr_info_wrapper .hdr_info_group li .inquiry .form_button:hover, .inquiry .globalHeader .container .hdr_info_wrapper .hdr_info_group li .form_button:hover, .globalHeader .container .hdr_info_wrapper .hdr_info_group li #wpcf7cpcnf .wpcf7cp-btns button:hover, #wpcf7cpcnf .wpcf7cp-btns .globalHeader .container .hdr_info_wrapper .hdr_info_group li button:hover {
  opacity: 0.8;
}

.globalHeader .container .hdr_info_wrapper .hdr_info_group li.menu-item-has-children {
  position: relative;
}

.globalHeader .container .hdr_info_wrapper .hdr_info_group li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 4rem;
  left: 50%;
  margin: 0;
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  min-width: 16rem;
  transform: translateX(-50%);
  display: none;
}

@media (min-width: 768px) {
  .globalHeader .container .hdr_info_wrapper .hdr_info_group li.menu-item-has-children .sub-menu {
    min-width: 20rem;
    top: 5rem;
    padding: 2rem;
    border-radius: 1rem;
  }
}

.globalHeader .container .hdr_info_wrapper .hdr_info_group li.menu-item-has-children .sub-menu:after {
  content: "";
  position: absolute;
  background: #fff;
  width: 3rem;
  height: 2rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.globalHeader .container .hdr_info_wrapper .hdr_info_group li.menu-item-has-children .sub-menu li a {
  text-align: left;
  background: transparent;
  padding: 0.4rem 0;
  display: block;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .globalHeader .container .hdr_info_wrapper .hdr_info_group li.menu-item-has-children .sub-menu li a {
    font-size: 1.6rem;
  }
}

.globalHeader .container .hdr_info_wrapper .hdr_info_group li.menu-item-has-children.active .sub-menu {
  display: block;
}

.globalHeader .container #headerToggle {
  display: block;
  position: static;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: url(/wordpress/wp-content/uploads/ham_close.png) no-repeat center center/cover;
  transition: 0.2s;
  transform: none;
}

@media (min-width: 768px) {
  .globalHeader .container #headerToggle {
    width: 5rem;
    height: 5rem;
  }
}

.globalHeader .container #headerToggle.active {
  background: url(/wordpress/wp-content/uploads/ham_open.png) no-repeat center center/cover;
}

.globalHeader .container #headerToggle:after {
  content: none;
}

.contents {
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .contents {
    margin-top: 8rem;
  }
}

.container {
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    max-width: 168rem;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .container_wide {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .container_wide {
    max-width: 100%;
  }
}

.top_sec {
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .top_sec {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.c-sec {
  color: #61ff00;
}

body.home .main {
  background: #1c2081;
}

.top_fv {
  padding-top: 2.8rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .top_fv {
    padding-top: 4rem;
  }
}

.top_fv .top_fv_txt {
  margin-bottom: 7rem;
  position: relative;
}

@media (min-width: 768px) {
  .top_fv .top_fv_txt {
    margin-bottom: 7.5rem;
  }
}

.top_fv .top_fv_txt .img.ab {
  position: absolute;
  width: 34.5rem;
  height: 17.6rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .top_fv .top_fv_txt .img.ab {
    width: 178rem;
    height: 55.6rem;
  }
}

.top_fv .top_fv_txt p {
  color: #fff;
  font-family: "Zen Antique", serif;
  text-align: center;
  line-height: 1;
  margin-top: 0;
}

.top_fv .top_fv_txt p.has_bd {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2.4rem;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  position: relative;
}

@media (min-width: 768px) {
  .top_fv .top_fv_txt p.has_bd {
    margin: 0 auto 6.5rem;
    font-size: 4.6rem;
  }
}

.top_fv .top_fv_txt p.has_bd:before, .top_fv .top_fv_txt p.has_bd:after {
  content: "";
  position: absolute;
  width: 5.8rem;
  height: 0.1rem;
  background: #fff;
  top: 50%;
}

@media (min-width: 768px) {
  .top_fv .top_fv_txt p.has_bd:before, .top_fv .top_fv_txt p.has_bd:after {
    width: 42.9rem;
    height: 0.2rem;
  }
}

.top_fv .top_fv_txt p.has_bd:before {
  left: -1rem;
  transform: translate(-100%, -50%);
}

@media (min-width: 768px) {
  .top_fv .top_fv_txt p.has_bd:before {
    left: -3.5rem;
  }
}

.top_fv .top_fv_txt p.has_bd:after {
  right: -1rem;
  transform: translate(100%, -50%);
}

@media (min-width: 768px) {
  .top_fv .top_fv_txt p.has_bd:after {
    right: -3.5rem;
  }
}

.top_fv .top_fv_txt p.large {
  font-size: 4.8rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .top_fv .top_fv_txt p.large {
    font-size: 13.8rem;
    margin-bottom: 4rem;
  }
}

.top_fv .top_fv_txt p.x-large {
  font-size: 7.2rem;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .top_fv .top_fv_txt p.x-large {
    font-size: 29.5rem;
  }
}

.top_fv .top_fv_txt p.x-large .ls {
  letter-spacing: -0.2em;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .top_fv .top_fv_txt p.x-large .ls {
    padding-right: 6rem;
  }
}

.top_fv .fv_slider {
  position: relative;
  padding-bottom: 22.4rem;
}

@media (min-width: 768px) {
  .top_fv .fv_slider {
    padding-bottom: 21.9rem;
  }
}

.top_fv .fv_slider .sa.show {
  position: absolute;
}

.top_fv .fv_slider .l_slider {
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  --speed: 500s;
  --gap: 0.6rem;
}

@media (min-width: 768px) {
  .top_fv .fv_slider .l_slider {
    --gap: 1.7rem;
  }
}

.top_fv .fv_slider .l_slider .l_slider_item {
  animation: loop2 var(--speed) linear infinite;
  display: flex;
  width: auto;
  gap: var(--gap);
  padding: 0 calc(var(--gap) / 2);
}

.top_fv .fv_slider .l_slider .l_slider_item:first-child {
  animation: loop var(--speed) calc(-1 * var(--speed) / 2) linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}

.top_fv .fv_slider .l_slider .l_slider_item figure {
  width: 75rem;
  overflow: hidden;
  aspect-ratio: 1502 / 219;
}

@media (min-width: 768px) {
  .top_fv .fv_slider .l_slider .l_slider_item figure {
    width: 150rem;
  }
}

.top_fv .fv_slider .l_slider .l_slider_item figure img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: visible;
}

.top_fv .fv_slider .l_slider .l_slider_item .oft {
  position: relative;
  aspect-ratio: 1502 / 219;
  display: block;
}

.top_fv .fv_slider .l_slider.right {
  top: 12rem;
}

.top_fv .fv_slider .l_slider.right .l_slider_item {
  animation: loop4 var(--speed) linear infinite;
}

.top_fv .fv_slider .l_slider.right .l_slider_item:first-child {
  animation: loop3 var(--speed) calc(-1 * var(--speed) / 2) linear infinite;
}

.sec02 {
  background: url(/wordpress/wp-content/uploads/sp_top_sec02_bg.png) no-repeat center 4rem/100%;
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .sec02 {
    background: url(/wordpress/wp-content/uploads/top_sec02_bg.png) no-repeat 8rem 7.4rem/90%;
  }
}

@media (max-width: 767px) {
  .sec02 {
    padding-top: 4rem;
  }
}

.sec02 .concept .txt p {
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 2.4;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (min-width: 768px) {
  .sec02 .concept .txt p {
    font-size: 2.4rem;
  }
}

.sec02 .concept .txt p:not(:last-child) {
  margin-bottom: 4rem;
}

.sec02 .concept .txt p.large {
  font-family: "Zen Antique", serif;
  font-size: 3.4rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .sec02 .concept .txt p.large {
    font-size: 9.8rem;
  }
}

@media (max-width: 767px) {
  .sec02 .concept .txt p.large {
    letter-spacing: 0;
  }
}

.sec02 .concept .txt p.large .x-large {
  font-size: 6rem;
}

@media (min-width: 768px) {
  .sec02 .concept .txt p.large .x-large {
    font-size: 16rem;
  }
}

@media (max-width: 767px) {
  .sec02 .concept .txt p.large .x-large {
    white-space: nowrap;
  }
}

.sec02 .concept .txt p.large .x-large .ls {
  letter-spacing: -0.2em;
  padding-right: 1.2rem;
}

@media (min-width: 768px) {
  .sec02 .concept .txt p.large .x-large .ls {
    letter-spacing: -0.1em;
    padding-right: 2rem;
  }
}

.sec02 .ab {
  position: absolute;
  z-index: 3;
}

.sec02 .ab.img01 {
  width: 35.1rem;
  height: 53rem;
  top: -10rem;
  right: 0;
}

.sec02 .ab.img02 {
  width: 37.2rem;
  height: 61.5rem;
  top: 43.5rem;
  left: 8rem;
}

.sec02 .ab.img03 {
  width: 22.2rem;
  height: 20.8rem;
  bottom: 2.2rem;
  right: 0;
}

@media (min-width: 768px) {
  .sec02 .ab.img03 {
    width: 60rem;
    height: 75.2rem;
    bottom: 3.1rem;
  }
}

.sec02 .sec02_slider {
  position: relative;
  background: #fff;
  padding-bottom: 3rem;
  margin-top: 22rem;
}

@media (min-width: 768px) {
  .sec02 .sec02_slider {
    padding-bottom: 6.5rem;
    margin-top: 13.7rem;
  }
}

.sec02 .sec02_slider .sa.show {
  position: absolute;
}

.sec02 .sec02_slider .l_slider {
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  --speed: 100s;
  --gap: 1.6rem;
}

@media (min-width: 768px) {
  .sec02 .sec02_slider .l_slider {
    --gap: 1rem;
  }
}

.sec02 .sec02_slider .l_slider .l_slider_item {
  animation: loop2 var(--speed) linear infinite;
  display: flex;
  width: auto;
  gap: var(--gap);
  padding: 0 calc(var(--gap) / 2);
}

.sec02 .sec02_slider .l_slider .l_slider_item:first-child {
  animation: loop var(--speed) calc(-1 * var(--speed) / 2) linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}

.sec02 .sec02_slider .l_slider .l_slider_item .oft {
  position: relative;
  display: block;
  white-space: nowrap;
  margin-bottom: 0;
  margin-top: 0;
  font-family: "Zen Antique", serif;
  font-size: 1.6rem;
  color: #1c2081;
}

@media (min-width: 768px) {
  .sec02 .sec02_slider .l_slider .l_slider_item .oft {
    font-size: 3.6rem;
  }
}

@media (max-width: 767px) {
  .sec02 .sec02_slider .l_slider .l_slider_item .oft {
    padding-top: 0.2rem;
  }
}

.sec03 {
  background: url(/wordpress/wp-content/uploads/sp_top_sec03_bg.png) no-repeat center 55rem/100%;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .sec03 {
    background: url(/wordpress/wp-content/uploads/top_sec03_bg.png) no-repeat center 85.5rem/100%;
  }
}

@media (max-width: 767px) {
  .sec03 {
    padding-top: 5rem;
  }
}

@media (min-width: 768px) {
  .sec03 .container {
    max-width: 130rem;
  }
}

.sec03 .diagnosis .diagnosis_head {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .sec03 .diagnosis .diagnosis_head {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}

.sec03 .diagnosis .diagnosis_head .img {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_head .img {
    width: calc(100% - 83rem);
  }
}

.sec03 .diagnosis .diagnosis_head .img img {
  width: 25.3rem;
  height: 18.5rem;
  max-width: unset;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_head .img img {
    width: 55.5rem;
    height: 53.4rem;
  }
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_head .txt {
    width: 83rem;
  }
}

.sec03 .diagnosis .diagnosis_head .txt h2 {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3.2rem;
  color: #fff;
  margin-top: 0;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_head .txt h2 {
    font-size: 7.8rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .sec03 .diagnosis .diagnosis_head .txt h2 {
    text-align: center;
    letter-spacing: 0;
    line-height: 1.2;
  }
}

.sec03 .diagnosis .diagnosis_head .txt .en {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fff;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_head .txt .en {
    font-size: 4.8rem;
  }
}

@media (max-width: 767px) {
  .sec03 .diagnosis .diagnosis_head .txt .en {
    text-align: center;
  }
}

.sec03 .diagnosis .diagnosis_checklist ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_checklist ul {
    margin-bottom: 7.8rem;
  }
}

.sec03 .diagnosis .diagnosis_checklist ul li {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1.6rem 0.8rem 3.4rem;
  border: 1px solid #fff;
  letter-spacing: 0.08em;
  background: #1c2081;
  position: relative;
  transition: 0.2s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_checklist ul li {
    font-size: 2rem;
    padding: 2.4rem 3.6rem 2.4rem 8rem;
  }
}

.sec03 .diagnosis .diagnosis_checklist ul li:not(:last-child) {
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_checklist ul li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.sec03 .diagnosis .diagnosis_checklist ul li:before {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid #fff;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_checklist ul li:before {
    width: 2rem;
    height: 2rem;
    left: 3.8rem;
  }
}

.sec03 .diagnosis .diagnosis_checklist ul li:hover {
  background: #fff;
  color: #1c2081;
}

.sec03 .diagnosis .diagnosis_checklist ul li:hover:before {
  border-color: #1c2081;
}

.sec03 .diagnosis .diagnosis_checklist ul li.active:after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.5rem;
  border-bottom: 0.2rem solid #61ff00;
  border-left: 0.2rem solid #61ff00;
  transform: rotate(-45deg) translateY(-50%);
  top: 42%;
  left: 1.6rem;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_checklist ul li.active:after {
    width: 2rem;
    height: 1rem;
    border-bottom: 0.3rem solid #61ff00;
    border-left: 0.3rem solid #61ff00;
    left: 4.3rem;
  }
}

.sec03 .diagnosis .diagnosis_checklist .btn p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2.4rem;
  color: #fff;
  font-size: 2rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  padding-left: 3.5rem;
  padding-right: 1rem;
  position: relative;
  border-bottom: 1px solid #fff;
  transition: 0.2s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_checklist .btn p {
    margin: 0 auto 6rem;
    font-size: 6rem;
    padding-left: 9rem;
    padding-right: 2rem;
  }
}

.sec03 .diagnosis .diagnosis_checklist .btn p:before {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/top_sec03_arrow.png) no-repeat center center/cover;
  width: 1.7rem;
  height: 2.58rem;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .sec03 .diagnosis .diagnosis_checklist .btn p:before {
    width: 4.4rem;
    height: 6.6rem;
    left: 2rem;
  }
}

.sec03 .diagnosis .diagnosis_checklist .btn p:hover {
  opacity: 0.8;
  border-color: #61ff00;
}

.sec03 .diagnosis_result {
  background: #0c0e4b;
}

.sec03 .diagnosis_result .result {
  display: none;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .sec03 .diagnosis_result .result {
    padding-top: 6rem;
    padding-bottom: 6rem;
    width: 126rem;
  }
}

.sec03 .diagnosis_result .result .circle {
  text-align: center;
  position: relative;
}

.sec03 .diagnosis_result .result .circle .num {
  position: absolute;
  color: #61ff00;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .sec03 .diagnosis_result .result .circle .num {
    font-size: 9rem;
  }
}

@media (max-width: 767px) {
  .sec03 .diagnosis_result .result .circle svg {
    width: 14rem;
    height: 14rem;
  }
}

.sec03 .diagnosis_result .result .head {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  color: #61ff00;
  font-size: 2.4rem;
  text-align: center;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .sec03 .diagnosis_result .result .head {
    font-size: 6rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
  }
}

.sec03 .diagnosis_result .result .cnt {
  text-align: center;
  color: #fff;
  line-height: 2;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .sec03 .diagnosis_result .result .cnt {
    font-size: 2rem;
  }
}

.sec03 .diagnosis_result .result .result_btn a {
	display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 0.2rem solid #1c2081;
    width: 22rem;
    height: 5.6rem;
    color: #1c2081;
    font-family: "Zen Antique", serif;
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
    position: relative;
	margin: 0 auto;
}
.sec03 .diagnosis_result .result .result_btn a:after {
	content: "";
    position: absolute;
    background: url(/wordpress/wp-content/uploads/arrow_pri.png) no-repeat center center / cover;
    width: 1.8rem;
    height: 1.8rem;
    top: 50%;
    right: 2.2rem;
    transform: translateY(-50%);
    transition: 0.2s;
}

@media (min-width: 768px) {
	.sec03 .diagnosis_result .result .result_btn a {
		width: 40rem;
    	height: 12rem;
		font-size: 3rem;
	}
	.sec03 .diagnosis_result .result .result_btn a:after {
		width: 3.2rem;
		height: 3.2rem;
		right: 3.2rem;
	}
}

.sec03 .diagnosis_result .result.active {
  display: block;
}

.sec03 .diagnosis_result .result.result00 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .sec03 .diagnosis_result .result.result00 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
}

.sec03 .diagnosis_result .result.result00 .num {
  font-size: 4.6rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  text-align: center;
  color: #61ff00;
}

@media (min-width: 768px) {
  .sec03 .diagnosis_result .result.result00 .num {
    font-size: 12rem;
  }
}

/* SVG path animation: hide all paths initially and fade in one by one */
.circle svg path {
  opacity: 0;
  transition: opacity 0.2s;
}

.sec04 {
  position: relative;
  --bg-y-pos: 0px;
}

.sec04:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 37.5rem;
  height: 100%;
  background-image: url(/wordpress/wp-content/uploads/top_sec04_bg.png);
  background-position: center var(--bg-y-pos);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (min-width: 768px) {
  .sec04:before {
    width: 192rem;
    top: 0;
  }
}

.sec04 .project {
  margin-top: 8.2rem;
}

@media (min-width: 768px) {
  .sec04 .project {
    margin-top: 37rem;
  }
}

.sec04 .project .project_head {
  text-align: center;
  color: #fff;
  position: relative;
}

.sec04 .project .project_head h2 {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3.2rem;
  margin-top: 0;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .sec04 .project .project_head h2 {
    font-size: 7.4rem;
    margin-bottom: 4rem;
  }
}

.sec04 .project .project_head p {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .sec04 .project .project_head p {
    font-size: 2rem;
  }
}

.sec04 .project .project_head .ab {
  position: absolute;
  width: 13.2rem;
  height: 17.1rem;
  bottom: -49rem;
  left: -2rem;
}

@media (min-width: 768px) {
  .sec04 .project .project_head .ab {
    width: 38.1rem;
    height: 42.6rem;
    bottom: auto;
    top: -13rem;
    left: -1rem;
  }
}

.sec04 .project .project_graph {
  padding-top: 4rem;
  padding-bottom: 5.3rem;
}

@media (min-width: 768px) {
  .sec04 .project .project_graph {
    padding-top: 6.2rem;
    padding-bottom: 13rem;
  }
}

.sec04 .project .project_graph .graph {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sec04 .project .project_graph .graph {
    width: 107rem;
    height: 107rem;
  }
}

.sec04 .project .project_bnr {
  width: 28.4rem;
  height: 7.6rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sec04 .project .project_bnr {
    width: 100rem;
    height: 27rem;
  }
}

@media (max-width: 767px) {
  .sec04 .project .project_bnr {
    z-index: 2;
    position: relative;
  }
}

.sec05 {
  background: #0c0e4b;
  position: relative;
}

@media (max-width: 767px) {
  .sec05 {
    padding-bottom: 0;
  }
}

.sec05:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/top_sec05_arrow.png) no-repeat center center/contain;
  width: 6.6rem;
  height: 6.6rem;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 2;
}

@media (min-width: 768px) {
  .sec05:after {
    width: 11rem;
    height: 11rem;
  }
}

.sec05 .feature .feature_head {
  position: relative;
  z-index: 3;
}

.sec05 .feature .feature_head h2 {
  text-align: center;
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3.4rem;
  margin-top: 0;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .sec05 .feature .feature_head h2 {
    font-size: 10rem;
    margin-bottom: 6rem;
  }
}

.sec05 .feature .feature_head h2 .small {
  display: block;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .sec05 .feature .feature_head h2 .small {
    font-size: 6rem;
  }
}

.sec05 .feature .feature_cnt {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .sec05 .feature .feature_cnt {
    padding-bottom: 26rem;
  }
}

@media (min-width: 768px) {
  .sec05 .feature .feature_cnt .feature_cnt_list {
    width: 132rem;
  }
}

.sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item {
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
  position: relative;
}

@media (min-width: 768px) {
  .sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item {
    padding-top: 3.7rem;
    padding-bottom: 3.7rem;
    padding-left: 15.4rem;
  }
}

.sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item:before {
  position: absolute;
  width: 12.4rem;
  height: 12.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 6rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  line-height: 1;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item:before {
    content: "超";
  }
}

.sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #61ff00;
  font-size: 2rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item h3 {
    font-size: 4rem;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 767px) {
  .sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item h3 {
    letter-spacing: 0;
  }
}

.sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item p {
    font-size: 2rem;
  }
}

.sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item:not(:last-child) {
  border-bottom: 0.2rem solid #a4a6cd;
}

@media (min-width: 768px) {
  .sec05 .feature .feature_cnt .feature_cnt_list .feature_cnt_list_item:not(:last-child) {
    border-bottom: 0.3rem solid #a4a6cd;
  }
}

.sec05 .feature .feature_cnt .feature_cnt_img {
  position: absolute;
  bottom: 0;
  right: 5.3rem;
  z-index: -1;
}

@media (min-width: 768px) {
  .sec05 .feature .feature_cnt .feature_cnt_img {
    bottom: -12rem;
    right: -4rem;
  }
}

.sec05 .feature .feature_cnt .feature_cnt_img .img {
  width: 27rem;
  height: 25.1rem;
}

@media (min-width: 768px) {
  .sec05 .feature .feature_cnt .feature_cnt_img .img {
    width: 45.5rem;
    height: 94rem;
  }
}

.sec06 h2 {
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3.4rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .sec06 h2 {
    font-size: 10rem;
    margin-bottom: 6rem;
  }
}

.sec06 .job_bnr {
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .sec06 .job_bnr {
    margin-bottom: 10rem;
  }
}

.sec06 .job_bnr .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sec06 .job_bnr .col {
    gap: 3rem;
  }
}

.sec06 .job_bnr .job_bnr_item a {
  width: 34.5rem;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #fff;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

@media (min-width: 768px) {
  .sec06 .job_bnr .job_bnr_item a {
    width: 110rem;
    height: 30rem;
    border: 0.2rem solid #fff;
  }
}

.sec06 .job_bnr .job_bnr_item a:before {
  content: "超";
  position: absolute;
  width: 5.7rem;
  height: 5.7rem;
  color: #61ff00;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3.45rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 2.5rem;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .sec06 .job_bnr .job_bnr_item a:before {
    width: 22rem;
    height: 22rem;
    font-size: 13rem;
    border: 0.2rem solid #fff;
    left: 12.8rem;
  }
}

.sec06 .job_bnr .job_bnr_item a .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.sec06 .job_bnr .job_bnr_item a .img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(28, 32, 129, 0.6);
  top: 0;
  left: 0;
}

.sec06 .job_bnr .job_bnr_item a .txt {
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 2.4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .sec06 .job_bnr .job_bnr_item a .txt {
    font-size: 7rem;
  }
}

.sec06 .job_bnr .job_bnr_item a .txt .en {
  display: block;
  color: #61ff00;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .sec06 .job_bnr .job_bnr_item a .txt .en {
    font-size: 3rem;
  }
}

.sec06 .p-content_Slide {
  overflow: visible;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .sec06 .p-content_Slide {
    margin-bottom: 8rem;
  }
}

.sec06 .btn_wrap .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  background: #fff;
  width: 27rem;
  height: 4.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem;
  padding-right: 4.1rem;
  position: relative;
}

@media (min-width: 768px) {
  .sec06 .btn_wrap .btn {
    width: 43.6rem;
    height: 6.9rem;
    font-size: 2.4rem;
    padding-right: 5.6rem;
  }
}

.sec06 .btn_wrap .btn:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/arrow_st.png) no-repeat center center/cover;
  width: 1.7rem;
  height: 1.5rem;
  top: 50%;
  right: 7.1rem;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .sec06 .btn_wrap .btn:after {
    width: 2.7rem;
    height: 2.5rem;
    right: 10.5rem;
  }
}

.sec06 .btn_wrap .btn:hover {
  opacity: 0.8;
}

.sec06 .btn_wrap .btn:hover:after {
  right: 10rem;
}

.job_interview_slide .splide__slide .slide {
  position: relative;
}

.job_interview_slide .splide__slide .slide > a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: transparent;
}

.job_interview_slide .splide__slide .slide .slide-media {
	vertical-align: bottom;
    background-image: radial-gradient(#f7f9ff, #dbe2ee);
	height: 60rem;
}

@media (max-width: 767px) {
  .job_interview_slide .splide__slide .slide .slide-media {
    margin: 0 1.5rem;
	height: 35rem;
  }
}

.job_interview_slide .splide__slide .slide .slide-content {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: end;
  width: 100%;
  font-family: "Zen Antique", serif;
  font-weight: 400;
}

.job_interview_slide .splide__slide .slide .slide-content .txt {
  background: #1c2081;
  color: #fff;
  width: 24.8rem;
  padding: 2rem;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__slide .slide .slide-content .txt {
    width: 30.2rem;
    padding: 3rem;
  }
}

.job_interview_slide .splide__slide .slide .slide-content .txt .job {
  font-size: 2rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__slide .slide .slide-content .txt .job {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .job_interview_slide .splide__slide .slide .slide-content .txt .job {
    line-height: 1;
  }
}

.job_interview_slide .splide__slide .slide .slide-content .txt .join {
  color: #61ff00;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__slide .slide .slide-content .txt .join {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
}

.job_interview_slide .splide__slide .slide .slide-content .txt .name {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__slide .slide .slide-content .txt .name {
    font-size: 4rem;
  }
}

.job_interview_slide .splide__slide .slide .slide-content .more {
  background: #fff;
  color: #1c2081;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__slide .slide .slide-content .more {
    width: calc(100% - 30.2rem);
  }
}

@media (max-width: 767px) {
  .job_interview_slide .splide__slide .slide .slide-content .more {
    position: absolute;
    width: 11.6rem;
    bottom: 0;
    right: 1.5rem;
  }
}

.job_interview_slide .splide__slide .slide .slide-content .more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5rem;
  text-decoration: none;
  font-size: 1.8rem;
  padding-right: 3.6rem;
  position: relative;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__slide .slide .slide-content .more a {
    height: 6.5rem;
    font-size: 2.4rem;
    padding-right: 5.5rem;
  }
}

.job_interview_slide .splide__slide .slide .slide-content .more a:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/arrow_pri.png) no-repeat center center/cover;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__slide .slide .slide-content .more a:after {
    width: 3.2rem;
    height: 3.2rem;
    right: 5.5rem;
  }
}

.job_interview_slide .splide__slide .slide:hover .slide-content .more a {
  background: #1c2081;
  color: #fff;
}

.job_interview_slide .splide__slide .slide:hover .slide-content .more a:after {
  border: 1px solid #fff;
  border-radius: 50%;
}

.job_interview_slide .splide__arrows {
  display: block !important;
}

.job_interview_slide .splide__arrows .splide__arrow {
  width: 5rem;
  height: 5rem;
  background: #61ff00;
  border-radius: 50%;
  opacity: 1;
  transition: 0.2s;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__arrows .splide__arrow {
    width: 11rem;
    height: 11rem;
  }
}

.job_interview_slide .splide__arrows .splide__arrow:after {
  content: "";
  position: absolute;
  background: #1c2081;
  width: 1rem;
  height: 1.6rem;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .job_interview_slide .splide__arrows .splide__arrow:after {
    width: 1.8rem;
    height: 2.8rem;
  }
}

.job_interview_slide .splide__arrows .splide__arrow svg {
  display: none;
}

.job_interview_slide .splide__arrows .splide__arrow--prev {
  left: 0;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__arrows .splide__arrow--prev {
    left: -5rem;
  }
}

.job_interview_slide .splide__arrows .splide__arrow--prev:after {
  left: 45%;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__arrows .splide__arrow--prev:after {
    left: 48%;
  }
}

.job_interview_slide .splide__arrows .splide__arrow--next {
  right: 0;
}

@media (min-width: 768px) {
  .job_interview_slide .splide__arrows .splide__arrow--next {
    right: -5rem;
  }
}

.job_interview_slide .splide__arrows .splide__arrow--next:after {
  left: 55%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media (min-width: 768px) {
  .job_interview_slide .splide__arrows .splide__arrow--next:after {
    left: 52%;
  }
}

.job_interview_slide .splide__arrows .splide__arrow:hover {
  opacity: 0.6;
}

.sec07 {
  padding: 0;
}

.sec07 .info_bnr {
  transition: 0.2s;
}

.sec07 .info_bnr > a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.sec07 .info_bnr .info_bnr_head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  margin-bottom: 2.8rem;
}

@media (min-width: 768px) {
  .sec07 .info_bnr .info_bnr_head {
    gap: 4.6rem;
    margin-bottom: 7.6rem;
  }
}

.sec07 .info_bnr .info_bnr_head .main {
  color: #fff;
  font-size: 6rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  background: transparent;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .sec07 .info_bnr .info_bnr_head .main {
    font-size: 20rem;
  }
}

@media (max-width: 767px) {
  .sec07 .info_bnr .info_bnr_head .main {
    -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 12rem;
    letter-spacing: 0.1em;
  }
}

.sec07 .info_bnr .info_bnr_head .main .en {
  display: block;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .sec07 .info_bnr .info_bnr_head .main .en {
    font-size: 6rem;
  }
}

@media (max-width: 767px) {
  .sec07 .info_bnr .info_bnr_head .main .en {
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    letter-spacing: 0.03em;
  }
}

.sec07 .info_bnr .info_bnr_head .and {
  background: #61ff00;
  color: #1c2081;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0;
  padding-bottom: 0.1em;
}

@media (min-width: 768px) {
  .sec07 .info_bnr .info_bnr_head .and {
    font-size: 10rem;
    width: 16rem;
    height: 16rem;
  }
}

.sec07 .info_bnr .sub {
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2.9rem;
}

@media (min-width: 768px) {
  .sec07 .info_bnr .sub {
    font-size: 3rem;
    margin-bottom: 6.4rem;
  }
}

.sec07 .info_bnr .sq {
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  text-align: center;
  font-size: 1.6rem;
  border: 0.1rem solid #fff;
  width: 16.3rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sec07 .info_bnr .sq {
    font-size: 4.1rem;
    border: 0.2rem solid #fff;
    width: 33.3rem;
    height: 7rem;
  }
}

.sec07 .info_bnr:hover {
  filter: brightness(1.2);
}

.sec08 h2 {
  text-align: center;
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3.4rem;
  margin-top: 0;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .sec08 h2 {
    font-size: 10rem;
    margin-bottom: 6rem;
  }
}

.sec08 .faq {
  border-bottom: 0.1rem solid #fff;
}

@media (min-width: 768px) {
  .sec08 .faq {
    border-bottom: 0.2rem solid #fff;
  }
}

.sec08 .faq .question {
  color: #fff;
  font-size: 1.2rem;
  padding: 1.8rem 0;
  border-top: 0.1rem solid #fff;
  font-weight: bold;
}

@media (min-width: 768px) {
  .sec08 .faq .question {
    font-size: 2.4rem;
    padding: 5rem 6rem 5rem 2rem;
    border-top: 0.2rem solid #fff;
  }
}

.sec08 .faq .question:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.1rem;
  height: 0.1rem;
  right: 1rem;
  background: #fff;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .sec08 .faq .question:before {
    right: 4rem;
    width: 2.1rem;
    height: 0.2rem;
  }
}

.sec08 .faq .question:after {
  top: 50%;
  right: 1.5rem;
  width: 0.1rem;
  height: 1.1rem;
  background: #fff;
  margin-top: 0;
  transform: translateY(-50%);
  transition: 0.4s;
}

@media (min-width: 768px) {
  .sec08 .faq .question:after {
    right: 5rem;
    width: 0.2rem;
    height: 2.1rem;
  }
}

.sec08 .faq .question:not(:first-child) {
  margin-top: 0 !important;
}

.sec08 .faq .question.open:after {
  transform: translateY(-50%) rotate(90deg);
}

.sec08 .faq .answer {
  padding: 0 0 1.8rem;
}

@media (min-width: 768px) {
  .sec08 .faq .answer {
    padding: 0 5rem 5rem 2rem;
  }
}

.sec08 .faq .answer p {
  color: #61ff00;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .sec08 .faq .answer p {
    font-size: 2.4rem;
  }
}

.sec09 {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0 !important;
}

.sec09 h2 {
  text-align: center;
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3.4rem;
  margin-top: 0;
  margin-bottom: 3rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .sec09 h2 {
    font-size: 10rem;
    margin-bottom: 8rem;
  }
}

.sec09 .message {
  gap: 4rem;
  align-items: start;
}

@media (min-width: 768px) {
  .sec09 .message .message_txt {
    width: 101rem;
  }
}

.sec09 .message .message_txt p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .sec09 .message .message_txt p {
    font-size: 2.4rem;
  }
}

@media (min-width: 768px) {
  .sec09 .message .message_img {
    width: calc(100% - 105rem);
  }
}

.sec09 .message .message_img .img {
  width: 34.6rem;
  height: 39.7rem;
}

@media (min-width: 768px) {
  .sec09 .message .message_img .img {
    width: 61rem;
    height: 81.6rem;
  }
}

.footer_top {
  background: url(/wordpress/wp-content/uploads/sp_footer_top_bg.jpg) no-repeat center center/cover;
  padding-top: 4.4rem;
  padding-bottom: 5.3rem;
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .footer_top {
    padding-top: 7.6rem;
    padding-bottom: 7.6rem;
    background: url(/wordpress/wp-content/uploads/footer_top_bg.jpg) no-repeat center center/cover;
  }
}

.footer_top .footer_top_cnt {
  text-align: center;
}

.footer_top .footer_top_cnt h2 {
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 2.8rem;
  margin-top: 0;
  margin-bottom: 4rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .footer_top .footer_top_cnt h2 {
    font-size: 4rem;
  }
}

.footer_top .footer_top_cnt h2 .en {
  display: block;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .footer_top .footer_top_cnt h2 .en {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .footer_top .footer_top_cnt h2 .en {
    margin-top: 0.6rem;
  }
}

.footer_top .footer_top_cnt .btn_flex {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

@media (max-width: 767px) {
  .footer_top .footer_top_cnt .btn_flex {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

.footer_top .footer_top_cnt .btn_flex .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0.2rem solid #1c2081;
  width: 22rem;
  height: 5.6rem;
  color: #1c2081;
  font-family: "Zen Antique", serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

@media (min-width: 768px) {
  .footer_top .footer_top_cnt .btn_flex .btn {
    width: 40rem;
    height: 12rem;
    font-size: 3rem;
  }
}

.footer_top .footer_top_cnt .btn_flex .btn:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/arrow_pri.png) no-repeat center center/cover;
  width: 1.8rem;
  height: 1.8rem;
  top: 50%;
  right: 1.9rem;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .footer_top .footer_top_cnt .btn_flex .btn:after {
    width: 3.2rem;
    height: 3.2rem;
    right: 3.2rem;
  }
}

.footer_top .footer_top_cnt .btn_flex .btn:hover {
  opacity: 0.8;
}

.footer_top .footer_top_cnt .btn_flex .btn:hover:after {
  right: 1.7rem;
}

@media (min-width: 768px) {
  .footer_top .footer_top_cnt .btn_flex .btn:hover:after {
    right: 2.8rem;
  }
}

.globalFooter {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .globalFooter {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
}

.globalFooter .footer_wrap {
  justify-content: space-between;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap {
    margin-bottom: 6rem;
  }
}

@media (max-width: 767px) {
  .globalFooter .footer_wrap .footer_info {
    margin-bottom: 4rem !important;
  }
}

.globalFooter .footer_wrap .footer_info .logo img {
  width: 12.5rem;
  height: 3.1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_info .logo img {
    width: 17.2rem;
    height: 4.2rem;
  }
}

.globalFooter .footer_wrap .footer_info .name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_info .name {
    font-size: 2rem;
  }
}

.globalFooter .footer_wrap .footer_info .address {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_info .address {
    font-size: 1.6rem;
  }
}

.globalFooter .footer_wrap .footer_info .address tr {
  vertical-align: baseline;
}

.globalFooter .footer_wrap .footer_info .address th {
  padding: 0;
  text-align: left;
  font-weight: bold;
}

.globalFooter .footer_wrap .footer_info .address td {
  padding: 0;
  padding-left: 1.6rem;
}

.globalFooter .footer_wrap .footer_info .tel {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  margin-bottom: 1.4rem;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_info .tel {
    font-size: 1.6rem;
  }
}

.globalFooter .footer_wrap .footer_info .tel tr {
  vertical-align: baseline;
}

.globalFooter .footer_wrap .footer_info .tel th {
  padding: 0;
  text-align: left;
  font-weight: bold;
}

.globalFooter .footer_wrap .footer_info .tel td {
  padding: 0;
  padding-left: 1.6rem;
}

.globalFooter .footer_wrap .footer_info .sns a {
  display: block;
  width: 4rem;
  height: 4rem;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_menu {
    width: 106rem;
  }
}

.globalFooter .footer_wrap .footer_menu > .row {
  gap: 2.8rem;
  justify-content: end;
}

.globalFooter .footer_wrap .footer_menu > .row > .col {
  width: auto;
  flex: auto;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_menu > .row > .col:last-child {
    width: 30rem;
  }
}

@media (max-width: 767px) {
  .globalFooter .footer_wrap .footer_menu > .row > .col:not(:last-child) {
    margin-bottom: 2.4rem !important;
  }
}

.globalFooter .footer_wrap .footer_menu .fNav .ttl {
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 0.2rem solid #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_menu .fNav .ttl {
    font-size: 1.8rem;
  }
}

.globalFooter .footer_wrap .footer_menu .fNav ul li a {
  font-size: 1.1rem;
  font-weight: bold;
  padding-left: 1.6rem;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_menu .fNav ul li a {
    font-size: 1.6rem;
    padding-left: 1.8rem;
  }
}

@media (max-width: 767px) {
  .globalFooter .footer_wrap .footer_menu .fNav ul li a {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    position: relative;
  }
}

.globalFooter .footer_wrap .footer_menu .fNav ul li a:before {
  content: "";
  display: block;
  position: absolute;
  width: 0.8rem;
  height: 1px;
  background: #fff;
  top: 1.2rem;
  left: 0;
  transform: none;
  border-top: none;
  border-right: none;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_menu .fNav ul li a:before {
    top: 2.1rem;
    width: 1.1rem;
  }
}

.globalFooter .footer_wrap .footer_menu .fNav ul li a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .globalFooter .footer_wrap .footer_menu .fNav.btns ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-direction: row-reverse;
  }
}

.globalFooter .footer_wrap .footer_menu .fNav.btns ul li a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #61ff00;
  color: #1c2081;
  width: 16rem;
  height: 4rem;
  border-radius: 5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_menu .fNav.btns ul li a.btn {
    width: 30rem;
    height: 5rem;
    font-size: 1.8rem;
  }
}

.globalFooter .footer_wrap .footer_menu .fNav.btns ul li a.btn:before {
  content: none;
}

@media (min-width: 768px) {
  .globalFooter .footer_wrap .footer_menu .fNav.btns ul li:not(:last-child) {
    margin-bottom: 1.4rem;
  }
}

.globalFooter .footer_policy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

@media (max-width: 767px) {
  .globalFooter .footer_policy {
    flex-direction: column;
    gap: 1rem;
  }
}

.globalFooter .footer_policy a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}

.globalFooter .footer_policy a:hover {
  opacity: 0.8;
}

.copy_right {
  background: #151515;
  font-size: 1.2rem;
}

.pagetop {
  width: 4rem;
  height: 4rem;
  right: 2rem;
  bottom: 2rem;
}

@media (min-width: 768px) {
  .pagetop {
    width: 6.6rem;
    height: 6.6rem;
    right: 5.4rem;
    bottom: 4rem;
  }
}

.pagetop a {
  width: 4rem;
  height: 4rem;
  overflow: unset;
  text-indent: unset;
  white-space: unset;
  background: none;
}

@media (min-width: 768px) {
  .pagetop a {
    width: 6.6rem;
    height: 6.6rem;
  }
}

.pagetop a:after {
  content: none;
}

.pagetop a img {
  width: 100%;
  height: auto;
}

footer.high .pagetop {
  right: 2rem;
}

@media (min-width: 768px) {
  footer.high .pagetop {
    right: 5.4rem;
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

.under_head {
  height: 30.9rem;
  position: relative;
  background: url(/wordpress/wp-content/uploads/sp_under_fv.png) no-repeat center 2.8rem/100%;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .under_head {
    height: 57rem;
    background: url(/wordpress/wp-content/uploads/under_fv.png) no-repeat center center/cover;
    margin-top: 8rem;
  }
}

.under_head .h1 {
  color: #1c2081;
  background: transparent;
  margin: 0;
  position: absolute;
  left: 1.5rem;
  bottom: 0;
  text-align: left;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3.4rem;
  line-height: 1.2;
  padding: 0;
}

@media (min-width: 768px) {
  .under_head .h1 {
    font-size: 12rem;
    left: 12rem;
    bottom: 6.8rem;
    letter-spacing: -0.1em;
  }
}

.under_head .h1 .en {
  font-size: 2.8rem;
  font-style: normal;
  color: #1c2081;
  padding-top: 0;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .under_head .h1 .en {
    font-size: 7rem;
  }
}

body:not(.home) main .contents_wrapper {
  margin-top: 5rem;
}

@media (min-width: 768px) {
  body:not(.home) main .contents_wrapper {
    margin-top: 8rem;
  }
}

body:not(.home) section {
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  body:not(.home) section {
    margin-bottom: 10rem;
  }
}

.entry_top {
  margin-bottom: 5rem !important;
}

@media (min-width: 768px) {
  .entry_top {
    margin-bottom: 8rem !important;
  }
}

.entry_top .entry_top_txt p {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.8;
	color: #1c2081;
	text-align: center;
}

@media (min-width: 768px) {
  .entry_top .entry_top_txt p {
    font-size: 2.5rem;
  }
}

.entry_top .entry_top_txt .btn_entry {
	margin-top: 3rem;
}
.entry_top .entry_top_txt .btn_entry a {
	background: #151515;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
}
@media (min-width: 768px) {
	.entry_top .entry_top_txt .btn_entry {
		margin-top: 5.6rem;
	}
	.entry_top .entry_top_txt .btn_entry a {
		font-size: 2.4rem;
		padding: 1.5rem 6rem;
	}
}

.inquiry {
  margin-bottom: 9rem !important;
}

@media (min-width: 768px) {
  .inquiry {
    margin-bottom: 22rem !important;
  }
}

.inquiry .form_wrap {
  width: 34.5rem;
  padding: 0;
  border: none;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .inquiry .form_wrap {
    width: 96.6rem;
  }
}

.inquiry .form_wrap .table-default tr {
  display: flex;
  flex-direction: column;
  border-bottom: none;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr {
    margin-bottom: 3rem;
  }
}

.inquiry .form_wrap .table-default tr th {
  width: -moz-fit-content !important;
  width: fit-content !important;
  padding: 0.3rem;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr th {
    padding-right: 9rem;
    font-size: 2.4rem;
  }
}

.inquiry .form_wrap .table-default tr th .required {
  top: 0;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.3rem 1rem 0.2rem;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr th .required {
    padding: 0.6rem 1.5rem 0.5rem;
    font-size: 1.95rem;
    border-radius: 0.75rem;
  }
}

.inquiry .form_wrap .table-default tr th .non-required {
  display: inline-block;
  background: #1c2081;
  color: #fff;
  top: 0;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.3rem 1rem 0.2rem;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr th .non-required {
    padding: 0.6rem 1.5rem 0.5rem;
    font-size: 1.95rem;
    position: absolute;
    right: 0;
    border-radius: 0.75rem;
  }
}

.inquiry .form_wrap .table-default tr th.privacy {
  font-size: 1.3rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr th.privacy {
    font-size: 1.95rem;
  }
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr th.privacy .required {
    padding: 0.5rem 1.5rem 0.4rem;
  }
}

.inquiry .form_wrap .table-default tr td {
  padding: 0.6rem 0;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr td {
    padding: 1.5rem 0;
  }
}

.inquiry .form_wrap .table-default tr td.form-row {
  display: flex;
  gap: 1rem;
}

.inquiry .form_wrap .table-default tr td.form-row .text-3col {
  width: calc((100% - 2rem) / 3);
}

.inquiry .form_wrap .table-default tr td.form-row .text-3col .input_wrap {
  display: flex;
  align-items: end;
  gap: 0.6rem;
}

.inquiry .form_wrap .table-default tr td.form-row .text-3col .input_wrap .wpcf7-form-control-wrap {
  flex: 1;
  position: relative;
}

.inquiry .form_wrap .table-default tr td.form-row .text-3col .input_wrap .wpcf7-form-control-wrap:after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 0.1rem solid #b5b5b5;
  border-right: 0.1rem solid #b5b5b5;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr td.form-row .text-3col .input_wrap .wpcf7-form-control-wrap:after {
    width: 1rem;
    height: 1rem;
    right: 1.5rem;
  }
}

.inquiry .form_wrap .table-default tr td.form-row .text-3col .input_wrap .wpcf7-form-control-wrap select {
  margin: 0;
}

.inquiry .form_wrap .table-default tr td.form-row .text-3col .input_wrap .txt {
  font-size: 1.4rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr td.form-row .text-3col .input_wrap .txt {
    font-size: 2rem;
  }
}

.inquiry .form_wrap .table-default tr td .input_wrap {
  margin: 0;
  padding: 0;
}

.inquiry .form_wrap .table-default tr td .input_wrap_file {
  padding: 0.75rem 1rem;
  border: 0.1rem solid #b5b5b5;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default tr td .input_wrap_file {
    padding: 1.25rem 2rem;
    border-radius: 0.75rem;
  }
}

.inquiry .form_wrap .table-default input[type="text"],
.inquiry .form_wrap .table-default input[type="url"],
.inquiry .form_wrap .table-default input[type="email"],
.inquiry .form_wrap .table-default input[type="tel"],
.inquiry .form_wrap .table-default input[type="date"],
.inquiry .form_wrap .table-default input[type="text"],
.inquiry .form_wrap .table-default select,
.inquiry .form_wrap .table-default textarea {
  border: 0.1rem solid #b5b5b5;
  background: #fff;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  padding: 1.2rem 1.2rem;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default input[type="text"],
  .inquiry .form_wrap .table-default input[type="url"],
  .inquiry .form_wrap .table-default input[type="email"],
  .inquiry .form_wrap .table-default input[type="tel"],
  .inquiry .form_wrap .table-default input[type="date"],
  .inquiry .form_wrap .table-default input[type="text"],
  .inquiry .form_wrap .table-default select,
  .inquiry .form_wrap .table-default textarea {
    font-size: 2.2rem;
    padding: 1.4rem 2rem;
    border-radius: 0.75rem;
  }
}

.inquiry .form_wrap .table-default .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default .wpcf7-radio {
    gap: 7.5rem;
  }
}

@media (max-width: 767px) {
  .inquiry .form_wrap .table-default .wpcf7-radio {
    margin: 0 0.6rem;
  }
}

.inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}

.inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label {
    flex-direction: row-reverse;
  }
}

.inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  line-height: 1;
  font-size: 1.3rem;
  padding-left: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 2rem;
    padding-left: 0;
    padding-right: 4rem;
  }
}

.inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before, .inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before {
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #b5b5b5;
  left: 0;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before {
    width: 3rem;
    height: 3rem;
    right: 0;
    left: auto;
  }
}

.inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after {
  display: none;
  width: 1rem;
  height: 1rem;
  background: #1c2081;
  left: 0.5rem;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after {
    width: 1.4rem;
    height: 1.4rem;
    left: auto;
    right: 0.8rem;
  }
}

.inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  opacity: 0;
  width: 0;
}

.inquiry .form_wrap .table-default .wpcf7-radio .wpcf7-list-item label input[type="radio"]:checked + .wpcf7-list-item-label:after {
  display: block;
}

.inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}

.inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  line-height: 1;
  font-size: 1.4rem;
  padding-left: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 2rem;
    padding-left: 4rem;
  }
}

.inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before, .inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before {
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #b5b5b5;
  left: 0;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before {
    width: 3rem;
    height: 3rem;
  }
}

.inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
  display: none;
  width: 1rem;
  height: 1rem;
  background: #1c2081;
  left: 0.5rem;
}

@media (min-width: 768px) {
  .inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
    width: 1.4rem;
    height: 1.4rem;
    left: 0.8rem;
  }
}

.inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label input[type="checkbox"] {
  opacity: 0;
  width: 0;
}

.inquiry .form_wrap .table-default .wpcf7-acceptance .wpcf7-list-item label input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  display: block;
}

.inquiry .form_button_wrap {
  position: relative;
}

.inquiry .form_button_wrap .form_button.form_send {
  background: #151515;
  width: 18.3rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding: 0;
  border-radius: 5rem;
}

@media (min-width: 768px) {
  .inquiry .form_button_wrap .form_button.form_send {
    width: 29.6rem;
    height: 5.9rem;
    font-size: 2.4rem;
  }
}

.inquiry .form_button_wrap .form_button.form_send:hover {
  opacity: 0.8;
}

.inquiry .form_button_wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  margin: 0 !important;
  right: 62rem;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
}

.entry_flow {
  margin-top: 5rem;
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .entry_flow {
    margin-top: 10rem;
    margin-bottom: 4rem !important;
  }
}

.entry_flow .entry_flow_list {
  width: 34.5rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .entry_flow .entry_flow_list {
    width: 70rem;
  }
}

.entry_flow .entry_flow_list .entry_flow_item {
  background: #1c2081;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.8rem 1.5rem;
  display: flex;
  gap: 2rem;
}

@media (min-width: 768px) {
  .entry_flow .entry_flow_list .entry_flow_item {
    font-size: 3rem;
    padding: 2.4rem 3rem;
  }
}

.entry_flow .entry_flow_list .entry_flow_item .bg {
  background: #fff;
  color: #151515;
  font-size: 1.2rem;
  width: 6.9rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .entry_flow .entry_flow_list .entry_flow_item .bg {
    font-size: 2rem;
    width: 12.1rem;
    height: 5.2rem;
  }
}

.entry_flow .entry_flow_list .entry_flow_item:not(:last-child) {
  margin-bottom: 4.8rem;
  position: relative;
}

@media (min-width: 768px) {
  .entry_flow .entry_flow_list .entry_flow_item:not(:last-child) {
    margin-bottom: 6rem;
  }
}

.entry_flow .entry_flow_list .entry_flow_item:not(:last-child):after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 1.8rem;
  background: #9a9a9a;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -3.6rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .entry_flow .entry_flow_list .entry_flow_item:not(:last-child):after {
    width: 6rem;
    height: 3rem;
    bottom: -4.6rem;
  }
}

.privacy_sec .privacy h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  color: #1c2081;
  font-weight: bold;
  font-size: 2rem;
  padding-bottom: 0.4rem;
  border-bottom: 0.2rem solid #1c2081;
}

@media (min-width: 768px) {
  .privacy_sec .privacy h2 {
    margin-bottom: 3rem;
    font-size: 4rem;
    padding-bottom: 0.6rem;
    border-bottom: 0.3rem solid #1c2081;
  }
}

.privacy_sec .privacy h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1c2081;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .privacy_sec .privacy h3 {
    font-size: 2rem;
    margin-top: 4rem;
  }
}

.privacy_sec .privacy p {
  font-size: 1.2rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .privacy_sec .privacy p {
    font-size: 2rem;
  }
}

.under_h2 {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3rem;
  text-align: center;
  color: #1c2081;
  margin-top: 0;
  margin-bottom: 3rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .under_h2 {
    font-size: 8rem;
    margin-bottom: 5rem;
  }
}

.under_h2_s {
  color: #1c2081;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  border-bottom: 0.2rem solid #1c2081;
  margin-top: 0;
  margin-bottom: 3rem;
  padding-bottom: 0.6rem;
}

@media (min-width: 768px) {
  .under_h2_s {
    font-size: 4rem;
    border-bottom: 0.3rem solid #1c2081;
    margin-bottom: 5rem;
    padding-bottom: 1.2rem;
  }
}

.under_head_company {
  height: 46.5rem;
  background: url(/wordpress/wp-content/uploads/sp_message_fv.png) no-repeat center top/100%;
}

@media (min-width: 768px) {
  .under_head_company {
    height: 83rem;
    background: url(/wordpress/wp-content/uploads/message_fv.png) no-repeat center top/100%;
  }
}

@media (min-width: 768px) {
  .under_head_company .h1 {
    left: 29.2rem;
    bottom: auto;
    top: 12.4rem;
  }
}

.company_top .company_top_txt p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1c2081;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}

@media (min-width: 768px) {
  .company_top .company_top_txt p {
    font-size: 2rem;
  }
}

.company_top .company_top_txt p:not(:last-child) {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .company_top .company_top_txt p:not(:last-child) {
    margin-bottom: 4rem;
  }
}

.company_profile {
  background: url(/wordpress/wp-content/uploads/sp_message_sec02_bg.jpg) no-repeat center center/cover;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}

@media (min-width: 768px) {
  .company_profile {
    background: url(/wordpress/wp-content/uploads/message_sec02_bg.jpg) no-repeat center top/cover;
    padding-top: 16rem;
    padding-bottom: 16rem;
    margin-bottom: 14rem !important;
  }
}

.company_profile h2 {
  color: #fff;
  text-align: center;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 3.6rem;
  margin-top: 0;
  margin-bottom: 4rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .company_profile h2 {
    font-size: 12rem;
    margin-bottom: 8rem;
  }
}

.company_profile h2 .en {
  display: block;
  font-size: 2.8rem;
}

@media (min-width: 768px) {
  .company_profile h2 .en {
    font-size: 7rem;
  }
}

.company_profile .company_profile_txt p {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  line-height: 2.4;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .company_profile .company_profile_txt p {
    font-size: 2rem;
  }
}

.company_profile .ab {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 8.3rem;
  height: 9.3rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .company_profile .ab {
    width: 19.9rem;
    height: 22.2rem;
  }
}

@media (min-width: 768px) {
  .company_mvv {
    margin-bottom: 14rem !important;
  }
}

.company_mvv .company_mvv_list .company_mvv_item {
  display: flex;
  align-items: center;
  gap: 7rem;
  border-bottom: 0.1rem solid #1c2081;
  padding-bottom: 6rem;
  padding-top: 6rem;
}

@media (max-width: 767px) {
  .company_mvv .company_mvv_list .company_mvv_item {
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.company_mvv .company_mvv_list .company_mvv_item:first-child {
  border-top: 0.1rem solid #1c2081;
}

.company_mvv .company_mvv_list .company_mvv_item h3 {
  width: 100%;
  font-size: 4rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  color: #d8d9ed;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .company_mvv .company_mvv_list .company_mvv_item h3 {
    width: 48rem;
    font-size: 10rem;
  }
}

@media (max-width: 767px) {
  .company_mvv .company_mvv_list .company_mvv_item .cnt {
    width: 100%;
  }
}

.company_mvv .company_mvv_list .company_mvv_item .cnt .head {
  font-size: 2rem;
  font-weight: bold;
  color: #1c2081;
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .company_mvv .company_mvv_list .company_mvv_item .cnt .head {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.company_mvv .company_mvv_list .company_mvv_item .cnt .txt {
  font-size: 1.2rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .company_mvv .company_mvv_list .company_mvv_item .cnt .txt {
    font-size: 2.2rem;
  }
}

@media (min-width: 768px) {
  .company_concept {
    margin-bottom: 14rem !important;
  }
}

.company_concept .company_concept_txt p {
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2.4;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .company_concept .company_concept_txt p {
    font-size: 2rem;
    line-height: 2.5;
  }
}

.under_slider_wrap {
  padding-bottom: 15rem;
  position: relative;
}

@media (min-width: 768px) {
  .under_slider_wrap {
    padding-bottom: 50rem;
    margin-bottom: 14rem !important;
  }
}

.under_slider_wrap .sa.show {
  position: absolute;
}

.under_slider_wrap .l_slider {
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  --speed: 100s;
  --gap: 0.5rem;
}

@media (min-width: 768px) {
  .under_slider_wrap .l_slider {
    --gap: 3rem;
  }
}

.under_slider_wrap .l_slider .l_slider_item {
  animation: loop2 var(--speed) linear infinite;
  display: flex;
  width: auto;
  gap: var(--gap);
  padding: 0 calc(var(--gap) / 2);
}

.under_slider_wrap .l_slider .l_slider_item:first-child {
  animation: loop var(--speed) calc(-1 * var(--speed) / 2) linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}

.under_slider_wrap .l_slider .l_slider_item figure {
  width: 24rem;
  overflow: hidden;
  aspect-ratio: 8 / 5;
}

@media (min-width: 768px) {
  .under_slider_wrap .l_slider .l_slider_item figure {
    width: 80rem;
  }
}

.under_slider_wrap .l_slider .l_slider_item figure img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: visible;
}

.under_slider_wrap .l_slider .l_slider_item .oft {
  position: relative;
  aspect-ratio: 8 / 5;
  display: block;
}

.table_default {
  width: 100%;
  border: 0.1rem solid #151515;
}

@media (min-width: 768px) {
  .table_default {
    border: 0.2rem solid #151515;
  }
}

@media (max-width: 767px) {
  .table_default tbody tr {
    display: flex;
    flex-direction: column;
  }
}

.table_default tbody tr:not(:last-child) {
  border-bottom: 0.1rem solid #151515;
}

@media (min-width: 768px) {
  .table_default tbody tr:not(:last-child) {
    border-bottom: 0.2rem solid #151515;
  }
}

.table_default tbody th,
.table_default tbody td {
  font-size: 1rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .table_default tbody th,
  .table_default tbody td {
    font-size: 1.8rem;
    padding: 2rem 3rem;
  }
}

.table_default tbody th {
  text-align: left;
  color: #1c2081;
  font-weight: 500;
}

@media (max-width: 767px) {
  .table_default tbody th {
    border-bottom: 0.1rem solid #151515;
  }
}

@media (min-width: 768px) {
  .table_default tbody th {
    width: 25rem;
    border-right: 0.2rem solid #151515;
  }
}

@media (max-width: 767px) {
  .table_default tbody th {
    font-size: 1.2rem;
  }
}

.table_default tbody td a {
  color: #151515;
  text-decoration: none;
}

.table_row {
  width: 100%;
}

.table_row tbody tr {
  border-bottom: 0.2rem solid #151515;
}

@media (max-width: 767px) {
  .table_row tbody tr {
    display: flex;
    flex-direction: column;
    border-bottom: 0.1rem solid #151515;
  }
}

.table_row tbody th,
.table_row tbody td {
  font-size: 1rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .table_row tbody th,
  .table_row tbody td {
    font-size: 1.8rem;
    padding: 2rem 3rem;
  }
}

.table_row tbody th {
  text-align: left;
  color: #1c2081;
  font-weight: 500;
}

@media (min-width: 768px) {
  .table_row tbody th {
    width: 17rem;
  }
}

@media (max-width: 767px) {
  .table_row tbody th {
    font-size: 1.2rem;
    padding-bottom: 0.6rem;
  }
}

@media (max-width: 767px) {
  .table_row tbody td {
    padding-top: 0;
  }
}

.table_row tbody td a {
  color: #151515;
  text-decoration: none;
}

.company_access {
  margin-bottom: 4rem !important;
}

.company_access .company_access_row .company_access_item .googlemap {
  height: 20rem;
}

@media (min-width: 768px) {
  .company_access .company_access_row .company_access_item .googlemap {
    height: 56.5rem;
  }
}

.company_access .company_access_row .company_access_item .googlemap iframe {
  width: 100%;
  height: 100%;
}

.company_access .company_access_row .company_access_item h3 {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  color: #1c2081;
  font-weight: bold;
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .company_access .company_access_row .company_access_item h3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: 2.4rem;
  }
}

.company_access .company_access_row .company_access_item p {
  font-size: 1.2rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .company_access .company_access_row .company_access_item p {
    font-size: 2rem;
  }
}

.company_access .company_access_row .company_access_item p:not(:last-child) {
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .company_access .company_access_row .company_access_item p:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}

@media (max-width: 767px) {
  .company_access .company_access_row .company_access_item:not(:last-child) {
    margin-bottom: 3rem;
  }
}

.archive_sub {
  text-align: center;
  color: #1c2081;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 2.4;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .archive_sub {
    font-size: 2rem;
    margin-bottom: 8rem;
  }
}

.sec_project_list .project_list {
  gap: 4rem;
  row-gap: 2rem;
}

@media (min-width: 768px) {
  .sec_project_list .project_list {
    row-gap: 4rem;
  }
}

@media (min-width: 768px) {
  .sec_project_list .project_list_item {
    width: calc(50% - 2rem);
  }
}

.project_list_item .img img {
	width: 100%;
}

.sec_project_list .project_list_item a {
  display: flex;
  flex-direction: column;
}

.sec_project_list .project_list_item a .txt {
  width: 100%;
  background: #1c2081;
  padding: 2.2rem 1.7rem;
  color: #fff;
  letter-spacing: 0.07em;
  position: relative;
}

@media (min-width: 768px) {
  .sec_project_list .project_list_item a .txt {
    padding: 4rem 2.4rem;
  }
}

.sec_project_list .project_list_item a .txt:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/arrow_wh.png) no-repeat center center/cover;
  width: 3.5rem;
  height: 3.5rem;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .sec_project_list .project_list_item a .txt:after {
    width: 5.6rem;
    height: 5.6rem;
    right: 3.4rem;
  }
}

.sec_project_list .project_list_item a .txt .num {
  display: block;
  font-size: 1rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .sec_project_list .project_list_item a .txt .num {
    font-size: 1.8rem;
  }
}

.sec_project_list .project_list_item a .txt .ttl {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 25rem;
}

@media (min-width: 768px) {
  .sec_project_list .project_list_item a .txt .ttl {
    font-size: 2rem;
    max-width: 68rem;
  }
}

.sec_project_list .project_list_item a:hover .txt:after {
  right: 1.4rem;
}

@media (min-width: 768px) {
  .sec_project_list .project_list_item a:hover .txt:after {
    right: 3rem;
  }
}

.wp-pagenavi {
  margin-top: 6rem;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .wp-pagenavi {
    gap: 0.8rem;
    margin-top: 14rem;
  }
}

.wp-pagenavi a, .wp-pagenavi span {
  border: 0.1rem solid #1c2081;
  border-radius: 0.8rem;
  width: 3.4rem;
  height: 3.4rem;
  font-size: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  letter-spacing: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .wp-pagenavi a, .wp-pagenavi span {
    width: 4rem;
    height: 4rem;
  }
}

.wp-pagenavi a:hover {
  background: #fff;
  opacity: 0.8;
  border-color: #1c2081;
}

.wp-pagenavi .first {
  order: 0;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 1.2rem;
  background: #1c2081;
  color: #fff;
}

@media (min-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    font-size: 1.4rem;
  }
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background: #1c2081;
}

.wp-pagenavi .previouspostslink {
  order: -1;
}

.wp-pagenavi .nextpostslink {
  order: 2;
}

.project_single .article_detail .post_header {
  position: relative;
}

.project_single .article_detail .post_header .img img {
  height: 20.8rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_header .img img {
    height: 72.8rem;
  }
}

@media (max-width: 767px) {
  .project_single .article_detail .post_header .img img {
    margin-bottom: 8.6rem;
  }
}

.project_single .article_detail .post_header .txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  padding: 1.4rem 1.5rem;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_header .txt {
    padding: 3.4rem 12rem;
  }
}

.project_single .article_detail .post_header .txt .project_num {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_header .txt .project_num {
    font-size: 3rem;
    padding: 4rem 0;
    padding-right: 4rem;
    margin-right: 4rem;
    border-right: 0.2rem solid #fff;
  }
}

@media (max-width: 767px) {
  .project_single .article_detail .post_header .txt .project_num {
    border-bottom: 0.1rem solid #fff;
    width: 100%;
    margin-bottom: 1rem;
  }
}

.project_single .article_detail .post_header .txt .project_ttl .post_title {
  color: #61ff00;
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: none;
  margin: 0;
  padding-bottom: 0.4rem !important;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_header .txt .project_ttl .post_title {
    font-size: 3.6rem;
    padding-bottom: 0.8rem !important;
  }
}

.project_single .article_detail .post_header .txt .project_ttl .time {
  color: #fff;
  font-size: 1rem;
  padding: 0;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_header .txt .project_ttl .time {
    font-size: 3rem;
  }
}

.project_single .article_detail .post_header .txt .project_ttl .time:before {
  content: none;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content {
    margin: 0 14rem;
  }
}

.project_single .article_detail .post_content .project_top_txt {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .project_top_txt {
    margin-bottom: 5rem;
  }
}

.project_single .article_detail .post_content .project_top_txt p {
  text-align: center;
  font-size: 1.2rem;
  color: #1c2081;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .project_top_txt p {
    font-size: 2rem;
  }
}

.project_single .article_detail .post_content .project_profile {
  padding: 3rem 2.2rem;
  width: 100%;
  margin: 0 auto 6rem;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .project_profile {
    border: 0.2rem solid #1c2081;
    padding: 5rem 13rem;
    width: 112rem;
    margin: 0 auto 10rem;
  }
}

.project_single .article_detail .post_content .project_profile h2 {
  text-align: center;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  color: #1c2081;
  font-size: 2.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.2rem solid #1c2081;
  margin-bottom: 1.6rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .project_profile h2 {
    font-size: 4rem;
    padding-bottom: 2rem;
    border-bottom: 0.3rem solid #1c2081;
    margin-bottom: 2rem;
  }
}

.project_single .article_detail .post_content .project_profile .project_profile_row {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

@media (max-width: 767px) {
  .project_single .article_detail .post_content .project_profile .project_profile_row {
    gap: 1.5rem;
    row-gap: 2rem;
  }
}

.project_single .article_detail .post_content .project_profile .project_profile_row .project_profile_item {
  text-align: center;
  width: 14rem;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .project_profile .project_profile_row .project_profile_item {
    width: 18rem;
  }
}

.project_single .article_detail .post_content .project_profile .project_profile_row .project_profile_item .img {
  border-radius: 50%;
  overflow: hidden;
  width: 14rem;
  height: 14rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .project_profile .project_profile_row .project_profile_item .img {
    width: 18rem;
    height: 18rem;
    margin-bottom: 1.7rem;
  }
}

.project_single .article_detail .post_content .project_profile .project_profile_row .project_profile_item .name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .project_profile .project_profile_row .project_profile_item .name {
    font-size: 1.8rem;
  }
}

.project_single .article_detail .post_content .project_profile .project_profile_row .project_profile_item .year {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: bold;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .project_profile .project_profile_row .project_profile_item .year {
    font-size: 1.5rem;
  }
}

.project_single .article_detail .post_content > h2 {
  color: #1c2081;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  border-bottom: 0.2rem solid #1c2081;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  margin-top: 6rem;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content > h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    margin-top: 8rem;
  }
}

.project_single .article_detail .post_content > blockquote {
  margin: 2rem 0;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2;
  color: #1c2081;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content > blockquote {
    font-size: 1.8rem;
  }
}

.project_single .article_detail .post_content > p {
  margin: 2rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content > p {
    font-size: 1.8rem;
  }
}

.project_single .article_detail .post_content > p em {
  font-style: normal;
  color: #1c2081;
}

.project_single .article_detail .post_content > p:has(> img) {
  margin: 5rem 0;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content > p:has(> img) {
    margin: 8rem 0;
  }
}

.project_single .article_detail .post_content > p:last-child {
  margin-bottom: 0 !important;
}

.project_single .article_detail .post_content .img_2col {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  margin: 5rem 0;
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .img_2col {
    gap: 3rem;
    margin: 8rem 0;
  }
}

.project_single .article_detail .post_content .img_2col .img {
  width: calc(50% - 0.25rem);
}

@media (min-width: 768px) {
  .project_single .article_detail .post_content .img_2col .img {
    width: calc(50% - 1.5rem);
  }
}

.under_project_slider .p-content_Slide {
  overflow: visible;
}

.under_project_slider .project_list_item a {
  display: flex;
  flex-direction: column;
}

.under_project_slider .project_list_item a .txt {
  width: 100%;
  background: #1c2081;
  padding: 2.2rem 1.7rem;
  color: #fff;
  letter-spacing: 0.07em;
  position: relative;
}

@media (min-width: 768px) {
  .under_project_slider .project_list_item a .txt {
    padding: 4rem 2.4rem;
  }
}

.under_project_slider .project_list_item a .txt:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/arrow_wh.png) no-repeat center center/cover;
  width: 3.5rem;
  height: 3.5rem;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .under_project_slider .project_list_item a .txt:after {
    width: 5.6rem;
    height: 5.6rem;
    right: 3.4rem;
  }
}

.under_project_slider .project_list_item a .txt .num {
  display: block;
  font-size: 1rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .under_project_slider .project_list_item a .txt .num {
    font-size: 1.8rem;
  }
}

.under_project_slider .project_list_item a .txt .ttl {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 26rem;
}

@media (min-width: 768px) {
  .under_project_slider .project_list_item a .txt .ttl {
    font-size: 2rem;
    max-width: 68rem;
  }
}

.under_project_slider .project_list_item a:hover .txt:after {
  right: 3rem;
}

.under_interview_slider .p-content_Slide {
  overflow: visible;
}

.interview_list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.6rem !important;
       column-gap: 1.6rem !important;
  row-gap: 2.4rem !important;
}

@media (min-width: 768px) {
  .interview_list {
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
    row-gap: 6rem !important;
  }
}

.interview_list .interview_item {
  width: calc((100% - 1.6rem) / 2);
}

@media (min-width: 768px) {
  .interview_list .interview_item {
    width: calc((100% - 12rem) / 3);
  }
}

.interview_list .interview_item a {
  text-decoration: none;
}

.interview_list .interview_item .img {
  display: block;
  margin-bottom: 1.5rem;
	background-image: radial-gradient(#f7f9ff, #dbe2ee);
}

@media (min-width: 768px) {
  .interview_list .interview_item .img {
    margin-bottom: 5rem;
  }
}

.interview_list .interview_item .img img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.interview_list .interview_item .txt {
  display: block;
  color: #1c2081;
  letter-spacing: 0.07em;
}

.interview_list .interview_item .txt .join {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

@media (min-width: 768px) {
  .interview_list .interview_item .txt .join {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}

.interview_list .interview_item .txt .name {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .interview_list .interview_item .txt .name {
    font-size: 3rem;
  }
}

.interview_list .interview_item .txt .name .job {
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .interview_list .interview_item .txt .name .job {
    margin-right: 2rem;
  }
}

.interview_list .interview_item:hover .txt {
  opacity: 0.8;
}

.interview_single .post_header {
	width: 100%;
  	position: relative;
	background: url(/wordpress/wp-content/uploads/interview_bg_sp-1.jpg) no-repeat center center/cover;
}

@media (min-width: 768px) {
	.interview_single .post_header {
		background: url(/wordpress/wp-content/uploads/interview_bg_pc-1-scaled.jpg) no-repeat center center/cover;
	}
}

.interview_single .post_header .img {
  position: relative;
	width: 100%;
    height: auto;
	min-height: 54rem;
	margin: 0;
	margin-left: auto;
}
@media (min-width: 768px) {
	.interview_single .post_header .img {
		width: 72rem;
		height: 70rem;
		margin-right: 11rem;
	}
}

@media (max-width: 767px) {
  .interview_single .post_header .img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 32rem;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, #000);
  }
}

.interview_single .post_header .txt {
  position: absolute;
  bottom: 2.6rem;
  left: 1.5rem;
}

@media (min-width: 768px) {
  .interview_single .post_header .txt {
    bottom: auto;
    top: 50%;
    left: 20.8rem;
    transform: translateY(-50%);
  }
}

.interview_single .post_header .txt .interview_ttl {
  display: block;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .interview_single .post_header .txt .interview_ttl {
    margin-bottom: 3rem;
  }
}

.interview_single .post_header .txt .interview_ttl:after {
  content: "超";
  position: absolute;
  width: 12.9rem;
  height: 12.9rem;
  border: 0.3rem solid #61ff00;
  color: #61ff00;
  font-size: 8.6rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  transform: rotate(-27deg);
  bottom: -9.1rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  padding-bottom: 1.2rem;
  z-index: -1;
}

@media (min-width: 768px) {
  .interview_single .post_header .txt .interview_ttl:after {
    width: 26.2rem;
    height: 26.2rem;
    border: 0.6rem solid #61ff00;
    font-size: 18rem;
    padding-bottom: 3rem;
    bottom: auto;
    top: -5.9rem;
    right: auto;
    left: -8.6rem;
  }
}

@media (max-width: 767px) {
  .interview_single .post_header .txt .interview_ttl:after {
    opacity: 0.6;
  }
}

.interview_single .post_header .txt .interview_ttl .post_title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  background-image: linear-gradient(180deg, transparent 2.2em, #fff 0.1em);
  background-size: 100% 2.3em;
  line-height: 2.4em;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .interview_single .post_header .txt .interview_ttl .post_title {
    color: #1c2081;
    font-size: 6rem;
    background-image: linear-gradient(180deg, transparent 2.24em, #1c2081 0.06em);
  }
}

@media (max-width: 767px) {
  .interview_single .post_header .txt .interview_ttl .post_title {
    letter-spacing: 0.1em;
  }
}

.interview_single .post_header .txt .interview_ttl_under {
  color: #fff;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .interview_single .post_header .txt .interview_ttl_under {
    justify-content: end;
    color: #1c2081;
  }
}

@media (max-width: 767px) {
  .interview_single .post_header .txt .interview_ttl_under {
    flex-wrap: wrap;
  }
}

.interview_single .post_header .txt .interview_ttl_under .name {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 1.2rem;
}

@media (min-width: 768px) {
  .interview_single .post_header .txt .interview_ttl_under .name {
    font-size: 4rem;
    margin-right: 2.2rem;
  }
}

.interview_single .post_header .txt .interview_ttl_under .job {
  font-size: 1.4rem;
  font-weight: bold;
  border: 0.2rem solid #fff;
  padding: 0.6rem 1rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .interview_single .post_header .txt .interview_ttl_under .job {
    font-size: 2rem;
    border: 0.2rem solid #1c2081;
    padding: 1rem;
    margin-right: 2.2rem;
  }
}

.interview_single .post_header .txt .interview_ttl_under .join,
.interview_single .post_header .txt .interview_ttl_under .cat {
  font-size: 1.4rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .interview_single .post_header .txt .interview_ttl_under .join,
  .interview_single .post_header .txt .interview_ttl_under .cat {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .interview_single .post_header .txt .interview_ttl_under .join,
  .interview_single .post_header .txt .interview_ttl_under .cat {
    margin-top: 0.6rem;
  }
}

@media (max-width: 767px) {
  .interview_single .post_header .txt .interview_ttl_under .join {
    width: 100%;
  }
}

.interview_single .post_content_wrap {
  width: calc(100% - 3rem);
  margin: 5rem auto;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap {
    display: flex;
    width: 140rem;
    margin: 10rem auto;
    gap: 6rem;
  }
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_sub {
    width: 54rem;
  }
}

@media (max-width: 767px) {
  .interview_single .post_content_wrap .column_sub {
    margin-bottom: 4rem;
  }
}

.interview_single .post_content_wrap .column_sub .interview-sidebar {
  background: #d8d9ed;
  border: 0.2rem solid #151515;
  padding: 3rem 1.2rem;
  position: relative;
  visibility: visible;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_sub .interview-sidebar {
    padding: 3rem 4rem;
  }
}

.interview_single .post_content_wrap .column_sub .interview-sidebar:before, .interview_single .post_content_wrap .column_sub .interview-sidebar:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/side_clip.png) no-repeat center center/contain;
  width: 3rem;
  height: 3.9rem;
  top: -2.5rem;
}

.interview_single .post_content_wrap .column_sub .interview-sidebar:before {
  left: 2rem;
}

.interview_single .post_content_wrap .column_sub .interview-sidebar:after {
  right: 2rem;
}

.interview_single .post_content_wrap .column_sub .interview-sidebar h2 {
  text-align: center;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  color: #1c2081;
  font-size: 3.4rem;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_sub .interview-sidebar h2 {
    font-size: 6rem;
    margin-bottom: 2.2rem;
  }
}

.interview_single .post_content_wrap .column_sub .interview-sidebar ul {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .interview_single .post_content_wrap .column_sub .interview-sidebar ul li {
    border-bottom: 0.2rem solid #151515;
  }
}

.interview_single .post_content_wrap .column_sub .interview-sidebar ul li a {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.8;
  padding: 1.5rem 4rem 1.5rem 1rem;
  border-bottom: none;
  position: relative;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_sub .interview-sidebar ul li a {
    font-size: 1.8rem;
    padding: 2.4rem 6.6rem 2.4rem 1.4rem;
  }
}

.interview_single .post_content_wrap .column_sub .interview-sidebar ul li a:before, .interview_single .post_content_wrap .column_sub .interview-sidebar ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.interview_single .post_content_wrap .column_sub .interview-sidebar ul li a:before {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.2rem solid #1c2081;
  border-radius: 50%;
  right: 0.4rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_sub .interview-sidebar ul li a:before {
    width: 4rem;
    height: 4rem;
  }
}

.interview_single .post_content_wrap .column_sub .interview-sidebar ul li a:after {
  width: 0.9rem;
  height: 0.5rem;
  background: #1c2081;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  right: 1.2rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_sub .interview-sidebar ul li a:after {
    width: 0.8rem;
    height: 1.3rem;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    right: 1.9rem;
  }
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_sub .interview-sidebar ul li:not(:last-child) {
    border-bottom: 0.2rem solid #151515;
  }
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main {
    width: calc(100% - 60rem);
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1c2081;
  border-bottom: 0.2rem solid #1c2081;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content h2 {
    font-size: 3.2rem;
    margin-bottom: 5rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content h2:not(:first-child) {
  margin-top: 6rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content h2:not(:first-child) {
    margin-top: 10rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content h3 {
  color: #1c2081;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  margin: 3rem 0 1.6rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content h3 {
    font-size: 2.4rem;
    margin: 5rem 0 3rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content blockquote {
  margin: 2rem 0;
  padding-left: 1.6rem;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: bold;
  position: relative;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content blockquote {
    margin: 3rem 0;
    padding-left: 2.4rem;
    font-size: 1.8rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content blockquote:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.2rem;
  background: #151515;
  left: 0;
  top: 0.8rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content blockquote:before {
    width: 1.6rem;
    height: 0.3rem;
    top: 1.3rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content > p {
  margin: 2rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  color: #666666;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content > p {
    margin: 3rem 0;
    font-size: 1.8rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content > p:has(> img) {
  margin: 5rem 0;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content > p:has(> img) {
    margin: 8rem 0;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content > p:last-child {
  margin-bottom: 0 !important;
}

.interview_single .post_content_wrap .column_main .article_detail .post_content .img_2col {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  margin: 5rem 0;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content .img_2col {
    gap: 3rem;
    margin: 8rem 0;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content .img_2col .img {
  width: calc(50% - 0.25rem);
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content .img_2col .img {
    width: calc(50% - 1.5rem);
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule {
  display: block;
  border: 0.1rem solid #151515;
  padding: 3rem 1.8rem;
  margin-top: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule {
    border: 0.2rem solid #151515;
    padding: 5rem 3rem;
    margin-top: 6.6rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule:before, .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/side_clip.png) no-repeat center center/contain;
  width: 3rem;
  height: 3.9rem;
  top: -2.4rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule:before, .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule:after {
    width: 6.2rem;
    height: 8rem;
    top: -5.1rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule:before {
  left: 1.8rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule:before {
    left: 3rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule:after {
  right: 1.8rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule:after {
    right: 3rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody:after {
  content: "超";
  position: absolute;
  width: 10.4rem;
  height: 10.4rem;
  border: 0.3rem solid #d8d9ed;
  color: #d8d9ed;
  font-size: 7rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  transform: rotate(-27deg);
  bottom: -1.5rem;
  right: -0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  padding-bottom: 1rem;
  z-index: -1;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody:after {
    width: 26.2rem;
    height: 26.2rem;
    border: 0.6rem solid #d8d9ed;
    font-size: 18rem;
    padding-bottom: 3rem;
    bottom: -2.5rem;
    right: -1.6rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr {
  vertical-align: baseline;
  width: 100%;
  border-bottom: 0.1rem solid #151515;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr {
    border-bottom: 0.2rem solid #151515;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td {
  padding: 1.4rem 1rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td {
    padding: 2.6rem 2rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td:first-child {
  min-width: 7rem;
  font-size: 1.6rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td:first-child {
    min-width: 12rem;
    font-size: 1.8rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td:last-child {
  width: 100%;
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td:last-child p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td:last-child p {
    font-size: 1.5rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td:last-child p:not(:last-child) {
  margin-bottom: 0.8rem;
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td:last-child strong {
  font-size: 1.6rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_schedule tbody tr td:last-child strong {
    font-size: 2rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_career tbody tr {
  display: flex;
  flex-direction: column;
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_career tbody tr th {
  background: #1c2081;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: left;
  padding: 0.8rem 1rem 0.6rem;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_career tbody tr th {
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_career tbody tr td {
  border: 0.2rem solid #1c2081;
  padding: 1.2rem 1rem;
  font-size: 1.2rem;
  line-height: 2;
  color: #1c2081;
  font-weight: 500;
}

@media (min-width: 768px) {
  .interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_career tbody tr td {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_career tbody tr:not(:last-child) {
  position: relative;
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_career tbody tr:not(:last-child):after {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 1.5rem;
  background: #1c2081;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
}

.interview_single .post_content_wrap .column_main .article_detail .post_content table.interview_career tbody tr:not(:last-child) td {
  margin-bottom: 6rem;
}

.link_entry {
  margin: 4rem 0 5rem !important;
}

@media (min-width: 768px) {
  .link_entry {
    margin: 6rem 0 8rem !important;
  }
}

.link_entry a {
  background: #1c2081;
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 2.4rem;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  height: 8rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

@media (min-width: 768px) {
  .link_entry a {
    height: 13.6rem;
    font-size: 4rem;
  }
}

.link_entry a .en {
  position: absolute;
  color: #3e42a3;
  font-size: 5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  z-index: -1;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .link_entry a .en {
    font-size: 8rem;
  }
}

.link_entry a:before, .link_entry a:after {
  content: "";
  position: absolute;
}

.link_entry a:before {
  background: url(/wordpress/wp-content/uploads/btn_entry_img.png) no-repeat center center/contain;
  width: 6.4rem;
  height: 9.3rem;
  left: 2rem;
  bottom: 0;
}

@media (min-width: 768px) {
  .link_entry a:before {
    width: 11.5rem;
    height: 16.7rem;
    left: 9.2rem;
  }
}

.link_entry a:after {
  background: url(/wordpress/wp-content/uploads/btn_arrow.png) no-repeat center center/contain;
  width: 3rem;
  height: 3rem;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .link_entry a:after {
    width: 6rem;
    height: 6rem;
    right: 3rem;
  }
}

.link_entry a:hover {
  opacity: 0.8;
}

.link_entry a:hover:after {
  right: 1.8rem;
}

@media (min-width: 768px) {
  .link_entry a:hover:after {
    right: 2.6rem;
  }
}

.job_description {
  margin-bottom: 0 !important;
}

.sec_description_list .description_list {
  row-gap: 0;
}

.sec_description_list .description_list .description_item {
  margin-bottom: 0;
}

.sec_description_list .description_list .description_item a {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 1.8rem 1rem;
  border-bottom: 0.2rem solid #1c2081;
  position: relative;
}

@media (min-width: 768px) {
  .sec_description_list .description_list .description_item a {
    font-size: 2.4rem;
    padding: 4.8rem 2rem;
    border-bottom: 0.3rem solid #1c2081;
  }
}

.sec_description_list .description_list .description_item a:after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 0.2rem solid #1c2081;
  border-right: 0.2rem solid #1c2081;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .sec_description_list .description_list .description_item a:after {
    width: 1rem;
    height: 1rem;
    border-bottom: 0.3rem solid #1c2081;
    border-right: 0.3rem solid #1c2081;
    right: 2rem;
  }
}

.sec_description_list .description_list .description_item a:hover {
  background: #1c2081;
  color: #fff;
}

.sec_description_list .description_list .description_item a:hover:after {
  border-color: #fff;
}

.sec_description_list .description_list .description_item:first-child a {
  border-top: 0.2rem solid #1c2081;
}

@media (min-width: 768px) {
  .sec_description_list .description_list .description_item:first-child a {
    border-top: 0.3rem solid #1c2081;
  }
}

.message_description {
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .message_description {
    margin-top: 10rem;
  }
}

.message_description h2 {
  color: #1c2081;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-family: -apple-system, BlinkMacSystemFont, Arial, "Noto Sans JP", sans-serif;
  text-align: left;
  font-weight: bold;
}

@media (min-width: 768px) {
  .message_description h2 {
    font-size: 4rem;
    margin-bottom: 5rem;
  }
}

.message_description .message .message_txt p {
  color: #151515;
  font-weight: 500;
}

.under_head_job_description {
  background: var(--bg-sp) no-repeat right 5.8rem/33rem;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}

@media (min-width: 768px) {
  .under_head_job_description {
    background: var(--bg-pc) no-repeat right top/contain;
    background-color: rgba(255, 255, 255, 0.6);
    background-blend-mode: lighten;
  }
}

.single_description_anchor .description_anchor_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .single_description_anchor .description_anchor_list {
    gap: 1rem;
  }
}

.single_description_anchor .description_anchor_list .description_anchor_item {
  width: calc((100% - 1rem) / 2);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .single_description_anchor .description_anchor_list .description_anchor_item {
    width: calc((100% - 3rem) / 4);
  }
}

.single_description_anchor .description_anchor_list .description_anchor_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9eafd;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  height: 5.6rem;
  position: relative;
  transition: 0.2s;
}

@media (min-width: 768px) {
  .single_description_anchor .description_anchor_list .description_anchor_item a {
    font-size: 2rem;
    height: 6.4rem;
  }
}

@media (max-width: 767px) {
  .single_description_anchor .description_anchor_list .description_anchor_item a {
    padding: 0 1rem;
    flex-direction: column;
    gap: 0;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .single_description_anchor .description_anchor_list .description_anchor_item a span {
    height: 0;
  }
}

.single_description_anchor .description_anchor_list .description_anchor_item a:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/arrow_down.png) no-repeat center center/cover;
  width: 1.8rem;
  height: 1.8rem;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .single_description_anchor .description_anchor_list .description_anchor_item a:after {
    width: 2.4rem;
    height: 2.4rem;
    right: 1.5rem;
  }
}

.single_description_anchor .description_anchor_list .description_anchor_item a:hover {
  opacity: 0.8;
  border-bottom: 1px solid #1c2081;
}

.single_description_job_content .description_job_content_list {
  gap: 0;
}

.single_description_job_content .description_job_content_list .description_job_content_item {
  border-bottom: 0.2rem solid #1c2081;
  padding: 2rem 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .single_description_job_content .description_job_content_list .description_job_content_item {
    border-bottom: 0.3rem solid #1c2081;
    padding: 5rem 2rem;
  }
}

.single_description_job_content .description_job_content_list .description_job_content_item p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05rem;
}

@media (min-width: 768px) {
  .single_description_job_content .description_job_content_list .description_job_content_item p {
    font-size: 2.4rem;
  }
}

.single_description_job_content .description_job_content_list .description_job_content_item h3 {
  color: #1c2081;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.05rem;
}

@media (min-width: 768px) {
  .single_description_job_content .description_job_content_list .description_job_content_item h3 {
    font-size: 2.4rem;
  }
}

.single_description_job_content .description_job_content_list .description_job_content_item.description_job_content_item_top {
  padding-top: 0;
}

.single_description_job_content .description_job_content_list .description_job_content_item.description_job_content_item_top p {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .single_description_job_content .description_job_content_list .description_job_content_item.description_job_content_item_top p {
    font-size: 3rem;
  }
}

.btn_sec {
  margin-left: auto;
  margin-right: auto;
}

.btn_sec a {
  background: #61ff00;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1c2081;
  width: 27rem;
  height: 4.5rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  padding-right: 4rem;
  padding-top: 0.2rem;
  position: relative;
  transition: 0.2s;
  border: 0.1rem solid #61ff00;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .btn_sec a {
    width: 43.6rem;
    height: 6.9rem;
    font-size: 2.4rem;
    padding-right: 5.6rem;
    padding-top: 0.4rem;
    border: 0.2rem solid #61ff00;
  }
}

.btn_sec a:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/arrow_st.png) no-repeat center center/cover;
  width: 1.7rem;
  height: 1.5rem;
  right: 3.6rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .btn_sec a:after {
    width: 2.7rem;
    height: 2.5rem;
    right: 7.2rem;
  }
}

.btn_sec a:hover {
  border: 0.1rem solid #1c2081;
}

@media (min-width: 768px) {
  .btn_sec a:hover {
    border: 0.2rem solid #1c2081;
  }
}

.btn_sec a:hover:after {
  right: 3.4rem;
}

@media (min-width: 768px) {
  .btn_sec a:hover:after {
    right: 6.8rem;
  }
}

.under_slider_wrap_description {
  padding-bottom: 23rem;
}

@media (min-width: 768px) {
  .under_slider_wrap_description {
    padding-bottom: 62rem;
  }
}

.under_slider_wrap_description .btn_sec {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.single_description_statue .description_statue_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .single_description_statue .description_statue_list {
    gap: 2rem;
    margin-bottom: 5rem;
  }
}

.single_description_statue .description_statue_list .description_statue_item {
  width: calc((100% - 1rem) / 2);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .single_description_statue .description_statue_list .description_statue_item {
    width: calc((100% - 6rem) / 4);
  }
}

.single_description_statue .description_statue_list .description_statue_item p {
  background: #1c2081;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .single_description_statue .description_statue_list .description_statue_item p {
    height: 12rem;
    font-size: 2.7rem;
  }
}

.single_description_statue .description_statue_list .description_statue_item p:after {
  content: "SUPER";
  position: absolute;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 4.2rem;
  color: #3d41a4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: -1;
}

@media (min-width: 768px) {
  .single_description_statue .description_statue_list .description_statue_item p:after {
    font-size: 8rem;
  }
}

.single_description_statue .description_statue_text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .single_description_statue .description_statue_text {
    font-size: 2rem;
  }
}

.single_description_step .description_step_list {
  align-items: center;
}

@media (max-width: 767px) {
  .single_description_step .description_step_list .description_step_img .img {
    margin-bottom: 4rem;
  }
}

.single_description_step .description_step_list .description_step_text .text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .single_description_step .description_step_list .description_step_text .text {
    font-size: 2.6rem;
  }
}

.single_description_step .description_step_list .description_step_text .step_list {
  margin: 4rem auto 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .single_description_step .description_step_list .description_step_text .step_list {
    margin: 10rem 0;
    gap: 9.8rem;
  }
}

@media (max-width: 767px) {
  .single_description_step .description_step_list .description_step_text .step_list {
    flex-direction: column;
  }
}

.single_description_step .description_step_list .description_step_text .step_list .step_item {
  position: relative;
}

.single_description_step .description_step_list .description_step_text .step_list .step_item:before, .single_description_step .description_step_list .description_step_text .step_list .step_item:after {
  position: absolute;
  content: "";
  width: 1.8rem;
  height: 2.8rem;
  background: #9a9a9a;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .single_description_step .description_step_list .description_step_text .step_list .step_item:before, .single_description_step .description_step_list .description_step_text .step_list .step_item:after {
    width: 1.4rem;
    height: 1rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: auto;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .single_description_step .description_step_list .description_step_text .step_list .step_item:before {
    right: -4.6rem;
  }
}

@media (max-width: 767px) {
.single_description_step .description_step_list .description_step_text .step_list .step_item:after {
  content: none;
}
}

@media (min-width: 768px) {
  .single_description_step .description_step_list .description_step_text .step_list .step_item:after {
    right: -7.2rem;
  }
}

.single_description_step .description_step_list .description_step_text .step_list .step_item p {
  background: #1c2081;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 2rem;
  line-height: 1.4;
  border-radius: 0.4rem;
}

@media (min-width: 768px) {
  .single_description_step .description_step_list .description_step_text .step_list .step_item p {
    font-size: 3.6rem;
    padding: 2.4rem 5.2rem;
    border-radius: 1rem;
  }
}

@media (max-width: 767px) {
  .single_description_step .description_step_list .description_step_text .step_list .step_item p {
    min-width: 24rem;
  }
}

.single_description_job_change .under_h3_sec {
  background: #61ff00;
  color: #1c2081;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  padding: 1.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .single_description_job_change .under_h3_sec {
    font-size: 3.2rem;
    padding: 1.6rem;
    margin-bottom: 4rem;
  }
}

.single_description_job_change .description_job_change_top {
  gap: 9.5rem;
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev {
  display: flex;
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev {
    width: 110.5rem;
  }
}

@media (max-width: 767px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev {
    flex-direction: column;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev:before, .single_description_job_change .description_job_change_top .description_job_change_top_prev:after {
  position: absolute;
  content: "";
  width: 1.8rem;
  height: 2.8rem;
  background: #9a9a9a;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev:before, .single_description_job_change .description_job_change_top .description_job_change_top_prev:after {
    top: auto;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.4rem;
    height: 1rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev:before {
    right: -4.6rem;
  }
}

@media (max-width: 767px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev:after {
    bottom: -5rem;
  }
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev:after {
    right: -7.2rem;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item {
  background: #d8d9ed;
  color: #1c2081;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 9.6rem;
}

@media (max-width: 767px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item {
    padding: 1.8rem;
    width: 100%;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item p {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin-top: 0;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item p {
    font-size: 2.4rem;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item:first-child {
  border-radius: 1rem 1rem 0 0;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item:first-child {
    border-radius: 1rem 0 0 1rem;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item:last-child {
  border-radius: 0 0 1rem 1rem;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item:last-child {
    border-radius: 0 1rem 1rem 0;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item_pri {
  background: #1c2081;
  color: #fff;
  flex-direction: column;
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item_pri .title {
  margin-bottom: 0;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item_pri .title {
    font-size: 3.6rem;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item_pri p:not(.title) {
  font-size: 1.2rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item_pri p:not(.title) {
    font-size: 1.6rem;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item_plus {
  position: relative;
}

@media (max-width: 767px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item_plus {
    padding-bottom: 3.5rem;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item_plus:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/ic_plus.png) no-repeat center center/cover;
  width: 3.7rem;
  height: 3.7rem;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

@media (max-width: 767px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_prev .description_job_change_top_prev_item_plus:after {
    width: 2.5rem;
    height: 2.5rem;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_next {
  width: 23.2rem;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_next {
    width: calc(100% - 120rem);
  }
}

@media (max-width: 767px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_next {
    margin: 6.6rem auto 0;
  }
}

.single_description_job_change .description_job_change_top .description_job_change_top_next p {
  background: #d8d9ed;
  border: 0.2rem solid #1c2081;
  color: #1c2081;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_top .description_job_change_top_next p {
    background: #1c2081;
    color: #fff;
    height: 9.6rem;
    font-size: 4rem;
    border: 0.3rem solid #1c2081;
  }
}

.single_description_job_change .description_job_change_step {
  margin: 4rem auto;
  border: 0.2rem solid #151515;
  padding: 4rem 2rem 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step {
    width: 143rem;
    margin: 10rem auto;
    border: 0.3rem solid #151515;
    padding: 7rem 5rem 4rem;
  }
}

.single_description_job_change .description_job_change_step:before, .single_description_job_change .description_job_change_step:after {
  content: "";
  position: absolute;
  background: url(/wordpress/wp-content/uploads/side_clip.png) no-repeat center center/contain;
  width: 3rem;
  height: 3.9rem;
  top: -2.4rem;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step:before, .single_description_job_change .description_job_change_step:after {
    width: 6rem;
    height: 7.8rem;
    top: -5.1rem;
  }
}

.single_description_job_change .description_job_change_step:before {
  left: 1.8rem;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step:before {
    left: 3rem;
  }
}

.single_description_job_change .description_job_change_step:after {
  right: 1.8rem;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step:after {
    right: 3rem;
  }
}

.single_description_job_change .description_job_change_step h4 {
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
  color: #1c2081;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step h4 {
    font-size: 5rem;
    margin-bottom: 3rem;
  }
}

.single_description_job_change .description_job_change_step .description_job_change_step_list {
  position: relative;
  z-index: 2;
}

.single_description_job_change .description_job_change_step .description_job_change_step_list:after {
  content: "超";
  position: absolute;
  width: 10.4rem;
  height: 10.4rem;
  border: 0.3rem solid #d8d9ed;
  color: #d8d9ed;
  font-size: 7.4rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  transform: rotate(-27deg);
  bottom: -0.1rem;
  right: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  padding-bottom: 1.2rem;
  z-index: -1;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step .description_job_change_step_list:after {
    width: 26.2rem;
    height: 26.2rem;
    border: 0.6rem solid #d8d9ed;
    font-size: 18rem;
    padding-bottom: 3rem;
    bottom: -0.6rem;
    right: -1.8rem;
  }
}

.single_description_job_change .description_job_change_step .description_job_change_step_item {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step .description_job_change_step_item {
    min-height: 18.4rem;
    padding: 3rem 0;
  }
}

.single_description_job_change .description_job_change_step .description_job_change_step_item:before {
  content: "超";
  position: absolute;
  width: 12.4rem;
  height: 12.4rem;
  border: 0.3rem solid #1c2081;
  border-radius: 50%;
  font-size: 6rem;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  color: #1c2081;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #61ff00;
  padding-bottom: 1rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .single_description_job_change .description_job_change_step .description_job_change_step_item:before {
    content: none;
  }
}

.single_description_job_change .description_job_change_step .description_job_change_step_item p {
  color: #1c2081;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step .description_job_change_step_item p {
    font-size: 2rem;
    padding-left: 15.4rem;
  }
}

.single_description_job_change .description_job_change_step .description_job_change_step_item p strong {
  font-weight: bold;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step .description_job_change_step_item p strong {
    font-size: 3.1rem;
  }
}

.single_description_job_change .description_job_change_step .description_job_change_step_item:not(:last-child) {
  border-bottom: 0.2rem solid #e9eafd;
}

@media (min-width: 768px) {
  .single_description_job_change .description_job_change_step .description_job_change_step_item:not(:last-child) {
    border-bottom: 0.3rem solid #e9eafd;
  }
}

.single_description_training .description_training_list {
  gap: 2rem;
}

.single_description_training .description_training_list .description_training_item {
  border: 0.2rem solid #1c2081;
}

@media (min-width: 768px) {
  .single_description_training .description_training_list .description_training_item {
    border: 0.3rem solid #1c2081;
    height: 14.2rem;
    display: flex;
    align-items: center;
  }
}

.single_description_training .description_training_list .description_training_item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  background: #d8d9ed;
  border-bottom: 0.2rem solid #1c2081;
  font-size: 1.6rem;
  color: #1c2081;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .single_description_training .description_training_list .description_training_item h3 {
    width: 57rem;
    border-bottom: none;
    border-right: 0.3rem solid #1c2081;
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .single_description_training .description_training_list .description_training_item h3 {
    height: 4rem;
  }
}

.single_description_training .description_training_list .description_training_item p {
  font-size: 1.2rem;
  color: #1c2081;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.1em;
  padding: 2rem 1rem;
  margin: 0;
}

@media (min-width: 768px) {
  .single_description_training .description_training_list .description_training_item p {
    font-size: 1.8rem;
    padding: 2rem 3rem;
  }
}

.single_description_training .description_training_list .description_training_item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.single_description_benefit .description_benefit_list {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .single_description_benefit .description_benefit_list {
    width: 139rem;
  }
}

.single_description_benefit .description_benefit_list .description_benefit_item {
  background: #e9eafd;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
}

@media (min-width: 768px) {
  .single_description_benefit .description_benefit_list .description_benefit_item {
    gap: 1.5rem;
    padding: 3rem 2rem;
    width: calc((100% - 4rem) / 3);
  }
}

.single_description_benefit .description_benefit_list .description_benefit_item .ic {
  margin-bottom: 0;
  width: 6rem;
  height: 6rem;
}

@media (min-width: 768px) {
  .single_description_benefit .description_benefit_list .description_benefit_item .ic {
    width: 8rem;
    height: 8rem;
  }
}

.single_description_benefit .description_benefit_list .description_benefit_item .ic img {
  width: 100%;
  height: auto;
}

.single_description_benefit .description_benefit_list .description_benefit_item h3 {
  margin: 0;
  color: #1c2081;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .single_description_benefit .description_benefit_list .description_benefit_item h3 {
    font-size: 1.8rem;
  }
}

.single_description_benefit .description_benefit_list .description_benefit_item.description_benefit_item_top {
  display: block;
}

.single_description_benefit .description_benefit_list .description_benefit_item.description_benefit_item_top .description_benefit_item_flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .single_description_benefit .description_benefit_list .description_benefit_item.description_benefit_item_top .description_benefit_item_flex {
    gap: 1.5rem;
  }
}

.single_description_benefit .description_benefit_list .description_benefit_item.description_benefit_item_top .description {
  width: 100%;
  color: #1c2081;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 0.2rem solid #fff;
}

@media (min-width: 768px) {
  .single_description_benefit .description_benefit_list .description_benefit_item.description_benefit_item_top .description {
    font-size: 1.4rem;
    border-top: 0.3rem solid #fff;
  }
}

@media (max-width: 767px) {
  .single_description_benefit .description_benefit_list .description_benefit_item:not(:last-child) {
    margin-bottom: 0.8rem;
  }
}

.single_description_description .description_description_table {
  width: 100%;
}

.single_description_description .description_description_table tbody tr {
  border-bottom: 0.1rem solid #151515;
}

@media (max-width: 767px) {
  .single_description_description .description_description_table tbody tr {
    display: flex;
    flex-direction: column;
  }
}

.single_description_description .description_description_table tbody tr th,
.single_description_description .description_description_table tbody tr td {
  font-size: 1rem;
  padding: 1rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .single_description_description .description_description_table tbody tr th,
  .single_description_description .description_description_table tbody tr td {
    padding: 2rem 1rem;
    font-size: 1.8rem;
  }
}

.single_description_description .description_description_table tbody tr th {
  text-align: left;
  color: #1c2081;
  width: 15rem;
}

@media (max-width: 767px) {
  .single_description_description .description_description_table tbody tr th {
    padding-bottom: 0;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .single_description_description .description_description_table tbody tr td {
    padding-top: 0.6rem;
  }
}

.single_description_description .link_entry {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .single_description_description .link_entry {
    margin-top: 10rem;
  }
}

/*# sourceMappingURL=main.css.map */

.sp_flow {
	position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    width: calc(100% - 8rem);
	justify-content: center;
	gap: 1.5rem;
	z-index: 97;
	transition: 0.2s;
}
.sp_flow.hidden {
	opacity: 0;
	visibility: hidden;
}
.sp_flow .flow_item a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 12rem;
	height: 2.8rem;
	background: #fff;
	color: #1c2081;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	border: 1px solid #1c2081;
}
footer.high .sp_flow {
	opacity: 0;
	visibility: hidden;
}