/* ##############################################################################

    KEYFRAME

############################################################################## */

/* btn
**************************************** */
@-webkit-keyframes btn {
  0% {
    top: 50%;
    width: 76px;
  }
  90% {
    top: calc(50% - 3px);
    width: 6px;
    border-radius: 50%;
  }
  100% {
    top: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }
}
@keyframes btn {
  0% {
    top: 50%;
    width: 76px;
  }
  90% {
    top: calc(50% - 3px);
    width: 6px;
    border-radius: 50%;
  }
  100% {
    top: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }
}

/* header
**************************************** */
@-webkit-keyframes header {
  0% {
    top: -8px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes header {
  0% {
    top: -8px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

/* ttl
**************************************** */

/* --- ttl_before --- */
@-webkit-keyframes ttl_before {
  0% {
    height: 0;
  }
  100% {
    height: 80px;
  }
}
@keyframes ttl_before {
  0% {
    height: 0;
  }
  100% {
    height: 80px;
  }
}

/* --- ttl_before_news --- */
@-webkit-keyframes ttl_before_news {
  0% {
    width: 0;
  }
  100% {
    width: 120px;
  }
}
@keyframes ttl_before_news {
  0% {
    width: 0;
  }
  100% {
    width: 120px;
  }
}

@media screen and (max-width: 767px) {
  @-webkit-keyframes ttl_before {
    0% {
      height: 0;
    }
    100% {
      height: 40px;
    }
  }
  @keyframes ttl_before {
    0% {
      height: 0;
    }
    100% {
      height: 40px;
    }
  }
}

/* hero
**************************************** */

/* --- hero_ttl_bg --- */
@-webkit-keyframes hero_ttl_bg {
  0% {
    left: 0;
    right: 100%;
  }
  40% {
    left: 0;
    right: 0;
  }
  60% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
@keyframes hero_ttl_bg {
  0% {
    left: 0;
    right: 100%;
  }
  40% {
    left: 0;
    right: 0;
  }
  60% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}

/* --- fadein --- */
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* --- fadein_lft --- */
@-webkit-keyframes fadein_lft {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein_lft {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- fadein_lft2 --- */
@-webkit-keyframes fadein_lft2 {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein_lft2 {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- fadein_lft --- */
@-webkit-keyframes fadein_lft {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein_lft {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- fadein_lft2 --- */
@-webkit-keyframes fadein_lft2 {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein_lft2 {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- fadein_rgt --- */
@-webkit-keyframes fadein_rgt {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein_rgt {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- fadein_rgt2 --- */
@-webkit-keyframes fadein_rgt2 {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein_rgt2 {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- fadein_btm --- */
@-webkit-keyframes fadein_btm {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein_btm {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein_btm {
  opacity: 0;
  transform: translateY(8px);
}
.active .fadein_btm {
  -webkit-animation: fadein_btm 0.4s ease-out 0.4s 1 forwards;
  animation: fadein_btm 0.4s ease-out 0.4s 1 forwards;
}

/* --- fadein_btm2 --- */
@-webkit-keyframes fadein_btm2 {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein_btm2 {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
}
body {
  padding-top: 102px;
  overflow: hidden;
}
a {
  text-decoration: none;
}
body,
.header {
  min-width: 980px;
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
  body,
  .header {
    min-width: 0;
  }
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 95%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.inner-xs {
  max-width: 1080px;
}
.inner-sm {
  max-width: 1280px;
}
.inner-lg {
  width: 100%;
  max-width: calc(100% - 240px);
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- float --- */
.flt-rgt {
  float: right;
}
.flt-lft {
  float: left;
}

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}
.mgn-btm16 {
  margin-bottom: 16px;
}
.mgn-btm24 {
  margin-bottom: 24px;
}
.mgn-btm32 {
  margin-bottom: 32px;
}
.mgn-btm40 {
  margin-bottom: 40px;
}
.mgn-btm48 {
  margin-bottom: 48px;
}
.mgn-btm56 {
  margin-bottom: 56px;
}
.mgn-btm64 {
  margin-bottom: 64px;
}
.mgn-btm72 {
  margin-bottom: 72px;
}
.mgn-btm80 {
  margin-bottom: 80px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}
.sp-none {
  display: block;
}
.sp-none-inline {
  display: inline;
}
.sp-none-table {
  display: table;
}
.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1400px) {
  .inner-lg {
    max-width: calc(100% - 48px);
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 90%;
  }
  .inner-lg {
    max-width: 100%;
  }
  .mgn-btm16 {
    margin-bottom: 8px;
  }
  .mgn-btm24 {
    margin-bottom: 16px;
  }
  .mgn-btm32 {
    margin-bottom: 16px;
  }
  .mgn-btm40 {
    margin-bottom: 24px;
  }
  .mgn-btm48 {
    margin-bottom: 24px;
  }
  .mgn-btm56 {
    margin-bottom: 32px;
  }
  .mgn-btm64 {
    margin-bottom: 32px;
  }
  .mgn-btm72 {
    margin-bottom: 40px;
  }
  .mgn-btm80 {
    margin-bottom: 40px;
  }
  .sp-mgn-btm16 {
    margin-bottom: 16px;
  }
  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }
  .pc-none {
    display: block;
  }
  .pc-none-inline {
    display: inline;
  }
  .pc-none-table {
    display: table;
  }
  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* flex
**************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}
.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

@media screen and (max-width: 767px) {
  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/* txt
**************************************** */
.txt-lg {
  font-size: 107%;
}
.txt-sm {
  font-size: 93%;
}
.txt-ctr {
  text-align: center;
}
.txt-rgt {
  text-align: right;
}
.txt-bold {
  font-weight: bold;
}
.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}
.txt-attention-kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.txtarea p:not(:last-child) {
  margin-bottom: 1em;
}

/* page_ttl
********************************************** */
.page_ttl {
  position: relative;
  z-index: 10;
  line-height: 1.5;
  background: none !important;
}
.page_ttl .page_ttl-wrap,
.page_ttl .page_ttl-en {
  position: relative;
  display: inline-block;
  background-color: #192f60;
  color: #fff;
  letter-spacing: 0.08em;
  z-index: 1;
}
.page_ttl .page_ttl-wrap {
  padding: 1em 3em 1.5em;
}
.page_ttl .page_ttl-jp {
  font-size: 240%;
}
.page_ttl .page_ttl-jp2 {
  margin-top: 0.5em;
  font-size: 100%;
  line-height: 1.8;
}
.page_ttl .page_ttl-jp2.lg {
  font-size: 125%;
}
.page_ttl_in {
  position: relative;
  z-index: 10;
  padding-top: 60px;
  padding-bottom: 40px;
}
.page_ttl_in::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-size: cover;
  background-position: center;
}
.page_ttl::before {
  content: "";
  position: absolute;
  top: 94px;
  right: 0;
  z-index: 1;
  display: block;
  width: 50%;
  height: 100%;
  border-bottom-width: 320px;
  border-bottom-style: solid;
  border-left: 148px solid transparent;
}

@media all and (-ms-high-contrast: none) {
  .page_ttl .page_ttl-jp {
    padding: 8px 24px 0;
  }
  .single-download .page_ttl .page_ttl-jp {
    padding: 0 24px 8px;
  }
}
@media screen and (max-width: 1240px) {
  .page_ttl_in {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .page_ttl::before {
    border-bottom-width: 210px;
  }
}
@media screen and (max-width: 992px) {
  .page_ttl_in .container {
    padding-top: 96px;
    padding-bottom: 32px;
  }
  .page_ttl_in .page_ttl-jp {
    font-size: 200%;
  }
}
@media screen and (max-width: 767px) {
  .page_ttl,
  .page_ttl_in::before {
    background-size: cover;
    background-position: center;
  }
  .page_ttl::before {
    top: 24px;
    border-bottom-width: 188px;
    border-left: 72px solid transparent;
  }
  .page_ttl_in {
    padding-top: 0;
    padding-bottom: 1px;
  }
  .page_ttl .page_ttl-wrap {
    display: block;
    padding: 1.5em 2em;
  }
  .page_ttl_in .page_ttl-jp {
    font-size: 150%;
  }
  .page_ttl .page_ttl-jp2 {
    margin-top: 1em;
    font-size: 92.8%;
    text-align: left;
  }
  .page_ttl .page_ttl-jp2.lg {
    font-size: 3.25vw;
    text-align: center;
  }
  .page_ttl .page_ttl-jp2 br {
    display: none;
  }
}

/* breadcrumbs
********************************************** */
#breadcrumbs {
  padding: 36px 0;
  font-size: 87%;
}
#breadcrumbs .inner > span {
  display: block;
  max-width: 50%;
}
#breadcrumbs a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #breadcrumbs {
    padding: 48px 0 0;
  }
  #breadcrumbs > .inner {
    overflow-y: scroll;
    padding-bottom: 8px;
  }
  #breadcrumbs .inner > span {
    max-width: none;
    width: max-content;
  }
}

/* ttl
********************************************** */
.ttl-01,
.ttl-02,
.ttl-03 {
  position: relative;
  z-index: 1;
}
.ttl-01,
.ttl-02,
.home .ttl-03 {
  text-align: center;
}
.ttl-01 {
  padding-top: 112px;
  margin-bottom: 56px;
  font-size: 294%;
  line-height: 1.45;
  letter-spacing: 0.09em;
}
.ttl-01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-right-width: 1px;
  border-right-style: solid;
}
.active .ttl-01::before {
  -webkit-animation: ttl_before 0.3s ease-out 1 forwards;
  animation: ttl_before 0.3s ease-out 1 forwards;
}
.lps_sec--inner .ttl-01 {
  margin-bottom: 40px;
  transform: translateY(-16px);
}
.ttl-02 {
  margin-bottom: 40px;
  font-size: 190%;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #fff !important;
}
.ttl-02 span {
  display: inline-block;
  padding: 4px 32px 8px;
}
.ttl-02 span.two-line {
  display: inline-block;
  padding: 24px 40px;
  letter-spacing: 0.1125em;
}
.ttl-03 {
  margin-bottom: 24px;
  font-size: 174%;
  line-height: 1.4;
  letter-spacing: 2px;
}
.lps_parts--column .column_item:not(:only-child) .ttl-03 {
  font-size: 120%;
}
.ttl-03 + p {
  margin-top: 16px;
}
.font-blue {
  color: #014b91;
}
.font-navy {
  color: #192f60;
}
@media all and (-ms-high-contrast: none) {
  .ttl-02 span {
    padding: 8px 32px 4px;
  }
}
@media screen and (max-width: 992px) {
  .ttl-01 {
    padding-top: 72px;
    margin-bottom: 32px;
    font-size: 180%;
    letter-spacing: 1px;
  }
  .ttl-01::before {
    top: 0;
    margin: 25px auto 0;
  }
  .ttl-02 {
    margin-bottom: 24px;
    font-size: 150%;
  }
  .ttl-03 {
    margin-bottom: 16px;
    font-size: 130%;
  }
}
@media screen and (max-width: 767px) {
  .lps_sec--inner .ttl-01 {
    margin-bottom: 0;
    transform: translateY(-24px);
  }
  .ttl-02 span {
    padding: 8px 16px 12px;
    line-height: 1.2;
  }
  .ttl-02 span.two-line {
    display: inline-block;
    padding: 12px 24px;
  }
  .ttl-03 {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 350px) {
  .ttl-01 {
    font-size: 143%;
  }
  .ttl-02 {
    font-size: 136%;
  }
  .ttl-03 {
    font-size: 115%;
  }
}

/* btn
********************************************** */

/* --- btn --- */
.btn a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 15px 32px;
  min-width: 280px;
  border-style: solid;
  border-width: 1px;
  text-align: center;
  font-size: 120%;
  background-color: #fff;
}
.btn:not(.btn2):not(.btn-wh) a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  display: block;
  width: 76px;
  height: 1px;
}
.btn:not(.btn2):not(.btn-wh) a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -40px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.4s ease-out;
}
.btn.btn-ctr {
  text-align: center;
}
.btn.btn-ctr a {
  margin-left: auto;
  margin-right: auto;
}
.btn svg {
  transition: all 0.4s ease-out;
}
.btn a[target="_blank"]:not(.bg-grn) {
  padding-right: 56px;
}
.btn a[href$=".pdf"] {
  padding-left: 56px;
}
.btn a:hover {
  color: #fff;
}
.btn:not(.btn2):not(.btn-wh) a:hover::before {
  -webkit-animation: btn 0.3s ease-out 1 forwards;
  animation: btn 0.3s ease-out 1 forwards;
}
.btn:not(.btn2):not(.btn-wh) a:hover::after {
  top: calc(50% - 16px);
  right: -53px;
  width: 32px;
  height: 32px;
  opacity: 0.1;
}
.btn a:hover svg {
  fill: #fff;
}

/* --- btn2 / btn-wh --- */
.btn2 a,
.btn-wh a {
  padding: 18px 32px;
  font-size: 107%;
  color: #fff;
}
.btn2 a {
  border: none;
}
.btn2 a::before,
.btn-wh a::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top-width: 2px;
  border-top-style: solid;
  border-right-width: 2px;
  border-right-style: solid;
}
.btn2 a:hover {
  background-color: rgb(0, 75, 145) !important;
}
a.bg-grn:hover {
  background-color: rgb(32, 134, 138) !important;
}
.btn-wh a:hover {
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .btn a[target="_blank"] {
    padding-right: 32px;
  }
  .btn a[target="_blank"]::after {
    right: 10px;
  }
  .btn a[href$=".pdf"]::after {
    right: 7px;
    width: 20px;
    height: 9px;
  }
  .btn a {
    min-width: 240px;
    padding: 14px 24px;
    font-size: 108%;
  }
  .btn2 a,
  .btn-wh a {
    padding: 14px 24px;
    font-size: 100%;
  }
}

@media screen and (max-width: 320px) {
  .btn a,
  .hero .btn a {
    min-width: 200px;
    padding: 14px 24px;
    font-size: 108%;
  }
  .btn2 a {
    min-width: 240px;
  }
}

/* cta
********************************************** */
.cta {
  margin: 1em auto 0;
  padding-bottom: 0;
}
.cta-block {
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}
.cta .btn a::before {
  top: 0;
  bottom: 0;
  margin: auto;
  right: 32px;
  width: 0.5em;
  height: 0.5em;
  aspect-ratio: 1 / 1;
  border-top-width: 2px;
  border-right-width: 2px;
}
.cta--tel a {
  border: none;
  width: 100%;
  padding: 8px 32px;
}
.cta--tel .num {
  font-size: 175%;
  line-height: 1;
}
.cta--tel img {
  display: inline-block;
  margin-right: 10px;
  transform: translateY(-2px);
}
.cta--tel.btn a::before {
  display: none;
}
.cta--contact {
  font-size: 125%;
}
.cta--contact a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  min-width: 0;
  padding: 16px 64px 16px 32px;
  font-size: 100%;
  height: 100%;
}
.cta--contact img {
  margin-right: 16px;
}

@media all and (-ms-high-contrast: none) {
  .cta--tel .num {
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  .cta {
    width: 90%;
    margin: 2em auto;
  }
  .cta-block {
    width: 100%;
    row-gap: 6px;
  }
  .cta .btn a::before {
    display: block;
    width: 8px;
    height: 8px;
    right: 20px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
  .cta--tel a {
    width: 100%;
    min-width: 100%;
    padding: 12px 8px;
    letter-spacing: 0;
    font-size: 3.4vw;
  }
  .cta--tel .num {
    margin-bottom: -2px;
    font-size: 5.7vw;
  }
  .cta--tel img {
    width: 2.55vw;
    margin-right: 6px;
    transform: translateY(-4px);
  }
  .cta--contact {
    margin-left: 0;
    font-size: 120%;
  }
  .cta--contact a {
    padding: 20px 8px !important;
    font-size: 3.5vw;
    letter-spacing: 0;
  }
  .cta--contact img {
    width: 5.5vw;
    margin-right: 6px;
  }
  .cta .btn a::before {
    display: none;
  }

  .post_fix_cta {
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
  }
  .post_fix_cta a {
    position: relative;
    display: block;
    padding: 10px 32px 10px 20px;
    color: #fff;
    background-color: rgb(40, 167, 149);
    text-align: center;
    font-size: 3.6vw;
  }
  .post_fix_cta a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 14px;
    bottom: 0;
    margin: auto 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
  }
}

/* ##############################################################################

    HEADER

############################################################################## */

.header {
  position: fixed;
  top: -8px;
  z-index: 9999;
  width: 100%;
  height: 102px;
  padding-left: 32px;
  padding-right: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  opacity: 0;
  -webkit-animation: header 0.4s ease-out 0.8s 1 forwards;
  animation: header 0.4s ease-out 0.8s 1 forwards;
  background-color: #fff;
}
.home .header {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.header > .flex {
  height: 100%;
}

.header--top {
  width: 100%;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}
.header--logo a {
  display: block;
  transform: translateY(-2px);
}
.header--logo a.flex,
.footer--logo a.flex {
  display: flex;
  align-items: center;
  transform: translateY(-2px);
}
.header--logo a img,
.footer--logo a img {
  margin-right: 1em;
}
.header--logo a:hover {
  opacity: 0.7;
}
.header--logo a span,
.footer--logo a span {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  margin-top: 4px;
}

/* --- header--tel_area --- */
.header--tel_area {
  padding-right: 180px;
  gap: 8px;
  margin-left: 2em;
}
.header--tel_area li {
  width: 100%;
  height: 100%;
}
.header--tel_area li a,
.header--tel_area li button {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  text-align: center;
}
.header--tel_area li form {
  height: 100%;
}
.header--tel_area li.tel_area--dl form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header--tel_area li.tel_area--dl button {
  position: relative;
  padding: 20px 40px 20px 18px;
  height: auto;
  border: 1px solid #0e7be0;
  background-color: #0e7be0;
  color: #fff;
}
.header--tel_area li.tel_area--dl button::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top-width: 2px;
  border-top-style: solid;
  border-right-width: 2px;
  border-right-style: solid;
}
.header--tel_area li.tel_area--dl .pos-ab {
  text-align: center;
  margin-bottom: 2px;
  color: #0e7be0;
}
.header--tel_area li button {
  appearance: none;
  border: none;
  border: 1px solid rgb(25, 47, 96);
  background-color: #fff;
  cursor: pointer;
  transition: all 0.4s ease-out;
  font-weight: 700;
}
@media (any-hover: hover) {
  .header--tel_area li button:hover {
    border-color: rgb(0, 75, 145);
    background-color: rgb(0, 75, 145);
  }
  .header--tel_area li.tel_area--dl button:hover {
    color: #fff;
  }
}
.tel_area--tel a {
  width: 220px;
  margin: 0 8px;
  padding-top: 10px;
  font-weight: bold;
  font-size: 94%;
}
.tel_area--tel img {
  display: inline-block;
  margin-right: 10px;
  transform: translateY(-3px);
}
.tel_area--tel .num {
  font-size: 256%;
  line-height: 1;
}
.header--tel_area .tel_area--contact a,
.header--tel_area .tel_area--dl button {
  padding-inline: 12px;
  color: #fff;
  margin-right: 0;
  text-decoration: none;
  white-space: nowrap;
  font-size: 94%;
}
.header--tel_area .tel_area--contact a {
  position: absolute;
  right: 0;
  flex-direction: column;
  justify-content: center;
  width: 180px;
  height: 140px;
}
.header--tel_area .tel_area--dl button img {
  max-width: 20px;
}
.header--tel_area .tel_area--dl button {
  color: rgb(25, 47, 96);
}
.header--tel_area .tel_area--dl button img {
  transition: all 0.4s ease-out;
}

@media all and (-ms-high-contrast: none) {
  .tel_area--tel .num {
    font-size: 255%;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 1730px) {
  .header {
    padding-left: 16px;
  }
  .header--logo img {
    width: 200px;
    margin-right: 16px;
  }
  .header--logo a span {
    font-size: 10px;
  }
}
@media screen and (max-width: 1390px) {
  .tel_area--tel a {
    margin: 0;
  }
  .tel_area--tel a {
    width: 200px;
    margin: 0 12px 0 4px;
  }
  .tel_area--tel .num {
    font-size: 224%;
  }
}
@media screen and (max-width: 1620px) {
  .header--logo a span {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .gnav--menu .fixed_btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header > .flex {
    width: 100%;
  }
  .header .container {
    width: 100%;
  }
  .header--tel_area {
    display: none;
  }
  .header--top {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .header--logo a {
    margin-left: 12px;
    transform: translateY(-2px);
  }
  .header .header--logo img {
    width: auto;
    max-width: 100%;
    height: 24px;
  }
  .header--logo a span.sp-none,
  .footer--logo a span.sp-none {
    display: none;
  }
  .header--tel_area {
    display: none;
  }
  .tel_area--tel .num {
    font-size: 200%;
  }
  .header .tel_area--tel img {
    width: 16px;
    transform: translateY(-5px);
  }
}

/* gnav
********************************************** */
.gnav {
  height: 100%;
  border: none;
  font-size: 107%;
}
.gnav .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnav--menu {
  height: 102px;
}
.gnav--menu li {
  position: relative;
  display: inline-block;
}
.gnav--menu > li:nth-of-type(11) {
  display: none;
}
.gnav--menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  padding: 0 1em;
}
.gnav--menu a:hover,
.gnav--menu li:not(.fixed_btn) .current {
  color: rgb(41, 107, 169);
}
.gnav--menu li:not(.fixed_btn) .current::before {
  content: "";
  position: absolute;
  bottom: 32px;
  left: 20px;
  right: 20px;
  display: block;
  height: 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
/*.gnav_sub_toggle {
  display: none;
  cursor: pointer;
}*/
.gnav--menu .head_sub_nav--wrap a:hover {
  opacity: 0.7;
}
.gnav--menu .arrow,
.gnav--menu .gnav_sub_toggle {
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnav--menu .arrow::before,
.gnav--menu .gnav_sub_toggle::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  margin-left: 0.25em;
  aspect-ratio: 1.25 / 1;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  transition: all 0.4s ease-out;
}
.gnav--menu a:hover + .arrow::before,
.gnav--menu a:hover + .gnav_sub_toggle::before {
  background-color: rgb(41, 107, 169);
}
.head_sub_nav--wrap {
  position: absolute;
  top: 102px;
  right: -32px;
  left: -32px;
  z-index: 10000;
  font-size: 93%;
  text-align: left;
  display: block;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  text-align: center;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.head_sub_nav--wrap.lg {
  right: -108px;
  left: -108px;
}
.head_sub_nav--wrap::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-right-width: 1px;
  border-right-style: solid;
  transition: all 0.4s;
}
.head_sub_nav--wrap li {
  display: block;
}
.head_sub_nav--wrap li:not(:last-child) {
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.gnav--menu .head_sub_nav--wrap a {
  display: block;
  padding: 12px 24px;
  color: #fff;
  font-size: 93%;
}
.gnav--menu .head_sub_nav--wrap a:hover {
  opacity: 0.6;
}
.gnav--menu .fixed_btn {
  position: fixed;
  top: 102px;
  right: 0;
  z-index: 9999;
}
.gnav--menu .fixed_btn.mail {
  right: 220px;
}
.gnav--menu .fixed_btn.ct,
.gnav--menu .fixed_btn.dl,
.gnav--menu .fixed_btn.tel p:not(.num) {
  display: none;
}
.gnav--menu .fixed_btn.dl button {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  text-align: center;
}
.gnav--menu .fixed_btn.dl form {
  height: 100%;
}
.gnav--menu .fixed_btn.dl button {
  width: 100%;
  appearance: none;
  border: none;
  background-color: rgb(25, 47, 96);
  cursor: pointer;
  transition: all 0.4s ease-out;
  font-weight: 700;
}
@media (any-hover: hover) {
  .gnav--menu .fixed_btn.dl button:hover {
    background-color: rgb(0, 75, 145);
  }
}
.gnav--menu .fixed_btn.dl button {
  padding-inline: 12px;
  color: #fff;
  margin-right: 0;
  text-decoration: none;
  white-space: nowrap;
  font-size: 94%;
}
.gnav--menu .fixed_btn.dl button img {
  max-width: 20px;
}
.gnav--menu .fixed_btn.dl button img {
  filter: brightness(0) invert(1);
}
.gnav--menu .fixed_btn a {
  display: inline-block;
  width: 212px;
  padding: 0.75em;
  font-size: 94%;
  border: solid 1px;
  border-top: none;
  background-color: #fff;
  text-align: center;
}
.gnav--menu .fixed_btn .num {
  font-size: 150%;
}
.gnav--menu .fixed_btn .num img {
  margin-right: 0.4em;
  transform: translateY(-2px);
}
.tel_area--dl a,
.fixed_btn.dl a,
.cta-single li.dl a {
  background-color: #1264b1;
}
.tel_area--dl a:hover,
.fixed_btn.dl a:hover,
.cta-single li.dl a:hover {
  background-color: #004b91;
}

@media screen and (min-width: 768px) {
  .header--tel_area .tel_area--dl button,
  .header--tel_area .tel_area--contact a,
  .gnav--menu a {
    font-size: clamp(14px, calc(16 / 1440 * 1vw), 16px);
  }
  .gnav--menu li:hover .head_sub_nav--wrap {
    visibility: visible;
    opacity: 1;
  }
  .gnav--menu li:hover .head_sub_nav--wrap::before {
    height: 24px;
    transition-delay: 0.5s;
  }
  .gnav--menu .head_sub_nav--wrap a:hover {
    color: #fff;
  }
}
@media screen and (max-width: 1620px) and (min-width: 768px) {
  .gnav--menu > li:nth-of-type(7) {
    display: none;
  }
}
@media screen and (max-width: 1500px) and (min-width: 768px) {
  .gnav--menu > li:nth-of-type(6) {
    display: none;
  }
}
@media screen and (max-width: 1550px) {
  .gnav--menu a {
    padding: 0 0.75em;
  }
  .gnav--menu li:not(.fixed_btn) .current::before {
    left: 8px;
    right: 8px;
  }
}
@media screen and (max-width: 1230px) {
  .gnav--menu a {
    font-size: 87.5%;
    padding: 0 0.5em;
  }
  .header--tel_area {
    margin-left: 1em;
  }
  .gnav--menu .arrow,
  .gnav--menu .gnav_sub_toggle {
    right: 0.5em;
  }
}
@media screen and (max-width: 1020px) and (min-width: 768px) {
  .gnav--menu > li:nth-of-type(1) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .gnav {
    display: none;
    width: 100%;
    border: none;
    text-align: center;
  }
  .gnav--menu {
    position: fixed;
    height: calc(100% - 60px);
    width: 100%;
    margin: 0;
    padding: 0 8% 8%;
    top: 60px;
    left: 0;
    z-index: 300;
    overflow: scroll;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .gnav--menu li {
    position: relative;
    display: block;
  }
  .gnav--menu .gnav--menuIcon {
    margin: 0;
  }
  .gnav--menu a {
    display: block;
    height: auto;
    padding: 1em;
    font-size: 100%;
    text-align: left;
    border-bottom: solid 1px;
  }
  .gnav--menu a::before {
    display: none;
  }
  .gnav--menu li:not(.fixed_btn) .current::before {
    display: none;
  }
  .gnav--menu .fixed_btn {
    position: static;
    top: 0;
    right: 0;
    margin-bottom: 6px;
  }
  .gnav--menu .fixed_btn.ct {
    margin-top: 2rem;
  }
  .gnav--menu .fixed_btn.ct,
  .gnav--menu .fixed_btn.dl,
  .gnav--menu .fixed_btn.tel p:not(.num) {
    display: block;
  }
  .gnav--menu .fixed_btn a,
  .gnav--menu .fixed_btn button {
    display: block;
    width: 100%;
    padding: 12px;
  }
  .gnav--menu .fixed_btn.ct a,
  .gnav--menu .fixed_btn.dl a,
  .gnav--menu .fixed_btn.dl button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 112.5%;
  }
  .gnav--menu .fixed_btn a {
    border-top: solid 1px;
  }
  .gnav--menu .fixed_btn.ct img,
  .gnav--menu .fixed_btn.dl img {
    margin-right: 0.75em;
  }
  .gnav--menu .fixed_btn .num {
    font-size: 200%;
  }
  .gnav--menu .fixed_btn .num img {
    transform: translateY(0px);
  }
  .gnav--menu .fixed_btn.tel p:not(.num) {
    margin-top: 0.5em;
    line-height: 1.2;
  }
  .head_sub_nav--wrap {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    height: auto;
    display: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .head_sub_nav--wrap li {
    background-color: transparent !important;
  }
  .gnav--menu .head_sub_nav--wrap a {
    position: relative;
    display: block;
    color: rgb(25, 47, 96);
    background-color: rgba(25, 47, 96, 0.05);
    font-size: 100%;
    padding-left: 2em;
  }
  .gnav--menu .head_sub_nav--wrap a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1em;
    bottom: 0;
    margin: auto;
    display: block;
    width: 0.5em;
    height: 0;
    border-top-style: solid;
    border-top-width: 1px;
  }
  .gnav--menu .arrow,
  .gnav--menu .gnav_sub_toggle {
    right: 0;
    bottom: auto;
    width: 57px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: solid 1px;
  }
  .gnav--menu .arrow::before,
  .gnav--menu .gnav_sub_toggle::before {
    width: 0.8em;
    transform: translateY(0);
  }
  .gnav--menu .arrow.active::before,
  .gnav--menu .gnav_sub_toggle.active::before {
    transform: rotate(-180deg) translateY(2px);
    background-color: rgb(41, 107, 169);
  }

  .gnav_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 9999;
  }
  .gnav_btn--lines {
    position: relative;
    width: 28px;
    height: 22px;
  }
  .gnav_btn--lines span {
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
  }
  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    top: calc(50% - 1px);
  }
  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }
  .active .gnav_btn--lines span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }
  .active .gnav_btn--lines span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }

  .header .cta_btn {
    position: fixed;
    top: 8px;
    width: 45px;
    height: 45px;
  }
  .header .cta_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 11px;
  }
  .header .contact_btn {
    right: 112px;
  }
  .header .contact_btn a {
    background-color: rgb(40, 167, 149);
  }
  .header .tel_btn {
    right: 60px;
  }
  .header .tel_btn a {
    border: 2px solid;
    color: #192f60;
  }
  .tel_btn img {
    width: 13px;
  }
}

/* ##############################################################################

    CONTACT

############################################################################## */

.contact_tel_area {
  margin: 0 auto;
  padding: 24px 16px 0;
  max-width: 660px;
  background-color: #fff;
}
.contact_intro {
  background-color: #fff;
}
.contact_intro--img {
  background-image: url(../images/index/hero_img.jpg);
  background-size: cover;
  background-position: -50px;
  width: 50%;
  height: auto;
  align-self: stretch;
}
.contact_intro--text_wrap {
  width: 50%;
  padding: 20px 16px 20px 40px;
}
.contact_intro--text_wrap--btn {
  background-color: rgb(40, 167, 149);
  display: block;
  width: 240px;
  padding: 20px 32px;
  margin: 0 auto;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: inherit;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 0.4s ease-out;
}
.contact_intro--text_wrap--btn:hover {
  opacity: 0.7;
  color: #fff;
  transition: all 0.4s ease-out;
}
.contact_txt_area {
  position: relative;
  z-index: 1;
  padding: 24px 16px 0;
  margin: 0 auto;
  max-width: 660px;
  background-color: rgb(40, 167, 149);
}
.contact_txt_area .txt-bold {
  color: #fff;
}
.contact_txt_area .ttl-02 {
  padding-block: 24px;
}
.contact_txt-bold {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .contact_tel_area {
    padding: 24px 16px;
    margin: 16px auto 32px;
  }
  .contact_intro--text_wrap {
    width: 100%;
    padding: 20px 16px;
  }
}

/* juicerタグ非表示 */
.page-contact div[data-role="juicer-popup"],
.page-thanks div[data-role="juicer-popup"] {
  display: none !important;
}

/* ##############################################################################

    FOOTER

############################################################################## */

.footer {
  padding: 64px 0 60px;
}
.footer,
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #fff;
}
.footer .inner {
  position: relative;
}
@media screen and (max-width: 1300px) {
  .footer .inner.flex-sp-block {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 44px 0 16px;
    font-size: 86%;
  }
  .footer .inner {
    width: 84%;
  }
}

/* footer_link
********************************************** */
.footer_link {
  padding: 56px 0;
}
.footer_link .ttl-01::before {
}
.footer_link li {
  width: calc(50% - 39px);
  min-width: 280px;
  text-align: center;
}
.footer_link li .bg-grn,
.cta-single li .bg-grn {
  border: none;
  color: #fff !important;
}
.cta-single li.dl a {
  border: none;
  color: #fff !important;
}
.footer_link .tel_area--tel a {
  display: block !important;
  width: 100%;
  margin: 0;
  padding-top: 9px;
  padding-bottom: 7px;
  text-align: center;
  font-size: 87%;
}
.footer_link .tel_area--tel a::before {
  display: none;
}
.footer_link .tel_area--tel .num {
  font-size: 175%;
}
.footer_link .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 125%;
}
.footer_link .btn img {
  margin-right: 10px;
}
.footer_bnr {
  padding-top: 56px;
}
.footer_bnr a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1250px) {
  .footer_link li {
    width: calc(33.333% - 39px);
  }
  .footer_link li:nth-of-type(3) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer_link {
    padding: 40px 0;
  }
  .footer_link li {
    width: 100%;
    text-align: center;
  }
  .footer_link li:nth-of-type(3) {
    display: block;
  }
  .footer_link li:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .footer_link .btn a {
    min-width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 112.5%;
  }
  .footer_link .tel_area--tel a {
    padding-top: 12px;
    padding-bottom: 12px;
    margin: 0 auto;
  }
  .footer_link .tel_area--tel a::before {
    display: block;
  }
  .footer_link .tel_area--tel img {
    width: 14px;
    margin-right: 6px;
    transform: translateY(-4px);
  }
  .footer_link .tel_area--tel .num {
    font-size: 175%;
  }
  .footer_bnr {
    padding-top: 20px;
  }
}

/* footer_about
********************************************** */

/* --- footer--logo --- */
.footer--logo {
  margin-bottom: 1em;
}
.footer--logo a {
  display: inline-block;
}

/* --- footer--add --- */
.footer--add {
  margin-bottom: 6px;
}

/* --- footer--tel / fax --- */
.footer--tel,
.footer--fax {
  line-height: 1.4;
  font-size: 174%;
}
.footer--bnr {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}

/* --- pbl --- */
.copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 80%;
  line-height: 1;
}
.pbl {
  display: block;
  margin-left: 16px;
  opacity: 0.5;
}
.pbl:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .footer--logo {
    width: 200px;
  }
  .footer--tel,
  .footer--fax {
    line-height: 1.2;
  }
  .copyright {
    position: static;
    bottom: auto;
    left: auto;
  }
  .pbl {
    transform: translateY(-2px);
  }
}

/* footer_nav
********************************************** */
.footer_nav {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  margin-left: 5vw;
}
.fnav--menu {
  display: flex;
  flex-wrap: wrap;
}
.fnav--menu > li {
  width: 33%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 1.5em;
}
.fnav--menu > li > a {
  font-size: 106.25%;
}
.footer_nav a:hover {
  opacity: 0.5;
  color: #fff;
}
.footer_nav .child,
.footer_nav .sub-menu {
  padding-top: 0.75em;
  margin-top: 0.5em;
  border-top: solid 1px;
}
.footer_nav .child a,
.footer_nav .sub-menu a {
  position: relative;
  display: block;
  padding-left: 1em;
  margin-bottom: 0.5em;
  opacity: 0.7;
}
.footer_nav .child a::before,
.footer_nav .sub-menu a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  display: block;
  width: 0.5em;
  height: 0;
  border-top: solid 1px #fff;
}
@media screen and (max-width: 1300px) {
  .footer_nav,
  .footer_about {
    margin-left: 0;
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 767px) {
  .fnav--menu > li {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1em;
  }
  .fnav--menu > li > a {
    font-size: 112.5%;
  }
  .footer_nav .child,
  .footer_nav .sub-menu {
    display: none;
  }
}

/* ##############################################################################

    INDEX

############################################################################## */

/* hero
********************************************** */
.hero {
  position: relative;
  margin-bottom: 80px;
  overflow: hidden;
}
.hero img {
  max-width: none;
  margin-left: 26%;
  opacity: 0;
  -webkit-animation: fadein 0.5s ease-out 0.3s 1 forwards;
  animation: fadein 0.5s ease-out 0.3s 1 forwards;
}
.hero--txtarea {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero--txtarea .inner {
  width: 100%;
  max-width: none;
  height: 100%;
  padding-left: 6.25%;
  padding-right: 6.25%;
}
.hero--txtarea .ttl {
  margin-bottom: 16px;
  font-size: 400%;
  letter-spacing: 0.08em;
}
.hero--txtarea .txt {
  margin-bottom: 48px;
  font-size: 120%;
  letter-spacing: 0.09em;
  opacity: 0;
  transform: translateX(-8px);
  -webkit-animation: fadein_lft 0.5s ease-out 2.3s 1 forwards;
  animation: fadein_lft 0.5s ease-out 2.3s 1 forwards;
}
.hero--txtarea .ttl,
.hero--txtarea .txt {
  line-height: 1;
}
.hero--txtarea .ttl > span,
.hero--txtarea .txt > span {
  position: relative;
  display: inline-block;
  margin: 2px 0;
}
.hero--txtarea .ttl > span {
  padding: 10px 4px 16px;
}
.hero--txtarea .txt > span {
  padding: 8px 10px 10px;
  background-color: #fff;
}
.hero--txtarea .ttl br:last-child,
.hero--txtarea .txt br:last-child {
  display: none;
}
.hero--txtarea .btn {
  margin-right: 12px;
  opacity: 0;
  transform: translateX(-8px);
  -webkit-animation: fadein_lft 0.5s ease-out 2.6s 1 forwards;
  animation: fadein_lft 0.5s ease-out 2.6s 1 forwards;
}
.hero--txtarea .ttl > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  -webkit-animation: fadein 0.1s ease-out 1.8s 1 forwards;
  animation: fadein 0.1s ease-out 1.8s 1 forwards;
}
.hero--txtarea .ttl span span {
  position: relative;
  z-index: 10;
  opacity: 0;
  -webkit-animation: fadein 0.1s ease-out 1.8s 1 forwards;
  animation: fadein 0.1s ease-out 1.8s 1 forwards;
}
.hero--txtarea .ttl > span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  z-index: 1;
  display: block;
  background-color: rgb(25, 47, 96);
  -webkit-animation: hero_ttl_bg 0.9s ease-out 1.1s 1 forwards;
  animation: hero_ttl_bg 0.9s ease-out 1.1s 1 forwards;
}
.hero--txtarea .ttl > span:nth-of-type(2)::after {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

@media all and (-ms-high-contrast: none) {
  .hero--txtarea .ttl span:nth-of-type(2) span {
    transform: translateY(10px);
  }
  .hero--txtarea .txt span:nth-of-type(2) span {
    transform: translateY(4px);
  }
}
@media screen and (max-width: 767px) {
  .hero {
    margin-bottom: 24px;
  }
  .hero img {
    width: 80%;
    margin-left: 20%;
  }
  .hero--txtarea .inner {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .hero--txtarea .ttl {
    margin-bottom: 16px;
    font-size: 172%;
  }
  .hero--txtarea .txt {
    margin-bottom: 48px;
    font-size: 93%;
  }
  .hero--txtarea .ttl > span {
    margin: 3px 0;
    padding: 8px 6px 8px 12px;
  }
  .hero--txtarea .txt > span {
    padding: 6px 6px 6px 12px;
  }
  .hero--txtarea .btn {
    margin-left: 12px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 340px) {
  .hero img {
    width: 85%;
    margin-left: 15%;
  }
  .hero--txtarea .ttl {
    font-size: 143%;
  }
  .hero--txtarea .txt {
    margin-bottom: 32px;
  }
}

/* home_dl
********************************************** */
.bg-l_ble--before {
  position: relative;
  padding-bottom: 72px;
}
.bg-l_ble--before::before {
  content: "";
  position: absolute;
  top: 204px;
  left: 0;
  right: 0;
  bottom: 0;
}
.home_dl .dl_list {
  margin-bottom: 56px;
}
.dl_list .post {
  position: relative;
  width: calc(33.33% - 27px);
  background-color: #fff;
  text-align: center;
}
.dl_list:not(.scroll-wrap) .post:not(:nth-of-type(3n)) {
  margin-right: 40px;
}
.dl_list .post .post--link {
  height: 100%;
  padding: 38px 24px 90px;
  border-width: 1px;
  border-style: solid;
  border-top-width: 8px;
  border-bottom-width: 8px;
}
.dl_list .post .logo {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 88px;
  height: auto;
}
.dl_list .post--ttl {
  margin-bottom: 22px;
  font-size: 174%;
  line-height: 1.7;
}
.dl_list .post .btn {
  position: absolute;
  bottom: 44px;
  left: calc(50% - 144px);
  width: 288px;
  padding: 10px 8px;
  margin: 0 auto;
  color: #fff;
  background-color: #dd3333;
  font-size: 120%;
  font-weight: bold;
  border-radius: 40px;
  transition: all 0.4s ease-out;
}
.dl_list .post .post--link:hover .btn {
  background-color: #f13737;
}
.dl_list .post .btn img {
  margin-right: 14px;
  transform: translateY(-2px);
}
.subpage .dl_list .post {
  margin-bottom: 24px;
}
.scroll-wrap {
  overflow-x: scroll;
}
.scroll-wrap::-webkit-scrollbar {
  height: 8px;
  background: #eff1f4;
}
.scroll-wrap::-webkit-scrollbar-track {
  background: 0 0;
  border: none;
}
.scroll-wrap::-webkit-scrollbar-thumb {
  background: #c6cbd8;
  border-radius: 10px;
}
.scroll-wrap .post {
  width: auto !important;
  margin-bottom: 2em !important;
}
.scroll-wrap .post:not(:last-child) {
  margin-right: 32px !important;
}
.scroll-wrap .post:last-child {
  margin-right: 0 !important;
}
.scroll-wrap .post a {
  display: block;
  width: 400px;
}

.ranking_mark .post {
  counter-increment: number;
}
.ranking_mark .post::before {
  content: counter(number);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75em;
  padding-right: 0.125em;
  padding-bottom: 0.25em;
  background-color: #192f60;
  color: #fff;
  aspect-ratio: 1 / 1;
  border-radius: 0 0 50% 0;
  font-size: 175%;
  line-height: 1;
  pointer-events: none;
}
.ranking_mark.works_list.sm .post::before {
  font-size: 125%;
}
.ranking_mark .post:nth-child(1)::before {
  background-color: #d39a3c;
}
.ranking_mark .post:nth-child(2)::before {
  background-color: #a3b2d1;
}
.ranking_mark .post:nth-child(3)::before {
  background-color: #977550;
}

@media screen and (max-width: 1340px) {
  .dl_list .post--ttl {
    font-size: 160%;
  }
}
@media screen and (max-width: 1250px) {
  .dl_list .post--ttl {
    font-size: 144%;
  }
  .dl_list .post .post--link {
    padding: 38px 8px 90px;
  }
}
@media screen and (max-width: 1170px) {
  .dl_list .post {
    width: calc(33.33% - 8px);
  }
  .dl_list:not(.scroll-wrap) .post:not(:nth-of-type(3n)) {
    margin-right: 12px;
  }
  .dl_list .post .btn {
    left: calc(50% - 120px);
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .bg-l_ble--before {
    padding-bottom: 48px;
  }
  .bg-l_ble--before::before {
    top: 126px;
  }
  .home_dl .dl_list {
    margin-bottom: 40px;
  }
  .dl_list .post {
    width: 100%;
  }
  .dl_list:not(.scroll-wrap) .post:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .dl_list .post:not(:last-of-type),
  .subpage .dl_list .post {
    margin-bottom: 16px;
  }
  .dl_list .post--ttl {
    font-size: 143%;
  }
  .dl_list .post .btn {
    left: calc(50% - 100px);
    width: 200px;
    padding: 12px 8px;
    font-size: 92%;
  }
  .dl_list .post .btn img {
    width: 12px;
    margin-right: 12px;
    transform: translateY(-4px);
  }
  .dl_list .post .post--link {
    padding: 34px 8px 64px;
  }
  .dl_list .post .btn {
    bottom: 32px;
  }
  .scroll-wrap .post:not(:last-child) {
    margin-right: 5vw !important;
  }
  .scroll-wrap .post {
    margin-bottom: 1em !important;
  }
  .scroll-wrap .post::before {
    font-size: 150%;
  }
  .scroll-wrap .post a {
    width: 75vw;
  }
  .scroll-wrap .post--ttl {
    font-size: 4vw !important;
  }
}
@media screen and (max-width: 350px) {
  .dl_list .post--ttl {
    font-size: 129%;
  }
}

/* home_navi
********************************************** */
.home_navi {
  padding-top: 240px;
  padding-bottom: 120px;
  margin-bottom: 80px;
}
.home_navi::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 76%;
  height: 796px;
  background-image: url(../images/index/navi_bg.jpg);
  background-position: right center;
  opacity: 0;
  transform: translateX(-8px);
}
.home_navi::after {
  content: "";
  position: absolute;
  left: calc(76% - 148px);
  bottom: 0;
  z-index: 2;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 148px 796px 0;
  border-color: transparent #fff transparent transparent;
  opacity: 0;
  transform: translateX(-40px);
}
.home_navi .inner {
  position: relative;
  z-index: 10;
}
.home_navi .ttl--area {
  position: absolute;
  top: -252px;
  left: 0;
  z-index: 20;
}
.home_navi .ttl-01 {
  margin-bottom: 20px;
  font-size: 373%;
  text-align: left;
}
.home_navi .ttl-01::before {
  display: none;
}
.home_navi .ttl--area p {
  max-width: 720px;
  font-size: 120%;
  line-height: 2.1;
}
.home_navi .navi_list {
  padding: 20px 88px 64px;
  margin-right: 0;
  margin-bottom: 56px;
  background-color: #fff;
  opacity: 0;
  transform: translateY(40px);
}
.home_navi.active::before,
.home_navi.active::after {
  -webkit-animation: fadein_lft2 0.4s ease-out 0.6s 1 forwards;
  animation: fadein_lft2 0.4s ease-out 0.6s 1 forwards;
}
.home_navi.active .navi_list {
  -webkit-animation: fadein_btm2 0.4s ease-out 1 forwards;
  animation: fadein_btm2 0.4s ease-out 1 forwards;
}
.home_navi .navi_list .flex {
  margin-bottom: 40px;
}

/* --- navi_list --- */
.navi_list .post {
  position: relative;
  overflow: hidden;
  width: calc(33.33% - 10.67px);
  padding: 2em;
  margin-bottom: 16px;
  background-color: #eff1f4;
  transition: all 0.4s ease-out;
}
.home
  .navi_list
  .post:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)):not(:nth-child(5)):not(
    :nth-child(6)
  ) {
  display: none;
}
.navi_list .post::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2em;
  background-color: #eff1f4;
  transition: all 0.4s ease-out;
}
.navi_list .post:hover,
.navi_list .post:hover::before {
  background-color: #192f60;
  color: #fff;
}
.archive .navi_list .post {
  width: calc(33.33% - 16px);
  max-width: 448px;
  margin-bottom: 32px;
}
.archive .navi_list .post:not(:nth-of-type(3n)) {
  margin-right: 24px;
}
.navi_list .post:not(:nth-of-type(3n)) {
  margin-right: 16px;
}
.navi_list .post--img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
}
.navi_list .post--img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.navi_list .post--ttl {
  display: block;
  max-width: 13em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 137.5%;
  text-align: center;
}
.navi_list .cat--posts {
  height: 100%;
  margin-top: 24px;
  padding: 1em 1.5em;
  background-color: #fff;
}
.navi_list .cat--posts .ttl {
  color: #192f60;
  font-size: 112.5%;
}
.navi_list .cat--posts .list {
  line-height: 1.4;
  margin-top: 0.5em;
}
.navi_list .cat--posts .list a {
  position: relative;
  display: block;
  padding-left: 0.8em;
  margin-top: 0.3em;
}
.navi_list .cat--posts .list a::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.4em;
  aspect-ratio: 1 / 1;
  background-color: #192f60;
  border-radius: 50%;
}
.navi_list .cat--posts .list a:hover {
  opacity: 0.5;
}
.navi_list .cat_list svg {
  fill: rgba(255, 255, 255, 0.5);
}
.navi_list .cat_list a {
  color: #f6f6f6;
  opacity: 0.5;
  font-weight: 500;
}
.navi_list .cat_list a:hover {
  opacity: 1;
}

@media screen and (max-width: 1400px) {
  .home_navi .navi_list {
    padding: 74px 40px 64px;
  }
}
@media screen and (max-width: 767px) {
  .home_navi {
    padding-top: 188px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .home_navi .inner {
    width: 100%;
    max-width: 100%;
  }
  .home_navi .ttl--area {
    top: -204px;
    left: 16px;
    right: 16px;
  }
  .home_navi .ttl-01 {
    font-size: 200%;
  }
  .home_navi .ttl--area p {
    font-size: 100%;
  }
  .home_navi .navi_list {
    padding: 40px 16px 48px;
    margin-bottom: 56px;
    border-right: none;
    border-left: none;
    transform: translateY(40px);
  }
  .home_navi .navi_list .flex {
    margin-bottom: 24px;
  }

  /* --- navi_list --- */
  .navi_list .post {
    width: calc(50% - 6px) !important;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
    padding: 1em;
  }
  .navi_list .post:not(:nth-of-type(2n)) {
    margin-right: 12px !important;
  }
  .navi_list .post::before {
    height: 1em;
  }
  .navi_list .post--img {
    height: 70px;
    margin-bottom: 10px;
  }
  .navi_list .post--img img {
    width: auto;
    height: 100%;
  }
  .navi_list .post--ttl {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 107%;
  }
  .navi_list .cat--posts {
    margin-top: 12px;
    padding: 0.5em 1em;
  }
  .navi_list .cat--posts .ttl {
    font-size: 100%;
  }
  .navi_list .cat--posts .list {
    font-size: 85.7%;
  }
  .navi_list .cat--posts .list a::before {
    top: 0.45em;
  }
  .navi_list .post:last-child:nth-child(odd) {
    width: 100% !important;
    margin-right: 0 !important;
  }

  .navi_list .cat_list a {
    font-size: 72%;
  }
  .navi_list .cat_list svg {
    width: 10px;
    height: 10px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 364px) {
  .home_navi .navi_list {
    padding: 56px 16px 48px;
  }
  .home_navi::before {
    height: 600px;
  }
  .navi_list .post,
  .archive .navi_list .post {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

/* home_service
********************************************** */
.home_service {
  padding-bottom: 40px;
}
.service_list .content {
  width: calc(50% - 40px);
  margin-bottom: 62px;
}
.service_list .content:not(:nth-of-type(even)) {
  margin-right: 80px;
}
.service_list .post--ttl {
  position: absolute;
  bottom: -18px;
  left: 36px;
  font-size: 120%;
  letter-spacing: 0.09em;
}
.service_list .post--ttl span {
  display: inline-block;
  margin: 2px 0;
  padding: 8px 10px;
  background-color: #fff;
  line-height: 1;
}
.service_list .post--ttl br:last-child {
  display: none;
}
.service_list .txtarea {
  padding: 28px 40px 0;
}
.service_list .post--txt {
  padding-bottom: 16px;
}
.service_list .btn:not(:nth-of-type(odd)) {
  margin-left: 16px;
}

@media screen and (max-width: 1490px) {
  .service_list .content {
    width: calc(50% - 16px);
  }
  .service_list .content:not(:nth-of-type(even)) {
    margin-right: 32px;
  }
}
@media screen and (max-width: 1430px) {
  .service_list .txtarea .flex {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service_list .btn {
    margin-left: 0 !important;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .home_service {
    padding-bottom: 0;
  }
  .service_list .content {
    width: 100%;
    margin-bottom: 56px;
  }
  .service_list .post--ttl {
    left: 16px;
  }
  .service_list .txtarea {
    padding: 28px 16px 0;
  }
  .service_list .post--txt {
    padding-bottom: 8px;
  }
  .service_list .post--ttl span {
    padding: 6px;
  }
}
@media screen and (max-width: 400px) {
  .service_list .post--ttl {
    font-size: 100%;
  }
}
@media screen and (max-width: 320px) {
  .service_list .post--ttl {
    left: 8px;
  }
  .service_list .txtarea {
    padding: 28px 8px 0;
  }
}

/* home_works
********************************************** */
.home_works .works_list .flex {
  margin-bottom: 40px;
}
.works_list .post {
  position: relative;
  width: calc(50% - 40px);
  margin-bottom: 16px;
}
.works_list .post:not(:nth-of-type(even)) {
  margin-right: 80px;
}
.subpage .works_list .post {
  margin-bottom: 72px;
}
.works_list .post--img {
  padding-top: 52%;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}
.works_list .post--img.no-img {
  background-size: 70% auto;
  background-repeat: no-repeat;
  opacity: 0.1;
}
.works_list .post--ttl {
  position: absolute;
  top: 20px;
  left: -8px;
  font-size: 120%;
  letter-spacing: 0.09em;
}
.works_list .post--ttl span {
  display: inline-block;
  margin: 2px 0;
  padding: 8px 10px;
  background-color: #fff;
  line-height: 1;
  transition: all 0.4s ease-out;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
}
.works_list a:hover .post--ttl span {
  color: #fff;
}
.works_list .post--ttl br:last-child {
  display: none;
}
.works_list .post--txtarea {
  position: relative;
  max-width: 666px;
  padding-right: 40px;
  margin: 0 auto;
}
.works_list .post--txtarea::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top-width: 2px;
  border-top-style: solid;
  border-right-width: 2px;
  border-right-style: solid;
}
.works_list .post--date {
  font-size: 120%;
  letter-spacing: 0.05em;
}
.works_list .post--txt {
  padding: 4px 0 2px;
}
.works_list .post--date + .post--txt {
  margin-left: 32px;
  padding-left: 40px;
  border-left-width: 1px;
  border-left-style: solid;
}
.works_list .cat_list {
  margin-top: 0.75em;
}
.works_list .cat_list a {
  width: auto;
}
.works_list.posts-roumukanrinavi .post--txtarea {
  padding-right: 0;
}
.works_list.posts-roumukanrinavi .post--txtarea::before {
  display: none;
}

.works_list.sm .post {
  width: 100%;
  margin-bottom: 1.5em;
}
.works_list.sm .post--img {
  margin-bottom: 8px;
}
.works_list.sm .post--txtarea {
  padding-right: 0;
}
.works_list.sm .post--txtarea::before {
  display: none;
}

@media screen and (max-width: 1400px) {
  .works_list .post {
    position: relative;
    width: calc(50% - 16px);
  }
  .works_list .post:not(:nth-of-type(even)) {
    margin-right: 32px;
  }
  .works_list .post--txtarea::before {
    right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .home_works .works_list .flex {
    margin-bottom: 12px;
  }
  .works_list .post {
    width: 100%;
  }
  .works_list .post:not(:nth-of-type(even)) {
    margin-right: 0;
  }
  .works_list .post--ttl {
    top: 8px;
    right: 40px;
    font-size: 100%;
  }
  .works_list .post--ttl span {
    padding: 6px;
    line-height: 1.4;
  }
  .works_list .post--img {
    margin-bottom: 8px;
  }
  .works_list .post--txtarea {
    padding-right: 0;
  }
  .works_list .post--txtarea::before {
    display: none;
  }
  .works_list .post--date {
    width: 100%;
    padding-left: 4px;
    text-align: left;
    font-size: 93%;
    order: 1;
  }
  .works_list .post--txt {
    width: 100%;
    padding: 6px 4px 2px;
    margin-left: 0;
    border-left-width: 0;
  }
  .subpage .works_list .post {
    margin-bottom: 28px;
  }
  .works_list .cat_list {
    margin-top: 0.5em;
  }
}

/* home_bnr
********************************************** */
.home_bnr {
  padding: 120px 0;
}
.home_bnr a {
  position: relative;
  width: calc(25% - 30px);
  max-width: 320px;
  color: #fff;
  background-size: cover;
  font-size: 174%;
  letter-spacing: 0.09em;
  line-height: 1.4;
}
.home_bnr a:not(:last-of-type) {
  margin-right: 40px;
}
.home_bnr a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.home_bnr a:hover {
  color: #fff;
  opacity: 0.9;
}

@media screen and (max-width: 1230px) {
  .home_bnr a {
    width: calc(25% - 18px);
    font-size: 160%;
  }
  .home_bnr a:not(:last-of-type) {
    margin-right: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .home_bnr a {
    font-size: 140%;
  }
}
@media screen and (max-width: 767px) {
  .home_bnr {
    padding: 64px 0 48px;
  }
  .home_bnr a {
    width: calc(50% - 6px);
    margin-bottom: 12px;
    font-size: 115%;
    line-height: 1.6;
  }
  .home_bnr a:not(:last-of-type) {
    margin-right: 12px;
  }
  .home_bnr a:nth-of-type(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 380px) {
  .home_bnr a {
    font-size: 100%;
  }
}

/* home_news
********************************************** */
.home_news {
  min-height: 796px;
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: 120px;
}
.home_news::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 76%;
  height: 796px;
  background-image: url(../images/index/news_bg.jpg);
  background-position: right center;
  opacity: 0;
  transform: translateX(40px);
}
.home_news::after {
  content: "";
  position: absolute;
  right: calc(76% - 148px);
  bottom: 0;
  z-index: 2;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 796px 148px;
  border-color: transparent transparent transparent #fff;
  opacity: 0;
  transform: translateX(40px);
}
.home_news.active::before,
.home_news.active::after {
  -webkit-animation: fadein_rgt2 0.4s ease-out 0.4s 1 forwards;
  animation: fadein_rgt2 0.4s ease-out 0.4s 1 forwards;
}
.home_news .inner {
  position: relative;
  z-index: 10;
}
.home_news .ttl--area {
  position: absolute;
  top: -252px;
  left: 0;
  z-index: 20;
}
.home_news .ttl-01 {
  padding-top: 0;
  margin-bottom: 0;
  text-align: left;
  transform: translateY(-8px);
}
.home_news .ttl-01::before {
  top: 50%;
  left: -170px;
  width: 0;
  height: 0;
  border-top-width: 1px;
  border-top-style: solid;
  border-right-width: 0;
}
.home_news.active .ttl-01::before {
  -webkit-animation: ttl_before_news 0.4s ease-out 1 forwards;
  animation: ttl_before_news 0.4s ease-out 1 forwards;
}
.home_news .content {
  max-width: 1330px;
  padding: 116px 108px 108px;
  margin: 0 auto 0 0;
  border: solid 1px #ddd;
  background-color: #fff;
  opacity: 0;
  transform: translateY(40px);
}
.home_news.active .content {
  -webkit-animation: fadein_btm2 0.4s ease-out 1 forwards;
  animation: fadein_btm2 0.4s ease-out 1 forwards;
}
.home_news .news_list {
  width: calc(100% - 332px);
}

@media screen and (max-width: 1400px) {
  .home_news .content {
    padding: 116px 48px 108px;
  }
  .home_news .news_list {
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 767px) {
  .home_news {
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 56px;
    margin-bottom: 0;
    overflow: hidden;
  }
  .home_news .content {
    padding: 40px 28px 48px;
    transform: translateY(40px);
  }
  .home_news .news_list {
    width: 100%;
  }
  .home_news .ttl-01::before {
    display: none;
  }
}

/* ##############################################################################

    PAGE

############################################################################## */

/* mail-magazine
*************************************************** */
.page-mail-magazine #formy_form {
  max-width: 800px;
  margin: 0 auto 32px;
}
.recaptcha_policy {
  text-align: center;
}
.page-contact .recaptcha_policy {
  padding-top: 2em;
}
.page-mail-magazine .recaptcha_policy {
  padding-bottom: 2em;
}
.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .page-mail-magazine #section_child_01-button_03 .btn {
    text-align: center;
  }
  .page-mail-magazine #formy_form table {
    margin-bottom: 0;
  }
  .page-mail-magazine #formy_form th {
    padding: 8px;
  }
  .page-mail-magazine #formy_form td {
    padding: 8px 0 16px;
  }
  .recaptcha_policy {
    text-align: left;
  }
}

/* contact / download
*************************************************** */
.page-contact .header,
.single-download .header,
.single-book .header {
  position: absolute;
  background-color: transparent !important;
}
.page-contact .page_ttl_in,
.single-download .page_ttl_in,
.single-book .page_ttl_in {
  padding-top: 0;
  padding-bottom: 0;
}
.page-contact .section_pdg {
  padding-top: 64px;
}
.page-contact .page_ttl::before,
.page-contact .page_ttl_in::before,
.page-contact #breadcrumbs,
.single-download .page_ttl::before,
.single-download .page_ttl_in::before,
.single-download #breadcrumbs,
.single-book .page_ttl::before,
.single-book .page_ttl_in::before,
.single-book #breadcrumbs {
  display: none;
}
.page-contact .page_ttl_in,
.single-download .page_ttl_in,
.single-book .page_ttl_in {
  background-color: transparent !important;
}
.page-contact .contact_txt_area,
.single-download .contact_txt_area,
.single-book .contact_txt_area {
  padding-bottom: 24px;
  margin-bottom: -24px;
}
.page-contact .ttl-02,
.single-download .ttl-02,
.single-book .ttl-02 {
  margin-bottom: -24px;
}
.page-contact .ttl-02 span,
.single-download .ttl-02 span,
.single-book .ttl-02 span {
  padding: 12px 40px 16px;
}
.page-contact #formy_form {
  padding: 64px 40px 56px;
  border-width: 1px;
  border-style: solid;
  background-color: #fff;
}
.big.tel_area--tel a {
  width: auto;
  margin-bottom: 24px;
  font-size: 134%;
}
.big.tel_area--tel img {
  margin-right: 16px;
  transform: translateY(-5px);
}
.page-contact .wpcf7-confirm,
.page-contact .wpcf7-submit,
.page-contact .wpcf7-back {
  font-size: 120%;
}
.page-contact .copyright,
.single-download .copyright,
.single-book .copyright {
  position: static;
  bottom: auto;
  left: auto;
  padding-bottom: 40px;
  font-size: 100%;
  opacity: 0.5;
}
.page-contact .page_ttl .page_ttl-wrap {
  padding: 1em 3em;
}
.page-contact .page_ttl .page_ttl-wrap .page_ttl-jp2 {
  display: none;
}
.page-contact .header--logo {
  pointer-events: none;
}

.single-download .page_ttl .page_ttl-jp,
.single-download .page_ttl .page_ttl-en {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .page-contact .page_ttl_in,
  .single-download .page_ttl_in,
  .single-book .page_ttl_in {
    padding-top: 24px;
    padding-bottom: 8px;
  }
  .page-contact .section_pdg {
    padding-top: 0;
  }
  .page-company #parts_child_02-column_01 .mce-content-body p {
    text-align: left !important;
  }
  .page-company #parts_child_02-column_01 .mce-content-body p br {
    display: none;
  }
  .big.tel_area--tel a {
    font-size: 120%;
  }
  .big.tel_area--tel img {
    margin-right: 12px;
    transform: translateY(-3px);
  }
  .page-contact .ttl-02,
  .single-download .ttl-02,
  .single-book .ttl-02 {
    font-size: 120%;
  }
  .page-contact .ttl-02 span,
  .single-download .ttl-02 span,
  .single-book .ttl-02 span {
    padding: 8px 12px;
  }
  .page-contact #formy_form {
    padding: 40px 16px 24px;
  }
  .page-contact .big.tel_area--tel img {
    width: 16px;
  }
  .wpcf7-confirm,
  .wpcf7-submit,
  .wpcf7-back {
    padding: 12px 32px;
  }
  .page-contact .wpcf7-confirm,
  .page-contact .wpcf7-submit,
  .page-contact .wpcf7-back {
    font-size: 100%;
  }
  .page-contact .page_ttl .page_ttl-wrap {
    padding: 1em 2em;
  }
}

/* 給与計算アウトソーシング
*************************************************** */
.page-outsourcing #section-04 #parts_child_04-column_05 .column_item {
  max-width: none;
}

/* thanks
*************************************************** */
@media screen and (max-width: 767px) {
  .page-thanks .mce-content-body p {
    text-align: left !important;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 64px;
}
.archive-works .main_column,
.single-works .main_column,
.archive-download .main_column,
.single-download .main_column {
  margin-right: 0;
}
.single-works .main_column,
.single-download .main_column {
  margin-bottom: 80px;
}
.news--info {
  padding-bottom: 56px;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- post --- */
.post {
  position: relative;
}
.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.post .post--img img {
  overflow: hidden;
  border-radius: 3px;
}
.cat_list {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cat_list svg {
  float: left;
  display: inline-block;
  margin-right: 10px;
  transform: translateY(3px);
}
.cat_list span,
.cat_list a {
  display: block;
  vertical-align: middle;
  line-height: 1.5;
  padding: 0;
  float: left;
  margin-right: 4px;
  margin-bottom: 4px;
  background: transparent;
  font-size: 94%;
  font-weight: bold;
  max-width: calc(100% - 28px);
}
.cat_list a + a::before {
  content: "";
  float: left;
  display: inline-block;
  width: 1em;
  height: 1em;
  clip-path: polygon(65% 0, 60% 0, 10% 100%, 15% 100%);
  background-color: #192f60;
  transform: translateY(0.2em);
}
.cat_list a:hover {
  text-decoration: underline;
}

.archive-download .dl_list .post--ttl {
  font-size: 140%;
}
.archive-download .dl_list .post .btn {
  left: calc(50% - 120px);
  width: 240px;
}
.archive-download .dl_list:not(.scroll-wrap) .post:not(:nth-of-type(3n)) {
  margin-right: 16px;
}

@media all and (-ms-high-contrast: none) {
  .cat_list a {
    max-width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .main_column {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .single-works .main_column,
  .single-download .main_column {
    margin-bottom: 40px;
  }
  .navi-main_txt {
    text-align: left;
  }
  .cat_list svg {
    margin-right: 6px;
  }
  .single .post--date {
    margin-bottom: 4px;
  }
  .single-news .post--date {
    margin-bottom: 24px;
  }
  .archive-download .dl_list .post--ttl {
    font-size: 120%;
  }
  .archive-download .dl_list:not(.scroll-wrap) .post:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
}

/* side_column
**************************************** */
.side_column {
  width: 324px;
}
.archive-works .side_column,
.single-works .side_column,
.single-download .side_column {
  width: 100%;
}
.archive-works .side_column {
  margin-bottom: 88px;
}
.archive-download .side--ttl,
.single-download .side--ttl {
  margin-bottom: 24px;
  border-bottom-style: double;
  border-bottom-width: 2px;
}
.side_form {
  padding: 24px 32px;
  margin-bottom: 24px;
  background-color: #192f60;
}
.side_form label {
  display: block;
  margin-bottom: 8px;
  font-size: 112.5%;
  color: #fff;
}
.side_form fieldset {
  position: relative;
}
.side_form .searchtext {
  width: 100%;
  height: 48px;
  padding: 4px 64px 4px 16px;
  border: none;
  border-radius: 6px;
}
.side_form button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease-out;
}
.side_form button:hover {
  opacity: 0.5;
}
.side_form button svg {
  width: 20px;
  height: 20px;
  fill: #192f60;
}

.side_section:not(:last-child) {
  margin-bottom: 4em;
}
.side--ttl {
  width: 100%;
  padding: 0 4px 16px;
  margin-bottom: 12px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  font-size: 150%;
  letter-spacing: 0.15em;
  line-height: 1;
}
.side--ttl02 {
  width: 100%;
  padding: 8px 24px;
  margin-bottom: 12px;
  font-size: 120%;
  line-height: 1.4;
  background-color: #eff1f4;
}
.parent_cat {
  position: relative;
}

.open_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 25.5px;
  height: 25.5px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
}

.open_btn::before,
.open_btn::after {
  position: absolute;
  content: "";
  inset: 4px;
  margin: auto;
  width: calc(100% - 8px);
  height: 2px;
  background-color: #192f60;
  transition: all 0.4s ease;
}

.open_btn::before {
  transform: rotate(0deg);
}

.open_btn::after {
  transform: rotate(90deg);
}

.open_btn.active::before {
  transform: rotate(0deg);
}

.open_btn.active::after {
  transform: rotate(0deg);
}
.side--link_list {
  display: none;
}
.side--link_list .active {
  display: block;
}
.side--list {
  font-size: 100%;
}
.side--listt:not(.sm) {
  font-size: 120%;
}
.side--list:not(.sm) li:not(:last-of-type) a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 1em;
  margin-left: 16px;
  border-right-width: 1px;
  border-right-style: solid;
  transform: translateX(-2px) translateY(2px) rotate(20deg);
  opacity: 0.5;
}
.side--list:not(.sm) li a {
  display: inline-block;
  padding: 4px 16px;
  padding-left: 0;
  line-height: 1.5;
}
.side--list li a:hover {
  opacity: 0.5;
}

.side--list.sm {
  line-height: 1.6;
}
.side--list.sm > li {
  border-bottom: solid 1px;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.side--list.sm > li > a {
  display: block;
  font-size: 106.25%;
  font-weight: bold;
}
.side--list.sm li li a {
  position: relative;
  display: block;
  margin-top: 0.25em;
  padding-left: 1em;
}
.side--list.sm li li a:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  display: block;
  width: 0.5em;
  height: 0;
  border-top: solid 1px;
}
.side--list.sm .side--link_list {
  padding-top: 0.25em;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}
.posts-side .post--img {
  margin-right: 16px;
  border-radius: 3px;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.posts-side .txtarea {
  flex: 1;
}
.posts-side .post--date {
  margin-bottom: 0;
}
.posts-side .post--ttl {
  line-height: 1.4;
}

/* --- archive --- */
.side_column .archive_list--ttl::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
  transition: 0.4s ease-out;
}
.side_column .archive_list--ttl.active::after {
  transform: rotate(315deg);
}
.side_column .archive_month {
  display: none;
}

/* --- archive-pulldown --- */
.archive-pulldown {
  position: relative;
  margin-left: auto;
  z-index: 1;
}
.archive-pulldown .archive_list {
  position: relative;
  z-index: 1;
  font-size: 92%;
}
.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}
.archive-pulldown .archive_list a {
  display: block;
  padding: 10px 16px;
  text-align: left;
}
.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.archive-pulldown .archive_list--label {
  margin-right: 12px;
}
.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 12px 54px 12px 32px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
  transform-origin: 50% 50%;
}
.archive-pulldown .active .archive_list--btn::after {
  top: 18px;
  transform: rotate(225deg);
}
.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
}
.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}
.archive-pulldown .archive_list--menu a {
  color: #fff;
}

@media screen and (max-width: 1100px) {
  .side_column {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .archive-roumukanrinavi .side_column,
  .single-roumukanrinavi .side_column {
    margin-top: 44px;
  }
  .archive-works .side_column {
    margin-bottom: 44px;
  }
  .archive-download .side_column {
    margin-bottom: 64px;
  }
  .side_section:not(:last-child) {
    margin-bottom: 2.5em;
  }
  .side--ttl {
    font-size: 120%;
  }
  .side--list {
    font-size: 100%;
  }
  .side--list li a {
    padding: 0 4px;
  }
}

/* news
**************************************** */

/* --- news--archive --- */
.news--archive {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111;
}
.news--archive li {
  margin-left: 8px;
  margin-right: 8px;
}
.news--archive a {
  color: #fff;
}
.archive-news .news_list a .icon-new_tab {
  position: static;
  display: inline;
  transform: translateY(1px);
}

/* --- news_list --- */
.news_list .post {
  padding-top: 24px;
  font-size: 107%;
}
body:not(.home) .news_list .post {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 24px;
  border-bottom: solid 1px #ddd;
}
.home .news_list .post:last-of-type {
  margin-bottom: 48px;
}
.news_list .post--date {
  margin-right: 44px;
  font-size: 113%;
  line-height: 1.35;
}
.news_list a[href="javascript:void(0);"],
.news_list a[href="javascript:void(0);"]::before {
  cursor: inherit;
  opacity: 1;
  text-decoration: none;
}
.posts-home_news a[target="_blank"]::after,
.news_list a[target="_blank"]::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab.png);
}
.news_list a .icon-new_tab {
  right: 0;
}
.news_list .post a:not([href="javascript:void(0);"]):hover {
  color: rgb(0, 75, 145);
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .news_list .post {
    display: block;
    padding-top: 16px;
    font-size: 93%;
  }
  .news_list .post,
  body:not(.home) .news_list .post {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 16px;
    border-bottom: solid 1px #ddd;
  }
  .home .news_list .post:last-of-type {
    margin-bottom: 32px;
  }
  .news_list .post--date {
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 16px;
    margin-bottom: 8px;
    font-size: 100%;
  }
}

/* roumukanrinavi
**************************************** */
#clone_bnr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
#clone_bnr.show {
  opacity: 1;
  pointer-events: all;
  z-index: 99999;
}
.clone_bnr_wrap {
  display: inline-flex;
}
#clone_bnr #clone_bnr_close {
  position: absolute;
  top: -10px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  transition: all 0.4s ease-out;
  cursor: pointer;
}
#clone_bnr #clone_bnr_close:hover {
  opacity: 0.7;
}
.roumukanrinavi_category .section_pdg + .section_pdg {
  padding-top: 0;
}
.roumukanrinavi_category .news_list .post,
.single-roumukanrinavi .news_list .post {
  position: relative;
  padding-right: 42px !important;
}
.roumukanrinavi_category .news_list .post::before,
.single-roumukanrinavi .news_list .post::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top-width: 2px;
  border-top-style: solid;
  border-right-width: 2px;
  border-right-style: solid;
}
.roumukanrinavi_category .news_list .post:hover::before,
.single-roumukanrinavi .news_list .post:hover::before {
  color: rgb(0, 75, 145);
  opacity: 0.9;
}

.cta-single {
  margin-top: 40px;
  margin-bottom: 40px;
}
.cta-single .flex {
  padding: 2em 3em;
  background-color: #eff1f4;
}
.cta-single .btn {
  width: 49%;
}
.cta-single .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: none;
  font-size: 125%;
}
.cta-single .btn img {
  margin-right: 1em;
}

@media screen and (max-width: 767px) {
  .roumukanrinavi_category .news_list .post::before,
  .single-roumukanrinavi .news_list .post::before {
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
  }

  .cta-single {
    margin-top: 24px;
  }
  .cta-single .flex {
    padding: 1em;
  }
  .cta-single .btn {
    width: 100%;
  }
  .cta-single .btn:not(:last-child) {
    margin-bottom: 0.5em;
  }
  .cta-single .btn a {
    font-size: 100%;
  }
  .cta-single .btn img {
    margin-right: 0.75em;
  }
  .clone_bnr_wrap {
    width: 90%;
  }
  #clone_bnr #clone_bnr_close {
    top: -36px;
  }
}

/* 埋め込みURLのスタイル */
.wp-embedded-content {
  margin: 0 auto;
  width: 100%;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .wp-embedded-content {
    width: 100%;
  }
}
.single-roumukanrinavi blockquote.wp-embedded-content {
  display: none;
}
.single-roumukanrinavi iframe.wp-embedded-content {
  position: relative !important;
}

/* interview
**************************************** */
.posts-interview {
  display: flex;
  justify-content: center;
  column-gap: 28px;
  row-gap: 40px;
}
.posts-interview .post {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.posts-interview .post--img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 21.5vw;
  background: #f3f3f3;
  overflow: hidden;
  margin-bottom: 0;
}
.posts-interview .post--img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}
.posts-interview .post--img img {
  transition: all 0.4s ease;
}
.posts-interview .post:hover .post--img::after {
  background-color: rgba(0, 0, 0, 0);
}
.posts-interview .post:hover .post--img img {
  transform: scale(1.05);
}
.posts-interview .post--txt {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}
.posts-interview .post--catch {
  font-size: 1.125rem;
  line-height: 1.77;
}
.posts-interview .post p {
  margin-top: auto;
}

@media screen and (max-width: 767px) {
  .posts-interview {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 100%;
  }
  .posts-interview .post {
    width: 100%;
    margin-right: 0;
  }
  .posts-interview .post--img {
    height: 300px;
  }
  .posts-interview .post--catch {
    font-size: 1rem;
  }
}
.interview--contents .eyecatch {
  margin-left: auto;
  margin-right: auto;
}
.interview--content {
  padding: 0 20px;
}
.interview--company_name {
  position: relative;
  margin-bottom: 16px;
  font-size: 1.125rem;
  gap: 16px;
}

.interview--catch {
  margin-bottom: 24px;
  font-size: 2rem;
}

.interview--info {
  padding: 40px 54px;
  border-radius: 24px;
  border: 2px solid rgb(25, 47, 96);
  margin-bottom: 40px;
}
.interview--info .info_logo {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interview--info .info_table {
  width: 100%;
  font-size: 0.8375rem;
}
.interview--info .info_table th,
.interview--info .info_table td {
  padding: 4px 0;
}
.interview--info .info_table th {
  width: 120px;
  padding-right: 16px;
  color: #888;
  text-align: left;
}
.interview--info .info_table td a {
  color: rgb(40, 167, 149);
  gap: 0.5rem;
}
.interview--info .info_table td a svg {
  position: relative;
  right: auto;
  width: 14px;
  aspect-ratio: 1/1;
  fill: rgb(40, 167, 149);
  transform: translateY(0);
}

.interview--abstract {
  letter-spacing: 0.08em;
  line-height: 2.125;
}

@media screen and (max-width: 767px) {
  .single-interview .main_column {
    margin-left: 0;
  }
  .interview--catch {
    font-size: 1.5rem;
    line-height: 1.65;
  }
  .interview--info {
    padding: 24px;
    border-radius: 16px;
  }
  .interview--contents .eyecatch {
    width: auto;
  }
  .interview--content {
    padding: 0;
  }
  .interview--company_name {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .interview--company_name > p {
    font-size: 14px;
  }
  .interview--info .info_logo {
    width: 70%;
    margin: 0 auto 16px;
  }
  .interview--info .info_table {
    width: 100%;
  }
  .interview--info .info_table tr {
    display: block;
  }
  .interview--info .info_table tr {
    margin-block: 4px;
  }
  .interview--info .info_table th {
    min-width: 80px;
    display: block;
    padding-bottom: 0;
    line-height: 1;
  }
  .interview--info .info_table td {
    display: block;
    padding-left: 0px;
    font-size: 1.2em;

    word-break: break-all;
  }
  .make_site--img {
    width: 100%;
    margin-bottom: 16px;
  }
  .make_site--info {
    margin-left: 0;
  }
  .make_site--info .editor-ttl {
    margin-bottom: 16px;
  }
  .interview--content.mce-content-body h2 {
    padding-top: 16px;
    font-size: 1.2rem;
  }
  .interview--content.mce-content-body h2::before {
    top: 0;
    left: 0;
  }
  .interview--content.mce-content-body .ttl::before {
    top: initial;
    bottom: 0;
  }
}

/* glossary
**************************************** */
/* --- glossary--list --- */
.glossary--list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(100% / 11 - 8px), 1fr));
  gap: 8px;
}
.glossary--list a {
  display: block;
  padding: 12px 8px;
  border-radius: 4px;
  letter-spacing: 0.24em;
  font-family: serif;
  text-align: center;
}
.kana--list a {
  background-color: #019f8b;
  color: #fff;
}
.kana--list a:hover {
  opacity: 0.7;
}
.cat--list a {
  color: #168274;
  background-color: #fff;
  border: 1px solid;
}
.cat--list a:hover {
  background-color: #f3f9f7;
}

.posts-glossary {
  .post a {
    display: block;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .glossary--list {
    grid-template-columns: repeat(auto-fit, minmax(calc(100% / 6 - 4px), 1fr));
    gap: 4px;
  }
  .cat--list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */
.single .section_ttl {
  font-size: 240%;
  line-height: 1.45;
  letter-spacing: 0.09em;
}
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  padding-top: 24px;
}
.wp-pagenavi.pc-none {
  display: none;
}
.wp-pagenavi span {
  padding: 5px 16px;
  margin: 4px;
}
.wp-pagenavi a {
  position: relative;
  max-width: 42%;
  display: inline-block;
  vertical-align: top;
  background: #eee;
  line-height: 1.4;
  padding: 8px 16px;
  margin: 4px;
  border-radius: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wp-pagenavi a:hover {
  opacity: 0.5;
}
.single .wp-pagenavi a {
  padding: 16px 20px;
}
.single .wp-pagenavi a[rel="next"] {
  padding-left: 44px;
}
.single .wp-pagenavi a[rel="prev"] {
  padding-right: 44px;
}
.single .wp-pagenavi a[rel="next"]::before,
.single .wp-pagenavi a[rel="prev"]::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 16px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top-width: 1px;
  border-top-style: solid;
  border-right-width: 1px;
  border-right-style: solid;
}
.single .wp-pagenavi a[rel="next"]::before {
  left: 22px;
  transform: rotate(-135deg);
}
.single .wp-pagenavi a[rel="prev"]::after {
  right: 22px;
  transform: rotate(45deg);
}
.wp-pagenavi .pages {
  display: block;
  width: 100%;
  padding-top: 12px;
  order: 1;
  text-align: center;
  color: #bbc3d0;
}

@media only screen and (max-width: 767px) {
  .single .section_ttl {
    font-size: 158%;
  }
  .single .wp-pagenavi {
    margin-top: 64px;
    padding-top: 40px;
    border-top-style: solid;
    border-top-width: 1px;
  }
  .single .wp-pagenavi a {
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }
  .wp-pagenavi.pc-none {
    display: flex;
  }
  .wp-pagenavi.sp-none {
    display: none;
  }
  .single .wp-pagenavi a[rel="next"] {
    text-align: left;
  }
  .single .wp-pagenavi a[rel="prev"] {
    text-align: right;
  }
}

/* writerprofile
**************************************** */
.writerprofile {
  margin-top: 64px;
  border: 8px solid rgba(239, 241, 244, 0.5);
  padding: 0 30px 30px;
}
.writer--ttl {
  display: block;
  width: fit-content;
  margin: 0 auto 0 0;
  padding: 0 30px;
  color: #fff;
  font-weight: 500;
  font-size: 112.5%;
  line-height: 40px;
  background: #232d5c;
  transform: translateY(calc(-50% - 4px));
  font-weight: bold;
  border-radius: 4px;
}
.writer--cont {
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 40px;
}
.writer--img {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  overflow: hidden;
}
.writer--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.writer--text .name {
  font-size: 112.5%;
  font-weight: bold;
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid #232d5c;
}

@media only screen and (max-width: 767px) {
  .writerprofile {
    margin-top: 32px;
    border: 6px solid rgba(239, 241, 244, 0.5);
    padding: 0 20px 16px;
  }
  .writer--ttl {
    padding: 0 16px;
    font-size: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 32px;
    border-radius: 4px;
  }
  .writer--cont {
    display: block;
  }
  .writer--img {
    margin: 0 auto 16px;
  }
}

/* interview
********************************************** */
.home_interview {
  padding-bottom: 5rem;
}
.home_interview .posts-interview {
  margin-bottom: 2rem;
}

/* download
**************************************** */
.single-download .target {
  position: relative;
  padding: 36px 20px 22px;
  margin-left: 16px;
  margin-right: 16px;
  border-width: 1px;
  border-style: solid;
}
.single-download .target .ttl {
  position: absolute;
  top: -20px;
  left: -16px;
  display: inline-block;
  padding: 6px 24px;
  color: #fff;
  font-size: 108%;
  letter-spacing: 0.08em;
}
.target_list li {
  position: relative;
  padding: 4px 0 4px 44px;
}
.target_list li::before {
  content: "";
  width: 8px;
  height: 14px;
  top: 6px;
  left: 20px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.single-download .dl--info {
  width: calc(75% - 64px);
  padding: 48px;
  background-color: #fff;
}
.single-download .dl--form {
  width: 25%;
}

/* --- dl--form --- */
.dl--form #formy_form {
  padding: 40px 8px 0;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
}
.dl--form #formy_form th,
.dl--form #formy_form td {
  display: block;
  width: 100%;
}
.dl--form #formy_form th {
  padding-top: 4px;
  padding-bottom: 0;
  border-bottom: none;
}
.dl--form #formy_form td {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: none;
}
.dl--form #formy_form .wpcf7-confirm,
.dl--form #formy_form .wpcf7-submit,
.dl--form #formy_form .wpcf7-back {
  min-width: 0;
  width: calc(100% - 16px);
  margin: 24px 16px 0 0;
  font-size: 107%;
}
.dl--form #formy_form .ttl {
  margin-bottom: 24px;
  font-size: 160%;
}

@media screen and (max-width: 1500px) {
  .single-download .dl--info {
    width: calc(75% - 16px);
  }
  .dl--form #formy_form {
    padding: 40px 8px 0;
  }
}
@media screen and (max-width: 767px) {
  .single-download .dl--info,
  .single-download .dl--form {
    width: 100%;
  }
  .single-download .dl--info {
    padding: 24px 20px 8px;
    margin-bottom: 16px;
  }
  .single-download .target {
    margin-left: 0;
    margin-right: 0;
    padding: 24px 8px 14px;
  }
  .single-download .target .ttl {
    padding: 2px 12px;
  }
  .target_list li {
    padding: 2px 0 2px 28px;
  }
  .target_list li::before {
    left: 8px;
  }
  .dl--form #formy_form {
    padding: 40px 24px 0;
  }
}

/* roumukanrinavi
**************************************** */
.single-roumukanrinavi .container > .inner {
  padding-top: 0;
}
.single-roumukanrinavi .container .ttl-02 {
  margin-bottom: 0;
  font-size: 160%;
}
.single-roumukanrinavi .container .ttl-02 span {
  display: block;
  text-align: left;
}
.chat--item {
  gap: 32px;
}
.chat--item:not(:last-child) {
  margin-bottom: 32px;
}
.chat--item .speaker {
  width: 150px;
}
.chat--item .speaker .icon {
  aspect-ratio: 1/1;
  width: 88px;
  border-radius: 50%;
  overflow: hidden;
}
.chat--item .comment {
  position: relative;
  width: calc(100% - 364px);
  padding: 4% 5%;
  background-color: #eaf9f6;
  border-radius: 24px;
}
.chat--item.consultant .comment {
  background-color: #f1f8fe;
}
.chat--item .comment::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -32px;
  translate: 0 -50%;
  display: block;
  width: 32px;
  height: 48px;
  background-color: #eaf9f6;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.chat--item.consultant .comment::before {
  left: auto;
  right: -32px;
  background-color: #f1f8fe;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.chat--item .name {
  margin-top: 8px;
  line-height: 1.4;
}
.chat--item .name .sp-none {
  display: inline-block;
}
.chat--item strong {
  padding-bottom: 4px;
  font-weight: 700;
  background: linear-gradient(transparent 0%, transparent 30%, #fef7c0 0%, #fef7c0 100%);
}

/* エディタ内「コメント」 */
.mce-content-body .chat--item {
  margin: 40px 0;
}
.mce-content-body .chat--item .comment {
  width: calc(100% - 280px);
}
.mce-content-body .chat--item img {
  margin: 0;
}

/* search */
.catch-copy {
  font-size: 18px;
}

@media screen and (max-width: 1440px) {
  .chat--item .comment {
    flex: 1;
    width: initial;
  }
  .mce-content-body .chat--item .comment {
    flex: 1;
    width: initial;
  }
}

@media screen and (max-width: 767px) {
  .single-roumukanrinavi .container .ttl-02 {
    font-size: 140%;
  }
  .single-roumukanrinavi .container .ttl-02 span {
    padding: 8px;
  }

  .chat--item {
    gap: 16px;
  }
  .chat--item:not(:last-child) {
    margin-bottom: 16px;
  }
  .chat--item .speaker {
    width: 80px;
  }
  .chat--item .speaker .icon {
    width: 48px;
  }
  .chat--item .comment {
    border-radius: 8px;
  }
  .chat--item .name {
    margin-top: 4px;
    font-size: 12px;
  }
  .chat--item .name .sp-none {
    display: none;
  }
  .chat--item .comment::before {
    left: -20px;
    width: 20px;
    height: 32px;
  }
  .chat--item.consultant .comment::before {
    right: -20px;
  }
}

/* works
**************************************** */
.works--info .cat_list a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .single-works .post--date {
    margin-bottom: 12px;
  }
  .works_list {
    text-align: left;
  }
}

/* book
**************************************** */
.single-book .main_column {
  padding: 48px;
  margin-right: 0;
  background-color: #fff;
}
.single-book .dl_btn-area .btn {
  margin: 16px;
}
.single-book .dl_btn-area a img {
  margin-right: 8px;
  transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
  .single-book .main_column {
    padding: 24px 20px;
  }
  .single-book .dl_btn-area .btn {
    margin: 8px;
  }
  .single-book .editor-ttl {
    margin-top: 24px;
    text-align: left !important;
  }
  .single-book .btn a {
    padding: 14px 24px !important;
  }
}

/* ##############################################################################

    FORMY

############################################################################## */
#formy_form table {
  width: 100%;
}
#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}
#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  width: 34%;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  border-radius: 3px;
  vertical-align: bottom;
  margin: 0;
  padding: 5px 12px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}
#formy_form textarea {
  height: 100px;
}
#formy_form select {
  width: 100%;
  height: 40px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 3px;
}
#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#formy_form input:hover {
  opacity: 0.7;
}
#formy_form textarea:hover {
  opacity: 0.7;
}
#formy_form input:focus {
  outline: none;
}
#formy_form .parsley-validated {
  background-color: #eee;
}
#formy_form .parsley-error {
  background-color: #fee;
}
#formy_form .parsley-success {
  background-color: #fff;
}
.help_text {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 85%;
  color: #999;
}
.hidden_help {
  display: none;
}
.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 85%;
  padding: 8px 16px;
}
.requiredIcon {
  background: #dd8133;
  color: #fff;
  margin: 2px 0 0 1em;
  font-size: 70%;
  padding: 2px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
}
.requiredIcon2 {
  transform: translateY(-12px);
}
#formy_btn {
  padding-top: 32px;
  text-align: center;
}
#formy_btn input {
  min-width: 220px;
  padding: 16px 32px;
  margin-right: 4px;
  margin-left: 4px;
  margin-bottom: 8px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font-weight: bold;
  border-radius: 50px;
}
#formy_form span input[type="radio"],
#formy_form span input[type="checkbox"] {
  display: none !important;
}
#formy_form span label {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 40px;
  cursor: pointer;
}
#formy_form span label:hover {
  opacity: 1;
}
#formy_form span .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid #788b93;
  left: 16px;
  top: 12px;
}
.single-download #formy_form span .wpcf7-list-item-label::before {
  left: 0;
}
.single-download #formy_form span label {
  padding: 0 8px 0 20px;
}
#formy_form span input[type="radio"] + .wpcf7-list-item-label::before {
  border-radius: 10px;
}
#formy_form span input[type="radio"]:checked + .wpcf7-list-item-label,
#formy_form span input[type="checkbox"]:checked + .wpcf7-list-item-label,
#formy_form span input + input + .wpcf7-list-item-label {
  color: #ee4242;
  font-weight: bold;
}
#formy_form span input[type="radio"]:checked + .wpcf7-list-item-label::before,
#formy_form span input[type="checkbox"]:checked + .wpcf7-list-item-label::before,
#formy_form span input + input + .wpcf7-list-item-label::beforev {
  border-color: #ee4242;
}
#formy_form span input[type="radio"]:checked + .wpcf7-list-item-label::after,
#formy_form span input[type="checkbox"]:checked + .wpcf7-list-item-label::after,
#formy_form span input + input + .wpcf7-list-item-label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #ee4242;
  border-bottom: 2px solid #ee4242;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.single-download #formy_form span input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  left: 4px;
}
.formy_confirm {
  background-color: #4dbaff;
}
.formy_submit_disabled {
  background-color: #ccc;
}
#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}
.autoConfirmBack {
  background-color: #aaa;
}
.formy_send {
  background-color: #d8082f;
}
#total_required {
  padding: 16px;
  color: #d8082f;
  text-align: center;
}
#formy_form span.wpcf7-list-item {
  display: block;
  margin: 0;
}
select:-internal-autofill-selected,
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

@media only screen and (max-width: 767px) {
  #formy_form span label {
    height: 32px;
  }
  #formy_form table {
    border-top: none;
  }
  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  #formy_form th {
    border-bottom: none;
    white-space: normal;
    font-weight: bold;
    padding-bottom: 0;
  }
  #formy_form td {
    padding-top: 8px;
  }
  #formy_btn {
    padding-top: 8px;
  }
  #formy_btn input {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
  }
  .requiredIcon2 {
    transform: translateY(0);
  }
  .form_content .ttl-01 {
    padding: 0;
    margin-bottom: 8px !important;
    font-size: 132%;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form table textarea,
  #formy_form select {
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  #formy_form span .wpcf7-list-item-label::before {
    left: 0;
  }
  #formy_form span label {
    padding-left: 24px;
  }
  #formy_form span input[type="radio"]:checked + .wpcf7-list-item-label::after,
  #formy_form span input[type="checkbox"]:checked + .wpcf7-list-item-label::after,
  #formy_form span input + input + .wpcf7-list-item-label::after {
    left: 4px;
  }
}
@media only screen and (max-width: 375px) {
  .form_content .ttl-01 {
    font-size: 120%;
  }
  .wpcf7-list-item-label {
    display: inline-block;
    padding-top: 12px;
    font-size: 92%;
  }
  #formy_form span label {
    height: auto;
    line-height: 1.4;
  }
}

/* --- cf7 --- */
#wpcf7-submit_btn {
  padding-left: 16px;
  text-align: center;
}
.wpcf7-confirm,
.wpcf7-submit,
.wpcf7-back {
  display: inline-block;
  min-width: 320px;
  padding: 20px 32px;
  margin: 40px 4px 0;
  border: none;
  border-radius: 3px;
  background-color: #ca1537;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.4s ease-out;
}
.wpcf7-back {
  background-color: #ccc;
}
.first.wpcf7-list-item {
  padding-top: 0;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.wpcf7c-conf {
  background-color: #fff !important;
  border: none !important;
}
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border: 1px solid #f9f9f9;
  background-color: #f9f9f9;
}
.form-policy {
  height: 200px;
  overflow-y: scroll;
  padding: 16px;
  border: solid 1px #ccc;
}
@media screen and (max-width: 767px) {
  .wpcf7-submit_btn input {
    width: 100%;
    margin-bottom: 8px;
  }
  .wpcf7-confirm,
  .wpcf7-submit,
  .wpcf7-back {
    min-width: 180px;
    margin-top: 20px;
  }
  div.wpcf7 input[type="file"] {
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  div.wpcf7 input[type="file"] {
    font-size: 10px;
  }
}

/* ##############################################################################

    Loops モジュール

############################################################################## */

.lps_parts--inner:not(.bg-wh) .txt-wh {
  color: #fff !important;
}

.icon-svg {
  position: absolute;
  top: 50%;
  display: block;
  transform: translateY(-50%);
}
.icon-new_tab {
  right: 42px;
  width: 14px;
  height: 14px;
}
.icon-pdf {
  left: 15px;
  width: 27px;
  height: 12px;
}
.bg-wh {
  background-color: #fff;
}
.lps_sec {
  position: relative;
}
.lps_sec-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-position: center;
}
.lps_sec--inner {
  position: relative;
  z-index: 1;
}

/* lps_parts--child
********************************************** */
.lps_parts--child {
  position: relative;
  z-index: 1;
}
.lps_parts--child .img {
  text-align: center;
}
.lps_parts--child + .ttl-02,
.lps_parts--button + .ttl-02,
.lps_parts--button + .lps_parts--child,
.lps_parts--child + .lps_parts--child {
  margin-top: 80px;
}
.lps_parts--column + .lps_parts--column,
.lps_parts--child + .lps_parts--button {
  margin-top: 40px;
}
.lps_parts--child iframe,
.lps_parts--child .text {
  width: 100%;
}
.lps_parts--child .text {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  line-height: 1.8;
}
.lps_parts--child .text:not(:last-child) {
  margin-bottom: 24px;
}
.lps_parts--column .btn,
.lps_parts--slide .btn {
  text-align: center;
}
.lps_parts--child .mce-content-body:not(:last-child) {
  margin-bottom: 40px;
}

.lps_parts--child table {
  margin-left: auto;
  margin-right: auto;
  border-top: solid 1px #ccc;
  background-color: #fff;
}
.lps_parts--child table th,
.lps_parts--child table td {
  padding: 28px 40px;
  border-bottom: solid 1px #ccc;
}
.lps_parts--child table.table2 th,
.lps_parts--child table.table2 td {
  padding: 16px;
  border: solid 1px #ccc;
}
.lps_parts--child table.table2 th {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .lps_parts--child .inner {
    width: 90%;
    max-width: 90%;
  }
  .lps_parts--child + .ttl-02,
  .lps_parts--button + .ttl-02,
  .lps_parts--button + .lps_parts--child,
  .lps_parts--child + .lps_parts--child {
    margin-top: 40px;
  }
  .lps_parts--column + .lps_parts--column,
  .lps_parts--child + .lps_parts--button {
    margin-top: 16px;
  }
  .lps_parts--column .text.bg-wh {
    padding: 24px;
  }
  .lps_parts--child .mce-content-body:not(:last-child) {
    margin-bottom: 16px;
  }
  .lps_parts--child table th,
  .lps_parts--child table td {
    padding: 8px 12px;
  }
  .table-sp-scroll {
    min-width: 560px;
  }
}

/* lps_parts--column
********************************************** */
.lps_parts--column .lps_parts--inner,
.lps_parts--column .text.bg-wh {
  height: 100%;
}
.lps_parts--column .lps_parts--inner {
  max-width: 1280px;
}
.lps_parts--column .column_item {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}
.lps_parts--column .column_item:not(:last-child) {
  margin-right: 3%;
}
.lps_parts--column .column_item:only-child {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.lps_parts--column .img {
  width: 100%;
}
.lps_parts--column .img + .text {
  height: auto;
  padding-top: 24px;
}
.lps_parts--column .text.bg-wh {
  padding: 44px 40px 52px;
}
.column_item:has(.item_empty) {
  opacity: 0;
  height: 0;
}
@media all and (-ms-high-contrast: none) {
  .lps_parts--column .column_item:only-child {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .lps_parts--column {
    width: 100%;
    max-width: 100%;
  }
  .lps_parts--column .column_item {
    width: 100%;
    flex: initial;
  }
  .lps_parts--column .column_item:not(:only-child) {
    margin-bottom: 24px;
  }
  .lps_parts--column .column_item:not(:last-child) {
    margin-right: 0;
  }
  .lps_parts--column.column-5 .column_item {
    width: 48%;
  }
  .lps_parts--column.column-5 .column_item:not(:nth-child(2n)) {
    margin-right: 4%;
  }
  .lps_parts--column .img + .text {
    padding-top: 16px;
  }
  .lps_parts--column .text.bg-wh {
    padding: 32px;
  }
}

/* lps_parts--img_text
********************************************** */
.lps_parts--img_text .img_text--child {
  width: calc(50% - 20px);
}
.lps_parts--img_text .lps_parts--inner.bg-wh .img_text--child {
  width: 50%;
}
.lps_parts--img_text .img_text--child > * {
  height: 100%;
}
.lps_parts--img_text .bg-wh .img_text--txt {
  padding: 72px 56px;
}
.lps_parts--img_text .text {
  justify-content: flex-start;
}
.lps_parts--img_text .ttl-03 {
  text-align: left;
}

@media all and (-ms-high-contrast: none) {
  .lps_parts--img_text .img_text--child > * > * {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lps_parts--img_text .img_text--child,
  .lps_parts--img_text .lps_parts--inner.bg-wh .img_text--child {
    width: 100%;
  }
  .lps_parts--img_text .img_text--img {
    margin-bottom: 24px;
  }
  .lps_parts--img_text .lps_parts--inner.bg-wh .img_text--img {
    margin-bottom: 0;
  }
  .lps_parts--img_text .img_text--child.bg-wh {
    padding: 25px;
  }
}

/* lps_parts--slide
********************************************** */
.lps_parts--slide .img img {
  display: inline-block;
}
.lps_parts--slide .img + .text {
  margin-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
.lps_parts--slide .slick-list {
  margin-bottom: 32px;
}
.lps_parts--slide .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
  transform: translateY(-50%);
  text-decoration: none;
}
*::-ms-backdrop,
.lps_parts--slide .slick-arrow {
  transform: translateX(-50%) translateY(-50%);
}
.lps_parts--slide .slick-prev {
  left: -60px;
}
.lps_parts--slide .slick-next {
  right: -60px;
}
.lps_parts--slide .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.lps_parts--slide .slick-arrow::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
}
.lps_parts--slide .slick-prev::after {
  border-bottom: 2px solid;
  border-left: 2px solid;
}
.lps_parts--slide .slick-next::after {
  border-top: 2px solid;
  border-right: 2px solid;
}
.lps_parts--slide .slick-dots li {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid;
  background-color: #fff;
  border-radius: 50%;
}
.lps_parts--slide .slick-dots li + li {
  margin-left: 16px;
}
.lps_parts--slide .slick-dots button {
  padding: 0;
  cursor: pointer;
  color: transparent;
  background: transparent;
  outline: none;
  border: none;
}
@media screen and (max-width: 1080px) {
  .lps_parts--slide .img + .text {
    margin-top: 16px;
  }
  .lps_parts--slide .slick-dots {
    position: relative;
    bottom: 4px;
  }
  .lps_parts--slide .slick-arrow {
    width: 40px;
  }
  .lps_parts--slide .slick-prev {
    left: 16px;
  }
  .lps_parts--slide .slick-next {
    right: 16px;
  }
  .lps_parts--slide .slick-prev::after {
    left: 20px;
  }
  .lps_parts--slide .slick-next::after {
    right: 20px;
  }
  .lps_parts--slide .slick-arrow::after {
    width: 24px;
    height: 24px;
    bottom: 0;
  }
}

/* lps_parts--button
********************************************** */
.lps_parts--child .btn {
  margin-top: auto;
}
.lps_sec .btn + .btn {
  margin-top: 16px !important;
}
.lps_parts--button .btn + .btn {
  margin-top: 0 !important;
  margin-left: 88px;
}

@media screen and (max-width: 767px) {
  .lps_parts--button {
    margin-bottom: 8px;
  }
  .lps_parts--button .btn {
    width: 50%;
    flex: 1;
    margin-bottom: 8px;
  }
  .lps_parts--button .btn:nth-child(2n + 1) {
    margin-right: 8px;
  }
  .lps_parts--button .btn + .btn {
    margin-left: 0;
  }
}

/* lps_parts--banner
********************************************** */
.lps_parts--banner {
  text-align: center;
}
.lps_parts--banner .bnr {
  display: inline-block;
  margin: 0 8px 16px 8px;
}
.lps_parts--banner .bnr:not(:last-child) {
  margin-right: 16px;
}
.lps_parts--banner .bnr a:hover {
  opacity: 0.5;
}

/* lps_parts--cta
********************************************** */
.lps_parts--cta .inner {
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .lps_parts--cta .cta_contact {
    padding-top: calc(1em + 10px);
  }
}
.lps_parts--cta .bg {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 520px;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .lps_parts--cta .bg {
    height: 350px;
  }
}

.cta_box .btn + .btn {
  margin-top: 0 !important;
}
.cta_box li a {
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 0;
}
.cta_contact a {
  color: #fff !important;
  border: none;
  font-size: 125%;
}
@media print, screen and (min-width: 768px) {
  .cta_box li {
    width: calc(50% - 1.5rem / 2 * 1);
  }
}
@media screen and (max-width: 767px) {
  .cta_box li {
    width: 100%;
  }
}

/* cta_contact
**************************************** */
.cta_contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
}

/* lps_parts--faq
********************************************** */
/* --- 共通 --- */
.lps_parts--faq {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
.lps_parts--faq .ttl {
  margin-bottom: 0 !important;
}
.lps_parts--faq .faq_item {
  counter-increment: number;
}
.lps_parts--faq .ttl::before {
  content: "Q" counter(number) ".";
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5em;
  margin-block: calc((1lh - 4rem) / 2);
  text-align: center;
  color: currentColor;
  font-family: futura-pt-condensed, heisei-kaku-gothic-std, sans-serif;
  letter-spacing: 0;
}
@media print, screen and (min-width: 768px) {
  .lps_parts--faq .text {
    display: flex;
    gap: 4.1666666667%;
  }
}
@media print, screen and (min-width: 768px) {
  .lps_parts--faq .img {
    width: 39.0625%;
  }
}
@media print, screen and (min-width: 768px) {
  .lps_parts--faq .mce-content-body {
    margin-bottom: 0 !important;
    flex: 1;
  }
}

/* --- 通常 --- */
.lps_parts--faq:not(.faq-toggle) .faq_item {
  background-color: #fff;
}
.lps_parts--faq:not(.faq-toggle) .faq_item:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .lps_parts--faq:not(.faq-toggle) .faq_item:not(:last-child) {
    margin-bottom: 1.1428571429rem;
  }
}
.lps_parts--faq:not(.faq-toggle) .ttl,
.lps_parts--faq:not(.faq-toggle) .text {
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 767px) {
  .lps_parts--faq:not(.faq-toggle) .ttl {
    font-size: 1rem;
  }
  .lps_parts--faq:not(.faq-toggle) .ttl {
    padding: 1rem;
  }
  .lps_parts--faq:not(.faq-toggle) .text {
    padding: 1.7142857143rem;
  }
}
.lps_parts--faq:not(.faq-toggle) .ttl {
  color: #fff;
}

/* --- 開閉式 --- */
.lps_parts--faq.faq-toggle .faq_item {
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  padding: 2.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .lps_parts--faq.faq-toggle .faq_item {
    padding: 1rem;
  }
}
.lps_parts--faq.faq-toggle .faq_item:not(:first-child) {
  border-top: 0;
}
.lps_parts--faq.faq-toggle .ttl {
  display: flex;
  cursor: pointer;
  padding-right: 3.5rem;
}
.lps_parts--faq.faq-toggle .ttl:not(:last-child) {
  margin-bottom: 1.5em;
}
.lps_parts--faq.faq-toggle .ttl::after {
  content: "";
  position: absolute;
  inset: -2.5rem -1.875rem;
}
@media screen and (max-width: 767px) {
  .lps_parts--faq.faq-toggle .ttl::after {
    inset: -1.7142857143rem;
  }
}
.lps_parts--faq.faq-toggle .ttl .toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
  color: #fff;
  border-radius: 50%;
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 767px) {
  .lps_parts--faq.faq-toggle .ttl .toggle {
    width: 2rem;
    height: 2rem;
  }
}
.lps_parts--faq.faq-toggle .ttl .toggle::before,
.lps_parts--faq.faq-toggle .ttl .toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.75rem;
  height: 2px;
  border-bottom: 2px solid;
  transition: all 0.4s ease-out;
}
.lps_parts--faq.faq-toggle .ttl .toggle::after {
  transform: rotate(90deg);
}
.lps_parts--faq.faq-toggle .ttl:hover .toggle {
  opacity: 0.5;
}
.lps_parts--faq.faq-toggle .ttl.active .toggle {
  transform: rotate(180deg);
}
.lps_parts--faq.faq-toggle .ttl.active .toggle::after {
  opacity: 0;
}
.lps_parts--faq.faq-toggle .text {
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .lps_parts--faq.faq-toggle .text {
    padding-top: 1.4285714286rem;
  }
}

/* lps_parts--flow
********************************************** */
/* --- 共通 --- */
.lps_parts--flow {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
.lps_parts--flow .flow_item {
  position: relative;
  margin-inline-start: 6rem;
}
@media screen and (max-width: 767px) {
  .lps_parts--flow .flow_item {
    margin-inline-start: 3.5rem;
  }
}
.lps_parts--flow .flow_item:not(:last-child) {
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .lps_parts--flow .flow_item:not(:last-child) {
    padding-bottom: 2.2857142857rem;
  }
}
.lps_parts--flow .flow_item:not(:last-child) .ttl::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 1.5rem;
  left: calc(6rem * -1 + 4rem / 2 - 0.1875rem / 2);
  border-right: 1px solid;
}
@media screen and (max-width: 767px) {
  .lps_parts--flow .flow_item:not(:last-child) .ttl::after {
    left: calc(3.5rem * -1 + 2.5rem / 2 - 0.125rem / 2);
  }
}
.lps_parts--flow .flow_item.clr-wht:not(:last-child) .ttl::after {
  border-color: #fff;
}
.lps_parts--flow .ttl {
  position: static;
}
.lps_parts--flow .ttl::before {
  float: inline-start;
  aspect-ratio: 1;
  margin-inline-start: calc(6rem * -1);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .lps_parts--flow .ttl::before {
    margin-inline-start: calc(3.5rem * -1);
  }
}
.lps_parts--flow .clr-wht .ttl {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .lps_parts--flow .text {
    display: flex;
    gap: 4.1666666667%;
  }
}
@media screen and (min-width: 768px) {
  .lps_parts--flow .img {
    width: 39.0625%;
  }
}
@media screen and (max-width: 767px) {
  .lps_parts--flow .img:not(:last-child) {
    margin-bottom: 1.7142857143rem;
  }
}
.lps_parts--flow .mce-content-body {
  margin-bottom: 0 !important;
}
@media print, screen and (min-width: 768px) {
  .lps_parts--flow .mce-content-body {
    flex: 1;
  }
}

/* --- 通常 --- */
.lps_parts--flow:not(.flow-num) .ttl::before {
  content: "";
  position: relative;
  left: calc(2.5rem / 2);
  inline-size: 1.5rem;
  margin-block: calc((1lh - 1.5rem) / 2);
  border: 0.25rem solid;
}
@media screen and (max-width: 767px) {
  .lps_parts--flow:not(.flow-num) .ttl::before {
    left: calc(1.5rem / 2);
    inline-size: 1rem;
    margin-block: calc((1lh - 1rem) / 2);
  }
}
.lps_parts--flow:not(.flow-num) .flow_item:not(:last-child) .ttl::after {
  margin-top: calc(1.5rem + (1lh - 1.5rem) / 2 + 0.375rem);
  margin-bottom: calc((1lh - 1.5rem) / -2 + 0.375rem);
}
@media screen and (max-width: 767px) {
  .lps_parts--flow:not(.flow-num) .flow_item:not(:last-child) .ttl::after {
    margin-top: calc(1.1428571429rem + (1lh - 1.1428571429rem) / 2 + 0.2857142857rem);
    margin-bottom: calc((1lh - 1.1428571429rem) / -2 + 0.2857142857rem);
  }
}

/* --- 連番 --- */
.lps_parts--flow.flow-num .flow_item {
  counter-increment: number;
}
.lps_parts--flow.flow-num .ttl::before {
  content: counter(number, decimal-leading-zero);
  display: flex;
  justify-content: center;
  align-items: center;
  inline-size: 4rem;
  margin-block: calc((1lh - 4rem) / 2);
  text-align: center;
  color: #fff;
  font-family: futura-pt-condensed, heisei-kaku-gothic-std, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .lps_parts--flow.flow-num .ttl::before {
    inline-size: 2.5rem;
    margin-block: calc((1lh - 2.8571428571rem) / 2);
    font-size: 1.2857142857rem;
  }
}
.lps_parts--flow.flow-num .flow_item:not(:last-child) .ttl::after {
  margin-top: calc(4rem + (1lh - 4rem) / 2 + 0.375rem);
  margin-bottom: calc((1lh - 4rem) / -2 + 0.375rem);
}
@media screen and (min-width: 768px) {
  .lps_parts--flow.flow-num .flow_item:not(:last-child) .ttl::after {
    margin-top: calc(4rem + (1lh - 2.8571428571rem) / 2 + 0.2857142857rem);
    margin-bottom: calc((1lh - 2.8571428571rem) / -2 + 0.2857142857rem);
  }
}

/* new_lps
********************************************** */
.bg-01 {
  background-color: var(--bg-01);
}
.new_lps {
  /* ttl */
  .ttl-01 {
    width: fit-content;
    color: var(--clr-text-primary);
  }
  .ttl-01::before {
    display: none;
  }
  .ttl-01::after {
    position: relative;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    margin-right: 16px;
    display: block;
    width: 60px;
    height: 2px;
    border-bottom: 1px solid var(--clr-primary-default);
    margin-top: 48px;
    text-align: center;
    margin-right: 16px;
  }
  .ttl-01 .subtitle {
    display: block;
    /* display: flex;
    align-items: center; */
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0.03em;
    color: var(--clr-primary-default);
  }
  .ttl-02 {
    position: relative;
    font-size: 250%;
    color: var(--clr-text-primary) !important;
  }
  .ttl-02 span {
    position: relative;
    background-color: inherit;
  }
  .ttl-02 span::after {
    content: "";
    display: block;
    margin-inline: auto;
    margin-top: 32px;
    width: 134px;
    height: 4px;
    background-color: var(--clr-text-primary);
  }
  strong {
    color: var(--clr-primary-default);
    font-weight: 700;
    background: linear-gradient(transparent 60%, var(--clr-accent-default) 60%);
  }
  .mce-content-body p {
    font-size: 16px;
  }

  /* table */
  .table1 {
    border: none;
  }
  .table1 th,
  .table1 td {
    position: relative;
    border: 0;
    padding: 1em 1.5em;
  }

  @media screen and (max-width: 767px) {
    .table1 th,
    .table1 td {
      padding: 1em 0.25em;
    }
  }

  .table1 th::before,
  .table1 td::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .table1 th {
    font-size: 18px;
    line-height: 1.6;
    color: var(--clr-primary-default);
  }

  .table1 th::before {
    left: 0;
    border-bottom: 1px solid;
  }

  .table1 td::before {
    right: 0;
    border-bottom: 2px solid var(--clr-text-placeholder);
  }

  .table2 table {
    font-size: 18px;
    line-height: 1.6;
    background-color: var(--clr-wht);
  }

  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .table2 table th:not(:last-child) {
      border-right: 0;
    }
    .table2 table td:not(:first-child) {
      border-left: 0;
    }
  }

  .table2 th {
    color: var(--clr-primary-default) !important;
    background-color: var(--bg-01) !important;
  }

  .table2 th,
  .table2 td {
    border: 2px solid var(--clr-text-placeholder) !important;
  }

  /* box */
  .mce-box {
    padding: 40px;
  }
  @media screen and (max-width: 767px) {
    .mce-box {
      padding: 24px;
    }
  }
  .mce-box:not(:first-child) {
    margin-top: 2em;
  }
  .mce-box:not(:last-child) {
    margin-bottom: 2em;
  }
  .mce-box *:not([class*="clr-"]):not([class*="bold"]):not([class*="mce-ttl"]) {
    color: var(--clr-text-primary);
  }
  .mce-box hr {
    width: 100%;
    margin-inline: inherit;
  }

  &.lps_sec:nth-of-type(2n) {
    background-color: var(--bg-01);
    .lps_parts--img_text .lps_parts--inner.bg-wh {
      background-color: var(--clr-wht);
    }
  }
  &.lps_sec:nth-of-type(2n-1) {
    background-color: var(--clr-wht);
    .lps_parts--img_text .lps_parts--inner.bg-wh {
      background-color: var(--bg-01);
    }
  }
  /* 回り込み */
  .lps_parts--img_text .ttl-03 {
    margin-bottom: 54px;
    color: var(--clr-text-primary);
    font-size: clamp(22px, 3.33vw, 187%);
    line-height: 1.7;
    letter-spacing: 0.03em;
  }
  /* ボタン */
  .btn a {
    position: relative;
    background-color: var(--clr-primary-light);
    border-radius: 4px;
    border: 1px solid transparent;
    color: var(--clr-wht);
  }
  .btn a:hover {
    border-radius: 4px !important;
  }
  .btn a:hover::before {
    background-color: transparent !important;
    animation: none !important;
  }
  .btn a::before {
    animation: none !important;
    content: "";
    position: absolute;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto;
    right: 36px !important;
    width: 8px !important;
    height: 8px !important;
    background-color: transparent !important;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    transition: all 0.3s ease;
  }
  .btn a::after {
    display: none !important;
  }
  .mce-content-body p {
    color: var(--clr-text-primary);
  }

  /* 流れ */
  .lps_parts--flow .ttl {
    color: var(--clr-primary-default);
  }
  .lps_parts--flow.flow-num .ttl::before,
  .lps_parts--faq:not(.faq-toggle) .ttl {
    background-color: var(--clr-primary-default);
  }
  .lps_parts--faq:not(.faq-toggle) .ttl {
    color: var(--clr-wht);
  }
  .lps_parts--faq:not(.faq-toggle) .faq_item {
    border: 2px solid var(--clr-primary-default);
  }
  .lps_parts--faq.faq-toggle .ttl .toggle {
    background-color: var(--clr-primary-light);
  }
  .lps_parts--flow.flow-num .ttl::before {
    content: counter(number);
  }
  .lps_parts--flow .flow_item:not(:last-child) .ttl::after {
    border-right: 2px solid;
  }

  /* よくある質問 */
  .lps_parts--faq.faq-toggle .faq_item {
    border-top: none;
    border-bottom: 1px solid #dfdfe0;
  }
  .lps_parts--faq .ttl {
    color: var(--clr-text-primary);
  }
  .lps_parts--faq .ttl::before {
    display: none;
  }
}

/* post-edit-link
********************************************** */
.post-edit-link {
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 10;
  padding: 16px;
  border-radius: 50%;
  border: 1px solid #999;
}
.post-edit-link:hover {
  background-color: #ddd;
}
.post-edit-link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuMywgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDAxIDQwMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAxIDQwMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiM5OTk5OTk7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzcwLjEsMjUxLjljLTUuNSwwLTEwLDQuNS0xMCwxMHY4OC43YzAsMTYuNS0xMy40LDI5LjktMzAsMzBINDkuOWMtMTYuNSwwLTI5LjktMTMuNC0zMC0zMFY5MC4zCgljMC0xNi41LDEzLjQtMjkuOSwzMC0zMGg4OC43YzUuNSwwLDEwLTQuNSwxMC0xMGMwLTUuNS00LjUtMTAtMTAtMTBINDkuOUMyMi40LDQwLjQsMCw2Mi43LDAsOTAuM3YyNjAuMwoJYzAsMjcuNiwyMi40LDQ5LjksNDkuOSw0OS45aDI4MC4yYzI3LjYsMCw0OS45LTIyLjQsNDkuOS00OS45di04OC43QzM4MC4xLDI1Ni40LDM3NS42LDI1MS45LDM3MC4xLDI1MS45eiIvPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzc2LjEsMTQuN2MtMTcuNi0xNy42LTQ2LTE3LjYtNjMuNiwwTDEzNC40LDE5Mi45Yy0xLjIsMS4yLTIuMSwyLjctMi42LDQuNGwtMjMuNCw4NC42Yy0xLDMuNSwwLDcuMiwyLjYsOS43CgljMi41LDIuNSw2LjMsMy41LDkuNywyLjZsODQuNi0yMy40YzEuNy0wLjUsMy4yLTEuMyw0LjQtMi42TDM4Ny45LDkwYzE3LjUtMTcuNiwxNy41LTQ2LDAtNjMuNkwzNzYuMSwxNC43eiBNMTU2LjIsMTk5LjNMMzAyLDUzLjUKCWw0Nyw0N0wyMDMuMiwyNDYuNEwxNTYuMiwxOTkuM3ogTTE0Ni44LDIxOC4ybDM3LjYsMzcuNmwtNTIsMTQuNEwxNDYuOCwyMTguMnogTTM3My43LDc1LjhsLTEwLjYsMTAuNmwtNDctNDdsMTAuNi0xMC42CgljOS43LTkuNywyNS42LTkuNywzNS4zLDBsMTEuNywxMS43QzM4My41LDUwLjMsMzgzLjUsNjYuMSwzNzMuNyw3NS44eiIvPgo8L3N2Zz4K");
}
@media screen and (max-width: 767px) {
  .post-edit-link {
    display: none;
  }
}

/* ez-toc-container
  **************************************** */
.ez-toc-debug-messages {
  display: none;
}
div#ez-toc-container {
  width: 100%;
  padding: 2em 3em;
  background-color: #eff1f4;
  border: none;
  border-radius: 0;
}
.ez-toc-title-container {
  margin-bottom: 0.5em;
  text-align: center;
}
div#ez-toc-container p.ez-toc-title {
  font-weight: bold;
}
#ez-toc-container.ez-toc-counter nav ul li {
  margin-top: 0.5em;
}
#ez-toc-container a {
  font-size: 1.2rem;
  color: #192f60 !important;
  text-decoration: underline;
  display: inline;
}
@media screen and (max-width: 767px) {
  div#ez-toc-container {
    padding: 2em;
  }
  #ez-toc-container a {
    font-size: 0.9rem;
  }
}
