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

    KEYFRAMES

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

@keyframes scroll_ani {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes flowing {
  0% {
    transform: translate(-40%, 0%);
  }
  100% {
    transform: translate(-60%, 0%);
  }
}

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

    COMMON

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

html {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
body {
  height: 100%;
}

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

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.inner-sm {
  max-width: 880px;
}
.inner-lg {
  max-width: 1440px;
}
.inner-xl {
  max-width: calc(100% - 112px);
}
.inner-chara {
  max-width: 1580px;
}
.inner-certification {
  max-width: 1256px;
}
.inner-cta {
  max-width: 1128px;
}
.inner-blog {
  max-width: 1180px;
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section_pdg-lg {
  padding-top: 140px;
  padding-bottom: 140px;
}
.section_pdg-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* --- anchor --- */
.anchor {
  position: absolute;
  top: -80px; /* 固定ヘッダーの高さ */
  left: 0;
  pointer-events: none;
}

@media screen and (max-width: 1080px) {
  /* --- inner --- */
  .inner {
    width: 90%;
  }
  .inner-xl {
    max-width: 90%;
  }

  /* --- anchor --- */
  .anchor {
    top: -64px; /* 固定ヘッダーの高さ */
  }
}
@media screen and (max-width: 767px) {
  /* --- inner --- */
  .inner {
    width: 86%;
  }
  .inner-xl {
    max-width: 86%;
  }

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

/* flex
**************************************** */
.flex-col2,
.flex-col3,
.flex-col4 {
  flex-wrap: wrap;
}
.flex-col1 > * {
  width: 100%;
}
.flex-col2 > * {
  width: 50%;
}
.flex-col3 > * {
  width: calc(100% / 3);
}
.flex-col4 > * {
  width: 25%;
}
.flex-col2.gap {
  gap: 4%;
}
.flex-col3.gap {
  gap: 3%;
}
.flex-col4.gap {
  gap: 2%;
}
.flex-col2.gap > * {
  width: 48%;
  margin-bottom: 2%;
}
.flex-col3.gap > * {
  width: 31.33%;
  margin-bottom: 3%;
}
.flex-col4.gap > * {
  width: 23.5%;
  margin-bottom: 2%;
}

@media print, screen and (min-width: 768px) {
  .flex-col2.gap-wide {
    gap: 6%;
  }
  .flex-col3.gap-wide {
    gap: 5%;
  }
  .flex-col4.gap-wide {
    gap: 4%;
  }
  .flex-col2.gap-wide > * {
    width: 47%;
    margin-bottom: 6%;
  }
  .flex-col3.gap-wide > * {
    width: 30%;
    margin-bottom: 5%;
  }
  .flex-col4.gap-wide > * {
    width: 22%;
    margin-bottom: 4%;
  }
  .flex-col2.column-gap > *,
  .flex-col3.column-gap > *,
  .flex-col4.column-gap > * {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .flex-col2.flex-sp-block > *,
  .flex-col3.flex-sp-block > *,
  .flex-col4.flex-sp-block > * {
    width: 100%;
  }
  .flex-col2.gap.flex-sp-block > *,
  .flex-col3.gap.flex-sp-block > *,
  .flex-col4.gap.flex-sp-block > * {
    margin-bottom: 24px;
  }
  .flex-col2.gap.flex-sp-block > *:last-child,
  .flex-col3.gap.flex-sp-block > *:last-child,
  .flex-col4.gap.flex-sp-block > *:last-child {
    margin-bottom: 0;
  }
  .flex-col4.gap.flex-sp-col3 > * {
    width: 32%;
  }
  .flex-col4.gap.flex-sp-col2 > * {
    width: 49%;
  }
  .flex-col3.gap.flex-sp-col2 > * {
    width: 48.5%;
  }
}

/* bg
********************************************** */
.lps_sec:nth-child(2n) {
  background-color: #d0f7e4;
}
.bg-main {
  background-color: #069ccd;
}
.bg-sub {
  background-color: #eee;
}
.bg-wh {
  background-color: #fff;
}
.bg-gr-bd {
  background: url(../images/common/border-ptn01.png);
}

/* img
********************************************** */
.img-ctr {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.img-trim {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-trim.pos_rel::before {
  content: "";
  display: block;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-cover.pos_ab {
  inset: 0;
  margin: auto;
}
.img-contain {
  object-fit: contain;
}

/* ttl
********************************************** */
/* --- page_ttl --- */
.page_ttl {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background-color: rgb(6 156 205 / 40%);
}
.page_ttl .inner {
  padding-top: 120px;
}
.page_ttl--bg-wrap {
  height: 500px;
}
.page_ttl--bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}
.page_ttl-jp {
  font-size: 3rem; /* 48px */
}
.page_ttl-en {
  display: block;
  text-transform: uppercase;
  font-size: 1.125rem; /* 18px */
  font-family: "Montserrat", sans-serif;
}

/* --- ttl --- */
.ttl-01,
.ttl-02,
.ttl-03 {
  letter-spacing: 0.1em;
}
.ttl-01 {
  font-size: 2.5rem; /* 40px */
  color: #069ccd;
}
.ttl-01_en {
  position: absolute;
  top: 118px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-text-stroke: 0.5px rgb(18 179 101 / 50%);
  text-stroke: 0.5px rgb(18 179 101 / 50%);
  font-size: 136px;
  line-height: 1;
  font-weight: 900;
  color: #fff0;
}
.ttl-02,
.lps_parts--img_text .inner-lg .ttl-03 {
  font-size: 2rem; /* 32px */
}
.ttl-03 {
  font-size: 1.75rem; /* 28px */
}
.lps_sec .ttl-01,
.lps_sec .ttl-02,
.lps_sec .ttl-03 {
  position: relative;
  z-index: 1;
}
.lps_sec .ttl-01 {
  margin-bottom: 1.8em;
}
.lps_sec .ttl-02,
.lps_sec .ttl-03:not(:last-child) {
  margin-bottom: 1em;
}
.ttl-04,
.lps_sec .column-3 .ttl-03,
.lps_sec .column-4 .ttl-03 {
  font-size: 1.5rem; /* 24px */
}

@media screen and (max-width: 767px) {
  /* --- page_ttl --- */
  .page_ttl--bg-wrap {
    height: 120px;
  }
  .lps_sec .ttl-01 {
    margin-bottom: 0.8em;
  }
  .page_ttl-jp {
    top: 64px;
    font-size: 2rem; /* 28px */
  }
  .page_ttl-en {
    font-size: 1.143rem; /* 16px */
  }

  /* --- ttl --- */
  .ttl-01 {
    font-size: 2.143rem; /* 30px */
  }
  .ttl-02 {
    font-size: 1.714rem; /* 24px */
  }
  .ttl-03,
  .lps_sec .column-3 .ttl-03,
  .lps_sec .column-4 .ttl-03,
  .lps_parts--img_text .inner-lg .ttl-03 {
    font-size: 1.429rem; /* 20px */
  }
  .ttl-01_en {
    top: 64px;
    font-size: 40px;
  }
}

/* breadcrumbs
**************************************** */
.breadcrumbs {
  padding: 16px 0;
}
.breadcrumbs a {
  color: #069ccd;
  text-decoration: underline;
}
.breadcrumbs a:hover {
  text-decoration: none;
}
.breadcrumbs .breadcrumb_last {
  display: table-cell;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* txt
**************************************** */
.txt-lg {
  font-size: 1.125rem; /* 18px */
}
.txt-sm {
  font-size: 0.875rem; /* 14px */
}
.txt-wh,
.txt-wh * {
  color: #fff;
}
.txt-main,
.txt-main * {
  color: #069ccd;
}
.txt-sub,
.txt-sub * {
  color: #eee;
}
.txt-gry,
.txt-gry * {
  color: #a1a1a1;
}
.txt-th-gr,
.txt-th-gr * {
  color: #c9f5e0;
}
.txt-marker {
  position: relative;
}

/* --- more --- */
.more:hover {
  color: #069ccd;
}

/* --- font --- */
.font-en {
  font-family: "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 767px) {
  .txt-lg {
    font-size: 1.071rem; /* 15px */
  }
  .txt-sm {
    font-size: 0.929rem; /* 13px */
  }
}

/* --- dot --- */
.dot {
  position: relative;
}
.dot::before {
  content: "・";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  font-size: 2rem; /* 32px */
}

/* --- qst --- */
.qst {
  transform: rotate(15deg);
}

/* btn
********************************************** */
*:not(.flex) > .btn:not(:last-child) {
  margin-bottom: 8px;
}
.btn a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 14px 20px 14px 40px;
  border-radius: 36px;
  width: 100%;
  max-width: 300px;
  color: #069ccd;
  text-align: center;
  background: linear-gradient(270deg, #069ccd 0%, #17d579 45%, #17d579 55%, #069ccd 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  border-radius: 36px;
  transition: all 0.4s ease-out;
}
.btn a::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  background-color: #fff;
  border-radius: 36px;
  z-index: -1;
  transition: all 0.4s ease-out;
}
.btn.txt-rgt a {
  margin-left: auto;
}
.btn a:hover {
  color: #fff;
}
.btn a:hover::after {
  opacity: 0;
}
.flex > .btn a {
  max-width: 100%;
}
.btn.txt-ctr a,
.btn-cta.txt-ctr a,
.btn-recruit.txt-ctr a {
  margin-left: auto;
  margin-right: auto;
}
.btn a:hover {
  background-color: #015691;
}
.btn a:not([target="_blank"]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::before {
  content: ">";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 36px;
  margin: auto;
  height: 25px;
  font-size: 0.813rem; /* 13px */
  transition: all 0.4s ease-out;
}
.btn a[href^="#"]::before {
  transform: rotate(90deg);
}
.btn svg {
  fill: #fff;
}
.btn.btn-next_page a {
  max-width: 100%;
  border-radius: 0;
}
.btn.btn-next_page a::after {
  border-radius: 0;
}

/* --- btn-wh --- */
.btn-wh a {
  color: #069ccd;
  background-color: #fff;
}
.btn-wh svg {
  fill: #069ccd;
}
.btn-wh a:hover {
  color: #fff;
}
.btn-wh a:hover svg {
  fill: #fff;
}

.btn-cta a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 14px 40px;
  border-radius: 30px;
  width: 100%;
  max-width: 300px;
  color: #fff;
  text-align: center;
  background: rgb(0, 182, 185);
  background: -moz-linear-gradient(90deg, rgba(0, 182, 185, 1) 0%, rgba(0, 209, 212, 1) 49%, rgba(1, 176, 179, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0, 182, 185, 1) 0%, rgba(0, 209, 212, 1) 49%, rgba(1, 176, 179, 1) 100%);
  background: linear-gradient(90deg, rgba(0, 182, 185, 1) 0%, rgba(0, 209, 212, 1) 49%, rgba(1, 176, 179, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00b6b9",endColorstr="#01b0b3",GradientType=1);
  background-position: 1% 50%;
  background-size: 200% auto;
  border-radius: 36px;
  transition: all 0.4s ease-out;
}
.btn-cta a:hover {
  background-position: 99% 50%;
}

.btn-recruit a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 14px 20px 14px 20px;
  border-radius: 36px;
  width: 100%;
  max-width: 300px;
  color: #1c3037;
  text-align: center;
  background-color: #fff;
  border-radius: 36px;
  transition: all 0.4s ease-out;
}
.btn-recruit a:hover {
  color: #fff;
  background-color: #069ccd;
}

@media screen and (max-width: 767px) {
  .flex > .btn:not(:last-child) {
    margin-bottom: 8px;
  }
  .btn a {
    max-width: 100%;
  }
  .btn a:not([target="_blank"]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::before {
    left: 20px;
  }
}

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

    HEADER

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

/* header
**************************************** */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px;
  height: 85px;
  z-index: 9990;
  transition: all 0.4s ease-out;
}
.page-contact .header {
  position: absolute;
}
.header > .inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding-left: 24px;
}
.header--logo a,
.footer--logo a {
  display: block;
}
.header--logo a:hover,
.footer--logo a:hover {
  opacity: 0.7;
}
.header--logo a {
  margin-top: 8px;
  color: #fff;
  font-size: 2.125rem;
  letter-spacing: -0.04em;
}
.header--logo a small {
  margin-left: 12px;
  letter-spacing: 0.2em;
}
.footer--logo a {
  margin-top: 8px;
  color: #fff;
  font-size: 3.125rem;
  letter-spacing: -0.04em;
}
.footer--logo a small {
  margin-left: 30px;
  letter-spacing: 0.2em;
  font-size: 1.25rem;
}
.header-sm .header--logo a {
  color: #000;
}
.footer--logo {
  height: 80px;
}
.header--logo svg {
  width: 218px;
  height: auto;
  vertical-align: middle;
}
.footer--logo svg {
  width: 324px;
  height: auto;
  fill: #fff;
}
.header:not(.header-sm) .header--logo svg {
  fill: #fff;
}
.header:not(.header-sm) .header--logo .st0 {
  stroke: #fff;
}
.header-sm {
  /*
  background-color: #fff;
  */
  background-color: rgba(255, 255, 255, 0.9);
}

@media print, screen and (min-width: 1081px) {
  .header-sm {
    height: 85px;
  }
}
@media screen and (max-width: 1080px) {
  .header {
    padding: 18px 16px 12px;
    height: 64px;
  }
  .header > .inner {
    padding-left: 0;
  }
  .header--logo img {
    width: auto;
    max-height: 40px;
  }
  .header--logo svg {
    width: 184px;
    height: 48px;
  }
  .header--logo a {
    margin-top: 0;
  }
  .header--logo a small {
    margin-left: 8px;
  }
  .footer--logo {
    height: auto;
  }
  .footer--logo svg {
    width: 240px;
  }
  .footer--logo a small {
    margin-left: 16px;
  }
}

/* gnav
********************************************** */
.gnav a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnav--link {
  position: relative;
  padding: 0 6px;
  margin: 0 12px;
  color: #fff;
}
.header-sm .gnav--link {
  color: #000;
}
.head_sub_nav--wrap {
  display: block;
  width: 100%;
  position: absolute;
  z-index: 100;
  transition: all 0.4s ease-out;
  opacity: 0;
  pointer-events: none;
}
.menu-item-has-children {
  position: relative;
}
.head_sub_nav li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.head_sub_nav a {
  display: block;
  padding: 16px 24px;
}

/* ---CTA --- */
.cta_tel a {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  line-height: 1.4;
}
.cta_tel a > span {
  display: block;
}
.cta_tel .tel {
  font-size: 1.5rem; /* 24px */
}
.cta_tel .num {
  font-size: 1.875rem; /* 30px */
}
.gnav--tel,
.gnav--contact {
  margin-left: 14px;
  height: 60px !important;
}
.gnav--tel a {
  display: flex !important;
  flex-direction: column;
  padding: 24px;
  width: 327px;
  background-color: rgb(255 255 255 / 85%);
  border-radius: 36px;
}
.gnav--contact a {
  padding: 20px;
  width: 226px;
}
.gnav--contact svg {
  fill: #fff;
  width: 18px;
  margin-right: 16px;
}
.gnav--cta .tel {
  font-size: 1.25rem; /* 20px */
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.gnav--cta .num {
  font-size: 1.875rem; /* 30px */
}
.gnav--cta .hours {
  font-size: 0.813rem; /* 13px */
}

@media screen and (min-width: 1300px) and (max-width: 1549px) {
  .header {
    padding: 12px;
  }
  .header-sm .gnav--contact {
    top: 105px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .gnav--cta {
    position: fixed;
    right: 18px;
    top: 84px;
    transition: all 0.4s ease-out;
  }
  .header-sm .gnav--cta {
    top: 106px;
    height: 60px;
  }
}
@media print, screen and (min-width: 1081px) {
  .gnav,
  .gnav ul,
  .gnav li,
  .gnav a {
    height: 100%;
  }
  .gnav {
    display: flex;
  }
  .gnav_btn,
  .mail_btn {
    display: none;
  }
  .gnav--link {
    text-align: center;
  }
  .gnav--menu > li > .gnav--link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 1px;
    width: 0;
    background-color: #fff;
    z-index: 1;
    transition: all 0.4s ease-out;
  }
  .header-sm .gnav--menu > li > .gnav--link::before {
    background-color: #069ccd;
  }
  .gnav--menu > li > .gnav--link:not([href="javascript:void(0);"]):hover::before,
  .gnav--menu > li.current-menu-item > .gnav--link::before {
    width: 100%;
  }
  .header-sm .gnav--menu > li > .gnav--link:not([href="javascript:void(0);"]):hover,
  .header-sm .gnav--menu > li.current-menu-item > .gnav--link {
    color: #069ccd !important;
  }
  .head_sub_nav a {
    background-color: #fff;
  }
  .gnav_sub_toggle {
    display: none;
  }
  /* hover */
  .gnav--menu .menu-item-has-children:hover .head_sub_nav--wrap {
    opacity: 1;
    pointer-events: auto;
  }
  .head_sub_nav a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1549px) {
  .gnav--menu > li > .gnav--link::before {
    bottom: 10px;
  }
}
@media screen and (max-width: 1080px) {
  .gnav,
  .gnav_overlay {
    position: fixed;
    top: 64px;
    right: 0;
    height: calc(100% - 64px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-out;
  }
  .gnav {
    width: 70%;
    margin: 0;
    padding: 24px 7%;
    overflow: scroll;
    background-color: #ccffff;
    z-index: 300;
    transform: translateX(100%);
    -webkit-overflow-scrolling: touch;
  }
  .gnav_overlay {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .gnav.active,
  .gnav_overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  .gnav.active {
    transform: translateX(0);
  }
  .gnav--menu,
  .gnav--cta {
    display: block;
  }
  .gnav--menu {
    margin-bottom: 24px;
  }
  .gnav--menu li {
    position: relative;
    display: block;
    width: 100%;
  }
  .gnav--menu a {
    display: block;
    padding: 18.5px 16px;
    color: #333;
  }
  .gnav--menu li:not(.menu-item-has-children) a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 1px solid #069ccd;
    border-right: 1px solid #069ccd;
    transform: rotate(45deg);
  }
  .head_sub_nav--wrap {
    position: relative;
    width: 100%;
    border-top: 1px dotted #069ccd;
    transition: none;
    opacity: 1;
    pointer-events: inherit;
    display: none;
  }
  .menu-item-has-children.active .head_sub_nav--wrap {
    opacity: 1;
    pointer-events: auto;
  }
  .head_sub_nav a {
    padding-left: 32px !important;
  }
  .gnav_sub_toggle {
    position: absolute;
    top: 0;
    right: -20px;
    width: 64px;
    height: 64px;
    transition: all 0.4s ease-out;
    color: #069ccd;
  }
  .gnav_sub_toggle::before,
  .gnav_sub_toggle::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 11px;
    height: 1px;
    border-bottom: 1px solid;
  }
  .gnav_sub_toggle::after {
    transform: rotate(90deg);
  }
  .gnav_sub_toggle.active {
    transform: rotate(180deg);
  }
  .head_sub_nav {
    position: relative;
  }
  .mail_btn,
  .gnav_btn {
    position: fixed;
    top: 0;
    width: 64px;
    height: 64px;
    border-color: #e7e5e4;
    z-index: 9999;
    transition: all 0.4s ease-out;
  }
  .header-sm .mail_btn,
  .header-sm .gnav_btn {
    border-left: 1px solid #e7e5e4;
  }
  .mail_btn {
    right: 64px;
  }
  .mail_btn a {
    display: flex !important;
    width: 100%;
    height: 100%;
  }
  .mail_btn svg .cls-mail-header {
    fill: #fff;
  }
  .header-sm .mail_btn svg .cls-mail-header {
    fill: #333333;
  }
  .gnav_btn {
    right: 0;
    transition: all 0.4s ease-out;
  }
  .gnav_btn.active {
    background-color: #d0f7e4;
  }
  .gnav_btn--lines {
    position: relative;
    width: 24px;
    height: 16px;
  }
  .gnav_btn--lines span {
    transition: all 0.4s ease-out;
    box-sizing: border-box;
  }
  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .active .gnav_btn--lines span,
  .header-sm .gnav_btn--lines span {
    background-color: #333333;
  }
  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    top: 7px;
  }
  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }
  .active .gnav_btn--lines span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  .active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }
  .active .gnav_btn--lines span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }

  /* ---CTA --- */
  .gnav--cta li:not(:last-child) {
    margin-bottom: 16px;
  }
  .gnav--tel {
    margin-left: 0;
    text-align: center;
  }
  .gnav--tel a {
    padding: 8px;
    width: 100%;
  }
  .gnav--cta .tel {
    font-size: 1rem;
  }
  .gnav--cta .num {
    font-size: 1.714rem;
  }
  .gnav--contact {
    margin-left: 0;
  }
  .gnav--contact a {
    padding: 10px 16px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .gnav--menu a {
    padding: 12px 16px;
    margin: 0;
  }
  .gnav--contact svg {
    width: 16px;
    height: 11px;
  }
}

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

    FOOTER

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

.footer {
  background-color: #222930;
}

/* footer_top
********************************************** */
/* ---fnav --- */
.fnav--menu {
  margin-left: 32px;
}
.fnav--menu a {
  display: block;
  padding: 0.2em 1em;
  color: #fff;
  font-size: 0.938rem; /* 15px */
}
.fnav--menu a:hover {
  opacity: 0.7;
}

.footer--siteinfo {
  line-height: 1.6;
}

/* ---sns_area --- */
.sns_area {
  margin-top: 40px;
}
.sns--list li:not(:last-child) {
  margin-right: 0.5rem;
}
.sns--list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem; /* 24px */
}
.sns--list a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .footer--siteinfo {
    margin-bottom: 24px;
  }
  .fnav--menu {
    margin-left: 0;
  }
  .fnav--menu {
    width: 45%;
  }
  .fnav--menu a {
    position: relative;
    padding: 0.5em 0.5em 0.5em 0;
  }
  .fnav--menu a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
  }

  /* ---sns_area --- */
  .sns_area {
    margin-top: 24px;
  }
}

/* footer_btm
*************************************************** */
.footer_btm {
  padding: 20px 0;
  border-top: 2px solid #fff;
}
.pbl a {
  opacity: 0.5;
}
.pbl a:hover {
  opacity: 1;
}
.pbl svg {
  width: 120px;
  height: 13px;
  vertical-align: middle;
}

.copyright {
  color: rgb(255 255 255 / 60%);
}

@media print, screen and (min-width: 768px) {
  .copyright {
    margin-right: 1em;
  }
}

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

    INDEX

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

/* hero
********************************************** */
.hero {
  position: relative;
  height: 900px;
  overflow: hidden;
}
.hero--catch {
  position: absolute;
  top: 0;
  bottom: 72px;
  left: 160px;
  margin: auto;
  height: 320px;
  text-shadow: 0 0 20px rgb(73 75 104 / 16%);
  z-index: 1;
}
.hero_slide {
  overflow: hidden;
}
.hero_slide-sp {
  display: none !important;
}
.hero_slides,
.hero_slide,
.hero_slide .slick-list,
.hero_slide .slick-track,
.hero_slide .slick-slider,
.hero_slide .slick-slide {
  width: 100%;
  height: 100% !important;
}
.hero_slide .slick-list {
  position: relative;
  overflow: hidden;
}
.catch_en {
  margin-bottom: 10px;
}
.catch_ttl {
  line-height: 1.6;
}
.hero--bg_text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
  height: 520px;
  -webkit-text-stroke: 0.5px rgb(255 255 255 / 50%);
  text-stroke: 0.5px rgb(255 255 255 / 50%);
  font-size: 210px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: rgb(255 255 255 / 0%);
  user-select: none;
}
.scroll-txt {
  bottom: -80px;
  left: 0;
  right: 0;
  margin: auto;
  padding-bottom: 160px;
  width: max-content;
  letter-spacing: 0.18em;
  overflow: hidden;
  z-index: 1;
}
.scroll-txt::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: #fff;
  animation: scroll_ani 2s cubic-bezier(0.38, 0.46, 0.09, 1.01) infinite;
  animation-delay: -1s;
}
@media screen and (max-width: 767px) {
  .hero {
    height: 540px;
  }
  .hero--catch {
    left: 14px;
    right: 14px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    bottom: 84px;
  }
  .hero_slide-pc {
    display: none !important;
  }
  .hero_slide-sp {
    display: block !important;
  }
  .catch_ttl {
    font-size: 1.714rem; /* 24px */
  }
  .catch_txt {
    font-size: 0.786rem; /* 11px */
    letter-spacing: 0;
  }
  .scroll-txt {
    padding-bottom: 110px;
    font-size: 10px;
  }
}

/* sec_head
********************************************** */
.sec_head .heading_ja {
  line-height: 1;
}
.sec_head .heading_en {
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-text-stroke: 0.5px #fff;
  text-stroke: 0.5px #fff;
  font-size: 136px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: rgb(255 255 255 / 0%);
}
.sec_head .heading_en.clip-gr {
  -webkit-text-stroke: 0.5px rgb(18 179 101 / 50%);
  text-stroke: 0.5px rgb(18 179 101 / 50%);
}
.sec_head .heading_en.clip-bl {
  -webkit-text-stroke: 0.5px rgb(6 156 205 / 50%);
  text-stroke: 0.5px rgb(6 156 205 / 50%);
}
.sec--bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .sec_head .heading_ja {
    line-height: 1.4;
  }
  .sec_head .heading_en {
    font-size: 40px;
  }
}

/* home_news
********************************************** */
.home_news {
  position: absolute;
  top: 790px;
  /*
  top: 850px;
  */
  right: 0;
  width: 45%;
  max-width: 810px;
  padding: 18px 0 18px 16px;
  background-color: rgb(255 255 255 / 85%);
  border-radius: 50px 0 0 50px;
  z-index: 2;
}
.home_news .news_list {
  flex: 1;
  overflow: hidden;
}
.news_list--ttl {
  display: block;
  position: relative;
  margin-right: 36px;
  padding: 5px 23px 5px 20px;
  line-height: 1.2;
  border-right: 1px solid #000;
  white-space: nowrap;
}

@media screen and (min-width: 768px) and (max-width: 1599px) {
  .home_news {
    border-radius: 100px 0 0 100px;
  }
  .home_news .news_list {
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .home_news {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 0;
  }
  .news_list--ttl {
    margin-right: 16px;
    margin-bottom: 0;
    padding: 8px;
    font-size: 14px;
  }
  .home_news .post--ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* home_problem
********************************************** */
.home_problem {
  margin: 30px;
  padding-top: 94px;
  padding-bottom: 65px;
  box-shadow: 0 0 54px #f1f9fd;
  border-radius: 30px;
}
.problem--bg {
  margin-top: 0 !important;
  top: 0;
  left: 0;
  right: 0;
  height: 925px;
}
.home_problem .heading_en {
  top: -32px;
}
.problem_list {
  max-width: 845px;
  margin: 0 auto 236px;
}
.single_problem {
  width: 31%;
  max-width: 260px;
  height: 260px;
  padding: 64px 0 0;
  background-color: #fff;
  border-radius: 50%;
}
.single_problem .icnarea {
  top: 48px;
}
.single_problem svg {
  width: 50%;
  height: auto;
}
.problem--ttl {
  line-height: 1.5;
  letter-spacing: -0.12em;
}
.problem_undertxt {
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.problem_undertxt .font-en {
  font-weight: 900;
}
.problem_gallery li:nth-child(1) {
  bottom: 12.8vw;
  left: -30px;
  width: 15vw;
}
.problem_gallery li:nth-child(2) {
  bottom: -8.5vw;
  left: 2.2vw;
  width: 23.4vw;
}
.problem_gallery li:nth-child(3) {
  bottom: -5vw;
  right: 18vw;
  width: 13.4vw;
}
.problem_gallery li:nth-child(4) {
  bottom: -1.2vw;
  right: -30px;
  width: 18vw;
}
.problem_gallery-md {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .problem--bg {
    height: 100vw;
  }
  .single_problem {
    height: 25.7vw;
    padding-top: 60px;
  }
  .single_problem .icnarea {
    top: 40px;
  }
  .problem--ttl {
    font-size: 2vw;
  }
  .problem--ttl span {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 1399px) {
  .problem_gallery {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  .problem_gallery-md {
    position: absolute;
    top: calc(100% + 32px);
    left: 0;
    right: 0;
    display: flex;
  }
  .problem_gallery-md li:not(:last-child) {
    margin-right: 32px;
  }
  .problem_gallery-md li img {
    border-radius: 46px;
  }
}
@media screen and (min-width: 768px) {
  .single_problem:nth-child(n + 4) {
    margin-top: 3%;
  }
  .single_problem:not(:nth-child(1)):not(:nth-child(4)) {
    margin-left: 3.5%;
  }
}
@media screen and (max-width: 767px) {
  .home_problem {
    margin: 0 15px;
    padding-top: 64px;
  }
  .home_problem .heading_en {
    top: -24px;
  }
  .problem_list {
    width: 100%;
    margin-bottom: 92px;
  }
  .single_problem {
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 8px;
  }
  .single_problem .icnarea {
    position: relative;
    top: auto;
  }
  .single_problem svg {
    height: 32px;
    width: auto;
  }
  .problem--ttl {
    width: 100%;
  }
  .problem--bg {
    height: 840px;
    min-height: auto;
  }
  .problem_undertxt p {
    font-size: 1.429rem; /* 20px */
  }
}

/* home_character
********************************************** */
.home_character {
  padding-top: 232px;
  padding-bottom: 0;
}
.home_character .sec_head {
  margin-bottom: 124px;
}
.home_character .heading_en {
  top: -54px;
}
.home_character .ttl-03 {
  font-size: 2rem !important; /* 32px */
}
.home_character .btn a {
  max-width: 274px;
}
.home_character .img_text--img {
  width: 51% !important;
}
.home_character .img_text--txt {
  width: 36% !important;
}
.home_character .lps_parts .img-detail::before {
  padding-top: 0;
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .home_character {
    padding-top: 420px;
  }
}
@media screen and (max-width: 767px) {
  .home_character {
    padding-top: 84px;
  }
  .home_character .sec_head {
    margin-bottom: 36px;
  }
  .home_character .heading_en {
    top: -24px;
  }
  .home_character .img_text--img {
    width: 100% !important;
  }
  .home_character .img_text--txt {
    width: 100% !important;
  }
  .home_character .lps_parts--img_text .btn a {
    margin-left: auto;
    margin-right: auto;
  }
}

/* home_cta
********************************************** */
.home_cta {
  padding-top: 56px;
  padding-bottom: 110px;
  overflow: hidden;
}
.home_cta .cta--bg {
  top: auto;
  height: 427px;
}
.home_cta .inner {
  position: relative;
  padding: 140px 80px 80px;
  background-color: #fff;
  box-shadow: 0 0 54px #f1f9fd;
  border-radius: 30px;
}
.home_cta .heading_en {
  top: -54px;
}
.common--cta {
  max-width: 690px;
  margin: auto;
}
.common--cta a {
  width: 320px;
  padding: 20px 36px;
  font-size: 1.25rem; /* 20px */
  border-radius: 40px;
  background: linear-gradient(270deg, #069ccd 0%, #17d579 45%, #17d579 55%, #069ccd 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
}
.common--contact svg {
  fill: #fff;
  width: 25px;
  margin-right: 16px;
  margin-bottom: 4px;
  vertical-align: middle;
}
.common--tel a::before {
  display: none;
}
.common--tel a::after {
  border-radius: 40px;
}
.common--tel a {
  color: #222222;
}
.common--tel .tel {
  font-size: 1.25rem; /* 20px */
}
.common--tel .num {
  font-size: 1.75rem; /* 28px */
}
.flowing-anim {
  opacity: 1;
  animation: flowing 30s linear infinite;
  position: absolute;
  top: calc(50% - 188px);
  left: 50%;
  display: flex;
  transform: translate(-50%, 0%);
  white-space: nowrap;
  transition: all 0.3s;
}
.flowing-inline {
  display: block;
  padding-right: 0.5em;
  font-size: 136px;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke: 0.5px rgb(6 156 205 / 50%);
  text-stroke: 0.5px rgb(6 156 205 / 50%);
}

@media screen and (max-width: 767px) {
  .home_cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home_cta .inner {
    padding: 60px 20px 40px;
  }
  .home_cta .cta--bg {
    height: 280px;
  }
  .home_cta .sec_head {
    margin-bottom: 16px;
  }
  .home_cta .heading_en {
    top: -18px;
  }
  .common--cta a {
    width: 100%;
    padding: 14px 32px 14px 32px;
  }
  .flowing-anim {
    top: calc(50% - 140px);
  }
  .flowing-inline {
    font-size: 72px;
  }
}

/* home_certification
********************************************** */
.home_certification {
  padding-top: 148px;
  padding-bottom: 100px;
}
.home_certification .heading_en {
  top: -54px;
}
.home_certification .sec_head {
  margin-bottom: 104px;
}
.single_certification {
  padding: 48px 32px;
  max-width: 600px;
  width: 48%;
  background-color: #fff;
  border-radius: 30px;
}
.single_certification .txtbox {
  flex: 1;
  margin-left: 32px;
}
.s_certification--ttl {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.s_certification--ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  display: block;
  background: linear-gradient(270deg, #17d579 0%, #069ccd 100%);
}
.single_certification .read {
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .home_certification {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .home_certification .heading_en {
    top: -18px;
  }
  .home_certification .sec_head {
    margin-bottom: 24px;
  }
  .single_certification {
    width: 100%;
    padding: 24px;
  }
  .single_certification:not(:last-child) {
    margin-bottom: 24px;
  }
  .single_certification .imgarea {
    margin-bottom: 24px;
  }
  .single_certification .txtbox {
    margin-left: 0;
  }
}

/* home_blog
********************************************** */
.home_blog {
  padding-top: 110px;
  padding-bottom: 110px;
}
.home_blog .blog_list {
  flex: 1;
}
.blog_list--ttlwrap {
  display: block;
  position: relative;
  margin-right: 80px;
  padding: 5px 20px;
  width: 200px;
  line-height: 1.2;
}
.blog_list--ttl {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
  width: 200px;
}
.blog_list--ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  display: block;
  background: linear-gradient(270deg, #17d579 0%, #069ccd 100%);
}
.home_blog .blog_list {
  max-width: 840px;
}
.home_blog .post {
  padding: 24px 0;
}
.home_blog .post:not(:last-child) {
  border-bottom: 1px solid #bfbfbf;
}
.home_blog .post--txtarea {
  width: 100%;
}
.home_blog .post--info {
  margin-right: 48px;
}
.home_blog .post--content {
  flex: 1;
  width: calc(100% - 160px);
}
.home_blog .post--txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .home_blog {
    padding: 40px 5%;
  }
  .blog_list--ttlwrap {
    width: 100%;
    float: none;
    height: auto;
    margin: 0 auto 16px;
    text-align: center;
  }
  .blog_list--ttl {
    width: 100%;
    margin-bottom: 0;
  }
  .home_blog .blog_list {
    width: 100%;
    margin-bottom: 16px;
  }
  .home_blog .post--info {
    margin-right: 16px;
  }
}

/* home_recruit
********************************************** */
.home_recruit {
  margin: 30px 30px 0;
  padding-top: 116px;
  padding-bottom: 80px;
  box-shadow: 0 0 54px #f1f9fd;
  border-radius: 30px;
  overflow: hidden;
}
.recruit--bg {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.home_recruit .heading_en {
  top: -54px;
}
.home_recruit .read--bg {
  line-height: 1.7;
}
.home_recruit .btn-recruit a {
  padding: 22px 20px 22px 20px;
  max-width: 320px;
  border-radius: 45px;
}
.home_recruit .btn a::before {
  display: none;
}

@media screen and (max-width: 767px) {
  .home_recruit {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .home_recruit .sec_head {
    margin-bottom: 16px;
  }
  .home_recruit .heading_en {
    top: -20px;
  }
  .home_recruit .btn-recruit a {
    padding: 14px 20px 14px 20px;
  }
  .home_recruit .read.fz-32 {
    font-size: 1.429rem; /* 20px */
  }
}

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

    PAGE

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

/* sitemap
*************************************************** */
.sitemap--menu {
  flex: 1;
}
.sitemap--menu a,
.sitemap--menu span {
  display: block;
}
.sitemap--menu a {
  position: relative;
}
.sitemap--menu a:hover {
  color: #069ccd;
}
.sitemap--menu > li > a {
  font-size: 1.125rem; /* 18px */
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 0.5em;
  margin-bottom: 1.25em;
}
.sitemap_sub_nav--wrap {
  padding-left: 1.25em;
  margin-bottom: 1.5em;
}
.sitemap_sub_nav a {
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.25em;
}
.sitemap_sub_nav a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #069ccd;
  border-right: 1px solid #069ccd;
  transform: rotate(45deg);
}

@media print, screen and (min-width: 768px) {
  .sitemap--menu:not(:last-child) {
    margin-right: 7.41%; /* 80px */
  }
}
@media screen and (max-width: 767px) {
  .sitemap--menu:not(:last-child) {
    margin-bottom: 24px;
  }
}

/* contact
********************************************** */
.contact .cta_tel {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.contact .cta_tel a {
  padding: 24px 40px;
}

@media screen and (max-width: 767px) {
  .contact .cta_tel a {
    display: block;
    padding: 16px;
  }
}

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

    ARCHIVE

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

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 80px;
  overflow: hidden;
}

/* --- post --- */
.post {
  position: relative;
}
.post:hover .post--ttl a {
  color: #069ccd;
}
.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.post--date {
  color: #393939;
  white-space: nowrap;
}
.post--info.flex .post--date + .cat_list {
  margin-left: 16px;
}
.cat_list {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cat_list a {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.813rem; /* 13px */
  background-color: #069ccd;
  border-radius: 4px;
  color: #fff;
  padding: 0.25em 1em;
  line-height: 1.6;
  float: left;
  white-space: nowrap;
  margin: 2px;
}
.cat_list a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1100px) {
  .container > .inner.flex {
    display: block;
  }
  .main_column {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }
}

/* side_column
**************************************** */
.side_column {
  width: 264px;
}
.side_section:not(:last-child) {
  margin-bottom: 64px;
}
.side--ttl {
  position: relative;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.side--ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 40px;
  display: block;
  background: linear-gradient(270deg, #17d579 0%, #069ccd 100%);
}
.side--ttl small {
  opacity: 0.5;
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
  margin-top: 8px;
}
.side--list li {
  margin-bottom: 8px;
}
.side--list a {
  display: block;
}
.side--list a:hover {
  color: #069ccd;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}
.posts-side .post--img {
  margin-right: 16px;
  width: 64px;
  height: 64px;
  background: rgb(208 247 228 / 60%);
}
.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 {
  cursor: pointer;
  font-weight: 500;
  line-height: 1.8;
}
.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: all 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;
}
.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}
.archive-pulldown .archive_list a {
  display: block;
  padding: 0.25em 1em;
  text-align: left;
}
.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.archive-pulldown .archive_list a:hover {
  background-color: #eee;
}
.archive-pulldown .archive_list--label {
  margin-right: 8px;
}
.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 0.25em 4em 0.25em 2em;
  background-color: #fff;
  border: 1px solid #ccc;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.4em;
  right: 0.8em;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}
.archive-pulldown .active .archive_list--btn::after {
  bottom: -0.2em;
  transform: rotate(225deg);
}
.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  margin-top: -1px;
  opacity: 0;
  transition: all 0.2s ease-out;
}
.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1100px) {
  .side_column {
    width: 100%;
  }
}

/* blog
**************************************** */
.posts-blog .post {
  padding-bottom: 48px;
  padding-top: 48px;
  border-bottom: 1px solid #e5e5e5;
}
.posts-blog .post:first-child {
  border-top: 1px solid #e5e5e5;
}
.posts-blog .post--txtarea {
  flex: 1;
  word-break: break-word;
}
.posts-blog .post--img {
  width: 280px;
  margin-left: 40px;
  z-index: -1;
}
.posts-blog .post--img::before {
  padding-top: 75%;
}

@media screen and (max-width: 767px) {
  .posts-blog .post {
    display: block;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .posts-blog .post--img {
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 16px;
    text-align: center;
  }
  .posts-blog .post--img img {
    width: auto;
    max-width: 100%;
  }
}

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

/* --- news_list --- */
.news_list .post {
  padding-bottom: 16px;
  padding-top: 16px;
  margin-bottom: 0;
}
.news_list .post--info {
  margin-right: 24px;
}
.news_list .post--ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.news_list .post--link:not([href="javascript:void(0);"]):hover {
  color: #069ccd;
}
.news_list .post--link:hover svg {
  fill: #069ccd;
}
@media screen and (min-width: 768px) and (max-width: 1599px) {
  .news_list .post {
    flex-direction: column;
    align-items: flex-start;
  }
  .news_list--ttl {
    margin-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .news_list .post {
    display: block;
  }
  .news_list .post--info {
    margin-bottom: 0;
    margin-right: 0;
  }
}

.archive-news .news_list .post {
  border-bottom: 1px solid #dedede;
}

/* blog
**************************************** */
.posts-blog .post--ttl {
  font-size: 1.5rem; /* 24px */
}

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

    SINGLE

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

/* --- アイキャッチ --- */
.eyecatch {
  margin-bottom: 2rem;
}

/* --- 目次 --- */
div#ez-toc-container {
  padding: 24px;
  background: #fafafa;
}
.ez-toc-title-container {
  margin-bottom: 10px;
}
div#ez-toc-container p.ez-toc-title {
  color: #000;
  font-weight: bold;
  font-size: 1.25rem;
}
#ez-toc-container.counter-hierarchy ul {
  font-size: 1.0625rem;
}
#ez-toc-container.counter-hierarchy ul li {
  margin-top: 8px;
}
#ez-toc-container.counter-hierarchy ul ul {
  margin-left: 1rem;
}
#ez-toc-container.counter-hierarchy ul ul a {
  position: relative;
  display: inline-block;
  padding-left: 1rem;
}
#ez-toc-container.counter-hierarchy ul ul a::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.6rem;
  height: 0;
  border-bottom: 1px solid;
}

/* pass
**************************************** */
#pass p {
  margin-bottom: 1em;
}
#pass input[name="post_password"] {
  padding: 5px;
  border: solid 1px #aaa;
  outline: none;
}
#pass input[type="submit"] {
  padding: 4px 16px;
  letter-spacing: 0.15em;
  background-color: #ddd;
  border-radius: 4px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease-out;
}
#pass input[type="submit"]:hover {
  opacity: 0.7;
}

/* blog--share
**************************************** */
.blog--share {
  margin-top: 2rem;
}
.blog--share ul {
  gap: 6px;
}
.blog--share li {
  width: calc(100% / 3 - 4px);
}
.blog--share li svg {
  width: 20px;
  height: auto;
}
.blog--share a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0.5em;
  line-height: 1;
  font-size: 0.75rem; /* 12px */
  font-weight: bold;
  border: 1px solid #ddd;
}
.blog--share li.twitter a {
  color: #2ba1f2;
}
.blog--share li.facebook a {
  color: #2477f2;
}
.blog--share li.line a {
  color: #27c754;
}
.blog--share li.pocket a {
  color: #ef4056;
}
.blog--share li.linkedin a {
  color: #2867b2;
}
.blog--share li.hatena a {
  color: #29a4de;
}
.blog--share img {
  margin-right: 10px;
}
.blog--share a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .blog--share li {
    width: calc(50% - 3px);
  }
}

/* blog--related
**************************************** */
.posts_scroll {
  overflow: auto;
  padding-bottom: 2rem;
}
.posts_scroll .post {
  display: block;
  width: 46%;
  flex-shrink: 0;
}
.posts_scroll .post:not(:last-child) {
  margin-right: 1rem;
}
.posts_scroll .post--img {
  margin-bottom: 1rem;
}
.posts_scroll .post--img::before {
  padding-top: 66.666%;
}
.posts_scroll .post--txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.posts_scroll::-webkit-scrollbar {
  height: 6px;
}
.posts_scroll::-webkit-scrollbar-thumb {
  background-color: #999;
}
.posts_scroll::-webkit-scrollbar-track-piece {
  background-color: #eee;
}
@media screen and (max-width: 767px) {
  .posts_scroll .post {
    width: 70%;
  }
}

/* wp-pagenavi
**************************************** */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.wp-pagenavi .pages {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 1em;
}
.wp-pagenavi a {
  position: relative;
  padding: 0.5em 1em;
  background-color: #069ccd;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wp-pagenavi a:hover {
  opacity: 0.7;
}
.wp-pagenavi a {
  color: #fff;
}
.wp-pagenavi > *:not(.pages) {
  max-width: calc(100% / 2.6);
}
.archive .wp-pagenavi > *:not(.pages) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.wp-pagenavi-single a[rel="prev"],
.wp-pagenavi-single a[rel="next"] {
  width: 40px;
}
.wp-pagenavi > *:not(.pages) {
  margin-bottom: 4px;
}
.wp-pagenavi > *:not(.pages):not(:last-child) {
  margin-right: 4px;
}
.wp-pagenavi .extend {
  width: 24px !important;
}
.wp-pagenavi a[rel="prev"]::before,
.wp-pagenavi a[rel="next"]::before,
.wp-pagenavi .first::before,
.wp-pagenavi .last::before,
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 2px solid;
  border-right: 2px solid;
}
.wp-pagenavi a[rel="prev"]::before,
.wp-pagenavi a[rel="next"]::before,
.wp-pagenavi .first::before,
.wp-pagenavi .last::before,
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  width: 8px;
  height: 8px;
}
.wp-pagenavi a[rel="prev"]::before,
.wp-pagenavi .first::before,
.wp-pagenavi .first::after {
  transform: rotate(-135deg);
}
.wp-pagenavi a[rel="next"]::before,
.wp-pagenavi .last::before,
.wp-pagenavi .last::after {
  transform: rotate(45deg);
}
.wp-pagenavi-single a[rel="prev"]::before {
  transform: rotate(45deg);
}
.wp-pagenavi-single a[rel="next"]::before {
  transform: rotate(-135deg);
}
.wp-pagenavi .first::before,
.wp-pagenavi .last::before {
  left: -6px;
}
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  right: -6px;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 24px;
  }
  .archive .wp-pagenavi > *:not(.pages) {
    width: 32px;
    height: 32px;
  }
  .wp-pagenavi-single a[rel="prev"],
  .wp-pagenavi-single a[rel="next"] {
    width: 32px;
  }
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before {
    left: -5px;
  }
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    right: -5px;
  }
}

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

    SEARCH

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

#search-list .section_pdg {
  padding-top: 50px;
  padding-bottom: 50px;
}
#search-list .ttl-01 {
  margin: 70px 0 0;
}

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

    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;
}
#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 select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 1rem;
}
#formy_form textarea {
  height: 100px;
}
#formy_form select {
  height: 40px;
}
#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 {
  font-size: 0.875rem; /* 14px */
  color: #999;
}
.hidden_help {
  display: none;
}
.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 0.875rem; /* 14px */
  padding: 8px 16px;
}
.requiredIcon {
  background-color: #f55;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 0.75rem; /* 12px */
  padding: 2px 5px;
  border-radius: 3px;
  float: right;
}
#formy_btn {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding-top: 32px;
  text-align: center;
}
#formy_btn input {
  font-size: inherit;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
  padding: 16px 32px;
  margin-bottom: 24px;
  -webkit-appearance: none;
  appearance: none;
}
#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}
#formy_form ul li label {
  position: relative;
  display: inline-block;
  padding: 0.5em 8px 0.5em 40px;
  line-height: 1.6;
  vertical-align: top;
  cursor: pointer;
}
#formy_form ul li label:hover {
  opacity: 0.7;
}
#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 16px;
  top: 12px;
}
#formy_form ul li input[type="radio"] + label::before {
  border-radius: 10px;
}
#formy_form ul li input[type="radio"]:checked + label,
#formy_form ul li input[type="checkbox"]:checked + label {
  color: #e75f5f;
  font-weight: bold;
}
#formy_form ul li input[type="radio"]:checked + label::before,
#formy_form ul li input[type="checkbox"]:checked + label::before {
  border-color: #e75f5f;
}
#formy_form ul li input[type="radio"]:checked + label::after,
#formy_form ul li input[type="checkbox"]:checked + label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  transform: rotate(45deg);
}
.formy_confirm {
  background-color: #4dbaff;
}
.formy_submit_disabled {
  background-color: #ccc;
}
#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}
#formy_btn input.autoConfirmBack {
  position: relative;
  background-color: transparent;
  color: #555;
  padding: 8px 27px;
  min-width: auto;
  font-size: 92%;
  border: 1px solid #aaa;
  border-radius: 32px;
}
.formy_send {
  background-color: #ff6600;
}
#total_required {
  padding: 16px;
  color: #f55555;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  #formy_form .confirm-message {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  #formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
  }
  #formy_form td {
    padding-top: 0;
  }
  #formy_btn {
    padding-top: 8px;
  }
  #formy_btn input {
    width: 100%;
    background-size: contain;
    background-position: center;
  }
  .autoConfirmBack {
    margin-bottom: 8px;
  }
}

.floating-banner {
  position: fixed;
  /* 追従 */
  z-index: 99999;
  /* 他の要素の下に隠れないように */
  bottom: 0;
  /* バナーの上下の位置 */
  right: 0;
  /* バナーの左右の位置 */
}

.f-pc2 {
  width: 90px;
  margin-top: -520px;
}

.floating-banner:hover {
  opacity: 0.9;
  /* ホバーで少し透過 */
}

.f-sp2 {
  display: none;
  /* PCではスマホ用のバナーは非表示に */
}

@media screen and (max-width: 990px) {
  /* タブレット用のブレイクポイントを指定 */
  .f-pc2 {
    display: none;
    /* タブレットサイズ以下でPC用のバナーを非表示に */
  }
}

@media screen and (max-width: 560px) {
  /* スマホ用のブレイクポイントを指定 */
  .f-sp2 {
    display: inline-block;
    /* 消していたスマホ用のバナーを表示させる */
    width: 60vw;
    /* スマホの画面幅いっぱいにバナーを表示 */
    margin-bottom: 0px;
    margin-right: 400px;
  }
}
