@charset "UTF-8";
@import "ress.min.css";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
:root {
  --maxwid: 1400px;
  --fsize-2xl: 56px;
  --fsize-xl: 48px;
  --fsize-lg: 32px;
  --fsize-md: 24px;
  --fsize-base: 16px;
  --fsize-sm: 14px;
  --space-2xl: 120px;
  --space-xl: 104px;
  --space-lg: 64px;
  --space-md: 40px;
  --space-sm: 24px;
  --space-xs: 16px;
  --inner-vert: 96px;
  --inner-side: 64px;
}

@media (max-width: 1200px) {
  :root {
    --maxwid: 95%;
    --fsize-2xl: 40px;
    --fsize-xl: 32px;
    --fsize-lg: 28px;
    --fsize-md: 20px;
    --space-2xl: 80px;
    --space-xl: 64px;
    --space-lg: 48px;
    --space-md: 32px;
    --space-sm: 20px;
    --space-xs: 12px;
    --inner-vert: 64px;
    --inner-side: 48px;
  }
}
@media (max-width: 960px) {
  :root {
    --maxwid: 100%;
    --fsize-2xl: 40px;
    --fsize-xl: 28px;
    --fsize-lg: 24px;
    --fsize-md: 18px;
    --fsize-base: 16px;
    --space-2xl: 64px;
    --space-xl: 56px;
    --space-lg: 40px;
    --space-md: 24px;
    --space-sm: 16px;
    --space-xs: 8px;
    --inner-vert: 40px;
    --inner-side: 32px;
  }
}
@media (max-width: 575px) {
  :root {
    --fsize-2xl: 32px;
    --fsize-xl: 24px;
    --fsize-lg: 18px;
    --fsize-md: 16px;
    --fsize-base: 14px;
    --fsize-sm: 12px;
    --space-2xl: 64px;
    --space-xl: 48px;
    --space-lg: 32px;
    --space-md: 24px;
    --inner-vert: 40px;
    --inner-side: 20px;
  }
}
/*--------------------------------------------------------------------*/
/* ヘッダー */
/*--------------------------------------------------------------------*/
.header {
  position: absolute;
  width: 100%;
  z-index: 100;
  transition: 0.3s;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  width: 100%;
  margin: 0 auto;
  transition: 0.3s;
}

.mnav {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #222;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: 0.3s;
}

.mnav_logo {
  transition: all 0.3s ease;
}
.mnav_logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.mnav_logo img {
  display: block;
  transition: all 0.3s ease;
  width: auto;
  height: 58px;
}

.mnav_menu {
  display: flex;
}

.mnav_ttl {
  display: block;
  font-size: inherit;
  width: 70px;
  transition: 0.3s;
}
.mnav_ttl a {
  display: block;
}
.mnav_ttl img {
  display: block;
  width: 100%;
}

.mnav_cate,
.mnav_submenu_item {
  display: inline-block;
  position: relative;
  padding: 1.5em 1em;
  transition: 0.3s;
}

.mnav_contact {
  display: inline-block;
  background: #2565DC;
  color: #FFF;
  border: 2px solid #2565DC;
  border-radius: 100px;
  padding: 0.7em 2em;
  font-size: 14px;
  transition-duration: 0.3s;
  margin-left: 1em;
}
.mnav_contact:hover {
  background: #FFF;
  color: #2565DC;
  border-color: #2565DC;
}
.mnav_contact:hover .rect-primary,
.mnav_contact:hover .path-primary {
  stroke: #2565DC;
}

.custom-svg {
  width: auto;
  height: 13px;
  vertical-align: -2px;
  margin-right: 4px;
}

.rect-primary,
.path-primary {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hasmenu .mnav_cate {
  position: relative;
  padding-right: 2em;
}

.hasmenu .mnav_cate::after {
  content: "\e313";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  margin-left: 0.2em;
  font-size: 1.2em;
  position: absolute;
  right: 0.5em;
}

.mnav_submenu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: #F9F9F9;
  border-radius: 0 0 5px 5px;
  color: #111;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 1s ease, opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
  top: 81px;
  left: 0;
}
.mnav_submenu_item {
  position: relative;
  width: 24%;
  max-width: 320px;
}
.mnav_submenu_item a {
  display: inline-block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 2/1;
}
.mnav_submenu_item a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #2565DC;
  opacity: 0.3;
}
.mnav_submenu_nameBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  z-index: 1;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
}
.mnav_submenu_icon {
  width: 40px;
}
.mnav_submenu_eng {
  font-size: 12px;
}
.mnav_submenu_img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  height: 100%;
  width: 100%;
  transition: transform 0.3s;
  transform-origin: center center;
}
.mnav_submenu_txtBox {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.header.is-stuck {
  position: fixed;
  background-color: #FFF;
}
.header.is-stuck .mnav_logo img {
  height: 44px;
}
.header.is-stuck .mnav_cate {
  padding-top: 1em;
  padding-bottom: 1em;
}
.header.is-stuck .mnav_submenu {
  top: 63px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #222;
  border-radius: 1px;
  flex: 0 0 auto;
}

/* PC時のみ hover 有効 */
@media screen and (min-width: 1024px) {
  .hasmenu:hover {
    color: #2f9ee7;
  }
  .hasmenu:hover .mnav_submenu {
    display: flex;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }
  .mnav_submenu_item:hover .mnav_submenu_img {
    transform: scale(1.1);
  }
}
/*--------------------------------------------------------------------*/
/*　モバイル  */
/*--------------------------------------------------------------------*/
@media screen and (max-width: 1023px) {
  .hamburger {
    display: flex;
  }
  .mnav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
    display: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .mnav_logo img {
    height: 48px;
  }
  .header.is-stuck .mnav {
    top: 56px;
  }
  .header.is-stuck .mnav_logo img {
    height: 36px;
  }
  .mnav.active {
    display: flex;
  }
  .mnav_menu {
    flex-direction: column;
    width: 100%;
  }
  .mnav_item {
    width: 100%;
    text-align: center;
  }
  .mnav_cate {
    width: 100%;
  }
  .hasmenu .mnav_cate {
    padding-right: 1em;
  }
  .hasmenu .mnav_cate::after {
    right: auto;
  }
  .mnav_submenu {
    flex-wrap: wrap;
    position: static;
    background-color: transparent;
    width: 100%;
    padding: 0;
    transition: 0.3s ease;
  }
  .mnav_submenu {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .mnav_submenu_item {
    padding: 10px;
    width: auto;
  }
  .mnav_contact {
    margin: 1em auto;
  }
  .hasmenu.open .mnav_submenu {
    display: grid;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }
  .hasmenu.open > .mnav_cate::after {
    transform: rotate(180deg);
    transition: transform 0.3s;
  }
}
@media (max-width: 575px) {
  .header_inner {
    padding: 0 var(--inner-side);
  }
  .mnav_submenu {
    grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
    gap: 0;
  }
  .mnav_submenu_item {
    padding: 5px;
  }
  .mnav_submenu_name {
    font-size: 18px;
  }
  .mnav_submenu_eng {
    font-size: 10px;
  }
  .mnav_submenu_icon {
    width: 24px;
  }
}
/*--------------------------------------------------------------------*/
/* フッター */
/*--------------------------------------------------------------------*/
.ft {
  width: 100%;
  background: #333;
  position: relative;
  color: #EEE;
  font-size: 15px;
}
.ft a:hover {
  color: #AAA;
}
.ft_inner {
  padding: var(--inner-vert) var(--space-md);
  max-width: var(--maxwid);
  margin: 0 auto;
  display: flex;
  gap: 5em;
  justify-content: space-between;
  position: relative;
}
.ft_line {
  display: block;
  width: 1px;
  background: #555;
}
.ft_logo {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.ft_nikkan {
  margin-bottom: 1em;
  font-size: 19.5px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.ft_honsha, .ft_fuji {
  margin-bottom: 1.5em;
}
.ft_add, .ft_numBox {
  font-size: 0.9em;
}
.ft_numBox {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
}
.ft_numBox .g_border {
  border-color: #666;
}
.ft_nav {
  position: relative;
}
.ft_menu {
  display: flex;
  gap: 3em;
}
.ft_item {
  line-height: 1.8;
}
.ft_cate {
  color: #2f9ee7;
  margin-bottom: 0.5em;
  display: block;
  padding-bottom: 2px;
}
.ft_submenu_item {
  position: relative;
  padding-left: 1em;
}
.ft_submenu_item::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 5px;
  background: #2f9ee7;
  position: absolute;
  top: 48%;
  left: 0;
}
.ft_credit {
  padding: 1em;
  text-align: center;
  margin: 0 var(--space-md);
  border-top: 1px solid #444;
}
.ft_nlm {
  font-size: var(--fsize-sm);
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}
.ft_nlm_box {
  display: inline-block;
}
.ft_nlm_txt {
  display: inline-block;
  color: #ccc;
  margin-bottom: 1em;
}
.ft_nlmhd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  color: #111;
  background: #FFF;
  font-size: 13px;
  font-weight: 500;
  padding: 1em;
  width: 100%;
}
.ft_nlmhd img {
  width: 54px;
}
.ft_nlmhd:hover {
  color: #2f9ee7 !important;
}

.ft_big {
  border-top: 4px solid #2565DC;
  border-bottom: 4px solid #2565DC;
}
.ft_big_inner {
  display: flex;
}
.ft_big .material-symbols-outlined {
  font-size: 2.2vw;
  width: 2em;
  height: 2em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #2565DC;
  color: #FFF;
  border-radius: 99999px;
  margin-right: 0.2em;
}
.ft_big_sec {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 4px solid #2565DC;
}
.ft_big_sec-ttl {
  width: 25%;
  max-width: 336px;
  flex-direction: column;
  background-color: #2565DC;
  color: #FFF;
}
.ft_big_sec-tel {
  width: 45%;
  text-align: center;
  flex-grow: 2;
}
.ft_big_sec-form {
  width: 30%;
  flex-grow: 1;
}
.ft_big_desc {
  font-size: var(--fsize-sm);
}
.ft_big_ttl-en {
  color: #FFF;
  font-size: 3.2vw;
  font-weight: 500;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
}
.ft_big_ttl-jp {
  color: #2f9ee7;
  font-size: var(--fsize-sm);
}
.ft_big_tel {
  display: block;
  font-size: 3.2vw;
  font-weight: bold;
  color: #2565DC;
  font-family: "Barlow", sans-serif;
  margin-bottom: 8px;
}
.ft_big_sfont {
  font-size: 0.8em;
  font-weight: 500;
}
.ft_big_subttl {
  font-size: 1.5vw;
}

.ft_big_sec-form:hover {
  background: #7fd3ff;
}
.ft_big_sec-form:hover .ft_big_subttl {
  color: #FFF;
}

.ft_mail_add {
  color: #2565DC;
  margin-left: 0.2em;
}

a.goup {
  height: 60px;
  position: absolute;
  text-align: center;
  line-height: 1.6;
  width: 10rem;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  padding: 0;
}
a.goup::before {
  display: block;
  font-size: 2.4rem;
  content: "\e5ce";
  font-family: "Material Icons";
  color: #EEE;
}
a.goup:hover {
  color: #2565DC;
}

/*--------------------------------------------------------------------*/
/* モバイルフッター */
/*--------------------------------------------------------------------*/
@media (max-width: 1200px) {
  .ft_big_sec-ttl {
    padding: 2em;
    width: auto;
  }
  .ft {
    font-size: 14px;
  }
  .ft_inner {
    gap: 1em;
  }
  .ft_menu {
    gap: 2em;
  }
  .ft_bluerevs {
    max-width: 200px;
  }
}
@media (max-width: 1023px) {
  .ft_big_sec-ttl {
    grid-area: big01;
    max-width: none;
    padding: 1em;
  }
  .ft_big_sec-tel {
    grid-area: big02;
    width: 100%;
  }
  .ft_big_sec-form {
    grid-area: big03;
    width: 100%;
    border-right: 4px solid #2565DC;
    flex-grow: 0;
  }
  .ft_big_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "big01 big01" "big02 big03";
  }
  .ft_big_ttl_inner {
    display: flex;
    gap: 1em;
  }
  .ft_big_ttl_box {
    line-height: 1;
  }
  .ft_big_tel {
    font-size: 28px;
  }
  .ft_big_subttl {
    font-size: clamp(14px, 2.4vw, 18px);
  }
  .ft_big_time {
    font-size: 14px;
  }
  .ft_mail_add {
    font-size: 14px;
    margin-left: 0;
  }
  .ft_inner {
    flex-direction: column;
    align-items: start;
    gap: 2em;
    max-width: 720px;
  }
  .ft_comBox {
    display: flex;
    gap: 0 3em;
    flex-wrap: wrap;
  }
  .ft_nlm {
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
    right: auto;
    width: 100%;
    margin-top: 2em;
  }
  .ft_line {
    width: 100%;
    height: 1px;
  }
  .ft_bluerevs {
    max-width: 240px;
  }
  .ft_menu {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .ft_big_inner {
    display: block;
  }
  .ft_big_sec {
    padding: 1em;
  }
  .ft_big_subttl {
    font-size: 16px;
  }
  .ft_big_ttl-en {
    font-size: 24px;
  }
  .ft_big_sec-form {
    border-top: 4px solid #2565DC;
  }
  .ft_big_sec-tel {
    border-right: 4px solid #2565DC;
  }
  .ft_big_tel {
    font-size: 28px;
    margin-bottom: 0;
  }
  .ft_big_time {
    font-size: 14px;
  }
  .ft_big_border {
    display: block;
    margin: 0 10px;
    font-size: 1em;
  }
  .ft_big .material-symbols-outlined {
    font-size: 16px;
  }
  .ft_nlmhd img {
    width: 36px;
  }
  .ft_logo {
    max-width: 50%;
  }
  .ft_nikkan {
    font-size: 18px;
  }
}
/*--------------------------------------------------------------------*/
/* 全ページ共通
/*--------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  line-height: 1.5;
  font-size: 16px;
  font-family: "YakuHanJP", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #111;
}

h2 {
  font-size: var(--fsize-2xl);
  font-weight: 600;
  opacity: 0.9;
}

h3 {
  font-size: var(--fsize-lg);
  font-weight: 600;
  color: #444;
}

h4 {
  font-size: var(--fsize-md);
  font-weight: 500;
  color: #333;
}

h5 {
  font-weight: 500;
  color: #333;
}

h2, h3, h4, h5 {
  line-height: 1.5;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

caption {
  text-align: right;
}

p, dt, dd, th, td {
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s all;
}

a:hover {
  color: #2f9ee7;
}

main {
  background: #FFF;
  color: #111;
}

dl:where(.g_dl) {
  display: flex;
  flex-wrap: wrap;
}
dl:where(.g_dl) dt, dl:where(.g_dl) dd {
  padding: 1.5em 1em;
  display: inline-block;
  border-bottom: 1px solid #ccc;
}
dl:where(.g_dl) dt:first-of-type, dl:where(.g_dl) dd:first-of-type {
  border-top: 1px solid #ccc;
}
dl:where(.g_dl) dt {
  width: 9em;
  font-weight: 500;
}
dl:where(.g_dl) dd {
  width: calc(100% - 9em);
}

th, td {
  padding: 1em;
  border: 1px solid #eee;
}

th {
  background: #444;
  color: #fff;
  font-weight: 500;
}

.g_td-th {
  background: #f9f9f9;
}

.center {
  text-align: center;
}

small {
  font-size: 0.7em;
}

.small {
  font-size: 0.6em;
  font-weight: normal;
}

.colored {
  color: #2565DC;
}

.colored-2 {
  color: #2f9ee7;
}

.op-5 {
  opacity: 0.5;
}

.en, .ttl_en {
  font-family: "Roboto", sans-serif;
}

.flex {
  display: flex;
}

.sp_block,
.tb_block,
.tbsp_block {
  display: none;
}

.mgnt_s {
  margin-top: 10px;
}

.mgnt_m {
  margin-top: 20px;
}

.mgnt_l {
  margin-top: 60px;
}

.object_r {
  -o-object-position: right;
     object-position: right;
}

.pdt_0 {
  padding-top: 0;
}

/* Material icons */
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* 推奨サイズ */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  /* WebKitブラウザサポート */
  -webkit-font-smoothing: antialiased;
  /* Chrome、Safariサポート */
  text-rendering: optimizeLegibility;
  /* Firefoxサポート */
  -moz-osx-font-smoothing: grayscale;
  /* IEサポート */
  font-feature-settings: "liga";
}

.material-symbols-outlined {
  font-size: inherit;
}

.g_btn,
.g_btn-2,
.g_btn-3 {
  display: inline-block;
  border-width: 2px;
  border-style: solid;
  border-radius: 9999px;
  padding: 0.7em 2.5em;
  transition-duration: 0.3s;
  text-align: left;
  position: relative;
  font-size: var(--fsize-base);
}
.g_btn > span,
.g_btn-2 > span,
.g_btn-3 > span {
  padding-bottom: 0.1em;
  display: inline-block;
  font-size: var(--fsize-base);
}
.g_btn .material-symbols-outlined,
.g_btn-2 .material-symbols-outlined,
.g_btn-3 .material-symbols-outlined {
  font-size: inherit;
}
@media (max-width: 960px) {
  .g_btn,
  .g_btn-2,
  .g_btn-3 {
    padding: 0.5em 2em;
  }
}

.g_btn,
.g_btn-2:hover {
  border-color: transparent;
  background: #2565DC;
  color: #FFF;
}

.g_btn-2,
.g_btn:hover {
  border-color: #2565DC;
  background: #FFF;
  color: #2565DC;
  font-weight: 600;
}

.g_btn-3,
.g_btn-3:hover {
  background-color: transparent;
}

.g_btn-big {
  border-width: 3px;
  font-size: 18px;
}
.g_btn-big::before {
  height: 3px;
}

.g_btnBox {
  margin-top: var(--space-md);
}

@keyframes btn-line {
  0% {
    transform: scale(1, 1);
    transform-origin: 100% 0;
  }
  50% {
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
  50.1% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
}
.g_imgBox-fit {
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

.g_img-fit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.g_after-blank::after {
  content: "\e89e";
  display: inline-block;
  font-family: "Material Icons";
  margin-left: 0.3em;
  font-weight: normal;
  vertical-align: -0.15em;
}

.g_fb {
  display: flex;
}
.g_fb-imgBox {
  display: flex;
  gap: 1em;
}
.g_fb-2 {
  display: flex;
  gap: var(--fsize-lg);
}
.g_fb-3 {
  display: flex;
  gap: var(--fsize-md);
}
.g_fb-between {
  justify-content: space-between;
}

.g_word,
.g_spanblock span {
  display: inline-block;
}

.g_strong {
  color: #2565DC;
}

.g_radius {
  border-radius: 10px;
}
.g_radius-s {
  border-radius: 5px;
}

.g_border {
  border: 1px solid;
  padding: 0 0.8em 0.1em;
  margin-right: 0.5em;
  font-size: 0.8em;
}
.g_border-maru {
  border: 1px solid;
  padding: 0 0.8em 0.1em;
  margin-right: 0.5em;
  font-size: 0.8em;
  border-radius: 9999px;
}

.g_16x9 {
  aspect-ratio: 16/9;
}

.jst_video {
  overflow: auto;
  background: rgb(253, 253, 246);
  width: 864px;
  max-width: 100%;
  aspect-ratio: 16/9;
}

/* サブページ共通
/*-----------------------------------------------------------------------*/
.g_inner {
  max-width: var(--maxwid);
  padding: var(--inner-vert) var(--inner-side);
  margin: 0 auto;
}
.g_inner.pdt_0 {
  padding-top: 0;
}

.g_inner + .g_inner {
  padding-top: 0;
}

.g_herov {
  position: relative;
}
.g_herov::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  height: 200px;
  top: auto;
  bottom: 0;
  background-color: #2565DC;
  z-index: 1;
}
.g_herov_inner {
  position: relative;
  z-index: 2;
  padding-top: 82px;
}
.g_herov_imgBox {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 320px;
}
.g_herov_imgBox::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #2565DC;
  opacity: 0.3;
}
.g_herov_img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.g_herov_ttlBox {
  position: absolute;
  z-index: 2;
  top: calc(50% + 48px);
  transform: translateY(-50%);
  color: #FFF;
  padding-left: var(--inner-side);
  padding-left: calc(2 * var(--inner-side));
}
.g_herov_ttl {
  opacity: 1;
  letter-spacing: 0.05em;
}
.g_herov_subttl {
  font-size: var(--fsize-base);
  opacity: 0.9;
}

.g_herov_maru .g_herov_inner {
  padding-top: 130px;
  padding-left: var(--inner-side);
  padding-right: var(--inner-side);
  margin: 0 auto;
}
.g_herov_maru .g_herov_imgBox {
  border-radius: 10px;
}

.g_bread {
  background: #2565DC;
  color: #FFF;
  text-align: right;
  font-size: 0.9em;
}
.g_bread_list {
  width: 100%;
  max-width: var(--maxwid);
  margin: 0 auto;
  padding: 10px var(--inner-side);
  padding: 10px 20px;
}
.g_bread_item {
  display: inline-block;
  position: relative;
  color: #222;
  color: #FFF;
}
.g_bread_item:not(:last-child)::after {
  display: inline-block;
  margin: 0 0.5em;
  color: #2f9ee7;
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
  vertical-align: -4px;
  font-size: 1.2em;
}
.g_bread a:hover {
  color: #2565DC;
}

.g_bread {
  display: none;
}

.g_sec-s:not(:last-child) {
  margin-bottom: var(--space-lg);
}

.g_sec_ttl {
  font-size: var(--fsize-lg);
  position: relative;
  padding-left: 0.8em;
}
.g_sec_ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 5px;
  width: 0.3em;
  height: 1.1em;
  top: 0.3em;
  background: #2565DC;
}

.g_sec_txt {
  text-align: justify;
}

.g_minittl {
  font-size: var(--fsize-md);
  font-weight: 600;
  margin-bottom: 2em;
  border-bottom: 2px solid #2565DC;
  border-left: 0.5em solid #2565DC;
  padding-bottom: 0.3em;
  padding-left: 0.5em;
}

.g_pmenu {
  position: sticky;
  top: 64px;
  left: 0;
  background: #2565DC;
  color: #FFF;
  overflow: hidden;
  z-index: 20;
  transition: 0.3s;
}
.g_pmenu_inner {
  max-width: var(--maxwid);
  padding: 1em var(--space-md);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2em;
}
.g_pmenu_item {
  padding: 1em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.g_pmenu_item::after {
  content: "\e313";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  margin-left: 0.2em;
  font-size: 1.2em;
  opacity: 0.5;
}
.g_pmenu.is-stuck .g_pmenu_inner {
  padding-top: 1em;
  padding-bottom: 0.8em;
}
.g_pmenu.is-stuck .g_pmenu_item {
  font-size: var(--fsize-base);
  font-weight: 400;
  padding: 0.5em;
}

.g_intro {
  position: relative;
  z-index: 2;
}
.g_intro_inner {
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  border-radius: 10px;
  position: relative;
  padding-bottom: calc(1.2 * var(--inner-vert));
}
.g_intro_copyBox {
  flex-shrink: 0;
}
.g_intro_copy {
  display: block;
  font-weight: 600;
}
.g_intro_copy-lg {
  font-size: var(--fsize-2xl);
  color: #2565DC;
  font-weight: bold;
  font-weight: bold;
  color: transparent;
  background-image: linear-gradient(120deg, #1a3b8a 0%, #2565dc 30%, #8ab6ff 45%, #fff 50%, #8ab6ff 55%, #2565dc 70%, #1a3b8a 100%);
  background-size: 300% auto;
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-position 0.8s ease;
  display: inline-block;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  animation: shine-once 1.5s ease-out 0.3s forwards;
  background-position: 100% 0;
}
.g_intro_txtBox-illust {
  padding-right: 10%;
}
.g_intro_txt {
  max-width: 540px;
  font-size: 18px;
  text-align: justify;
}
.g_intro_illust {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 20%;
}

.g_flow {
  counter-reset: listnum;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-sm);
  max-width: 1128px;
  margin: 0 auto;
}

.g_flow_item {
  padding: 2em 1em;
  border: 2px solid #2565DC;
  position: relative;
  z-index: 1;
  width: 23%;
  display: flex;
  justify-content: center;
  background-color: #FFF;
  color: #2565DC;
  font-weight: 500;
  width: 160px;
  height: 120px;
  align-items: center;
}
.g_flow_item:last-child {
  background: #2565DC;
  color: #FFF;
}
.g_flow_item::before {
  counter-increment: listnum;
  content: counter(listnum);
  width: 2em;
  height: 2em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  border: 2px solid #FFF;
  background: #2565DC;
  color: #FFF;
  font-weight: 500;
  position: absolute;
  z-index: 3;
  top: -1em;
  left: -1em;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 20px;
}
.g_flow_item:not(:last-child)::after {
  content: "";
  display: block;
  background: #ccc;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(-1 * var(--space-md) - 2px);
  width: var(--space-md);
  height: 1em;
  z-index: -1;
}

.g_flow_txt {
  position: relative;
  z-index: 2;
}

.g_gal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
}
.g_gal-tate {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.g_gal_imgBox {
  overflow: hidden;
}
.g_gal_img {
  border-radius: 3%;
}
.g_gal_cap {
  text-align: center;
  font-size: 0.9em;
  margin-top: 0.5em;
}

.g_process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
}
.g_process_item {
  position: relative;
}
.g_process_item::after {
  display: inline-block;
  content: "\e5df";
  font-family: "Material Symbols Outlined";
  margin: 0 0.5em;
}
.g_process_img {
  border-radius: 3%;
}
.g_process_txt {
  text-align: center;
}

.g_check_item {
  margin-bottom: 1.25em;
}
.g_check_item_point {
  display: block;
  font-weight: 500;
  font-size: 1.25em;
}
.g_check_item_point::before {
  content: "✔";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5em;
  color: #2565DC;
  background: #eee;
  width: 1.2em;
  height: 1.2em;
}
.g_check_item_desc {
  font-size: var(--fsize-sm);
}

.g_list-blt {
  display: flex;
  gap: 2em;
}

.g_item-blt::before {
  content: "•";
  display: inline-block;
  color: #2f9ee7;
  margin-right: 0.2em;
  font-size: 2em;
  vertical-align: -3px;
}

.g_box_16x9 {
  aspect-ratio: 16/9;
}

.g_pict-16x9 {
  aspect-ratio: 16/9;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 20%;
     object-position: 0 20%;
}

.g_box-clr {
  background-color: #f1f6ff;
  padding: 3em;
  border-radius: 10px;
}
.g_box-clr .g_minittl {
  border: none;
  margin-bottom: 0;
  padding-left: 0;
  color: #2f9ee7;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  max-width: 90%;
  width: 1000px;
  background: #000;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
}

.main-slider {
  width: 50%;
  flex-shrink: 0;
}

.splide__slide img {
  border-radius: 8px;
}

.thumbnail-list {
  width: 50%;
  gap: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.thumbnail-list li {
  cursor: pointer;
  border: 3px solid transparent;
  border-radius: 5px;
  overflow: hidden;
}

.thumbnail-list li.active {
  border-color: #007bff;
}

.thumbnail-list img {
  /* width: 100px;
  height: 64px;
  object-fit: cover; */
  border-radius: 4px;
  display: block;
}

.g_kouji {
  padding: 80px;
}

.g_kouji_inner {
  min-height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  background: #FFF;
  padding: 40px 80px;
  max-width: 1280px;
}

/* アニメーション
-----------------------------------------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.g_shine, .g_shine-loop {
  font-weight: bold;
  color: transparent;
  background-image: linear-gradient(120deg, #1a3b8a 0%, #2565dc 30%, #8ab6ff 45%, #fff 50%, #8ab6ff 55%, #2565dc 70%, #1a3b8a 100%);
  background-size: 300% auto;
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-position 0.8s ease;
  display: inline-block;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.g_shine {
  animation: shine-once 1.5s ease-out 0.3s forwards;
  background-position: 100% 0;
}

.g_shine-loop {
  background-position: 100% 0;
  animation-name: shine-loop;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes shine-loop {
  0% {
    background-position: 100% 0;
  }
  20% {
    background-position: 0% 0;
  }
  100% {
    background-position: 0% 0;
  }
}
@keyframes shine-once {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 0% 0;
  }
}
/* モバイル
----------------------------------------------------------------------*/
@media (max-width: 1279px) {
  .g_pmenu_inner {
    gap: 1.2em;
  }
  .g_pmenu_item {
    font-size: 17px;
  }
}
@media (max-width: 1200px) {
  .g_pmenu_inner {
    display: flex;
    gap: 1em;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    white-space: nowrap;
    justify-content: flex-start;
  }
  .g_pmenu_inner::-webkit-scrollbar {
    display: none;
  }
  /* スクロールヒント */
  .g_pmenu::before,
  .g_pmenu::after {
    content: "";
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    pointer-events: none;
    z-index: 5;
  }
  .g_pmenu::before {
    left: 0;
    background: linear-gradient(to right, rgb(37, 101, 220), rgba(37, 101, 220, 0));
  }
  .g_pmenu::after {
    right: 0;
    background: linear-gradient(to left, rgb(37, 101, 220), rgba(37, 101, 220, 0));
  }
  .g_pmenu_inner {
    gap: 1em;
  }
  .g_pmenu_item {
    font-size: 16px;
  }
  .g_intro_txt {
    font-size: var(--fsize-base);
  }
  .g_intro_txtBox-illust {
    padding-right: 0;
  }
  .g_gal {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .g_flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, 160px);
    justify-content: center;
  }
  .g_flow_item {
    width: 100%;
    height: auto;
  }
  .g_check_item_point {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  .g_pmenu {
    top: 56px;
  }
  .g_herov_inner {
    padding-top: 68px;
  }
}
@media (max-width: 960px) {
  .pc_block {
    display: none;
  }
  .tb_block {
    display: block;
  }
  .breadcrumbs ol {
    padding: 10px 40px;
  }
  .g_pmenu.is-stuck .g_pmenu_item {
    font-size: 14px;
  }
  .g_intro_inner {
    flex-direction: column;
    gap: 0;
    padding-bottom: calc(2 * var(--space-lg));
  }
  .g_intro_illust {
    width: 25%;
  }
  .g_gal {
    grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    gap: 1em;
  }
  .g_intro_illust {
    right: 1em;
  }
  .g_box-clr {
    padding: 1em;
  }
  .g_flow {
    grid-template-columns: repeat(auto-fit, 130px);
  }
  .g_flow_item {
    padding: 1em;
    font-size: 14px;
  }
  .g_flow_item::before {
    font-size: 16px;
  }
  .g_herov::before {
    height: 120px;
  }
}
@media (max-width: 575px) {
  .tb_block, .pctb_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
  h3 {
    font-size: 24px;
  }
  p, dt, dd, th, td {
    font-size: 14px;
  }
  .pagettl .ttl {
    font-size: 28px;
  }
  .breadcrumbs ol {
    padding: 10px 20px;
  }
  .breadcrumbs li, .breadcrumbs a {
    font-size: 12px;
  }
  .breadcrumbs li:first-child::before {
    top: -0.05em;
  }
  .thumbnail-list {
    gap: 4px;
  }
  .g_pmenu_inner {
    padding: 8px var(--space-md);
    gap: 7px;
  }
  .g_pmenu.is-stuck .g_pmenu_inner {
    padding: 4px var(--space-md);
    gap: 0;
  }
  .g_pmenu_item {
    font-size: 14px;
  }
  .g_intro_illust {
    width: 33%;
  }
  .g_gal {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .g_gal_cap {
    margin-top: 0;
    font-size: 14px;
  }
  .g_flow {
    grid-template-columns: repeat(auto-fit, 90%);
    gap: 16px;
  }
  .g_flow_item {
    height: 40px;
    padding: 0.5em;
  }
  .g_flow_item br {
    display: none;
  }
  .g_flow_item:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    height: 16px;
    width: 1em;
  }
  .g_flow_item::before {
    height: 40px;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .g_sec_ttl {
    font-size: clamp(16px, 5.6vw, 26px);
  }
}
/*--------------------------------------------------------------------*/
/* 企業情報
/*--------------------------------------------------------------------*/
/* アバウト共通
----------------------------------------------------------------------*/
.abt_ttl {
  margin-bottom: var(--space-sm);
}

/* 社長メッセージ
----------------------------------------------------------------------*/
.msg {
  margin-top: var(--space-lg);
}
.msg_ttl {
  margin-bottom: 0.5em;
  font-size: var(--fsize-2xl);
  margin-left: -0.5em;
}
.msg_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
}
.msg_copy {
  font-size: clamp(19px, 2.33vw, 30px);
  margin-bottom: var(--space-sm);
}
.msg_imgBox {
  width: clamp(320px, 28vw, 400px);
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}
.msg_txtBox {
  background: #FFF;
  width: 720px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.msg_txt {
  margin-bottom: var(--space-md);
}
.msg_signBox {
  display: table;
  margin-left: auto;
  margin-right: 0;
}
.msg_sign {
  display: block;
  font-weight: bold;
  font-size: calc(1.25 * var(--fsize-md));
  color: #444;
}

/* 横画像
----------------------------------------------------------------------*/
.abt_divider {
  position: relative;
  aspect-ratio: 4.5/1;
  overflow: hidden;
  background-image: url(../about/img/hozen_s.jpg);
}

/* 会社概要
----------------------------------------------------------------------*/
.com_inner {
  margin-top: calc(-1.5 * var(--space-lg));
  background: #FFF;
  position: relative;
  border-radius: 10px;
}
.com_fb {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}
.com_ttl {
  width: 6em;
  margin-right: var(--space-lg);
  margin-bottom: 1em;
}
.com_imgBox {
  aspect-ratio: 4/3;
  width: 35%;
  flex-grow: 1;
}
.com_dl {
  width: 65%;
  max-width: 640px;
}
.com_dl dt:first-of-type {
  border-top-color: #2565DC;
}
.com_dl dt {
  border-bottom-color: #2565DC;
}
.com dt, .com dd {
  padding: 1em;
}

/* 経営理念・方針
----------------------------------------------------------------------*/
.phil {
  margin-bottom: var(--space-lg);
}
.phil_mainphil {
  font-size: calc(1.25 * var(--fsize-md));
  text-align: center;
  border-radius: 10px;
  padding: 3em 1em;
  margin-bottom: 2em;
  background: #2f9ee7;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.phil_fb {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}
.phil_sec {
  width: calc((100% - var(--space-lg)) / 2);
  padding: 3em;
  border: 3px solid;
  border-radius: 10px;
  margin-bottom: 2em;
  position: relative;
}
.phil_minittl {
  border: none;
  padding: 0;
  margin-bottom: 1em;
  position: absolute;
  background: #FFF;
  left: -1.3em;
  top: 1em;
  writing-mode: vertical-rl;
  padding: 0.5em;
  font-size: 32px;
  letter-spacing: 0.2em;
}
.phil_phil {
  font-size: 1.25em;
  margin-bottom: 1em;
  line-height: 1.5;
  font-weight: 500;
  text-align: justify;
}
.phil_item {
  margin-bottom: 1em;
}
.phil_sublist {
  margin-top: 1em;
}
.phil_subitem {
  margin-bottom: 1em;
  margin-left: 1em;
  font-size: var(--fsize-sm);
}
.phil_sec-quality {
  color: rgb(32.0256916996, 90.5869565217, 199.4743083004);
  border-color: rgb(168.8339920949, 194.1304347826, 241.1660079051);
}
.phil_sec-quality .phil_minittl {
  color: #2565DC;
}
.phil_sec-kankyo {
  color: green;
  border-color: yellowgreen;
}
.phil_sec-kankyo .phil_minittl {
  color: green;
}

/* 沿革
----------------------------------------------------------------------*/
.history_inner {
  display: flex;
  gap: var(--space-lg);
}
.history_ttl {
  width: 6em;
  flex-shrink: 0;
}
.history_box {
  padding: 3em;
  background: #f9f9f9;
  border-radius: 20px;
}
.history_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.history_year, .history_txt {
  padding: var(--fsize-sm) 0;
  display: inline-block;
}
.history_year {
  width: 180px;
  font-weight: 500;
  font-size: 32px;
  position: relative;
  display: flex;
  align-items: center;
  color: #444;
  font-style: italic;
}
.history_year::before, .history_year::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.history_year::after {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  margin-left: 20px;
  background-color: #2565DC;
  z-index: 2;
  top: 51%;
  right: 30px;
  transform: translate(0, -50%);
}
.history_year::before {
  width: 6px;
  height: 200%;
  background-color: #ddd;
  top: 25%;
  right: 37px;
  border-radius: 999px;
}
.history_item:last-child .history_year::before {
  height: 60%;
}
.history_kanji {
  font-size: 0.5em;
  margin-left: 6px;
  margin-top: 8px;
  color: #333;
}
.history_txt {
  width: calc(100% - 180px);
  display: block;
}

/* アクセス
----------------------------------------------------------------------*/
.access {
  background-color: #f9f9f9;
}
.access_ttl {
  margin-bottom: var(--space-md);
}
.access_itemBox {
  display: flex;
  justify-content: space-between;
  gap: var(--space-xl);
}
.access_item {
  width: 46%;
}
.access_name {
  color: #2565DC;
}
.access_add {
  margin-bottom: var(--space-sm);
  font-size: var(--fsize-base);
}
.access_mapBox {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  aspect-ratio: 4/3;
}
.access iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 各種許認可
----------------------------------------------------------------------*/
.kyoka_inner {
  display: flex;
  gap: var(--space-lg);
}
.kyoka_ttl {
  width: 6em;
  margin-right: var(--space-lg);
  flex-shrink: 0;
}
.kyoka_tbl {
  width: 100%;
}
.kyoka_tbl td {
  border-bottom: 1px solid #eee;
}
.kyoka_cate {
  background-color: #f9f9f9;
}

/* グループ一覧
----------------------------------------------------------------------*/
.grp {
  background-color: #f9f9f9;
}
.grp_itemBox {
  margin: var(--space-md) auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(306px, 340px));
  justify-content: end;
  gap: var(--space-sm);
}
.grp_link {
  display: block;
  padding: 1em;
  background: #FFF;
  border-radius: 999px;
  color: #2565DC;
  font-weight: 500;
  position: relative;
  font-size: 14.5px;
}
.grp_link::after {
  content: "\e89e";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  margin-left: 0.2em;
  font-size: 1.2em;
  opacity: 0.5;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}
.grp_link:hover {
  background-color: #2f9ee7;
  color: #FFF;
}

/* モバイル
----------------------------------------------------------------------*/
@media (max-width: 1200px) {
  .history_ttl {
    width: 4em;
  }
  .history_box {
    padding: 1.5em;
  }
  .access_add .tb_block {
    display: block;
  }
  .kyoka_tbl {
    font-size: 15px;
  }
}
@media (max-width: 960px) {
  .msg_copy br {
    display: none;
  }
  .phil_mainphil {
    font-size: var(--fsize-md);
  }
  .com_inner {
    width: calc(100% - 2 * var(--inner-side));
  }
  .history_txt {
    font-size: 15px;
  }
  .grp_link {
    font-size: 14px;
  }
  .grp_itemBox {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    justify-content: start;
  }
}
@media (max-width: 768px) {
  .com_fb {
    flex-direction: column;
  }
  .com_imgBox {
    width: 100%;
    aspect-ratio: 2/1;
  }
  .com_dl {
    width: 100%;
  }
  .history_inner {
    flex-direction: column;
  }
  .history_year {
    font-size: 24px;
    width: 144px;
  }
  .history_txt {
    width: calc(100% - 144px);
    font-size: 14px;
  }
  .kyoka_inner {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .msg_inner {
    flex-direction: column;
    align-items: center;
  }
  .msg_imgBox {
    aspect-ratio: 4/3;
    width: 90%;
  }
  .msg_img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 30%;
       object-position: 50% 30%;
  }
  .msg_txtBox {
    width: 100%;
  }
  .msg_yaku {
    font-size: var(--fsize-sm);
  }
  .msg_sign {
    font-size: var(--fsize-lg);
  }
  .phil_mainphil {
    font-size: var(--fsize-base);
    padding: 1.5em 4px;
  }
  .com_dl dt {
    width: 7em;
  }
  .com_dl dd {
    width: calc(100% - 7em);
  }
  .com_dl dt, .com_dl dd {
    padding: 1em;
  }
  .history_item {
    flex-direction: column;
    margin-bottom: 1em;
  }
  .history_year, .history_txt {
    width: 100%;
    padding-left: 30px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .history_year::before, .history_year::after {
    right: auto;
    left: 0;
  }
  .history_year::before {
    height: 500%;
  }
  .history_year::after {
    top: 24px;
    left: -7px;
    margin-left: 0;
  }
  .access_itemBox {
    flex-direction: column;
  }
  .access_item {
    width: 100%;
  }
  .access_mapBox {
    aspect-ratio: 16/9;
  }
  .access_add span.tb_block {
    display: none;
  }
  .kyoka_tblBox {
    overflow: auto;
    padding: 1em 0;
  }
  .kyoka_tbl {
    white-space: nowrap;
  }
  .grp_link {
    font-size: 13px;
  }
}
/*--------------------------------------------------------------------*/
/* CSR
/*--------------------------------------------------------------------*/
.csr_inner {
  max-width: 1100px;
}
.csr_subttl {
  text-align: center;
  margin-bottom: 2em;
}
.csr .phil_phil {
  font-size: var(--fsize-md);
}
.csr .phil_sec {
  width: auto;
  padding: var(--inner-vert) var(--inner-side);
  background: #FFF;
  border: none;
  color: #333;
}
.csr .phil_list {
  border: 2px solid;
  padding: 2em;
  border-radius: 10px;
}
.csr .phil_minittl {
  display: none;
}
.csr .phil_item:last-child {
  margin-bottom: 0;
}
.csr .phil_sec::after {
  display: none;
}

.csr_herov_imgBox::after {
  opacity: 0.2;
}

.csr_intro_copy {
  font-size: var(--fsize-xl);
  margin-bottom: 1em;
  margin-left: 1em;
}
.csr_intro_txt {
  display: table;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}
.csr_intro_img {
  width: 80%;
}

.csr_iso_imgBox {
  margin-top: 2em;
  display: flex;
  gap: 1em;
  border-radius: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.csr_iso_name {
  font-size: var(--fsize-base);
  padding: 0.1em 0.5em 0.2em;
  display: inline-block;
  margin-bottom: 1em;
  font-weight: 500;
  color: #FFF;
  border-radius: 5px;
}
.csr_kankyo .csr_iso_name {
  background-color: green;
}
.csr_quality .csr_iso_name {
  background-color: #2565DC;
}

.csr_kankyo {
  background-color: #f1fff1;
}
.csr_kankyo .csr_subttl {
  color: green;
  opacity: 0.8;
}
.csr_kankyo .phil_minittl {
  background: #f1fff1;
}
.csr_kankyo .phil_list {
  border-color: yellowgreen;
  color: green;
}

.csr_quality {
  background-color: #f5f7ff;
}
.csr_quality .csr_subttl {
  color: #2565DC;
  opacity: 0.8;
}
.csr_quality .phil_list {
  border-color: #a9c2f1;
  color: rgb(28.4980237154, 80.6086956522, 177.5019762846);
}

.csr_katsudo {
  margin-bottom: var(--space-md);
}
.csr_katsudo_inner {
  border-top: 1px solid #eee;
  max-width: 1100px;
}
.csr_katsudo_itemBox {
  margin: var(--space-lg) auto;
}
.csr_katsudo_item {
  display: flex;
  align-items: flex-start;
  gap: 1em 2em;
  padding: 1em;
}
.csr_katsudo_subttl {
  color: green;
  font-size: 1.25em;
  text-align: left;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 2px dotted;
}
.csr_katsudo_txtBox {
  font-size: 0.9em;
  width: 63%;
  min-width: 360px;
}
.csr_katsudo_txt {
  text-align: justify;
}
.csr_katsudo_imgBox {
  display: block;
  width: 33%;
  background: #FFF;
  padding: 4px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.csr_katsudo_img {
  width: 100%;
}
.csr_katsudo_date {
  font-size: 0.7em;
  padding: 0.1em 0.5em 0.2em;
  display: inline-block;
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #FFF;
  border-radius: 4px;
  background: green;
}

/* レスポンシブ
---------------------------------------------------------------------*/
@media (max-width: 744px) {
  .csr_katsudo_item {
    flex-direction: column;
  }
  .csr_katsudo_imgBox,
  .csr_katsudo_txtBox {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 575px) {
  .csr_kankyo .phil_list,
  .csr_quality .phil_list {
    border-right: none;
    border-left: none;
    border-width: 3px;
    padding: 1.5em 0.5em;
    font-size: 14px;
  }
}
/*--------------------------------------------------------------------*/
/* 事業案内
/*--------------------------------------------------------------------*/
/* 一覧ページ　※未掲載
---------------------------------------------------------------------*/
.p_serv .t_serv_list {
  max-width: 1000px;
  justify-content: space-between;
  margin: 0 auto;
}
.p_serv .t_serv_item {
  width: calc(50% - var(--space-md));
}

/* 個別ページ
---------------------------------------------------------------------*/
.serv_ttl {
  text-align: center;
  padding: var(--inner-vert);
}
.serv_btnBox {
  margin-top: 3em;
}
.serv_btn {
  margin-right: 0.5em;
  margin-bottom: 1em;
}
.serv_btn .material-symbols-outlined {
  margin-right: 0.1em;
  vertical-align: middle;
}
.serv_sliderBox {
  justify-content: space-between;
  gap: 10px;
}

.serv_btnBox .g_btn:hover .rect-primary, .serv_btnBox .g_btn:hover .path-primary {
  stroke: #2565DC;
}

.serv_sec {
  background-color: #f9f9f9;
  padding: var(--inner-vert) var(--inner-side);
  position: relative;
}
.serv_sec + .serv_sec {
  padding-top: 0;
}
.serv_sec_inner {
  background-color: #FFF;
  position: relative;
  border-radius: 20px;
  padding-top: calc(1.25 * var(--inner-vert));
}
.serv_sec_num {
  position: absolute;
  top: 0;
  left: 0;
  width: 8em;
  height: 8em;
  background: #2565DC;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1em;
  line-height: 1.2;
  text-align: left;
  background: #00c6ff; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #0072ff, #00c6ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.serv_sec_num_en {
  font-size: 0.6em;
}
.serv_sec_num_num {
  font-size: 2em;
  font-weight: bold;
}
.serv_sec_ttl {
  font-size: var(--fsize-xl);
  font-weight: 600;
  margin-bottom: 0.5em;
}
.serv_sec_desc {
  font-size: 1.3em;
  color: #2565DC;
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-weight: 500;
}
.serv_sec_txtBox {
  max-width: 980px;
}

.serv_fb {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: var(--space-xl);
}
.serv_fb_txtBox {
  width: 60%;
  max-width: 44em;
  flex-shrink: 0;
}
.serv_fb_imgBox {
  display: flex;
  width: 440px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.serv_fb_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.serv_fb-2 .serv_fb_txtBox {
  width: 33em;
  flex-shrink: 0;
}
.serv_fb-2 .serv_fb_imgBox {
  width: 100%;
  min-height: 280px;
}

.serv_copy {
  font-size: 20px;
}

.serv_last {
  text-align: center;
}
.serv_last_copy {
  font-weight: 600;
  margin-bottom: 1em;
  font-size: calc(0.85 * var(--fsize-xl));
}
.serv_last_txt {
  font-size: 1.125em;
}

.serv_kizai_fb {
  display: flex;
  gap: var(--space-sm);
}

.serv_link {
  background-color: #e5eefe;
}
.serv_link_itemBox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2%;
}
.serv_link_item {
  overflow: hidden;
  border-radius: 10px;
  background: #FFF;
  color: #111;
}
.serv_link_imgBox {
  position: relative;
  overflow: hidden;
}
.serv_link_imgBox::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2565DC;
  opacity: 0.3;
  z-index: 2;
}
.serv_link_txtBox {
  padding: var(--space-sm);
}
.serv_link_name-sub, .serv_link_name-main {
  display: block;
  margin-bottom: 0.5em;
}
.serv_link_name-sub {
  color: #2565DC;
  font-weight: 500;
  font-size: var(--fsize-sm);
}
.serv_link_name-main {
  font-size: var(--fsize-md);
  font-weight: 600;
  color: #222;
  letter-spacing: 0.05em;
}
.serv_link_txt {
  font-size: var(--fsize-sm);
  text-align: justify;
}
.serv_link_img {
  transition: transform 0.3s;
  transform-origin: center center;
}
.serv_link_item:hover .serv_link_img {
  transform: scale(1.2);
}

.p_setsubi_intro_copyBox {
  width: 14.5em;
}

.p_serv_list-blt {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2em;
}

.p_serv_intro_inner {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}
.p_serv_intro_imgBox {
  max-width: 680px;
}
.p_serv_intro_txtBox {
  min-width: 600px;
  padding-left: var(--inner-side);
}
.p_serv_intro_copyBox {
  margin-bottom: 1em;
}
.p_serv_intro .g_intro_txt {
  text-align: justify;
}

.rozai_fb {
  margin-bottom: 4em;
}

.rozai_fb_txt {
  width: 60%;
}

.rozai_fb_imgBox {
  width: 40%;
  aspect-ratio: 4/3;
}

.youkai_videoBox {
  max-width: 640px;
}

.youkai_txtBox {
  flex-shrink: 1;
}

/* レスポンシブ
---------------------------------------------------------------------*/
@media (max-width: 1200px) {
  .serv_kizai_fb {
    flex-direction: column;
  }
  .rozai_fb_imgBox {
    width: calc(40% - var(--space-xl));
    aspect-ratio: 4/3;
  }
}
@media (max-width: 960px) {
  .serv_fb:not(.serv_fb-2, .rozai_fb) {
    flex-direction: column;
    gap: 1em;
  }
  .serv_fb_imgBox {
    width: 100%;
    aspect-ratio: 3/1;
    min-height: 0;
  }
  .serv_fb_txtBox {
    padding: 1.5em 0 0 1.5em;
    width: auto;
    flex-shrink: 1;
  }
  .serv_sec_txtBox {
    padding: 1.5em 0 0 1.5em;
  }
  .serv_fb-2 {
    flex-direction: column;
    gap: 2em;
  }
  .serv_fb-2 .serv_fb_txtBox {
    width: 100%;
  }
  .serv_fb-2 .serv_fb_imgBox {
    width: 100%;
    aspect-ratio: 3/1;
    min-height: 0;
  }
  .serv_fb-2 .g_box_16x9 {
    aspect-ratio: 16/9;
  }
  .rozai_fb {
    flex-direction: column;
    gap: 2em;
  }
  .rozai_fb_txt {
    width: 100%;
  }
  .rozai_fb_imgBox {
    width: 80%;
    margin: 0 auto;
    aspect-ratio: 16/9;
  }
  .serv_sec_desc {
    font-size: 18px;
  }
  .serv_sec_txt {
    line-height: 1.5;
  }
  .serv_copy {
    font-size: 18px;
  }
  .serv_link_txt {
    display: none;
  }
  .serv_link_itemBox {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .serv_btnBox {
    margin-top: 2em;
  }
  .serv_last_copy {
    font-size: var(--fsize-lg);
  }
  .serv_last_txt {
    font-size: var(--fsize-base);
  }
}
@media (max-width: 575px) {
  .p_serv_intro_copyBox {
    font-size: 23px;
  }
  .serv_sec_num {
    width: 80px;
    height: 80px;
    padding: 8px;
  }
  .serv_sec_num_en {
    font-size: 6px;
  }
  .serv_sec_num_num {
    font-size: 20px;
  }
  .serv_fb_txtBox {
    padding: 8px;
  }
  .serv_sec_desc {
    font-size: 14px;
  }
  .p_serv_list-blt {
    font-size: 14px;
  }
  .serv_sliderBox {
    flex-direction: column;
  }
  .serv_sliderBox .main-slider,
  .serv_sliderBox .thumbnail-list {
    width: 100%;
  }
  .serv_link_itemBox {
    gap: 8px;
  }
  .serv_link_name-main {
    font-size: var(--fsize-base);
  }
  .serv_last_txt {
    font-size: var(--fsize-base);
  }
  .serv_copy {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------------*/
/* 採用情報
/*--------------------------------------------------------------------*/
/* トップページ
----------------------------------------------------------------------*/
.rec_ttl {
  margin-bottom: 2em;
  font-weight: 500;
}

/* 背景
----------------------------------------------------------------------*/
.rec_bg {
  position: relative;
  background: #3d80fc;
  color: #FFF;
}
.rec_bg .colored {
  color: #58d2ff;
}
.rec_bg::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../recruit/img/pol_sankaku.svg);
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  background-size: contain;
  opacity: 0.05;
}

/* ファーストビュー
----------------------------------------------------------------------*/
.rec_hero {
  padding: 140px var(--space-xl) 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.rec_hero_inner {
  position: relative;
  height: calc(100vh - 140px);
}
.rec_hero_ttl {
  display: inline-block;
  font-size: var(--fsize-base);
  padding: 0.4em 1.5em;
  border-width: 2px;
  opacity: 0.8;
  font-weight: 500;
}
.rec_hero_copyBox {
  position: absolute;
  top: 25%;
  left: 0;
}
.rec_hero_copy {
  font-size: var(--fsize-2xl);
  font-weight: bold;
  margin: 0.5em 0;
  line-height: 1.5;
}
.rec_hero_txt {
  font-weight: 500;
  font-size: var(--fsize-base);
  opacity: 0.7;
}
.rec_hero_imgBox {
  position: absolute;
  right: -10%;
  top: 0;
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.9;
  height: 100%;
  width: 80%;
}
.rec_hero_img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rec_hero_copyBox {
  top: 0;
}

.rec_hero_imgBox {
  width: 60%;
  right: 0;
  overflow: inherit;
  height: 100%;
  width: auto;
}

.rec_hero {
  padding-top: 60px;
}

.rec_hero_inner {
  height: auto;
  min-height: 60vh;
}

.rec_hero_copyBox {
  position: relative;
}

.rec_hero_img {
  height: 100%;
  width: auto;
}

/* メッセージ
----------------------------------------------------------------------*/
.rec_msg {
  position: relative;
  z-index: 1;
}
.rec_msg_inner {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: calc(1.5 * var(--inner-vert));
  padding-top: calc(1.5 * var(--inner-vert));
}
.rec_msg_txtBox {
  padding: 2em;
  width: 42em;
  border-radius: 10px;
  flex-shrink: 0;
}
.rec_msg_copy {
  font-size: calc(1.2 * var(--fsize-lg));
  font-weight: 500;
  margin-bottom: 1em;
  letter-spacing: 0;
}
.rec_msg_txt {
  font-size: 18px;
  text-align: justify;
  opacity: 0.7;
}
.rec_msg_imgBox {
  max-width: 40%;
  display: flex;
  align-items: stretch;
}
.rec_msg_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 福利厚生
----------------------------------------------------------------------*/
.welfare {
  background: #f3f3f3;
}
.welfare_itemBox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(296px, 1fr));
  gap: var(--space-md);
  text-align: center;
  counter-reset: welnum;
}
.welfare_item {
  padding: 2em;
  border-radius: 5px;
  background: #FFF;
  position: relative;
}
.welfare .material-symbols-outlined {
  font-size: 40px;
  color: #2565DC;
}
.welfare_name {
  font-size: 1.25em;
  font-weight: 500;
  margin-bottom: 1em;
}
.welfare_txt {
  text-align: center;
  color: #2565DC;
}

/* 募集要項
----------------------------------------------------------------------*/
.rec_youkou {
  background-color: #eee;
  background-image: url(../recruit/img/top_com.jpg);
  background-size: cover;
  position: relative;
}
.rec_youkou::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #2565DC;
  opacity: 0.7;
}
.rec_youkou_inner {
  position: relative;
  z-index: 1;
}
.rec_youkou_ttl {
  color: #FFF;
  margin-bottom: 2em;
}
.rec_youkou_fb {
  justify-content: space-between;
  padding: 6em 1em;
  border-radius: 20px;
  background: #f9f9f9;
  opacity: 0.9;
}
.rec_youkou_dl {
  width: 48.5%;
}
.rec_youkou_mail {
  color: #2f9ee7;
}
.rec_youkou_mail:hover {
  opacity: 0.8;
}

/* 数字でみるデータ
----------------------------------------------------------------------*/
.rec_data_inner {
  max-width: 1200px;
}
.rec_data_ttl {
  margin-bottom: 0.5em;
}
.rec_data_desc {
  margin-bottom: 3em;
}

.rec_data_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  grid-template-areas: "item01 item02 item02" "item03 item04 item05" "item06 item06 item06" "item07 item08 item09";
  text-align: center;
}

.rec_data_date {
  margin-bottom: 4em;
  text-align: right;
  color: cornflowerblue;
  font-weight: 500;
  padding-top: 4px;
}

.rec_data_item {
  background-color: #d5e1f8;
  padding: 2.5em 1.5em 1.5em;
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px 1em;
  position: relative;
}
.rec_data_item:not(.rec_data_item-01, .rec_data_item-02, .rec_data_item-06) {
  flex-direction: column;
}
.rec_data_item-01 {
  grid-area: item01;
}
.rec_data_item-02 {
  grid-area: item02;
}
.rec_data_item-03 {
  grid-area: item03;
}
.rec_data_item-04 {
  grid-area: item04;
}
.rec_data_item-05 {
  grid-area: item05;
}
.rec_data_item-06 {
  grid-area: item06;
  padding: 2em;
}
.rec_data_item-07 {
  grid-area: item07;
}
.rec_data_item-08 {
  grid-area: item08;
}
.rec_data_item-09 {
  grid-area: item09;
}

.rec_data_head {
  color: #2565DC;
  background: #ffffff;
  display: inline-block;
  padding: 0.2em 0.8em;
  font-size: 20px;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-right-radius: 5px;
}
.rec_data_num {
  font-size: 64px;
  line-height: 1;
}
.rec_data_data {
  color: #2565DC;
  font-weight: bold;
}
.rec_data_unit {
  font-size: var(--fsize-md);
  color: #333;
}
.rec_data_txtBox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rec_data_txtBox-02 {
  flex-direction: row;
  align-items: center;
  gap: 1.5em;
}

.pie_chart {
  display: flex;
  gap: 2em;
  align-items: center;
  justify-content: center;
}

.pie {
  width: 35%;
}

.pie_labelBox {
  width: 540px;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.pie_label {
  position: relative;
  padding-right: 1.3em;
  font-size: 24px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  width: 48%;
}
.pie_label::before {
  display: inline-block;
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
}
.pie_label-01::before {
  background-color: #49e4ff;
}
.pie_label-02::before {
  background-color: #22a7ff;
}
.pie_label-03::before {
  background-color: #337afd;
}
.pie_label-04::before {
  background-color: #3755ff;
}
.pie_label_num {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0.1em;
  color: #2565DC;
}

/* 共通リスト
----------------------------------------------------------------------*/
.voice_link {
  background-color: #e5eefe;
}
.voice_link_ttl {
  color: #2565DC;
  margin-bottom: 2em;
  font-weight: 500;
}
.voice_link_itemBox {
  gap: 40px 3%;
  align-items: flex-start;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.voice_link_item {
  background: #FFF;
  color: #111;
  border-radius: 10px;
  position: relative;
  width: 218px;
}
.voice_link_item:nth-child(odd) {
  margin-top: 32px;
}
.voice_link_imgBox {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/4;
  position: relative;
}
.voice_link_imgBox::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.1;
  transition: 0.3s;
}
.voice_link_img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  transition: 0.3s;
  transform-origin: center center;
}
.voice_link_txtBox {
  width: 85%;
  position: absolute;
  padding: 1.5em 1em;
  background: #FFF;
  border-radius: 8px;
  right: 0;
  bottom: -30px;
}
.voice_link_name-sub, .voice_link_name-main {
  display: block;
}
.voice_link_name-main {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 1.15em;
  display: flex;
  align-items: center;
}
.voice_link_num {
  font-size: 0.7em;
  color: #2f9ee7;
  margin-right: 0.8em;
  font-weight: 500;
  display: inline-block;
  border: 1px solid;
  border-radius: 999px;
  padding: 0 0.8em;
}
.voice_link_name-sub {
  opacity: 0.8;
  font-size: 14px;
}

.voice_link_item:hover .voice_link_img {
  transform: scale(1.1);
}
.voice_link_item:hover .voice_link_imgBox::after {
  opacity: 0;
}

/* Voice 先輩社員の声 - 個人ページ
----------------------------------------------------------------------*/
.voice_herov_inner {
  max-width: var(--maxwid);
}
.voice_herov_imgBox {
  height: auto;
  aspect-ratio: 16/6;
}
.voice_herov_imgBox::after {
  opacity: 0.1;
}

.voice_pmenu_item {
  font-size: var(--fsize-md);
}
.voice_pmenu_item::after {
  content: none;
}
.voice_pmenu_num {
  font-size: 0.6em;
  color: #ffdd2c;
  margin-right: 1em;
  font-weight: 500;
  display: inline-block;
  border: 2px solid;
  border-radius: 999px;
  padding: 0.3em 0.8em 0.3em;
  margin-top: 0.1em;
}
.voice_pmenu_name {
  display: inline-block;
  margin: 0 0.5em;
}
.voice_pmenu.is-stuck .voice_pmenu_num {
  border-width: 1px;
}

.voice_fb {
  gap: var(--space-xl);
}

.voice_sec:nth-child(even) .voice_fb {
  flex-direction: row-reverse;
}

.voice_minh {
  min-height: 7em;
}

.voice_qna {
  width: 608px;
  flex-shrink: 0;
}
.voice_qna_q {
  margin-bottom: 0.5em;
}
.voice_qna_q_ttl {
  display: inline-block;
  font-size: var(--fsize-base);
  font-weight: 500;
  margin-bottom: 0.5em;
  color: #2565DC;
  border-width: 2px;
}
.voice_qna_q_txt {
  font-size: var(--fsize-lg);
  display: block;
  font-weight: 600;
}
.voice_qna_a {
  font-size: 1.1em;
  text-align: justify;
}

.voice_qna + .voice_qna {
  margin-top: var(--space-lg);
}

.voice_imgBox {
  border-radius: 10px;
  overflow: hidden;
  max-width: 45%;
  position: relative;
  width: 560px;
}
.voice_imgBox-tl {
  max-width: 400px;
  aspect-ratio: 4/5;
}

.voice_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.voice_timeline_wrapper {
  background: #f0f3f5;
  position: relative;
  margin-top: var(--space-lg);
}
.voice_timeline_wrapper::before {
  content: "";
  font-size: var(--fsize-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 999px;
  background-color: #f0f3f5;
  color: pink;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Material Symbols Outlined";
  font-size: 64px;
}
.voice_timeline_wrapper .material-symbols-outlined {
  font-size: var(--fsize-2xl);
  color: #2565DC;
  font-weight: bold;
  margin-bottom: var(--fsize-xl);
}

.voice_timeline {
  border-radius: 10px;
  background: #fff;
  min-width: 900px;
  justify-content: space-around;
  display: inline-flex;
  margin: 0 auto;
  padding: 2em;
  position: relative;
}
.voice_timeline_inner {
  padding-top: 144px;
}
.voice_timeline_ttlBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: -2.5em;
  left: 50%;
  transform: translateX(-50%);
}
.voice_timeline_tlBox {
  text-align: center;
}
.voice_timeline_minittl {
  display: inline-block;
  margin-bottom: 1em;
  color: #2565DC;
  border-width: 2px;
  font-weight: 500;
  display: none;
}
.voice_timeline_ttl {
  font-size: var(--fsize-md);
  color: #444;
  width: 12em;
  margin-bottom: 1em;
  flex-shrink: 0;
}

.voice_kirinuki {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 10%;
}

.timeline dl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline dt, .timeline dd {
  padding: 0.5em 0;
  display: inline-block;
}
.timeline dt {
  width: 5em;
  font-weight: bold;
  font-size: 1.2em;
  position: relative;
  align-items: center;
  color: #444;
  color: #2565DC;
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
  line-height: 2;
}
.timeline dt::before, .timeline dt::after {
  content: "";
  display: inline-block;
}
.timeline dt::after {
  width: 0.8em;
  height: 0.8em;
  border-radius: 999px;
  background-color: #FFF;
  border: 4px solid #2565DC;
  z-index: 2;
  position: relative;
}
.timeline dt::before {
  position: absolute;
  border-radius: 999px;
  width: 150%;
  height: 4px;
  background-color: #ddd;
  bottom: 0.8em;
  left: 30%;
}
.timeline dl:last-child dt::before {
  width: 40%;
}
.timeline dd {
  display: block;
  writing-mode: vertical-rl;
  text-align: left;
  line-height: 1.2;
  flex-grow: 1;
  padding: 1em;
  border: 2px solid #ddd;
  border-radius: 2px;
  position: relative;
}
.timeline dd::before {
  content: "";
  display: block;
  width: 3px;
  height: 2em;
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ddd;
}

/* レスポンシブ
----------------------------------------------------------------------*/
@media (max-width: 1392px) {
  .voice_link_itemBox {
    width: 730px;
    margin: 0 auto;
    gap: 80px 5%;
    padding-bottom: 80px;
  }
  .voice_link_item:nth-child(odd) {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .rec_youkou_fb {
    flex-direction: column;
  }
  .rec_youkou_dl {
    width: 100%;
  }
  .rec_youkou_dl dt,
  .rec_youkou_dl dd {
    width: 100%;
    padding: 0;
  }
  .rec_youkou_dl dt:first-of-type,
  .rec_youkou_dl dd:first-of-type {
    border-top: none;
  }
  .rec_youkou_dl dt {
    padding: 1em 0 0;
    border-bottom: none;
    color: #2565DC;
  }
  .rec_youkou_dl dd {
    padding: 0 0 1em;
  }
  .rec_youkou_dl .rec_bdtop {
    border-top: 1px solid #ccc !important;
  }
  .pie_label {
    font-size: 18px;
  }
  .rec_data_num {
    font-size: 56px;
  }
  .timeline dt {
    width: 4em;
  }
}
@media (max-width: 960px) {
  .rec_msg_inner {
    flex-direction: column-reverse;
    padding-bottom: var(--inner-vert);
    padding-top: var(--inner-vert);
    gap: 2em;
  }
  .rec_msg_txtBox {
    width: auto;
  }
  .rec_msg_txt {
    font-size: 16px;
  }
  .rec_msg_imgBox {
    width: 33%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 99999px;
    margin-left: auto;
    margin-top: -4em;
  }
  .rec_data_head {
    font-size: 16px;
  }
  .rec_data_num {
    font-size: 40px;
  }
  .rec_data_item figure {
    max-width: 80%;
  }
  .pie_label {
    font-size: 16px;
    width: 100%;
  }
  .pie_labelBox {
    width: 50%;
  }
  .pie_label_num {
    font-size: 36px;
  }
  .rec_data_item-01 {
    flex-direction: column-reverse;
  }
  .welfare_itemBox {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .welfare_item {
    padding: 1em;
  }
  .welfare_name {
    font-size: 17px;
    margin-bottom: 0.5em;
  }
  .welfare_txt {
    font-size: 14px;
    text-align: center;
  }
  .voice_link_itemBox {
    width: 100%;
  }
  .voice_link_item {
    width: 180px;
  }
  .voice_link_txtBox {
    padding: 1em;
    width: 164px;
  }
  .voice_link_num {
    font-size: 12px;
  }
  .voice_link_name-main {
    font-size: 16px;
  }
  .voice_fb,
  .voice_sec:nth-child(even) .voice_fb {
    flex-direction: column;
  }
  .voice_imgBox {
    max-width: none;
    width: 85%;
    aspect-ratio: 2/1;
    margin: 0 auto;
  }
  .voice_qna {
    width: 100%;
    flex-shrink: 1;
  }
  .voice_qna_q_txt {
    font-size: 20px;
  }
  .voice_qna_a {
    font-size: 16px;
  }
  .voice_timeline_wrapper {
    margin-top: 120px;
  }
  .voice_timeline_inner {
    padding-top: 96px;
  }
  .voice_timeline {
    display: block;
    min-width: 0;
  }
  .voice_timeline dl {
    flex-direction: row;
    margin-bottom: 1em;
  }
  .voice_timeline dt {
    flex-direction: row;
    justify-content: space-between;
    width: 5em;
    font-size: 18px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .voice_timeline dl:last-child dt::before,
  .voice_timeline dt::before {
    width: 4px;
    height: 180%;
    left: auto;
    right: 17px;
    bottom: auto;
    top: 0px;
  }
  .voice_timeline dl:last-child dt::before {
    height: 110%;
  }
  .voice_timeline dt::after {
    margin: 0 10px;
    width: 18px;
    height: 18px;
  }
  .voice_timeline dd {
    writing-mode: horizontal-tb;
  }
  .voice_timeline dd::before {
    content: none;
  }
}
@media (max-width: 575px) {
  .rec_msg_imgBox {
    width: 44%;
    max-width: none;
    margin-top: 0;
  }
  .rec_msg_txtBox {
    padding: 0;
  }
  .rec_msg_copy {
    font-size: clamp(16px, 5.6vw, 24px);
  }
  .rec_youkou_fb {
    padding: 4em 1em;
  }
  .rec_data_box {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "item01 item01" "item02 item02" "item03 item04" "item06 item06" "item05 item07" "item08 item09";
    margin-bottom: 0;
  }
  .rec_data_item figure {
    max-width: 80px;
  }
  .welfare_itemBox {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .welfare_item {
    display: flex;
    align-items: center;
  }
  .welfare_name {
    margin-bottom: 0;
  }
  .welfare .material-symbols-outlined {
    width: 40px;
    margin-right: 16px;
    flex-shrink: 0;
  }
  .welfare_txtBox {
    text-align: left;
  }
  .welfare_txt {
    text-align: left;
  }
  .rec_data_item-01 {
    padding: 1em;
    flex-direction: row;
  }
  .rec_data_txtBox-02 {
    gap: 0.5em;
  }
  .pie_chart {
    flex-direction: column;
    gap: 1em;
  }
  .pie {
    width: 80%;
  }
  .pie_label {
    padding-right: 0;
    padding-left: 3em;
  }
  .pie_labelBox {
    width: auto;
    display: table;
  }
  .g_herov_maru .g_herov_inner {
    padding-top: 88px;
  }
  .g_herov::before {
    height: 70px;
  }
  .voice_herov_imgBox {
    aspect-ratio: 2/1;
  }
  .voice_qna_q_txt {
    font-size: 18px;
  }
  .voice_qna_a {
    font-size: 14px;
  }
  .voice_link_itemBox {
    gap: 20px;
    padding-bottom: 0;
  }
  .voice_link_item {
    width: calc(50% - 14px);
  }
  .voice_link_imgBox {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    aspect-ratio: 1/1;
  }
  .voice_link_txtBox {
    position: relative;
    width: 100%;
    padding: 0.5em;
    right: auto;
    bottom: auto;
  }
  .voice_link_name-main {
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------------------*/
/* トップページ
/*--------------------------------------------------------------------*/
/*  共通
---------------------------------------------------------------------*/
.t_sec {
  margin-bottom: var(--space-md);
}

.t_copy {
  font-size: var(--fsize-xl);
  font-weight: 600;
}

.t_btnBox {
  margin-top: var(--space-md);
  text-align: right;
}

.t_ttl-en {
  font-size: var(--fsize-xl);
  color: #2565DC;
  text-transform: uppercase;
  font-weight: bold;
}

.t_inner {
  max-width: var(--maxwid);
  padding: var(--space-xl) var(--space-md);
  margin: 0 auto;
}

.t_ttl-jp {
  font-size: var(--fsize-base);
}

.t_txt {
  text-align: justify;
}

/* メインビジュアル
---------------------------------------------------------------------*/
.t_hero {
  height: 100%;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}
.t_hero_copyBox {
  position: relative;
  z-index: 2;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  opacity: 0;
  animation: fadeInSp 0.8s ease-out 0.2s forwards;
  margin-top: 5%;
}
.t_hero_copy-1 {
  font-size: 72px;
  font-size: clamp(44px, 5.8vw, 80px);
  margin-left: 0.5em;
  width: 7em;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  display: inline-block;
  filter: brightness(1.2) contrast(1.1);
}
.t_hero_copy-2 {
  font-size: 20px;
  font-size: 1.5vw;
  font-size: clamp(14px, 1.5vw, 20px);
  text-align: center;
}

.t_scroll {
  position: absolute;
  left: 56px;
  bottom: 0;
  width: 40px;
  height: 100px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.t_scroll :after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.8) 100%);
}
.t_scroll a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 10px 110px;
  color: #000;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
  margin: auto;
}
.t_scroll a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #ddd;
}
.t_scroll a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #000;
}
.t_scroll a:hover {
  opacity: 0.5;
}
.t_scroll a:after {
  animation: scdown 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes scdown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.t_hero_ilstBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.t_hero_ilst:not(.t_hero_ilst-01, .t_hero_ilst-02) {
  opacity: 0;
  transform: scale(0.6);
  animation: popUp 0.6s ease-out forwards;
}

.t_hero_ilst {
  position: absolute;
}
.t_hero_ilst-01 {
  right: -12%;
  top: 29%;
  width: 22%;
}
.t_hero_ilst-02 {
  left: -8%;
  top: 42%;
  width: 18%;
}
.t_hero_ilst-34 {
  right: 37%;
  top: 15%;
  width: 7%;
}
.t_hero_ilst-05 {
  left: 15%;
  top: 26%;
  width: 14%;
}
.t_hero_ilst-06 {
  right: 11%;
  bottom: 11%;
  width: 21%;
}
.t_hero_ilst-07 {
  left: 24%;
  bottom: 12%;
  width: 10%;
}
.t_hero_ilst-08 {
  right: 26%;
  top: 18%;
  width: 4%;
}
.t_hero_ilst-09 {
  left: 83%;
  top: 22%;
  width: 7%;
}
.t_hero_ilst-10 {
  left: 34%;
  top: 11%;
  width: 11%;
}
.t_hero_ilst-11 {
  right: 14%;
  top: 53%;
  width: 3%;
}
.t_hero_ilst-12 {
  right: 16%;
  top: 38%;
  width: 9%;
}
.t_hero_ilst-13 {
  left: 12%;
  bottom: 25%;
  width: 8%;
}
.t_hero_ilst-14 {
  left: 47%;
  bottom: 9%;
  width: 6%;
}

@keyframes popUp {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.t_hero_copyBox {
  animation: fadeInSp 0.8s ease-out 0.2s forwards;
}
.t_hero_copy-1-1 {
  animation-delay: 2.6s;
}
.t_hero_copy-1-2 {
  animation-delay: 2.9s;
}

.t_hero_ilst:not(.t_hero_ilst-01, .t_hero_ilst-02) {
  animation-delay: 0.8s;
}
.t_hero_ilst-34, .t_hero_ilst-07 {
  animation-delay: 1.2s !important;
}
.t_hero_ilst-11, .t_hero_ilst-12, .t_hero_ilst-14 {
  animation-delay: 1.6s !important;
}
.t_hero_ilst-09, .t_hero_ilst-10, .t_hero_ilst-13 {
  animation-delay: 2s !important;
}

/* ギャラリー
---------------------------------------------------------------------*/
.t_gal {
  overflow: hidden;
  width: 100%;
}
.t_gal_inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 45s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.t_gal img {
  display: block;
  image-rendering: auto;
  width: 2000px;
}

@keyframes scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2000px, 0, 0);
  }
}
/* アバウト
---------------------------------------------------------------------*/
.t_abt {
  margin-bottom: var(--space-md);
}
.t_abt_inner {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
}
.t_abt_txtBox {
  max-width: 624px;
}
.t_abt_ttl {
  font-size: var(--fsize-lg);
}
.t_abt_copy {
  margin-bottom: var(--space-sm);
}
.t_abt_txt {
  max-width: 600px;
  text-align: justify;
}

/* 事業紹介
---------------------------------------------------------------------*/
.t_serv {
  overflow: hidden;
}
.t_serv_inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
}
.t_serv_txtBox {
  text-align: center;
  max-width: 280px;
  min-width: 230px;
}
.t_serv_ttl-jp {
  margin-bottom: var(--space-md);
}
.t_serv_illust {
  display: block;
  width: 200px;
  margin-bottom: var(--space-sm);
  margin-left: auto;
  margin-right: auto;
}
.t_serv_txt {
  text-align: left;
  margin-bottom: var(--space-lg);
  text-align: justify;
}
.t_serv_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 880px;
  gap: var(--space-md);
  position: relative;
}
.t_serv_item {
  width: calc(49% - var(--space-md));
}
.t_serv_link {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.t_serv_link::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.t_serv_link:hover::before {
  opacity: 1;
}
.t_serv_img {
  display: block;
  border-radius: 10px;
}
.t_serv_nameBox {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #FFF;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 0.5em;
}
.t_serv_name-jp {
  font-size: var(--fsize-md);
  font-weight: 500;
}
.t_serv_name-en {
  opacity: 0.7;
}
.t_serv_icon {
  width: 48px;
}

.t_serv_item-seizou .t_serv_link::before {
  background-color: #719DEF;
}
.t_serv_item-kakou .t_serv_link::before {
  background-color: #EF7171;
}
.t_serv_item-setsubi .t_serv_link::before {
  background-color: #209F8A;
}
.t_serv_item-service .t_serv_link::before {
  background-color: #FFAB36;
}

/* 間の画像
----------------------------------------------------------------------*/
.t_divider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/1;
  overflow: hidden;
}
.t_divider img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0);
}

@keyframes revealMask {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
/* 採用
----------------------------------------------------------------------*/
.t_rec {
  margin-bottom: var(--space-lg);
}
.t_rec_inner {
  display: flex;
  justify-content: space-between;
  padding-top: 0;
  gap: var(--space-xl);
}
.t_rec_ttlBox {
  width: 540px;
  height: 280px;
  background-color: #2565DC;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -140px;
}
.t_rec_img {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 25%;
}
.t_rec_ttl-en {
  color: #FFF;
  margin-bottom: var(--space-sm);
}
.t_rec_ttl-jp {
  color: #2f9ee7;
  letter-spacing: 0.3em;
  font-size: 1.25em;
}
.t_rec_txtBox {
  margin-top: calc(1.4 * var(--space-xl));
  max-width: 624px;
}
.t_rec_copy {
  margin-bottom: var(--space-sm);
}

.t_csr {
  padding-right: var(--inner-side);
  padding-left: var(--inner-side);
  margin-bottom: var(--space-xl);
}
.t_csr_inner {
  max-width: calc(var(--maxwid) - var(--space-lg));
  padding: 48px;
  background-color: #e4f2ff;
  border-radius: 20px;
  position: relative;
}
.t_csr_copy {
  margin-bottom: var(--space-sm);
  color: #006fde;
  font-size: calc(1.2 * var(--fsize-lg));
}
.t_csr_txt {
  max-width: 31em;
  margin-bottom: var(--space-lg);
}
.t_csr_img {
  position: absolute;
  right: 10px;
  bottom: -100px;
  width: 55%;
}

/* ニュース
---------------------------------------------------------------------*/
.t_news {
  animation-delay: 0.5s;
}
.t_news_inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
}
.t_news_ttl-jp {
  font-size: var(--fsize-base);
  margin-bottom: var(--space-lg);
}
.t_news_itemBox {
  width: 70%;
}
.t_news_item {
  display: flex;
  gap: var(--space-sm);
  border-bottom: 2px dotted #ccc;
  padding: 1.5em 0;
}
.t_news_date {
  display: inline-block;
  margin-right: 1em;
}
.t_news_cate {
  font-size: 0.9em;
  padding: 1px 1em 2px;
  display: inline-block;
  text-align: center;
  width: 8em;
  border: 2px solid #333;
  border-radius: 5px;
}

/* アニメーション
---------------------------------------------------------------------*/
.t_abt_imgBox,
.t_abt_txtBox,
.t_serv_txtBox,
.t_serv_item,
.t_rec_ttlBox,
.t_rec_txtBox,
.t_csr,
.t_news {
  opacity: 0;
}

.t_sec.in-view .t_abt_imgBox {
  animation: slideLeft 1s ease-out 0.3s forwards;
}
.t_sec.in-view .t_abt_txtBox {
  animation: slideUp 1s ease-out 0.3s forwards;
  animation-delay: 1s;
}
.t_sec.in-view .t_serv_txtBox {
  animation: slideUp 1s ease-out 0.3s forwards;
}
.t_sec.in-view .t_serv_item {
  animation: slideRight 0.6s ease-out 0.3s forwards;
}
.t_sec.in-view .t_serv_item-seizou {
  animation-delay: 0.6s;
}
.t_sec.in-view .t_serv_item-kakou {
  animation-delay: 0.9s;
}
.t_sec.in-view .t_serv_item-setsubi {
  animation-delay: 1.2s;
}
.t_sec.in-view .t_serv_item-service {
  animation-delay: 1.5s;
}
.t_sec.in-view .t_rec_ttlBox {
  animation: slideUp 1s ease-out 0.3s forwards;
}
.t_sec.in-view .t_rec_txtBox {
  animation: slideUp 1s ease-out 0.3s forwards;
  animation-delay: 0.3s;
}
.t_sec.in-view.t_csr {
  animation: slideUp 1s ease-out 0.3s forwards;
}
.t_sec.in-view.t_news {
  animation: slideUp 1s ease-out 0.3s forwards;
  animation-delay: 0.2s;
}

.t_divider.in-view img {
  animation: revealMask 0.8s ease-out forwards;
  animation-delay: 1.5;
}

@keyframes fadeInSp {
  from {
    opacity: 0;
    transform: translateY(3%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sway {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(6px, -4px);
  }
  50% {
    transform: translate(-4px, 6px);
  }
  75% {
    transform: translate(3px, -2px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
/* モバイル
---------------------------------------------------------------------*/
@media (max-width: 1200px) {
  .t_hero {
    margin-bottom: var(--space-xl);
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 1023px) {
  .t_news_inner {
    flex-direction: column;
    padding-bottom: var(--space-2xl);
  }
  .t_news_itemBox {
    width: 100%;
  }
  .t_news_ttl-jp {
    font-size: var(--fsize-xl);
    font-weight: 600;
    margin-bottom: 0;
  }
  .t_news_lnk {
    position: absolute;
    right: var(--space-md);
    bottom: 0;
  }
  .t_news {
    margin-bottom: var(--space-2xl);
  }
}
@media (max-width: 960px) {
  .t_inner {
    padding: var(--inner-vert) var(--inner-side);
  }
  .t_scroll {
    left: 0;
  }
  .t_scroll a {
    font-size: 10px;
  }
  .t_gal img {
    width: 1500px;
  }
  .t_ttl-en {
    font-size: var(--fsize-lg);
  }
  .t_abt {
    margin-bottom: 0;
  }
  .t_abt_inner {
    flex-direction: column;
  }
  .t_abt_imgBox {
    width: 70%;
    margin: 0 auto;
  }
  .t_abt_txtBox {
    margin: 0 auto;
  }
  .t_serv_inner {
    flex-direction: column;
  }
  .t_serv_illust {
    display: none;
  }
  .t_serv_txtBox, .t_serv_list {
    max-width: 600px;
  }
  .t_serv_txtBox {
    margin: 0 auto;
    text-align: left;
  }
  .t_serv_list {
    justify-content: center;
    margin: 0 auto;
  }
  .t_serv_ttl-jp {
    font-size: var(--fsize-xl);
    font-weight: 600;
  }
  .t_serv_txt {
    margin-bottom: 0;
  }
  .t_serv_icon {
    width: 40px;
  }
  .t_serv {
    margin-bottom: calc(2 * var(--space-xl));
  }
  .t_csr {
    margin-bottom: calc(3 * var(--space-xl));
  }
  .t_news_inner {
    padding-bottom: var(--space-2xl);
  }
}
@media (max-width: 575px) {
  .t_hero {
    aspect-ratio: auto;
  }
  .t_hero_inner {
    width: 100%;
    aspect-ratio: 9/16;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .t_hero_copy-1 {
    font-size: clamp(54px, 10vw, 82px);
  }
  .t_hero_copy-2 {
    font-size: clamp(15px, 2.6vw, 24px);
  }
  .t_hero_ilstBox {
    top: -40px;
  }
  .t_hero_copyBox {
    margin-top: 0;
  }
  .t_hero_ilst-01 {
    right: -11%;
    top: 29%;
    width: 32%;
  }
  .t_hero_ilst-02 {
    left: -11%;
    top: 71%;
    width: 32%;
  }
  .t_hero_ilst-05 {
    left: 6%;
    top: 21%;
    width: 28%;
  }
  .t_hero_ilst-10 {
    left: 36%;
    top: 16%;
    width: 23%;
  }
  .t_hero_ilst-34 {
    right: 37%;
    top: 31%;
    width: 13%;
  }
  .t_hero_ilst-08 {
    right: 21%;
    top: 24%;
    width: 10%;
  }
  .t_hero_ilst-09 {
    left: 78%;
    top: 18%;
    width: 12%;
  }
  .t_hero_ilst-11 {
    right: 9%;
    top: 80%;
    width: 5%;
  }
  .t_hero_ilst-12 {
    right: 13%;
    top: 73%;
    width: 14%;
  }
  .t_hero_ilst-13 {
    left: 12%;
    bottom: 4%;
    width: 12%;
  }
  .t_hero_ilst-07 {
    left: 19%;
    bottom: 13%;
    width: 22%;
  }
  .t_hero_ilst-14 {
    left: 53%;
    bottom: 16%;
    width: 12%;
  }
  .t_hero_ilst-06 {
    right: 8%;
    bottom: 0%;
    width: 40%;
  }
  .t_hero_copy-1 {
    font-size: clamp(36px, 11vw, 60px);
  }
  .t_gal img {
    width: 1000px;
  }
  .t_abt_copy {
    font-size: 24px;
  }
  .t_serv_list {
    gap: 10px;
  }
  .t_serv_item {
    width: calc(50% - 10px);
  }
  .t_serv_nameBox {
    gap: 4px;
  }
  .t_serv_icon {
    width: 24px;
  }
  .t_serv_name-en {
    font-size: 12px;
  }
  .t_rec_inner {
    flex-direction: column;
  }
  .t_rec_ttlBox {
    width: 80%;
    height: auto;
    margin: -3.5em auto 0;
    padding: 1.5em;
  }
  .t_rec_txtBox {
    margin-top: 0;
  }
  .t_rec_ttl-en {
    margin-bottom: 2px;
  }
  .t_rec_copy {
    font-size: 24px;
    text-align: center;
  }
  .t_rec_btnBox {
    text-align: center;
  }
  .t_csr_inner {
    padding: 1.5em;
  }
  .t_csr_copy {
    font-size: var(--fsize-lg);
  }
  .t_csr_img {
    bottom: -35px;
  }
  .t_csr {
    margin-bottom: var(--space-xl);
  }
  .t_news_item {
    flex-direction: column;
  }
}