@charset "UTF-8";
/* ##############################################################################

    KEYFRAMES

############################################################################## */
@keyframes flowup {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero_sc {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  51% {
    transform-origin: top;
    transform: scaleY(0);
  }
  100% {
    transform-origin: top;
    transform: scaleY(1);
  }
}
.flow_1,
.flow_2,
.flow_3 {
  opacity: 0;
}

.flow_1.on {
  animation: flowup 1.2s ease 0s both;
}

.flow_2.on {
  animation: flowup 1.2s ease 0.2s both;
}

.flow_3.on {
  animation: flowup 1.2s ease 0.4s both;
}

#hero--scroll span::after {
  animation: hero_sc 5s ease-in-out 0s infinite normal both;
}

@media screen and (min-width: 1080px) {
  .flow_1_pc,
  .flow_2_pc {
    opacity: 0;
  }
  .flow_1_pc.on {
    animation: flowup 1.2s ease 0s both;
  }
  .flow_2_pc.on {
    animation: flowup 1.2s ease 0.2s both;
  }
}
/* ##############################################################################

    COMMON

############################################################################## */
html {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 16px;
  font-size: clamp(12px, 1vw, 16px);
}

body {
  height: 100%;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #1f284e;
  line-height: 2;
  font-size: 1rem;
  font-size: max(16px, 1em);
}
body.page-contact {
  padding-top: 0;
}

.sp {
  display: none;
}

.anime-move_b_t .row {
  overflow: hidden;
  display: block;
}
.anime-move_b_t .row em {
  display: inline-block;
  transform: translateY(100%);
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s;
}
.anime-move_b_t.active .row em {
  transform: translateY(0);
  font-style: italic;
}

.active .anime-move_b_t .row em {
  transform: translateY(0);
  font-style: italic;
}

.foot_fix {
  position: fixed;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  flex-wrap: wrap;
  opacity: 0;
  transition: 0.5s;
}
.foot_fix.active {
  z-index: 100;
  opacity: 1;
}
.foot_fix li {
  width: 100%;
}

.sp_contact {
  display: none;
}
.sp_contact li a {
  font-family: "A1 Mincho", serif;
  display: block;
  color: #fff;
  padding: 4%;
  text-align: center;
}
.sp_contact .contact {
  background: url(../img/mail.png) no-repeat center left 20px;
  background-color: #e14475;
  background-size: 8%;
}

.container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

.imgzoom {
  overflow: hidden;
}
.imgzoom img {
  transition: 0.5s;
}
.imgzoom img:hover {
  transform: scale(1.1);
}

.zoombox {
  overflow: hidden;
}
.zoombox img {
  transition: 0.4s;
}

.zoom img {
  transform: scale(1.2);
}

.slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.dl_list {
  display: flex;
  flex-wrap: wrap;
}
.dl_list dt,
.dl_list dd {
  position: relative;
  margin-bottom: 1vw;
  margin-bottom: min(1vw, 20px);
  padding-bottom: 1vw;
  padding-bottom: min(1vw, 20px);
}
.dl_list dt::after,
.dl_list dd::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.dl_list dt {
  width: 7.3vw;
  width: min(7.3vw, 140px);
  text-align: center;
  font-weight: bold;
}
.dl_list dt::after {
  height: 2px;
  bottom: -1px;
}
.dl_list dd {
  margin-left: 4px;
  width: calc(100% - 7.3vw - 4px);
  width: calc(100% - min(7.3vw, 140px) - 4px);
}
.dl_list dd span {
  color: #fff;
}
.dl_list dd .center {
  text-align: center;
  display: block;
}
.dl_list dd .bold {
  font-weight: bold;
}

.t_cent {
  text-align: center;
}

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

.photo_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}

.tile_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.tile_list li {
  width: calc((100% - 1.56vw) / 2);
  margin-right: 1.56vw;
  width: calc((100% - clamp(10px, 1.56vw, 30px)) / 2);
  margin-right: clamp(10px, 1.56vw, 30px);
  margin-bottom: 5.21vw;
  margin-bottom: clamp(70px, 5.21vw, 100px);
}
.tile_list li:nth-of-type(2n) {
  margin-right: 0;
}

@media screen and (max-width: 1080px) {
  body {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  main {
    overflow: hidden;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
  .sp_contact {
    display: block;
  }
  .foot_fix {
    display: flex;
  }
  .dl_list {
    font-size: 1.143rem;
    margin-bottom: 2.143rem;
  }
  .dl_list dt {
    width: 30%;
  }
  .dl_list dd {
    width: calc(100% - (30% + 4px));
  }
}
/* 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);
}

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

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

@media print, screen and (max-width: 1080px) {
  /* --- inner --- */
  .inner {
    width: 90%;
  }
  .inner-xl {
    max-width: 90%;
  }
}
@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レイアウト --- */
.flex-col1 {
  display: block;
}

.flex-col2,
.flex-col3,
.flex-col4 {
  flex-wrap: wrap;
}

.flex-col2 > * {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col2 > *:nth-child(even) {
  margin-right: 0;
}

.flex-col3 > * {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col3 > *:nth-child(3n) {
  margin-right: 0;
}

.flex-col4 > * {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.flex-col4 > *:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  /* --- ざっくりflexレイアウト - sp --- */
  .flex-col2.flex-sp-block > *,
  .flex-col3.flex-sp-block > *,
  .flex-col4.flex-sp-block > * {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
  .flex-col2.flex-sp-block > *:last-child,
  .flex-col3.flex-sp-block > *:last-child,
  .flex-col4.flex-sp-block > *:last-child {
    margin-bottom: 0;
  }
  .flex-sp-col2 > *, .flex-sp-col2.flex-col3 > *:nth-child(3n) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col2 > *:nth-child(even) {
    margin-right: 0;
  }
  .flex-sp-col3 > *, .flex-sp-col3.flex-col4 > *:nth-child(4n) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col3 > *:nth-child(3n) {
    margin-right: 0;
  }
}
/* bg
********************************************** */
.lps_sec:nth-child(2n) {
  background-color: #eff2fe;
}

.bg-main {
  background-color: #1e35a8;
}

.bg-sub {
  background-color: #eee;
}

.bg-wh {
  background-color: #fff;
}

/* 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%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.img-cover.pos_ab {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.img-contain {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

/* ttl
********************************************** */
/* --- page_ttl --- */
.page_ttl {
  height: 410px;
  padding-top: 120px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  max-height: 412px;
  color: #fff;
}

.page_ttl--bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0.2) 100%, rgba(0, 0, 0, 0.2) 100%), url(../img/page_ttl--bg.jpg) no-repeat center 0/cover;
}

.page_ttl-jp {
  display: block;
  font-size: 3rem;
  /* 48px */
  font-family: "A1 Mincho", serif;
}

.page_ttl-en {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.125rem;
  /* 18px */
  font-family: "Scheherazade New", serif;
  font-weight: normal;
}

/* --- ttl --- */
.ttl-01,
.ttl-02,
.ttl-03 {
  letter-spacing: 0.1em;
}

.ttl-02,
.lps_parts--img_text .inner-lg .ttl-03 {
  font-size: 2.5rem;
  /* 40px */
}

.ttl-01 {
  margin: 0 auto 5.21vw;
  font-family: "EB Garamond", serif;
  font-style: italic;
  color: #1e35a8;
  font-weight: 400;
  font-size: 3.75em;
  /* 60px */
  font-size: clamp(2.5rem, 3.13vw, 3.75rem);
  line-height: 1.2;
  position: relative;
  z-index: auto;
}
.ttl-01 em {
  font-size: 1rem;
  letter-spacing: normal;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  display: inline-block;
}
.ttl-01::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.1em;
  content: "";
}
.ttl-01::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.1em;
  content: "";
}
.ttl-01 span {
  position: relative;
  display: inline-block;
  font-style: italic;
  z-index: 1;
}

.ttl-02 {
  margin-bottom: 2.6vw;
  font-size: 2.25rem;
  /* 36px */
  font-weight: 500;
  color: #1e35a8;
  line-height: 1.5;
}

.ttl-03 {
  font-size: 1.75rem;
  /* 28px */
  font-style: italic;
  font-family: "A1 Mincho", serif;
}

@media screen and (max-width: 767px) {
  /* --- page_ttl --- */
  .page_ttl {
    padding-top: 60px;
    height: 270px;
  }
  .page_ttl-jp {
    font-size: 2rem;
    /* 28px */
  }
  .page_ttl-en {
    font-size: 1.143rem;
    /* 16px */
  }
  /* --- ttl --- */
  .lps_sec .ttl-01 {
    font-size: 2.143rem;
    /* 30px */
    margin: 0 auto 3.571rem;
    /*50px*/
  }
  .ttl-02 {
    font-size: 2rem;
    /* 28px */
  }
  .ttl-03 {
    font-size: 1.714rem;
    /* 24px */
  }
  .lps_sec .column-3 .ttl-03,
  .lps_sec .column-4 .ttl-03 {
    font-size: 1.714rem;
    /* 24px */
  }
  .lps_parts--img_text .inner-lg .ttl-03 {
    font-size: 1.714rem;
    /* 24px */
  }
  .ttl-01 span::after {
    top: calc(100% - 10px);
  }
}
/* breadcrumbs
**************************************** */
.breadcrumbs {
  padding: 16px 0;
}
.breadcrumbs a {
  color: #1e34a8;
  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 {
  color: #fff;
}
.txt-wh * {
  color: #fff;
}

.txt-main {
  color: #1D7FB7;
}
.txt-main * {
  color: #1D7FB7;
}

.txt-sub {
  color: #eee;
}
.txt-sub * {
  color: #eee;
}

/* --- font --- */
.font-jp {
  font-family: "A1 Mincho", serif;
}

.font-jp-gos {
  font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
}

.font-en {
  font-family: "EB Garamond", serif;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .txt-lg {
    font-size: 0.938rem;
    /* 15px */
  }
  .txt-sm {
    font-size: 0.813rem;
    /* 13px */
  }
}
/* btn
********************************************** */
.btn + .btn {
  margin-top: 8px;
}
.btn a,
.btn span {
  min-height: 2.34vw;
  padding-left: 3.13vw;
  display: inline-flex;
  align-items: center;
  transition: 0.2s;
  color: #1e35a8;
  font-size: 1em;
  position: relative;
  font-family: "A1 Mincho", serif;
  font-style: italic;
}
.btn a:hover,
.btn span:hover {
  padding-left: 3.65vw;
}
.btn a::before,
.btn span::before {
  content: "";
  width: 1.25vw;
  height: 0.35vw;
  margin: auto;
  border: 1px solid #1e35a8;
  border-width: 0 1px 1px 0;
  position: relative;
  top: 0;
  bottom: 0;
  position: absolute;
  transform: skewX(45deg);
  left: 0.65vw;
  z-index: 1;
  transition: 0.2s;
}
.btn a:hover:before,
.btn span:hover:before {
  border-color: #1e35a8;
  left: 1.5vw;
}
.btn.btn-next_page {
  text-align: center;
}
.btn.btn-next_page a {
  max-width: 100%;
  border-radius: 0;
  text-align: left;
  background: #2f4de4;
  color: #fff;
  padding: 1.04vw 9.38vw;
  display: inline-flex;
  align-items: center;
  align-content: center;
}
.btn.btn-next_page a::before {
  left: auto;
  left: initial;
  right: 2.34vw;
}
.btn.btn-next_page a:hover::before {
  right: 1.34vw;
  border-color: #fff;
}
.btn.btn-next_page a::after {
  display: none;
}

/* --- btn-wh --- */
.btn-wh a {
  color: #c7dcff;
}
.btn-wh a::after {
  border-color: #1e35a8;
  background: #1e35a8;
}
.btn-wh a:hover::after {
  border-color: #1e35a8;
  background: #fff;
}
.btn-wh a::before {
  border-color: #fff;
}
.btn-wh a:hover::before {
  border-color: #c7dcff;
}
.btn-wh svg {
  fill: #c7dcff;
}
.btn-wh a:hover {
  color: #c7dcff;
}
.btn-wh a:hover svg {
  fill: #c7dcff;
}

@media screen and (max-width: 767px) {
  .btn a {
    max-width: 100%;
  }
}
/* side_nav
********************************************** */
#side_nav {
  width: 264px;
}

#side--new a {
  display: block;
  padding: 20px 10px;
  border-bottom: 1px dashed #ccc;
  font-family: "A1 Mincho", serif;
  transition: 0.2s;
}
#side--new a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .side_column {
    width: 100%;
  }
  #side_nav {
    width: 100%;
    margin: 0 0 80px;
  }
  #side_nav a {
    padding: 10px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  #side_nav .posts {
    display: flex;
    flex-wrap: wrap;
  }
  #side_nav .post {
    width: calc(50% - 10px);
    margin: 0 10px 0 0;
  }
  #side_nav .post:nth-of-type(2n) {
    margin: 0;
  }
  #side_nav .post--ttl {
    height: 100%;
  }
}
/* ##############################################################################

    HEADER

############################################################################## */
/* header
**************************************** */
.header {
  width: 100%;
  height: 160px;
  margin: 0 auto;
  padding: 35px 20px 30px 40px;
  padding-right: calc(20px + 2.6vw + 7.29vw);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  transition: all 0.4s ease-out;
}

.page-contact .header,
.page-contact .entry {
  position: absolute;
  background-color: transparent;
  box-shadow: none;
}

.header > .inner {
  width: 100%;
  max-width: 1920px;
  height: 100%;
}

.header--logo a,
.footer--logo a {
  display: block;
}

.header--logo a svg {
  margin-left: 8px;
}
.header--logo a:hover {
  opacity: 0.7;
}

.footer--logo a:hover {
  opacity: 0.7;
}

.header--logo {
  align-self: flex-start;
  padding-top: 35px;
}
.header--logo a {
  width: 14.48vw;
  max-width: 286px;
  height: auto;
  color: #fff;
}

.header.header-sm {
  background: rgba(255, 255, 255, 0.9);
  padding-top: 0;
  padding-bottom: 20px;
  height: auto;
}

.header-sm .header--logo {
  padding-top: 30px;
}
.header-sm .header--logo a {
  color: #2f4de4;
}
.header-sm .gnav--tel a {
  color: #1e35a8;
}
.header-sm .gnav--menu > li a {
  color: #000;
}

.gnav--cta {
  padding-top: 20px;
}

.header-sm .gnav--menu {
  padding-top: 30px;
}
.header-sm .head_sub_nav > li a {
  color: #fff;
}
.header-sm .menu-item-has-children > a::after {
  border-color: #000;
}

.head_sub_nav {
  min-width: 13.02vw;
  flex-wrap: wrap;
  justify-content: center;
  background: #2f4de4;
}
.head_sub_nav li {
  border-bottom: 1px solid #6881ff;
}
.head_sub_nav a {
  display: block;
  padding: 10px 24px;
}

/* @media print, screen and (min-width: 1081px) {
  .header--nav,
  .gnav,
  .gnav > .flex,
  .gnav ul,
  .gnav li
} */
@media screen and (max-width: 1080px) {
  .header {
    height: 110px;
    padding: 30px 20px;
  }
  .header > .inner {
    padding: 0;
  }
  .header--logo {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .header--logo img {
    width: auto;
    max-height: 40px;
  }
  .header-sm .header--logo {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .header--logo a {
    width: 30vw;
  }
  .header.active {
    background: #f7f7f7;
  }
  .header.header-sm {
    padding: 0 20px;
    height: 70px;
  }
  .header-sm .gnav--menu {
    padding-top: 0;
  }
  .head_sub_nav {
    background: #eee;
  }
  .head_sub_nav > li a {
    padding: 10px 15px;
    color: #000;
  }
  .header-sm .head_sub_nav > li a {
    padding: 10px 15px;
    color: #000;
  }
  .head_sub_nav > li::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header--logo a {
    width: 45vw;
    transform: translateY(3px);
  }
}
/* gnav
********************************************** */
.gnav a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-size: clamp(14px, 0.83vw, 1rem);
}

.head_sub_nav--wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: block;
  transition: all 0.4s ease-out;
  opacity: 0;
  pointer-events: none;
}

.menu-item-has-children > a {
  padding-right: 20px;
}

/* ---CTA --- */
.cta_tel a {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  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 a {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  color: #1e35a8;
}

.gnav--tel--num {
  margin: 0 0 5px;
  display: block;
  line-height: 1;
  font-family: "EB Garamond", serif;
  font-size: 1.5rem;
  font-size: clamp(10px, 11vw, 1.5rem);
  font-style: italic;
}
.gnav--tel--num em {
  font-size: 2.5rem;
  font-size: clamp(10px, 11vw, 2.5rem);
  font-family: "EB Garamond", serif;
  font-style: italic;
}

.gnav--contact a {
  position: fixed;
  top: 35px;
  right: 20px;
  z-index: 100;
  width: 7.29vw;
  height: 7.29vw;
  max-width: 140px;
  max-height: 140px;
  margin: 0 0 0 2.6vw;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 100%;
  background: rgb(239, 62, 224);
  background: linear-gradient(135deg, rgb(239, 62, 224) 0%, rgb(218, 71, 62) 100%);
}
.gnav--contact a:hover {
  opacity: 0.8;
  transition: 0.2s;
}
.gnav--contact .img_box {
  width: 2.29vw;
  max-width: 44px;
  margin: 0 0 10px;
}
.gnav--contact .img_box img {
  width: 100%;
}
.gnav--contact span {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.25em;
  line-height: 1;
  font-family: "EB Garamond", serif;
  font-style: italic;
  letter-spacing: normal;
  color: #fff;
}

.gnav--cta .tel {
  font-size: 1.25rem;
  /* 20px */
}
.gnav--cta .num {
  font-size: 1.5rem;
  /* 24px */
}
.gnav--cta .hours {
  font-size: 0.875rem;
  /* 14px */
}

@media print, screen and (min-width: 1081px) {
  .gnav {
    display: flex;
  }
  .gnav_btn,
  .tel_btn {
    display: none;
  }
  .gnav--link {
    text-align: center;
  }
  .gnav--menu {
    padding-top: 40px;
    align-items: stretch;
  }
  .gnav--menu > li {
    margin: 0 1.82vw 0 0;
    padding-bottom: 20px;
    position: relative;
  }
  .gnav--menu > li:last-of-type {
    margin: 0;
  }
  .gnav--menu > li .gnav--link .navbox:hover {
    color: #1e35a8;
    font-weight: bold;
    transition: 0.2s;
  }
  .gnav--menu > li > .gnav--link:not([href="javascript:void(0);"]):hover .navbox svg, .gnav--menu > li.current_page_item > .gnav--link .navbox svg {
    bottom: -12px;
    opacity: 1;
  }
  .gnav--menu > li a {
    height: 100%;
    align-items: center;
    color: #fff;
  }
  .gnav--cta {
    margin: 0 0 0 4.43vw;
    padding-top: 35px;
  }
  .head_sub_nav a {
    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 {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.7;
  }
}
@media screen and (max-width: 1080px) {
  .gnav .sp_contact li a {
    padding: 15px 20px;
  }
  .gnav .sp_contact .recruit {
    background-position: center left 20px;
    background-size: 12%;
  }
  .gnav .sp_contact .contact {
    background-position: center left 20px;
    background-size: 10%;
  }
  .sp_contact .contact a {
    display: block;
  }
  .gnav,
  .gnav_overlay {
    position: fixed;
    top: 110px;
    right: 0;
    height: calc(100% - 75px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-out;
  }
  .gnav {
    width: 70%;
    margin: 0;
    padding: 24px 7%;
    overflow: scroll;
    background-color: #F7F7F7;
    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;
    width: 100% !important;
  }
  .gnav--menu li {
    position: relative;
    display: block;
    width: 100%;
  }
  .gnav--menu li:not(:last-child) {
    border-bottom: 1px dotted #1D7FB7;
  }
  .gnav--menu a {
    display: block;
    padding: 18.5px 16px;
  }
  .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 #1D7FB7;
    border-right: 1px solid #1D7FB7;
    transform: rotate(45deg);
  }
  .head_sub_nav--wrap {
    position: relative;
    width: 100%;
    border-top: 1px dotted #1D7FB7;
    transition: none;
    opacity: 1;
    pointer-events: inherit;
    display: none;
  }
  .menu-item-has-children > a::after {
    display: none;
  }
  .menu-item-has-children.active .head_sub_nav--wrap {
    opacity: 1;
    pointer-events: auto;
  }
  .head_sub_nav a {
    padding-left: 32px;
  }
  .gnav_sub_toggle {
    position: absolute;
    top: 0;
    right: -20px;
    width: 64px;
    height: 64px;
    transition: all 0.4s ease-out;
    color: #1d7fb7;
  }
  .gnav_sub_toggle::before {
    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 {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 11px;
    height: 1px;
    border-bottom: 1px solid;
    transform: rotate(90deg);
  }
  .gnav_sub_toggle.active {
    transform: rotate(180deg);
  }
  .head_sub_nav {
    position: relative;
  }
  .tel_btn {
    position: fixed;
    top: 0;
    width: 84px;
    padding-top: 40px;
    z-index: 9999;
  }
  .gnav_btn {
    position: fixed;
    top: 0;
    width: 84px;
    padding-top: 40px;
    z-index: 9999;
    flex-wrap: wrap;
    align-content: center;
    font-size: 0.857rem;
    right: 0;
    transition: all 0.4s ease-out;
  }
  .gnav_btn .menu {
    width: 100%;
    color: #fff;
    line-height: normal;
    text-align: center;
  }
  .gnav_btn--lines {
    position: relative;
    width: 35px;
    height: 12px;
    margin-bottom: 10px;
  }
  .gnav_btn--lines span {
    transition: all 0.4s ease-out;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    bottom: 0;
  }
  .header-sm .gnav_btn--lines span {
    background-color: #2f4de4;
  }
  .active .gnav_btn--lines span {
    background-color: #2f4de4;
  }
  .active .gnav_btn--lines span:nth-of-type(1) {
    transform: translateY(6px) rotate(-25deg);
  }
  .active .gnav_btn--lines span:nth-of-type(2) {
    transform: translateY(-3px) rotate(25deg);
  }
  .header-sm .menu,
  .active .menu {
    color: #2f4de4;
  }
  .header-sm .gnav_btn {
    padding-top: 20px;
  }
  /* ---CTA --- */
  .gnav--cta li:not(:last-child) {
    margin-bottom: 16px;
  }
  .gnav--tel {
    margin-left: 0;
    text-align: center;
  }
  .gnav--contact {
    margin-left: 0;
  }
  .gnav--contact a {
    padding: 10px 16px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1080px) {
  .header-sm .gnav,
  .header-sm .gnav_overlay {
    top: 55px;
    height: calc(100% - 55px);
  }
  .gnav .gnav--menu > li .gnav--link .navbox svg {
    display: none;
  }
  .menu-item-has-children > a,
  .header-sm .menu-item-has-children > a {
    background: none;
  }
  .gnav--contact a {
    position: relative;
    top: initial;
    right: initial;
    display: flex;
    flex-wrap: wrap;
    border-radius: 0;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    background: #e14475;
    display: none;
  }
  .gnav--contact span {
    width: auto;
    font-size: 2rem;
  }
  .gnav--contact .img_box {
    width: 40px;
    margin: 0 10px 0 0;
  }
  .gnav--tel a {
    margin: 0 0 30px;
    color: #1f284e;
  }
}
@media screen and (max-width: 767px) {
  .gnav {
    width: 100%;
  }
  .gnav--menu a {
    padding: 19px 16px;
  }
  .gnav--contact svg {
    width: 16px;
    height: 11px;
  }
}
/* ##############################################################################

    FOOTER

############################################################################## */
/* footer_top
********************************************** */
.fnav--menu a {
  display: block;
  padding: 0 1em;
}
.fnav--menu a:hover {
  opacity: 0.7;
}

#footer--contact {
  width: 100%;
  background: #eff2fe;
}
#footer--contact .cont_h2 span::after {
  top: calc(100% - 1.5vw);
}
#footer--contact .container {
  width: 60vw;
  margin: 0 auto 0 0;
  padding: 6.09vw 0 5.21vw 9.46vw;
  background: #fff;
  transform: translateY(4.9vw);
  overflow: hidden;
}
#footer--contact .gnav--cta {
  padding: 0;
  position: relative;
}
#footer--contact .gnav--cta::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #1e35a8;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#footer--contact .gnav--tel {
  padding-left: 20px;
  background: #fff;
  position: relative;
  z-index: 1;
  color: #1e35a8;
}
#footer--contact .gnav--tel a {
  color: #1e35a8;
}
#footer--contact .text {
  margin: 0 0 2.6vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #1f284e;
  line-height: 2;
  letter-spacing: 0.05em;
}
#footer--contact .text_box {
  width: 100%;
}

#footer--contactlist li {
  width: 100%;
  height: 190px;
  height: 9.9vw;
  color: #fff;
}
#footer--contactlist li a {
  padding: 20px;
  /*13.5vw*/
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 1.625rem;
  transition: 0.2s;
}
#footer--contactlist li a:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.2);
}
#footer--contactlist li a span {
  font-style: italic;
  font-family: "A1 Mincho", serif;
}
#footer--contactlist li a em {
  font-size: 1rem;
  display: block;
}

#footer--contact .gnav--cta {
  margin: 0;
  justify-content: flex-end;
  width: 90%;
}

#foot_contact_btn {
  background: #e14475;
}
#foot_contact_btn a {
  background: url(../img/mail.png) no-repeat center left 3.73vw;
  background-size: 3.2vw auto;
}

#foot_entry_btn {
  background: #2f4de4;
}

#footer--main {
  width: 100%;
  padding: 0 20px;
  padding-top: 300px;
  padding-bottom: min(113px, 5.89vw);
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.1) 100%, rgba(0, 0, 0, 0.1) 100%), url(../img/FV4.jpg) no-repeat center 0/cover;
  background-position: center;
}
#footer--main a {
  color: #fff;
}

#foot_id {
  width: 100%;
  max-width: 286px;
  display: block;
  margin: auto;
}

#footer--wrap {
  margin: 0 0 12px;
  margin: 0 0 min(12px, 0.63vw);
}

.zip_box {
  padding: 20px 0;
  text-align: center;
}

#copy {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 0.75rem;
  padding-top: 20px;
}
#copy a {
  margin: 0 10px;
  opacity: 0.5;
}

#form_copy {
  display: block;
  text-align: center;
  padding: 10px;
  background: #1e35a8;
  color: rgb(204, 190, 190);
  font-size: 0.75rem;
}
#form_copy a {
  display: block;
}

#footnav .menu-item-has-children {
  position: relative;
}
#footnav .menu-item-has-children > a {
  padding-right: 20px;
}
#footnav .sub-menu {
  position: absolute;
  z-index: 1;
  min-width: 200px;
  background: #fff;
  right: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.4s;
}
#footnav .sub-menu li {
  border-bottom: 1px solid #ccc;
}
#footnav .sub-menu a {
  padding: 5px 10px;
  padding-right: 15px;
  color: #1e35a8;
  font-size: 0.875em;
}
#footnav .menu-item-has-children:hover .sub-menu {
  height: auto;
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s;
}
#footnav .sub-menu:hover {
  height: auto;
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s;
}
#footnav .sub-menu a:hover {
  background: #1e35a8;
  color: #fff;
}

#footer--contact .cont_h2 {
  border: none;
}

@media screen and (max-width: 767px) {
  #footer--contact .cont_h2 span::after {
    width: 16vw;
    top: calc(100% - 3.2vw);
  }
  #footer--main {
    padding-bottom: 100px;
  }
  #foot_id {
    width: 60%;
    margin: 0 auto;
    max-width: none;
    text-align: center;
  }
  #foot_id svg {
    width: 100%;
  }
  #footer--contact .cont_h2 {
    font-size: 2.5rem;
  }
  #footer--contact .cont_h2 span {
    font-family: "EB Garamond", serif;
    font-style: italic;
  }
  #footer--contact .text_box {
    width: 100%;
  }
  #footer--contact .text {
    font-size: 1rem;
  }
  #footer--contact .text:last-of-type {
    margin: 0 0 20px;
  }
  #footer--contactlist li {
    width: 100%;
    height: auto;
    min-height: 90px;
  }
  #footer--contactlist li a {
    justify-content: center;
    font-size: 1.286rem;
    height: 100%;
  }
  #footer--contact .container {
    width: 100%;
    padding: 4%;
    transform: translateY(40px);
  }
  #footer--contactlist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #footer--contact .gnav--tel {
    margin: 0 0 30px;
    padding: 0;
  }
  #footer--contact .gnav--cta::after {
    content: none;
  }
  #foot_contact_btn a {
    background-position: center left 30px;
  }
  #foot_entry_btn a {
    background-position: center left 25px;
  }
  #footer--wrap {
    display: block;
  }
  #footnav {
    margin: 0 0 50px;
  }
  #footnav ul {
    display: block;
  }
  #footnav li {
    width: 100%;
    margin: 0;
  }
  #footnav li:nth-of-type(2n) {
    margin: 0 0 5px;
  }
  #footnav li a {
    width: 100%;
    color: #fff;
    padding: 3px 10px;
    font-size: 1rem;
    /*14px*/
  }
  #footnav .sub-menu {
    display: none;
  }
  #footnav .menu-item-has-children > a {
    background: none;
  }
  #copy {
    text-align: center;
  }
  #footer--wrap .zip_box {
    padding-top: 0;
    margin-bottom: 30px;
    font-size: 1rem;
  }
  #footer--contactlist li a {
    padding-left: 70px;
  }
  #foot_contact_btn a {
    background-size: 30px auto;
  }
  #foot_entry_btn a {
    background-size: 35px auto;
  }
}
/* ##############################################################################

    content

############################################################################## */
.vertical {
  writing-mode: vertical-rl;
}

.vertical--styling {
  -ms-text-combine-horizontal: all;
  -webkit-text-combine: horizontal;
  text-combine-upright: all;
  line-height: 1;
  vertical-align: baseline;
}

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

    INDEX

############################################################################## */
/* hero
********************************************** */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
}

.hero--catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  bottom: 0;
  padding-top: min(28vh, 305px);
  padding-bottom: min(35.5vh, 390px);
  z-index: 100;
  white-space: nowrap;
}
.hero--catch p {
  color: #1e35a8;
}
.hero--catch p > br {
  display: none;
}
.hero--catch p span {
  display: block;
}
.hero--catch span:not(:last-of-type) {
  font-size: 6.42vh;
  /*70px*/
  font-size: clamp(2.6rem, 6.42vh, 4.375rem);
  font-family: "A1 Mincho", serif;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.18rem;
}
.hero--catch span:nth-of-type(2) {
  padding-left: 4rem;
}
.hero--catch span:nth-of-type(3) {
  padding-left: 8rem;
}
.hero--catch p span:last-of-type {
  font-size: 1.47vh;
  font-size: clamp(0.875rem, 1.47vh, 1rem);
  line-height: 1.8;
}

.hero_slides {
  width: 100%;
  height: 100% !important;
}
.hero_slides .hero_slide {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100% !important;
  position: relative;
}
.hero_slides .hero_slide img {
  filter: brightness(1);
	object-position: left;
}
.hero_slides .hero_slide .slick-list,
.hero_slides .hero_slide .slick-track,
.hero_slides .hero_slide .slick-slider,
.hero_slides .hero_slide .slick-slide {
  width: 100%;
  height: 100% !important;
}
.hero_slides .hero_slide .slick-list {
  position: relative;
  overflow: hidden;
}

#hero--scroll {
  position: absolute;
  bottom: 0;
  left: 18.75vw;
  left: min(18.75vw, 360px);
  height: 20.18vw;
  max-height: 220px;
  overflow: hidden;
  font-size: 1.47vh;
  font-size: clamp(0.875rem, 1.47vh, 1rem);
  font-family: "EB Garamond", serif;
  font-style: italic;
  color: #1e35a8;
}
#hero--scroll span {
  position: relative;
}
#hero--scroll span::before {
  content: "";
  position: absolute;
  top: calc(100% + 1.1vh);
  right: 50%;
  width: 1px;
  height: 17.61vh;
  max-height: 200px;
  background: #fff;
}
#hero--scroll span::after {
  content: "";
  position: absolute;
  top: calc(100% + 1.1vh);
  right: 50%;
  width: 2px;
  height: 17.61vh;
  max-height: 200px;
  background: #3455fc;
}

#hero_copy {
  position: absolute;
  z-index: 10;
  left: 20px;
  top: 22vw;
  top: min(22vw, 420px);
  font-size: 12.5rem;
  font-size: clamp(1em, 10.42vw, 12.5rem);
  font-family: "EB Garamond", serif;
  font-style: italic;
  line-height: 0.7;
  white-space: nowrap;
  text-orientation: sideways;
  color: #a4d1ff;
  opacity: 0.2;
}

#hero_recruit {
  position: absolute;
  z-index: 100;
  top: 29.82vh;
  top: min(29.82vh, 325px);
  right: 0;
  height: 49.87vh;
  max-height: 500px;
  text-align: right;
}
#hero_recruit a {
  height: 100%;
  display: block;
  transition: 0.2s;
}
#hero_recruit a:hover {
  opacity: 0.8;
}
#hero_recruit .lead {
  position: absolute;
  top: -20px;
  left: -20px;
  text-align: left;
  text-orientation: mixed;
  display: inline-block;
  background: #2f4de4;
  color: #fff;
  bottom: 20px;
  font-size: 1rem;
  font-size: clamp(0.875rem, 1.47vh, 1rem);
}
#hero_recruit .lead span {
  display: inline-block;
  padding-bottom: 10px;
  font-size: 4.59vh;
  /*50px*/
  font-size: clamp(1.563rem, 4.59vh, 3.125rem);
  font-family: "EB Garamond", serif;
  font-style: italic;
  line-height: 1;
  vertical-align: baseline;
  transform: translate(3px, -15px);
}
#hero_recruit img {
  height: auto;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media screen and (max-width: 767px) {
  .hero {
    height: calc(var(--vh, 1vh) * 100);
  }
  .hero_slide-sp {
    display: block !important;
  }
  .hero--catch span:not(:last-of-type) {
    font-size: 8vw;
  }
  .hero--catch p span:last-of-type {
    font-size: clamp(0.857rem, 5.56vh, 1rem);
    /*12px ~ 14px*/
    margin-top: 13vh;
    padding-right: min(11.4vw, 220px);
  }
  #hero_recruit {
    top: min(30vh, 162px);
    height: 40vh;
    max-height: 216px;
  }
  #hero_copy {
    font-size: 6rem;
  }
  #hero_recruit,
  #hero--scroll {
    display: none;
  }
}
/* home_news
********************************************** */
.home_news {
  position: absolute;
  z-index: 100;
  right: 1vw;
  bottom: 60px;
  background-color: #fff;
  min-height: 70px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}

.news_list--ttl {
  position: relative;
  padding: 20px 30px;
  padding: min(1.04vw, 20px) min(1.56vw, 30px);
  line-height: 1.2;
  color: #2f4de4;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 1.125em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news_list--ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 3.13vw;
  max-height: 60px;
  background: #2f4de4;
}

.home_news a {
  position: relative;
  display: block;
  padding: 1.04vw 1.56vw;
  padding: min(1.04vw, 20px) min(1.56vw, 30px);
  padding-right: 8.7vw;
  padding-right: min(8.7vw, 170px);
  letter-spacing: normal;
  line-height: 2;
  height: 100%;
}
.home_news a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4.69vw;
  height: 100%;
  width: min(4.69vw, 90px);
  background: url(../img/index_news_icon.gif) no-repeat center, #2f4de4;
}

#index--news_title,
#index--news_date {
  line-height: normal;
  display: block;
}

/* canvas
********************************************** */
#top #wrapper {
  width: 100%;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

#canvas2-container {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
}

#canv {
  transform: rotate(180deg);
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 3;
  mix-blend-mode: screen;
  opacity: 0.4;
  top: 0;
}

.slick-slide .ie {
  display: none;
  height: 100vh;
  width: 100%;
  background-image: url(../img/main_ie.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.slick-slide img.ie {
  display: none;
}

_:-ms-lang(x)::-ms-backdrop,
#canv,
:-ms-lang(x)::-ms-backdrop,
.slick-slide img.no_ie {
  display: none;
}

:-ms-lang(x)::-ms-backdrop,
.slick-slide img.ie,
:-ms-lang(x)::-ms-backdrop,
.slick-slide .ie {
  display: block;
}

#wave {
  width: 100%;
  height: 50px;
  position: relative;
  bottom: -1px;
}

@media screen and (max-width: 767px) {
  .news_list--ttl {
    width: auto;
    float: none;
    height: auto;
    margin-bottom: 16px;
  }
  .home_news .news_list--ttl {
    width: 25%;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.857rem;
    justify-content: center;
  }
  .home_news .news_list {
    width: 75%;
  }
  .home_news a {
    padding-right: 20%;
  }
  .home_news a::after {
    width: 20%;
  }
  .news_list--ttl::after {
    height: 50px;
  }
  #index--news_date,
  #index--news_title {
    line-height: normal;
  }
  .home_news {
    top: initial;
    bottom: 7vh;
    left: initial;
    right: 20px;
    width: calc(100% - min(11.4vw, 220px) * 2);
  }
  .home_news a {
    font-size: clamp(0.857rem, 5.56vh, 1rem);
    /*12px ~ 14px*/
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
  }
}
/* about
********************************************** */
#about {
  position: relative;
}
#about h2 {
  letter-spacing: normal;
}

#ourbusiness h2,
#index_recruit h2 {
  letter-spacing: normal;
}

#about::after {
  position: absolute;
  top: -11.46vw;
  top: min(-11.46vw, -220px);
  left: 0;
  content: "";
  width: 100%;
  height: 26.67vw;
  max-height: 517px;
  background: url(../img/wave2.png) no-repeat top left;
  opacity: 0.2;
  background-size: 180%;
}

#about--misson {
  position: relative;
  margin-bottom: 9.11vw;
  margin-bottom: min(9.11vw, 175px);
  padding-top: 8.85vw;
  margin-bottom: min(8.85vw, 170px);
  background: url(../img/02-bg.png) no-repeat right top;
  background-size: contain;
}
#about--misson::before {
  display: block;
  position: absolute;
  left: 0;
  bottom: -9vw;
  bottom: min(-9vw, -180px);
  content: "";
  width: 100%;
  height: 37.29vw;
  background: url(../img/wave1.png) no-repeat top right;
  opacity: 0.2;
  background-size: cover;
}
#about--misson .container {
  max-width: none;
  margin: 0 0 5.2vw 0;
  margin: 0 0 min(5.2vw, 100px) 0;
  padding: 0 0 0 25vw;
  padding: 0 0 0 min(25vw, 480px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}
#about--misson h2 {
  margin-bottom: 3.4vw;
  margin-bottom: min(3.4vw, 65px);
  margin-right: 0;
  margin-left: 0;
  padding-left: 21.88vw;
  padding-left: min(21.88vw, 420px);
  text-align: left;
}
#about--misson h3 {
  font-size: 2.25rem;
  margin-bottom: 2.6vw;
  margin-bottom: min(2.6vw, 50px);
}
#about--misson .text {
  padding-right: 8.85vw;
  padding-right: min(8.85vw, 170px);
}
#about--misson p {
  padding-left: 1.77vw;
}
#about--misson p:not(:last-of-type) {
  margin-bottom: 1em;
}
#about--misson .cont1 .text + .img_box {
  width: 35.94vw;
  width: min(690px, 35.94vw);
  padding-top: 3.4vw;
  padding-top: min(3.4vw, 65px);
}

#misson--foot_img {
  width: 80%;
  margin: 0 auto;
}

#misson--left_img {
  position: absolute;
  left: 20px;
  top: 17.5vw;
  top: min(17.5vw, 336px);
  width: 18.5vw;
  width: min(355px, 18.5vw);
}

#about--strength {
  position: relative;
  margin-bottom: 10vw;
  margin-bottom: min(10vw, 190px);
}
#about--strength::after {
  content: "";
  top: -15vw;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% + 15vw);
  position: absolute;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%) no-repeat top/100% 400px, linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%) no-repeat bottom/100% 400px, linear-gradient(rgba(147, 209, 245, 0.5), rgba(147, 209, 245, 0.5)), url(../img/bg.jpg);
  z-index: -1;
}
#about--strength .container {
  max-width: none;
  margin: 0 0 4.2vw 0;
  margin: 0 0 min(4.2vw, 80px) 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
#about--strength .container p {
  margin-bottom: 45px;
  margin-bottom: min(2.34vw, 45px);
}
#about--strength .container p:last-of-type {
  margin-bottom: 0;
}
#about--strength .cont2 .text p {
  margin-bottom: 45px;
  margin-bottom: min(2.34vw, 45px);
}
#about--strength .ttl-01 {
  line-height: normal;
}
#about--strength .editor-ttl2 {
  margin-bottom: 2.6vw;
  margin-bottom: min(2.6vw, 50px);
  font-size: 1.875rem;
  font-size: clamp(1.5rem, 1.56vw, 1.875rem);
  line-height: 1.8;
}
#about--strength .editor-ttl3::before {
  background-color: #333;
}
#about--strength .editor-ttl3 em {
  font-size: 1.5em;
  font-style: italic;
}
#about--strength .text {
  width: 50%;
  position: relative;
  z-index: 2;
  padding-right: 3.65vw;
  padding-right: min(3.65vw, 70px);
  padding-left: 18.75vw;
  padding-left: min(18.75vw, 360px);
}
#about--strength .container .text + .img_box {
  width: 50%;
}
#about--strength .container:nth-of-type(2n) {
  padding-left: 0;
}
#about--strength .container:nth-of-type(2n) .text {
  order: 2;
  padding-right: 0;
  padding-left: 3.65vw;
  padding-left: min(3.65vw, 70px);
  padding-right: 25vw;
  padding-right: min(18.75vw, 360px);
}
#about--strength .container:nth-of-type(2n) .text + .img_box {
  order: 1;
}
#about--strength .container::after, #about--strength .container::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}
#about--strength .img_box::after, #about--strength .img_box::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}
#about--strength .img_box::after, #about--strength .img_box::before {
  z-index: -1;
}
#about--strength .container .img_box {
  position: relative;
  z-index: 1;
}
#about--strength .cont1::after {
  display: block;
  top: -21vw;
  top: min(-21vw, -40px);
  left: 0;
  width: 25vw;
  width: min(25vw, 480px);
  height: 1105px;
  max-height: 1105px;
  background-image: url(../img/03-blur-01.png);
}
#about--strength .cont2 h4 {
  width: 100%;
  margin-bottom: 1.56vw;
  margin-bottom: min(1.56vw, 30px);
  padding: 5px 10px;
  text-align: center;
  font-size: 1rem;
  font-family: noto-sans-cjk-jp, sans-serif;
  background: url(../img/h4-bg.jpg);
}
#about--strength .cont2 .text {
  padding-top: 2vw;
  padding-top: min(2vw, 40px);
}
#about--strength .cont2 .img_box {
  padding-bottom: 5.2vw;
  padding-bottom: min(5.2vw, 100px);
}
#about--strength .cont2 .img_1 {
  padding-right: 3.65vw;
  padding-right: min(3.65vw, 70px);
}
#about--strength .cont2 .img_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  max-width: 24.5vw;
  max-width: min(24.5vw, 468px);
}
#about--strength .cont2::after {
  display: block;
  top: -26vw;
  top: min(-26vw, -500px);
  right: 0;
  width: 50vw;
  width: min(50vw, 950px);
  height: 75vw;
  max-height: 1440px;
  background-image: url(../img/03-blur-02.png);
  background-position: right;
}
#about--strength .cont2 .img_box::before {
  display: block;
  top: -26vw;
  top: min(-26vw, -500px);
  width: 57.6vw;
  max-width: 1106px;
  height: 57.6vw;
  max-height: 1106px;
  background-image: url(../img/03-blur-03.png);
}
#about--strength .cont3::after {
  display: block;
  top: -100%;
  right: 0;
  width: 100%;
  height: 37.76vw;
  max-height: 725px;
  background-image: url(../img/wave1.png);
  opacity: 0.4;
  background-size: cover;
}
#about--strength .cont3 .text {
  padding-top: 3.4vw;
  padding-top: min(3.4vw, 60px);
}
#about--strength .cont3 .img_box::after {
  display: block;
  top: -20vw;
  top: min(-20vw, -400px);
  left: -20vw;
  left: min(-20vw, -400px);
  width: 57.6vw;
  max-width: 1106px;
  height: 57.6vw;
  max-height: 1106px;
  background-image: url(../img/03-blur-04.png);
  background-position: left;
}
#about--strength .cont4::before {
  display: block;
  top: -12.5vw;
  top: min(-12.5vw, 240px);
  right: 0;
  width: 32.74vw;
  max-width: 715px;
  height: 66.67vw;
  max-height: 1280px;
  background-image: url(../img/03-blur-06.png);
  background-position: right;
}
#about--strength .cont4::after {
  display: block;
  bottom: -11vw;
  bottom: min(-11vw, 215px);
  right: 0;
  width: 100%;
  height: 25.5vw;
  max-height: 490px;
  background-image: url(../img/wave2.png);
  background-size: 200%;
  opacity: 0.2;
}
#about--strength .cont4 .img_box::after {
  display: block;
  top: -20vw;
  top: min(-20vw, -400px);
  left: 0;
  width: 57.6vw;
  max-width: 1106px;
  height: 57.6vw;
  max-height: 1106px;
  background-image: url(../img/03-blur-05.png);
  background-position: left;
}

@media screen and (max-width: 767px) {
  #about {
    margin-bottom: 100px;
  }
  #about::after {
    top: -80px;
  }
  #about--wrapper {
    width: 100%;
  }
  #about--misson::before {
    transform: scale(2);
  }
  #about--strength .cont2::after,
  #about--strength .cont3::after {
    transform: scale(2);
  }
  #about--strength .cont4 .img_box::after, #about--strength .cont4::before, #about--strength .cont4::after {
    transform: scale(2);
  }
  #about--misson .container,
  #about--strength .container:nth-of-type(2n) {
    padding: 0 20px;
    display: block;
  }
  #about--misson .cont1 .text + .img_box {
    width: 80%;
  }
  #about--misson .cont1 .text + .img_box img {
    transform: translateX(-20px);
  }
  #about--misson .text {
    width: 100%;
    padding: 0;
    font-size: 1.143rem;
  }
  #about--misson .box {
    position: relative;
    width: 100%;
  }
  #about--misson .box img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  #misson--foot_img {
    width: 100%;
  }
  #misson--img_list {
    height: 300px;
  }
  #misson--foot_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #misson--left_img {
    width: 35%;
    height: 100%;
    top: 50px;
  }
  #about--misson {
    margin-bottom: 100px;
    background-size: 150%;
  }
  #about--misson h3 {
    margin-bottom: 30px;
  }
  #about--misson h2 {
    margin-left: 20px;
    padding-left: 0;
    margin-bottom: 30px;
  }
  #ourbusiness h2 {
    margin-left: 20px;
    padding-left: 0;
    margin-bottom: 30px;
  }
  #about--misson .text {
    margin-bottom: 30px;
  }
  #about--misson .box img {
    height: 100%;
  }
  #about--strength::after {
    top: -200px;
    height: calc(100% + 300px);
  }
  #about--strength .editor-ttl2 {
    margin-top: 1rem;
    margin-bottom: 25px;
    font-size: clamp(1.786rem, 8vw, 2.143rem);
    line-height: 1.4;
  }
  #about--strength .container {
    margin-bottom: 4.286rem;
    padding: 0 20px;
  }
  #about--strength .container .text + .img_box {
    width: 100%;
  }
  #about--strength .text {
    width: 100%;
    padding: 0;
  }
  #about--strength .container:nth-of-type(2n) .text {
    order: 1;
    padding: 0;
  }
  #about--strength .container .text {
    font-size: 1.143rem;
    margin-bottom: 2.143rem;
  }
  #about--strength .cont2 .text p {
    margin-bottom: 2.143rem;
  }
  #about--strength .cont2 .img_box {
    padding-bottom: 40px;
  }
  #about--strength .cont2 .img_1 {
    max-width: none;
    width: 70%;
  }
  #about--strength .cont2 .img_2 {
    max-width: none;
    width: 40%;
  }
  #about--strength .cont4 .img_box::after {
    left: -20px;
  }
}
/* ourbusiness
********************************************** */
#ourbusiness {
  position: relative;
  margin-bottom: 11vw;
  margin-bottom: min(11vw, 210px);
}
#ourbusiness h2 {
  margin-left: 18.75vw;
  margin-left: min(18.75vw, 360px);
  padding-right: 20px;
  text-align: left;
}
#ourbusiness ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#ourbusiness li {
  width: 23.44vw;
  max-width: 450px;
  margin-right: 2.08vw;
}
#ourbusiness li a {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-content: flex-start;
  flex-direction: column;
}
#ourbusiness li .text {
  margin-bottom: 1.56vw;
  margin-bottom: min(1.56vw, 30px);
}
#ourbusiness li .btn {
  margin-top: auto;
  margin-left: auto;
  display: block;
  text-align: right;
  font-family: "EB Garamond", serif;
  font-style: italic;
}
#ourbusiness li:nth-of-type(3n) {
  margin-right: 0;
}
#ourbusiness li .img_box {
  text-align: center;
  margin-bottom: 2.08vw;
  margin-bottom: min(2.08vw, 40px);
}
#ourbusiness li .img_box img {
  aspect-ratio: 16/9;
}

@media screen and (max-width: 767px) {
  #ourbusiness li {
    width: 100%;
    margin: 0 0 30px;
    padding: 0 20px;
  }
  #ourbusiness li .text {
    font-size: 1.143rem;
  }
}
/* recruit
*************************************************** */
.requirements--info table {
  width: 100%;
}
.requirements--info th {
  text-align: left;
}

#interview_head {
  position: relative;
  overflow: hidden;
}

#cont_index_recruit,
#index_recruit,
#interview_head {
  position: relative;
  padding-top: 5.21vw;
  padding-top: min(5.21vw, 100px);
  margin-bottom: 4.17vw;
  margin-bottom: min(4.17vw, 80px);
}

#index_recruit #wave2 {
  position: absolute;
  top: 0;
  height: 50px;
  width: 100%;
  transform: rotate(180deg);
}
#index_recruit .ttl-01 span {
  position: relative;
}
#index_recruit::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6.77vw;
  top: min(-6.77vw, -130px);
  left: 0;
  width: 100%;
  height: 26.67vw;
  max-height: 512px;
  background: url(../img/wave2.png) no-repeat center top;
  opacity: 0.2;
  background-size: 200%;
  display: block;
}

#cont_index_recruit::after,
#index_recruit::after,
#interview_head::after {
  position: absolute;
  z-index: -1;
  top: 0;
  content: "";
  width: 100%;
  height: 67.92vw;
  max-height: 90%;
  background: linear-gradient(rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0.5) 100%), url(../img/top_recruit_bg.jpg) no-repeat center top;
  background-size: contain;
}

#index_recruit--copy {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: min(2.34vw, 45px);
  width: 80%;
}

#hu_list {
  margin-bottom: 3.65vw;
  margin-bottom: min(3.65vw, 70px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#hu_list .img_box {
  max-width: 95%;
}
#hu_list .img_box img {
  max-width: 100%;
}

_:-ms-fullscreen,
:root #hu_list article {
  overflow: hidden;
}

_:-ms-fullscreen,
:root #hu_list article .blueline_text span,
#interview_head .blueline_text span {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

_:-ms-fullscreen,
:root #hu_list article .blueline_text span.sub {
  font-size: 1rem;
}

_:-ms-fullscreen,
:root #hu_list article img {
  width: 100% !important;
}

#hu_list article {
  position: relative;
  width: 38.54vw;
  max-width: 740px;
  margin-right: 4.17vw;
  margin-right: min(4.17vw, 80px);
  position: relative;
  transition: 0.2s;
}
#hu_list article:last-of-type {
  margin-right: 0;
}
#hu_list article .box {
  position: relative;
  z-index: 1;
  padding: 1.82vw 0 2.24vw 5.89vw;
}
#hu_list article .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #2f4de4;
  mix-blend-mode: multiply;
}
#hu_list .num {
  position: absolute;
  top: 0.1vw;
  left: 1vw;
  transform-origin: left;
}
#hu_list .num span {
  position: relative;
  padding-top: 7.3vw;
  padding-top: min(7.3vw, 135px);
  min-height: 14.6vw;
  min-height: min(14.6vw, 270px);
  color: #fff;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1;
}
#hu_list .num span::after {
  content: "";
  position: absolute;
  top: 1.56vw;
  top: min(1.56vw, 30px);
  right: 50%;
  width: 1px;
  height: 5.21vw;
  max-height: 100px;
  background: #fff;
}
#hu_list article .blueline_text {
  position: absolute;
  left: calc(5.89vw - 20px);
  top: 17vw;
  top: min(17vw, 320px);
}
#hu_list article .blueline_text span {
  margin-bottom: 1.25vw;
  margin-bottom: min(1.25vw, 24px);
  padding: 6px 10px;
  font-family: "A1 Mincho", serif;
  font-style: italic;
  font-size: 1.875rem;
  font-size: clamp(1rem, 1.526vw, 1.875rem);
  line-height: 1;
  color: #fff;
  display: inline-block;
  background: #2f4de4;
}

#interview_head .blueline_text span {
  margin-bottom: 1.25vw;
  margin-bottom: min(1.25vw, 24px);
  padding: 6px 10px;
  font-family: "A1 Mincho", serif;
  font-style: italic;
  font-size: 1.875rem;
  font-size: clamp(1rem, 1.526vw, 1.875rem);
  line-height: 1;
  color: #fff;
  display: inline-block;
  background: #2f4de4;
}

#hu_list article .blueline_text .sub,
#interview_head .blueline_text .sub {
  font-size: 1rem;
}

#requirements.single {
  width: 100%;
  max-width: 1080px;
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.requirements--info {
  flex: 1;
  margin-right: 40px;
}

.archive-interview .container,
.single-interview .container {
  max-width: none;
  padding: 0;
}

#cont_index_recruit .btn {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
  padding-right: 20px;
}

#interview_head {
  height: 90vh;
  margin-bottom: 0;
  padding: 0 0 0 20%;
}
#interview_head::after {
  height: 100%;
  top: 0;
  background-size: cover;
  background-position: bottom;
}
#interview_head .box {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}
#interview_head .img_box {
  height: 100%;
}
#interview_head .box img {
  width: 100%;
  height: 100%;
  display: block;
  margin-left: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  font-family: "object-fit: cover;object-position: top;";
}
#interview_head .blueline_text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-160px);
  padding-top: 80px;
  width: calc(100% + 160px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#interview_head .blueline_text span {
  font-size: 3.5rem;
  display: inline-block;
  padding-bottom: 1rem;
}
#interview_head .blueline_text .sub {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  font-size: 1rem;
  padding: 20px 50px 20px 40px;
  background: #fff;
  color: #000;
  font-style: normal;
}

#interview_dl {
  padding: 4.17vw 20px;
  padding: min(4.17vw, 80px) 20px;
  background: #eff2fe;
  margin-bottom: 4.17vw;
}
#interview_dl dl {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
#interview_dl dt {
  font-size: 1.563rem;
}
#interview_dl dd {
  margin-bottom: 4.17vw;
  margin-bottom: min(4.17vw, 80px);
}
#interview_dl dd:last-of-type {
  margin-bottom: 0;
}

#interview_single {
  padding-bottom: 4.17vw;
  padding-bottom: min(4.17vw, 80px);
}

@media screen and (max-width: 767px) {
  .requirements--info {
    margin-right: 0;
    width: 100%;
  }
  #index_recruit {
    margin: 0 0 50px;
  }
  #index_recruit--copy {
    padding: 0 20px;
    margin-bottom: 30px !important;
    font-size: 1rem;
    text-align: justify;
    width: 100% !important;
  }
  #index_recruit--copy br {
    display: none;
  }
  #cont_index_recruit::after,
  #index_recruit::after,
  #interview_head::after {
    opacity: 0.3;
  }
  #hu_list article {
    width: 100%;
    margin: 0 auto 80px;
  }
  #hu_list article:last-of-type {
    width: 100%;
    margin: 0 auto 80px;
  }
  #hu_list .num span {
    font-size: 1.25rem;
  }
  #hu_list article .blueline_text {
    top: initial;
    bottom: 8vw;
  }
  #hu_list article .box {
    padding: 0 30px 0 80px;
    margin-left: auto;
    margin-right: auto;
  }
  #hu_list article .overlay {
    top: -15px;
    height: 130%;
  }
  #interview_head {
    padding: 0;
    height: 600px;
  }
  #interview_head .blueline_text {
    transform: none;
    width: 100%;
  }
  #interview_head .blueline_text span {
    font-size: 1.714rem;
  }
  #interview_head .blueline_text .sub {
    padding: 20px;
    font-size: 0.8rem;
  }
}
/* ##############################################################################

    PAGE

############################################################################## */
/* sitemap
*************************************************** */
.sitemap--menu {
  flex: 1;
}
.sitemap--menu a,
.sitemap--menu span {
  display: block;
}
.sitemap--menu a {
  position: relative;
}
.sitemap--menu a:hover {
  color: #1D7FB7;
}
.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 #1D7FB7;
  border-right: 1px solid #1D7FB7;
  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
********************************************** */
.page-contact .cta_tel {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.page-contact .cta_tel a {
  padding: 18px 40px 24px;
  border: 2px solid #1f284e;
  color: #1f284e;
  font-family: "EB Garamond", serif;
  font-style: italic;
}
.page-contact .cta_tel a .tel {
  font-size: 1.5rem;
  font-size: clamp(10px, 11vw, 1.5rem);
}
.page-contact .cta_tel a .hours {
  font-family: "A1 Mincho", serif;
}
.page-contact .cta_tel a .num {
  font-size: 2.5rem;
  font-size: clamp(10px, 11vw, 2.5rem);
}

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

    ARCHIVE

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

/* --- post --- */
.post {
  position: relative;
}

.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.post--date {
  color: #aaa;
  font-family: "A1 Mincho", serif;
}

.single-news .post--date {
  margin-bottom: 1.56vw;
}

.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: #1D7FB7;
  color: #fff;
  padding: 0.25em 1em;
  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 {
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 16px;
}
.side--ttl small {
  opacity: 0.5;
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
  margin-top: 8px;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}
.posts-side .post--img {
  margin-right: 16px;
  width: 64px;
  height: 64px;
}
.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;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.25em 4em 0.25em 2em;
  background-color: #fff;
  border: 1px solid #ccc;
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", 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;
}

/* 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;
}
.posts-blog .post--img {
  width: 280px;
  margin-right: 40px;
}
.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;
  border-bottom: 1px solid #dedede;
}
.news_list .post--info .post--date {
  margin-right: 32px;
  color: #1e35a8;
}
.news_list .post--link:not([href="javascript:void(0);"]):hover {
  color: #1d7fb7;
}
.news_list .post--link:hover svg {
  fill: #1d7fb7;
}

@media screen and (max-width: 767px) {
  .news_list .post {
    display: block;
  }
  .news_list .post--info {
    margin-bottom: 8px;
    margin-right: 0;
  }
}
/* ##############################################################################

    SINGLE

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

/* 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: #2f4de4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 100%;
  color: #fff;
}
.wp-pagenavi a:hover {
  opacity: 0.7;
}
.wp-pagenavi > *:not(.pages) {
  max-width: 38.4615384615%;
}

.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;
  background: none;
}

.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 {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 2px solid;
  border-right: 2px solid;
}
.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], .wp-pagenavi a[rel=next] {
  background: none;
}
.wp-pagenavi a[rel=prev]::before, .wp-pagenavi a[rel=next]::before {
  width: 1.25vw;
  height: 0.35vw;
  border: 1px solid #2f4de4;
}
.wp-pagenavi .first::before,
.wp-pagenavi .last::before,
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  width: 1.25vw;
  height: 0.35vw;
  border: 1px solid #2f4de4;
}
.wp-pagenavi a[rel=prev]::before {
  transform: skewX(-45deg);
  border-width: 0 0 1px 1px;
}
.wp-pagenavi .first::before, .wp-pagenavi .first::after {
  transform: skewX(-45deg);
  border-width: 0 0 1px 1px;
}
.wp-pagenavi a[rel=next]::before {
  transform: skewX(45deg);
  border-width: 0 1px 1px 0;
}
.wp-pagenavi .last::before, .wp-pagenavi .last::after {
  transform: skewX(45deg);
  border-width: 0 1px 1px 0;
}

.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;
}

.wp-pagenavi-single a {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 1.04vw 9.38vw;
  min-height: 4.69vw;
  border-radius: 0;
  font-style: italic;
}
.wp-pagenavi-single a::after {
  content: "";
  width: 1.25vw;
  height: 0.35vw;
  border: 1px solid #fff;
  border-width: 0 0 1px 1px;
  position: relative;
  top: 50%;
  position: absolute;
  transform: translateY(calc(-50% - 1.5px)) skewX(-45deg);
  left: 2.34vw;
  z-index: 1;
  transition: 0.2s;
}
.wp-pagenavi-single a:hover::after {
  left: 1.34vw;
}

@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

############################################################################## */
.page-entry .contact,
.page-contact .contact {
  background-color: #eff2fe;
}

#formy_form {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
}
#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] {
  width: 100%;
  border-radius: 3px;
  vertical-align: bottom;
}
#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] {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 1rem;
}
#formy_form select {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 1rem;
}
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 1rem;
  height: 100px;
}
#formy_form select {
  height: 40px;
}
#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#formy_form input:hover,
#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 {
  width: 20.83vw;
  display: block;
  margin: 0 auto;
  margin-top: 32px;
  text-align: center;
  position: relative;
}
#formy_btn input {
  width: 100%;
  margin: 0 0 10px;
  min-height: 4.69vw;
  display: inline-flex;
  justify-content: center;
  border-radius: 0;
  text-align: left;
  color: #fff;
  padding: 20px 10px;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-style: italic;
  text-align: center;
}
#formy_btn input::after {
  content: "";
  width: 1.25vw;
  height: 0.35vw;
  margin: auto;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  position: relative;
  top: 0;
  bottom: 0;
  position: absolute;
  transform: skewX(45deg);
  right: 2.34vw;
  z-index: 1;
  transition: 0.2s;
}

#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 {
  color: #e75f5f;
  font-weight: bold;
}
#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: #2f4de4;
}

.formy_submit_disabled {
  background-color: #ccc;
}

#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}

.autoConfirmBack {
  background-color: #aaa;
}

.formy_send {
  background-color: #ff6600;
}

#total_required {
  padding: 16px;
  color: #f55555;
  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;
    width: 100%;
  }
  #formy_btn input {
    width: 100%;
    background-size: contain;
    background-position: center;
  }
  .autoConfirmBack {
    margin-bottom: 8px;
  }
}
/* ##############################################################################

    WORKS

############################################################################## */
.works_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  width: 100%;
  height: 100%;
}
.works_grid .works_item .img {
  position: relative;
}
.works_grid .works_item .img h4 {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  color: #fff;
  font-size: 1.2em;
  padding: 2% 0;
}
@media (max-width: 768px) {
  .works_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .works_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

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

    NEWS

############################################################################## */
.news_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  width: 100%;
  height: 100%;
}
.news_grid .news_item a:hover {
  color: #1D7FB7;
}
@media (max-width: 768px) {
  .news_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 420px) {
  .news_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.tab-1 {
  display: flex;
  flex-wrap: wrap;
}

.tab-1 > label {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  padding: 0.7em 1em 0.5em;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
  background-color: #e9f0f6;
  color: #535353;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
}

.tab-1 > label:hover {
  opacity: 0.8;
}

.tab-1 input {
  display: none;
}

.tab-1 > div {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
  background-color: #fff;
}

.tab-1 label:has(:checked) {
  background-color: #fff;
  border-color: #2589d0 #f0f0f0 #fff;
  border-style: solid;
  border-width: 4px 1px 1px;
  border-radius: 5px;
  color: #333333;
}

.tab-1 label:has(:checked) + div {
  display: block;
}

.tab-1 .content span {
  color: #1e34a8;
  font-weight: bold;
  font-size: 1.2em;
}
.tab-1 .content table th, .tab-1 .content table td {
  padding: 4% 2%;
  border-bottom: 1px solid #000;
  vertical-align: middle;
}
.tab-1 .content table th {
  width: 20%;
}
@media (max-width: 600px) {
  .tab-1 .content table th {
    writing-mode: vertical-rl;
  }
}
.tab-1 .content table td {
  width: 80%;
}