@charset "UTF-8";
/* -----------------------------------------
- root ( var )
----------------------------------------- */
:root {
  /* header_height */
  --header_height: 80px;
  --header_height_sp: 70px;

  /* font-family */
  --font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --noto-sans: "Noto Sans JP", sans-serif;
  --noto-sans-Kannada: "Noto Sans Kannada", sans-serif;
  --roboto: "Roboto", sans-serif;

  /* color */
  --headline: #5d6e83;
  --linkbtn: #5d6e83;
  --bluegray: #5d6e83;
  --txt: #707070;
  --blue: #3c71B9;
  --red: #c42323;
  --orange: #f2390c;
  --gray: #525252;
  --lightgray: #f2f2f2;

  /* font-weight */
  --normal: 400;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;

  /* font-size clamp w1100px */
  --clamp_18px: clamp(16px, 1.636vw, 18px);
  --clamp_20px: clamp(18px, 1.818vw, 20px);
  --clamp_24px: clamp(20px, 2.182vw, 24px);
  --clamp_28px: clamp(26px, 2.545vw, 28px);
  --clamp_32px: clamp(28px, 2.909vw, 32px);
  --clamp_34px: clamp(30px, 3.091vw, 34px);
  --clamp_48px: clamp(40px, 4.364vw, 48px);
}

/* !important
------------------------------------- */
/* color */
.color-headline {
  color: var(--headline)!important;
}
.color-txt {
  color: var(--txt)!important;
}
.color-blue {
  color: var(--blue)!important;
}
.color-bluegray {
  color: var(--bluegray)!important;
}
.color-red {
  color: var(--red)!important;
}
.color-orange {
  color: var(--orange)!important;
}
.color-gray {
  color: var(--gray)!important;
}
.color-lightgray {
  color: var(--lightgray)!important;
}
/* font-family */
.ff-noto-sans {
  font-family: var(--noto-sans)!important;
}
.ff-noto-sans-Kannada {
  font-family: var(--noto-sans-Kannada)!important;
}
/* font-weight */
.fw-regular {
  font-weight: var(--regular)!important;
}
.fw-medium {
  font-weight: var(--medium)!important;
}
.fw-semibold {
  font-weight: var(--semibold)!important;
}
.fw-bold {
  font-weight: var(--bold)!important;
}
/* bg */
.bg-gray {
  background-color: var(--gray)!important;
}

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

/* -----------------------------------------
- animation
----------------------------------------- */
.is-fadeIn {
  animation: is-fadeIn ease .5s;
}
@keyframes is-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes is-fv_curtain {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
@keyframes is-none {
  from {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  to {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

.is-fadeOut {
  animation: is-fadeOut ease .5s;
}
@keyframes is-fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.is-slideDown {
  animation: is-slideDown 0.5s forwards;
}
@keyframes is-slideDown {
  from {
    opacity: 1;
    margin-top: 0;
  }
  to {
    opacity: 0;
    margin-top: -100px;
  }
}
.is-slideUp {
  animation: is-slideUp 0.5s forwards;
}
@keyframes is-slideUp {
  from {
    opacity: 0;
    margin-top: -100px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

.is-heading_underline {
  animation: is-underline 1s none;
}
@keyframes is-underline {
  from {
    width: 0;
    transform: scale(0,1);
  }
  to {
    width: 100%;
    transform: scale(1,1);
  }
}

.is-modal_linedown {
  animation: is-modal_linedown 1s forwards;
}
@keyframes is-modal_linedown {
  from {
    height: 0;
  }
  to {
    height: 30px;
  }
}

/* -----------------------------------
- .u-fade-in
--------------------------------------*/
.u-fade-in {
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s;
  transition-delay: .25s;
}
.u-fade-in.active {
  opacity: 1;
  visibility: visible;
}
.u-fade-in+:nth-child(n+2) {
  transition-delay: .5s;
}

/* .u-fade-up
-------------------------- */
.u-fade-up {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 120px);
  transition: all 1s;
  transition-delay: .25s;
}
.u-fade-up.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.u-fade-up+:nth-child(n+2) {
  transition-delay: .5s;
}

/* --------------------------------
scrollbar
------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 1px;
}
.no_scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no_scrollbar::-webkit-scrollbar {
  display: none;
}

/* --------------------------------
  outline
------------------------------------- */
html {
  /*scroll-behavior: smooth;*/
  scroll-padding-top: var(--header_height);
}
body {
  color: var(--txt);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--regular);
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  text-align: left;
  background: #fff;
  animation: is-fadeIn ease .5s;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
}
.no-scroll {
  overflow: hidden;
}
.main {
  width: 100%;
  margin: 0 auto;
  padding-top: var(--header_height);
  overflow-x: hidden;
}
.contents {
  transition: .5s;
}
@media screen and (max-width: 980px) {
  html {
    scroll-margin-top: var(--header_height_sp);
  }
  .main {
    padding-top: var(--header_height_sp);
  }
}
/* .inner_xxx */
.inner_w1366 {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w1024 {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w660 {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  transition: .5s;
}
.inner {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  transition: .5s;
}
@media screen and (max-width: 1366px) {
  .inner_w1366 {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .inner_w1024 {
    max-width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .inner,
  .inner_w1366 {
    max-width: 100%;
  }
  .inner_w1024,
  .inner_w660 {
    max-width: 91.4666%;/*343px*/
  }
}

/* --------------------------------
.pc-only / .sp-only
------------------------------------- */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
span.pc-only {
  display: inline;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  span.pc-only {
    display: none;
  }
}

/* --------------------------------
  common---
------------------------------------- */
section {
  margin: 0 auto;
}
a {
  color: var(--txt);
  text-decoration: none;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  a {
    transition: .25s;
  }
  a:hover {
    opacity: .8;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headline);
  font-weight: var(--bold);
}
h1 {
  font-size: var(--clamp_32px);
  line-height: 1.5;
}
h2 {
  font-size: var(--clamp_32px);
  line-height: 1.5;
  font-weight: var(--bold);
}
h3 {
  font-size: var(--clamp_18px);
  line-height: 1.6666;
}
h4 {
  font-size: var(--clamp_18px);
  line-height: 1.6666;
}
ul,
ul li,
ol,
ol li {
  list-style: none;
  color: var(--txt);
  font-size: 16px;
  line-height: 1.75;
}
dt,
dd {
  color: var(--txt);
  font-size: 16px;
  line-height: 1.75;
}
dd {
  font-weight: var(--normal);
}
p {
  display: inline-block;
  color: var(--txt);
  font-weight: var(--normal);
  word-break: break-word;
}
img {
  flex-shrink: 0;
  object-fit: contain;
}
figure {}
figcaption {
  display: inline-block;
  color: var(--txt);
  font-weight: var(--normal);
  line-height: 2;
  word-break: break-word;
}
iframe {
  border: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: var(--clamp_32px);
    line-height: 1.5;
  }
  h2 {
    font-size: var(--clamp_32px);
    line-height: 1.5;
    font-weight: var(--bold);
  }
  h3 {
    font-size: var(--clamp_18px);
    line-height: 1.6666;
  }
  h4 {
    font-size: var(--clamp_18px);
    line-height: 1.6666;
  }
}

/* --------------------------------
  common--- class
------------------------------------- */
/* .sec */
.sec {
  padding: 100px 0;
}
/* .sec_inner_heading_pd */
@media screen and (max-width: 1300px) {
  .sec_inner_heading_pd .inner_w1024 {
    padding-left: 2vw;
  }
}
@media screen and (max-width: 1224px) {
  .sec_inner_heading_pd .inner_w1024 {
    padding-left: 8vw;
  }
}
@media screen and (max-width: 1024px) {
  .sec_inner_heading_pd .inner_w1024 {
    padding-left: 14vw;
  }
}
@media screen and (max-width: 767px) {
  .sec {
    padding: 40px 0;
  }
  .sec_inner_heading_pd .inner_w1024 {
    padding-left: 0;
  }
}

/* .sec_home--- */
.sec_home-heading {
  font-weight: bold;
  font-size: clamp(64px, 6.545vw, 72px);
  letter-spacing: .02em;
  color: var(--headline);
}
.sec_home-lead {
  font-weight: var(--medium);
  font-size: 28px;
  letter-spacing: .02em;
  line-height: 1.4285;
  color: var(--headline);
}
/* .heading_l_box */
.heading_l_box .sec_heading {
  margin-bottom: 40px;
  font-size: 60px;
  text-align: left;
  color: var(--headline);
}
.heading_l_box .lead {
  font-size: 18px;
  line-height: 1.7777;
  text-align: left;
  color: var(--headline);
}
@media screen and (max-width: 767px) {
  .sec_home-heading {
    font-size: clamp(34px, 10.667vw, 40px);
  }
  .sec_home-lead {
    font-weight: var(--bold);
    font-size: 18px;
    line-height: 1.7777;
  }
  /* .heading_l_box */
  .heading_l_box .sec_heading {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .heading_l_box .lead {
    font-size: 16px;
    line-height: 1.875;
    text-align: left;
    color: var(--headline);
  }
}

/* .flex */
.flex {
  display: flex;
}
.flex-clm_sb {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* .txt */
.txt_box .txt {
  display: block;
  margin-bottom: 1.5em;
}
.txt {
  font-weight: var(--regular);
  font-size: 16px;
  letter-spacing: .02em;
  line-height: 1.75;
  text-align: left;
}
.txt_small {
  font-size: 12px;
}
.txt_right {
  width: 100%;
  text-align: right;
}
.txt_center {
  width: 100%;
  text-align: center;
}
.txt_link {
  text-decoration: underline;
}
.txt_link:hover {
  text-decoration: underline;
}
.txt_indent_1em {
  padding-left: 1em;
  text-indent: -1em;
}
.caption {
  font-weight: var(--regular);
  font-size: 12px;
  line-height: 2;
}
.indent_list {
  margin-bottom: 2.25em;
  padding-left: 1em;
  text-indent: -1em;
}
.nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .txt {
    font-weight: var(--regular);
    font-size: clamp(14px, 4.267vw, 16px);
    line-height: 1.75;
    text-align: left;
  }
  .txt_link {
    text-decoration: underline;
  }
  .txt_link:hover {
    text-decoration: underline;
  }
  .caption {
    font-weight: var(--regular);
    font-size: 12px;
    line-height: 2;
  }
  .main .txt_fs14_sp {
    font-size: 14px;
    line-height: 1.8571;
  }
  .main .txt.mb_30_sp {
    margin-bottom: 30px;
  }
}

/* .c-dl_box
------------------------------------- */
.c-dl_box dl {
  display: flex;
  padding: 14.5px 0;
  border-bottom: 1px solid #d5d5d5;
}
.c-dl_box dl:first-child {
  border-top: 1px solid #d5d5d5;
}
.c-dl_box dt {
  width: 137px;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.7777;
  text-align: left;
  color: var(--headline);
}
.c-dl_box dd,
.c-dl_box .box {
  font-size: 16px;
  line-height: 1.875;
  text-align: left;
}
.c-dl_box .box {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .c-dl_box dl {
    display: flex;
    flex-direction: column;
    padding: 3.7px 0;
  }
  .c-dl_box dt {
    width: 100%;
    font-size: 18px;
    line-height: 1.7777;
  }
  .c-dl_box dd,
  .c-dl_box .box {
    font-size: 16px;
    line-height: 1.875;
  }
  .c-dl_box .box {
    margin-bottom: 1em;
  }
}

/* .link_btn
-------------------------------------- */
.link_btn {
  width: 200px;
  height: 61px;
  margin: 0 auto 20px;
  font-weight: var(--normal);
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 2;
  text-align: left;
  background: #fff;
  border-radius: 31px;
  color: var(--linkbtn);
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));
  transition: .25s;
}
.link_btn_txt {
  font-weight: var(--normal);
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 2;
  color: var(--linkbtn);
}
.link_btn a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  border-radius: 31px;
  color: var(--linkbtn);
}
.link_btn a::after {
  position: absolute;
  right: 24px;
  content: "";
  display: inline-block;
  width: 41px;
  height: 21px;
  border-radius: 10.5px;
  background-color: #c42323;
  background-image: url(../img/common/ico_btn_arrow_wh.svg);
  background-position: center left;
  background-repeat: no-repeat;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));
  transition: .25s;
}
.link_btn:hover {
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.1));
}
.link_btn a:hover {
  opacity: 1;
}
.link_btn a:hover::after {
  background-image: url(../img/common/ico_btn_arrow_wh_long.svg);
  background-position: center left;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.1));
}
/* .link_btn-blue
------------------------------------- */
.link_btn-blue {
  width: 200px;
  height: 61px;
  margin: 0 auto 20px;
  font-weight: var(--normal);
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 2;
  text-align: left;
  background: var(--blue);
  border-radius: 31px;
  color: #fff;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));
  transition: .25s;
}
.link_btn-blue .link_btn_txt {
  font-weight: var(--normal);
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 2;
  color: #fff;
}
.link_btn-blue a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  border-radius: 31px;
  color: #fff;
}
.link_btn-blue a::after {
  position: absolute;
  right: 24px;
  content: "";
  display: inline-block;
  width: 41px;
  height: 21px;
  border-radius: 10.5px;
  background-color: #fff;
  background-image: url(../img/common/ico_btn_arrow_bl.svg);
  background-position: center left;
  background-repeat: no-repeat;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));
  transition: .25s;
}
.link_btn-blue:hover {
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.1));
}
.link_btn-blue a:hover {
  opacity: 1;
}
.link_btn-blue a:hover::after {
  background-image: url(../img/common/ico_btn_arrow_bl_long.svg);
  background-position: center left;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.1));
}
@media screen and (max-width: 767px) {
  .link_btn {
    width: 186px;
    height: 49px;
  }
  .link_btn a {
    padding-left: 20px;
  }
  .link_btn a::after {
    right: 18px;
    border-radius: 31px;
    background-image: url(../img/common/ico_btn_arrow_wh.svg);
    background-position: center left;
  }
  /* .link_btn-blue
  ------------------------------------- */
  .link_btn-blue {
    width: 200px;
    height: 61px;
  }
  .link_btn-blue a {
    padding-left: 20px;
  }
  .link_btn-blue a::after {
    right: 18px;
    border-radius: 31px;
    background-image: url(../img/common/ico_btn_arrow_bl.svg);
    background-position: center left;
  }
}

/* --------------------------------
  .header
------------------------------------- */
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100vw;
  background: #fff;
}
.header::after {
  content: "";
  opacity: 0;
  animation: is-fadeIn ease-in-out forwards;
  transition: .2s;
}
.header.overlay {}
.header.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.37);
  opacity: 0;
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 96.5%;
  max-width: 1366px;
  height: 100%;
}
@media screen and (max-width: 980px) {
  .header {
    height: var(--header_height_sp);
  }
}

/* .top_heading
------------------------------------- */
.top_heading {
  position: relative;
  flex-shrink: 0;
  line-height: 1;
  transition: .25s;
}
.top_heading a {
  display: inline-block;
}
.nav_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.098vw;
}
@media screen and (max-width: 980px) {
  .top_heading {
    width: 56%;
    margin: 0 0 0 2.3%;
  }
  .nav_header_inner {
    display: block;
    padding-left: 0;
  }
}

/* .header_nav_box
------------------------------------- */
.header_nav_box {
  width: 100%;
}
/* .nav_header .nav_list_main
------------------------------------- */
.nav_header .nav_list_main {
  display: flex;
  height: 80px;
}
.nav_header .nav_list_main li {
  flex-shrink: 0;
}
.nav_header .nav_list_main a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 1vw;
}
.nav_header .nav_list_main li a::before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: var(--blue);
  transition: width ease .25s;
}
.nav_header .nav_list_main a:hover::before,
.nav_header .nav_list_main .current a::before {
  width: calc(100% - 2.196vw);
}
.nav_header .nav_list_main a:hover {
  opacity: 1;
}
@media screen and (max-width: 980px) {
  .header_nav_box {
    width: 100%;
    height: 100%;
  }
  .nav_header .nav_list_main {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 0 45px;
    height: auto;
  }
  .nav_header .nav_list_main li {
    display: flex;
    margin-bottom: 23px;
    margin-left: auto;
    font-size: 15px;
  }
  .nav_header .nav_list_main a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0;
    width: 133px;
  }
  .nav_header .nav_list_main .current a,
  .nav_header .nav_list_main a:hover {
    font-weight: var(--bold);
  }
  .nav_header .nav_list_main li a::before {
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    left: -36px;
    width: 0;
    height: 4px;
    transition: width ease .25s;
  }
  .nav_header .nav_list_main a:hover::before,
  .nav_header .nav_list_main .current a::before {
    width: 26px;
  }
}
/* .nav_list_contact
------------------------------------- */
.nav_list_contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* .item_tel_box */
.item_tel_box {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
}
.item_tel_box .txt_num {
  display: flex;
  font-family: var(--roboto);
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  color: #000;
}
.item_tel_box .txt_num::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  margin-right: 4px;
  background: url(../img/common/ico_tel_bk.svg) no-repeat;
  background-size: contain;
}
/* .item_contact_btn */
.item_contact_btn {
  width: 148px;
  height: 50px;
  margin-left: 1.6vw;
}
.item_contact_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--orange);
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 981px) {
  .nav_header {
    display: block!important;
  }
}
@media screen and (max-width: 980px) {
  .nav_header {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 275px;
    padding: 0 0 80px;
    background: var(--gray);
    z-index: 999;
  }
  .nav_header p {
    color: #fff;
  }
  .nav_list_contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
  }
  .nav_header a {
    color: #fff;
  }
  /* .item_tel_box */
  .item_tel_box {
    order: 2;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-end;
  }
  .item_tel_box .txt_num {
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
  }
  .item_tel_box .txt_num::before {
    width: 16px;
    height: 23px;
    margin-right: 4px;
    background: url(../img/common/ico_tel_wh.svg) no-repeat;
    background-size: contain;
  }
  /* .item_contact_btn */
  .item_contact_btn {
    order: 1;
    width: 204px;
    height: 36px;
    margin: 0 auto 23px;
    border-radius: 18px;
  }
  .item_contact_btn a {
    background: var(--blue);
  }
}
@media screen and (max-width: 320px) {}

/* .ham_btn_box
-------------------------- */
@media screen and (min-width: 981px) {
  .header .ham_btn_box {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .header .ham_btn_box {
    position: absolute;
    top: 17px;
    right: 19px;
    display: block;
    width: 34px;
    height: 36px;
    cursor: pointer;
    color: var(--txt);
    z-index: 9999;
  }
  .header .ham_btn_box .ham_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    margin: 0 auto;
    width: 34px;
    height: 26px;
  }
  .header .ham_btn_box .ham_btn span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--headline);
  }
  .header .ham_btn_box .ham_btn,
  .header .ham_btn_box .ham_btn span {
    transition: .3s;
  }
  .header .ham_btn_box .ham_btn.close {
    top: 20px;
    width: 40px;
  }
  .header .ham_btn_box .ham_btn.close span {
    background-color: #fff;
  }
  .header .ham_btn_box .ham_btn span:nth-of-type(1) {
    top: 0;
  }
  .header .ham_btn_box .ham_btn span:nth-of-type(2) {
    top: 12px;
  }
  .header .ham_btn_box .ham_btn span:nth-of-type(3) {
    right: 0;
    bottom: 0;
  }
  .header .ham_btn_box .ham_btn.close span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
  }
  .header .ham_btn_box .ham_btn.close span:nth-of-type(2) {
    opacity: 0;
    animation: opacity ease .5s;
  }
  .header .ham_btn_box .ham_btn.close span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }
}

/* -----------------------------------------
- .sec_home-fv
----------------------------------------- */
.sec_home-fv {
  position: relative;
  height: 688px;
  padding: 0;
  background: var(--blue);
}
/* .fv_slider */
.fv_slider .slick-slide img {
  width: calc(100% - 22.401vw);
  height: 688px;
  object-fit: cover;
  object-position: top right;
  transition: width ease-out 1s;
}
.fv_slider {
  position: relative;
}
.fv_curtain_set {}
.fv_blue {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  animation: is-fv_curtain linear .5s forwards;
  animation-delay: 3.5s;
}
.fv_catch_txt {
  position: absolute;
  top: 252px;
  z-index: 9;
  font-weight: 700;
  font-size: 33px;
  letter-spacing: .02em;
  line-height: 57px;
  text-align: left;
  color: #fff;
  transition: .5s;
  text-shadow: 0px 0px 6px rgba(31, 52, 105, 0.16);
  opacity: 0;
  animation: is-fadeIn ease .5s forwards;
  animation-delay: 1.5s;
}
.fv_txt {
  position: absolute;
  left: 0;
  bottom: -8px;
  z-index: 9;
  font-family: var(--noto-sans-Kannada);
  font-weight: 700;
  font-size: clamp(65px, 8.419vw, 115px);
  line-height: .9565;
  text-align: left;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  animation: is-fadeIn ease .5s forwards;
  animation-delay: 1.5s;
}

/* .fv_slider slick
------------------ */
.slick-slider div {
  transition: none;
}
@media screen and (max-width: 767px) {
  .sec_home-fv {
    height: calc(100svh - var(--header_height_sp));
  }
  /* .fv_slider */
  .fv_slider {}
  .fv_slider .slick-slide img {
    width: 82%;
    height: calc(100svh - var(--header_height_sp));
  }
  .fv_catch_txt {
    top: unset;
    bottom: calc(18vh + 200px);
    font-size: 23px;
    line-height: 1.7391;
  }
  .fv_txt {
    white-space: normal;
    font-size: 67px;
    letter-spacing: .02em;
  }
}

/* -----------------------------------------
- .sec_home-about
----------------------------------------- */
.sec_home-about {
  width: calc(100% - 120px);
  min-height: 711px;
  margin: 54px auto 75px;
  padding: 242px 0 80px;
  background: url(../img/top/top_overview_bg.jpg) no-repeat;
  background-size: cover;
  border-radius: 26px;
  overflow: hidden;
}
/* .sec_home-about .flex */
.sec_home-about .flex {
  display: flex;
  gap: 0 7.54vw;
  justify-content: center;
}
.sec_home-about .flex .sec_home-heading {
  flex-shrink: 0;
  padding: 10px 0 0 20px;
  font-weight: bold;
  font-size: var(--clamp_34px);
  letter-spacing: .02em;
  line-height: 1.7058;
  text-align: left;
}
.sec_home-about .flex .txt_box {
  max-width: 560px;
}
.sec_home-about .inner_w1024 {
  position: relative;
  height: 100%;
}
.sec_home-about .link_btn {
  margin: 90px 0 0 auto;
}
@media screen and (max-width: 1246px) {
  .sec_home-about .flex {
    max-width: 96%;
    margin: 0 auto;
  }
  .sec_home-about .link_btn {
    margin: 8.419vw 60px 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .sec_home-about {
    width: calc(100% - 36px);
    min-height: 739px;
    margin: 22px auto 27px;
    padding: 72px 0 130px;
    border-radius: 20px;
  }
  /* .sec_home-about .flex */
  .sec_home-about .flex {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .sec_home-about .flex .sec_home-heading {
    padding: 0 0 30px;
    font-size: 26px;
    line-height: 1.7307;
  }
  .sec_home-about .flex .txt_box {
    max-width: 100%;
  }
  .sec_home-about .inner_w1024 {
    height: 100%;
  }
  .sec_home-about .link_btn {
    margin: 0 auto 0 0;
  }
}
/* -----------------------------------------
- .sec_home-features
----------------------------------------- */
.sec_home-features {
  position: relative;
  padding: 120px 0;
  background-color: var(--blue);
  background-image: url(../img/top/logo_mark.svg);
  background-repeat: no-repeat;
  background-position: top -203px right -530px;
  background-size: auto;
  color: #fff;
}
.sec_home-features .sec_home-heading,
.sec_home-features .txt {
  color: #fff;
}
.sec_home-features .inner_w1366 {
  background-image: url(../img/top/features_heading.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto;
}
.sec_home-features .heading_box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto 30px;
}
.sec_home-features .heading_box .link_btn {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .sec_home-features {
    padding: 77px 0 68px;
    background-image: url(../img/top/logo_mark.svg);
    background-repeat: no-repeat;
    background-position: top -90px left;
    background-size: 603px auto;
  }
  .sec_home-features .inner_w1366 {
    background-image: none;
  }
  .sec_home-features .heading_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 42px;
  }
  .sec_home-features .heading_box .link_btn {
    margin: 0 0 0 auto;
  }
}

/* .sec_home-features .home-features_box
------------------------------------- */
.sec_home-features .home-features_box {
  display: flex;
  flex-wrap: wrap;
  gap: 140px 12.4%;
  padding: 90px 70px 126px;
  border-radius: 19px;
  backdrop-filter: blur(17.167600631713867px);
  background-color: rgba(0, 0, 0, 0.09);
}
.sec_home-features .home-features_box dl {
  width: calc(100% / 2 - 6.2%);
}
.sec_home-features .home-features_box dt {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.sec_home-features .home-features_box dt .txt {
  flex-shrink: 0;
  padding-right: 15px;
  color: #8fd6e6;
}
.sec_home-features .home-features_box dt::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.sec_home-features .home-features_box dd {}
.sec_home-features .home-features_box .features_heading {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: .02em;
  line-height: 1.6666;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec_home-features .home-features_box {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 42px 0;
    padding: 46px 16px 50px;
  }
  .sec_home-features .home-features_box dl {
    width: 100%;
     max-width: 480px;
     margin: 0 auto;
  }
  .sec_home-features .home-features_box dt {
    margin-bottom: 13px;
  }
  .sec_home-features .home-features_box dt .txt {
    padding-right: 10px;
    font-size: 14px;
  }
  .sec_home-features .home-features_box .features_heading {
    margin-bottom: 23px;
    font-size: 22px;
    line-height: 1.6818;
  }
  .sec_home-features .home-features_box img {
    width: 100%;
    margin: 0 auto;
  }
}

/* -----------------------------------------
- .sec_home-results
----------------------------------------- */
.sec_home-results {
  position: relative;
  padding: 134px 0 0;
}
.sec_home-results .inner_heading {
  padding: 0 0 134px;
  background-image: url(../img/top/results_heading.svg);
  background-repeat: no-repeat;
  background-position: top 20px left;
  background-size: auto;
}
.sec_home-results .heading_box {
  margin-bottom: 60px;
}
.sec_home-results .sec_home-heading {
  margin-bottom: 30px;
}
/* .sec_home-results .results_list_box
------------------------------------- */
.sec_home-results .results_list_box {
  display: flex;
  gap: 0 70px;
  margin-bottom: 20px;
  color: var(--headline);
}
.sec_home-results .results_list_box ul {
  width: calc(100% / 3);
}
.sec_home-results .results_list_box li {
  font-weight: var(--normal);
  font-size: 18px;
  line-height: 2.2222;
  text-align: left;
}
.sec_home-results .results_list_box .txt_small {
  font-size: 14px;
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .sec_home-results {
    padding: 70px 0 50px;
  }
  .sec_home-results .inner_heading {
    padding: 0;
    background-image: none;
  }
  .sec_home-results .heading_box {
    margin-bottom: 30px;
  }
  .sec_home-results .sec_home-heading {
    margin-bottom: 26px;
  }
  /* .sec_home-results .results_list_box
  ------------------------------------- */
  .sec_home-results .results_list_box {
    display: flex;
    gap: 0 70px;
    margin-bottom: 20px;
    color: var(--headline);
    flex-direction: column;
  }
  .sec_home-results .results_list_box ul {
    width: calc(100% / 3);
    width: 100%;
  }
  .sec_home-results .results_list_box li {
    font-size: 14px;
    line-height: 1.5;
  }
  .sec_home-results .results_list_box .txt_small {
    margin-top: 1em;
    font-size: 12px;
    line-height: 1.5;
  }
}

/* -----------------------------------------
- .sec_home-products
----------------------------------------- */
.sec_home-products {
  position: relative;
  padding: 134px 0;
  background: linear-gradient(#f4f9ff 0%, #dce8f4 100%);
}
.sec_home-products .inner_w1366 {
  background-image: url(../img/top/products_heading.svg);
  background-repeat: no-repeat;
  background-position: top 20px left;
  background-size: auto;
}
.sec_home-products .heading_box {
  position: relative;
  margin-bottom: 70px;
}
.sec_home-products .sec_home-heading {
  margin-bottom: 30px;
}
.sec_home-products .link_btn {
  position: absolute;
  top: 48px;
  right: 0;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .sec_home-products {
    padding: 68px 0 83px;
  }
  .sec_home-products .inner_w1366 {
    background-image: none;
  }
  .sec_home-products .heading_box {
    margin-bottom: 40px;
  }
  .sec_home-products .sec_home-heading {
    margin-bottom: 26px;
  }
  .sec_home-products .link_btn {
    position: relative;
    top: unset;
    right: unset;
    margin: 0 auto;
  }
}

/* .c-products_pickup_box --- home+products_page
------------------------------------- */
.c-products_pickup_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 24px 74px;
  background: #f4f4f4;
  border-radius: 25px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));
}
/* .c-products_pickup_box .pickup_heading */
.c-products_pickup_box .pickup_heading {
  font-size: 29px;
  font-size: clamp(23px, 2.636vw, 29px);
  letter-spacing: .02em;
  line-height: 1.5172;
  text-align: left;
  color: var(--txt);
  font-weight: var(--bold);
}
.c-products_pickup_box .pickup_heading::before {
  content: "▶︎";
  margin-right: .25em;
  color: var(--blue);
}
/* .c-products_pickup_box .pickup_date_box */
.c-products_pickup_box .pickup_date_box {
  display: flex;
  gap: 0 11px;
}
.c-products_pickup_box .pickup_date_box dl {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 272px;
  height: 105px;
  padding: 17px .5em 0;
  background: #fff;
  border-radius: 18px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));
}
.c-products_pickup_box .pickup_date_box dl dt {
  margin-bottom: 5px;
  font-weight: var(--normal);
  font-size: 20px;
  letter-spacing: .02em;
  line-height: 1.5;
  color: var(--txt);
}
.c-products_pickup_box .pickup_date_box dl dt::before {
  content: "●";
  color: #c6c6c6;
  margin-right: 5px;
}
.c-products_pickup_box .pickup_date_box dl dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 202px;
  height: 32px;
  background: #e38d77;
  border-radius: 16px;
  color: #fff;
}
.c-products_pickup_box .pickup_date_box dl dd .link_detail .txt::after {
  content: "▶︎";
  margin-left: 5px;
}
@media screen and (max-width: 900px) {
  .c-products_pickup_box {
    padding: 20px 24px 24px 24px;
    transition: .5s;
  }
  .c-products_pickup_box .pickup_date_box dl {
    max-width: 242px;
    transition: .5s;
  }
}
@media screen and (max-width: 767px) {
  .c-products_pickup_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 90.5%;
    margin: 0 auto;
    padding: 35px 0 40px;
    background: #f4f4f4;
    border-radius: 24px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));
    flex-direction: column;
  }
  /* .c-products_pickup_box .pickup_heading */
  .c-products_pickup_box .pickup_heading {
    margin: 0 auto 10px;
    font-size: 20px;
    line-height: 1.5172;
    text-align: left;
    color: var(--txt);
  }
  .c-products_pickup_box .pickup_heading::before {
    content: "▶︎";
    margin-right: .25em;
    color: var(--blue);
  }
  /* .c-products_pickup_box .pickup_date_box */
  .c-products_pickup_box .pickup_date_box {
    display: flex;
    flex-direction: column;
    gap: 18px 0;
  }
  .c-products_pickup_box .pickup_date_box dl {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 272px;
    height: 105px;
    padding: 17px .5em 0;
    background: #fff;
    border-radius: 16px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));
  }
  .c-products_pickup_box .pickup_date_box dl dt {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.5;
  }
  .c-products_pickup_box .pickup_date_box dl dt::before {
    content: "●";
    margin-right: 5px;
  }
  .c-products_pickup_box .pickup_date_box dl dd a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 202px;
    height: 32px;
    background: #e38d77;
    border-radius: 16px;
    color: #fff;
  }
  .c-products_pickup_box .pickup_date_box dl dd .link_detail .txt::after {
    content: "▶︎";
    margin-left: 5px;
  }
}

/* .c-products_date_set .products_date_box
------------------------------------- */
.c-products_date_set .products_date_box {
  display: flex;
  flex-wrap: wrap;
  gap: 46px 4.5%;
  padding: 40px 0 40px;
}
.c-products_date_set .products_date_box .products_date_list {
  position: relative;
  width: calc(100% / 3 - 3%);
  max-width: 312px;
}
.c-products_date_set .products_date_box .products_title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 194px;
  font-weight: var(--bold);
  font-size: clamp(16px, 1.727vw, 19px);
  line-height: 1.3684;
  text-align: center;
  background-color: #f4f4f4;
  color: #fff;
  transition: .25s;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  background-position: center;
}
.c-products_date_set .products_date_box .products_title:hover {
  cursor: pointer;
  opacity: .7;
}
/* .products_title each */
.products_01 .products_title {
  background: url(../img/products/products_01.jpg) no-repeat;
  background-size: cover;
}
.products_02 .products_title {
  background: url(../img/products/products_02.jpg) no-repeat;
  background-size: cover;
}
.products_03 .products_title {
  background: url(../img/products/products_03.jpg) no-repeat;
  background-size: cover;
}
.products_04 .products_title {
  background: url(../img/products/products_04.jpg) no-repeat;
  background-size: cover;
}
.products_05 .products_title {
  background: url(../img/products/products_05.jpg) no-repeat;
  background-size: cover;
}
.products_06 .products_title {
  background: url(../img/products/products_06.jpg) no-repeat;
  background-size: cover;
}
.products_07 .products_title {
  background: url(../img/products/products_07.jpg) no-repeat;
  background-size: cover;
}
.products_08 .products_title {
  background: url(../img/products/products_08.jpg) no-repeat;
  background-size: cover;
}
.products_09 .products_title {
  background: url(../img/products/products_09.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-products_date_set .products_date_box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 4%;
    max-width: 92%;
    margin: 0 auto;
    padding: 40px 0 40px;
  }
  .c-products_date_set .products_date_box .products_date_list {
    position: relative;
    width: calc(100% / 2 - 2.5%);
    max-width: 312px;
  }
  .c-products_date_set .products_date_box .products_title {
    font-size: 16px;
    line-height: 1.5;
  }
}
.c-products_date_set .products_date_box .products_title.open {
  background-blend-mode: soft-light;
  background-color: rgba(60,113,185,.45);
  position: sticky;
  z-index: 999;
}

/* .products_date
------------------------------------- */
.products_date {
  display: none;
  position: relative;
}
.products_date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 999;
  display: block;
  width: 1px;
  background: #fff;
  transform-origin: left top;
  animation: is-modal_linedown ease-in-out .5s forwards;
}
.products_date.open {}
.products_date.open .overlay {
  content: "";
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,.37);
  transition: .2s;
}
.modal-content {
  position: absolute;
  top: calc(194px + 30px);
  z-index: 99;
  background: #fff;
  width: 100%;
  max-width: 1024px;
  padding: 50px 30px 50px 50px;
  filter: drop-shadow(0px 2px 6px #777);
  opacity: 0;
  animation: is-fadeIn ease-in-out .75s forwards;
}
@media screen and (min-width: 768px) {
  .products_date_list:nth-child(3n + 1) .modal-content {
    left: 0;
  }
  .products_date_list:nth-child(3n + 2) .modal-content {
    left: 50%!important;
    transform: translate(-50%,0);
  }
  .products_date_list:nth-child(3n) .modal-content {
    left: unset!important;
    transform: translate(-69.7%,0);
  }
}
@media screen and (max-width: 767px) {
  .products_date_list:nth-child(even) .modal-content {
    left: unset!important;
    transform: translate(-52%,0);
  }
}

/* .modal-container */
.modal-container {
  width: 100%;
  max-width: 100%;
  max-height: 600px;
  margin: 0 auto;
  padding-right: 16px;
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-container::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
.modal-container::-webkit-scrollbar-track {
  background-color: #aebbcb;
  border-radius: 11px;
}
.modal-container::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 11px;
  border: 2px solid #aebbcb;
}
.modal-container.flex,
.products_item_wrap .flex {
  gap: 0 5%;
}
/* .modal-products_box */
.modal-products_box {
  position: relative;
  flex-shrink: 0;
}
.modal-products_box.underline {
  margin-bottom: 18px;
  padding-bottom: 18px;
}
.modal-products_box.underline::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: left top;
  background: #c0ccd9;
}
@media screen and (max-width: 1022px) {
  .modal-content {
    width: 100%;
    max-width: 96%;
  }
}
@media screen and (max-width: 900px) {
  .modal-container.flex,
  .products_item_wrap .flex {
    display: flex;
    flex-direction: column;
    gap: .5em 0;
  }
  .modal-products_box {
    position: relative;
    flex-shrink: 0;
    width: 98%!important;
  }
}
@media screen and (max-width: 767px) {
  .modal-content {
    max-width: 83.3%;
    max-height: 50vh;
    padding: 45px 20px 45px;
  }
  .modal-container {
    max-height: 40vh;
    margin: 0 auto;
    padding-right: 0;
  }
  .modal-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  .modal-container::-webkit-scrollbar-track {
    background-color: #aebbcb;
    border-radius: 11px;
  }
  .modal-container::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border-radius: 11px;
    border: 1px solid #aebbcb;
  }
}

/* .products_date_box .products_item_heading
------------------------------------- */
.products_date_box .products_item_heading {
  position: relative;
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-weight: var(--medium);
  font-size: 20px;
  line-height: 1.6;
  color:  var(--headline);
}
.products_date_box .products_item_box {}
.products_date_box .products_item_box .list_heading {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: var(--medium);
  font-size: 18px;
  line-height: 1.7777;
}
.products_date_box .products_item_list {
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 2;
  color: var(--headline);
}
.products_date_box .products_item_list li {
  display: flex;
  padding-right: 1em;
  font-size: 16px;
  line-height: 1.75;
}
.products_date_box .products_item_list li:before {
  flex-shrink: 0;
  content: "●";
  width: 1em;
  margin: .45em .25em;
  color: #aebbcb;
}
.products_date_box .products_item_list.column_2 {
  column-count: 2;
}
.products_date_box .products_item_list.column_3 {
  column-count: 3;
  max-width: 80vw;
}
.products_date_box .products_item_list.column_4 {
  column-count: 4;
}
@media screen and (max-width: 767px) {
  .products_date_box .products_item_heading {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 5px;
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 1.7777;
    color:  var(--headline);
  }
  .products_date_box .products_item_box {
    margin-bottom: 1em;
  }
  .products_date_box .products_item_box .list_heading {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: var(--medium);
    font-size: 16px;
    line-height: 1.7777;
  }
  .products_date_box .products_item_list {
    font-weight: var(--medium);
    font-size: 16px;
    line-height: 2;
    color: var(--headline);
  }
  .products_date_box .products_item_list li {
    display: flex;
    padding-right: 1em;
    font-size: 14px;
    line-height: 1.5;
  }
  .products_date_box .products_item_list li:before {
    flex-shrink: 0;
    content: "●";
    width: 1em;
    margin: .25em .25em;
  }
  .products_date_box .products_item_list.column_2,
  .products_date_box .products_item_list.column_3,
  .products_date_box .products_item_list.column_4 {
    column-count: 1;
  }
}

/* .products_date_box .heading_underline
------------------------------------- */

.products_date_box .heading_underline {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: left top;
  background: #c0ccd9;
}
.products_item_heading_txt {
  margin-bottom: 8px;
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {}

/* .modal-close
------------------------------------- */
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 30px;
  border-radius: 15px;
  background: #fff;
  border: 2px solid #c0ccd9;
  transition: .25s;
  cursor: pointer;
}
.modal-close .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--medium);
  font-size: 14px;
  color: var(--headline);
}
.modal-close .txt::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../img/common/ico_modal_close.svg) no-repeat;
  margin-right: 7px;
  background-position: center;
  background-size: contain;
}
.modal-close:hover {
  opacity: .7;
}
@media screen and (max-width: 767px) {
  .modal-close {
    top: 10px;
    right: 10px;
    width: 84px;
    height: 24px;
  }
  .modal-close .txt {
    font-size: 12px;
    line-height: 1;
  }
  .modal-close .txt::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(../img/common/ico_modal_close.svg) no-repeat;
    margin-right: 7px;
    background-position: center;
    background-size: contain;
  }
}

/* -----------------------------------------
- .sec_home-recruit
----------------------------------------- */
.sec_home-recruit {
  width: calc(100% - 120px);
  min-height: 711px;
  margin: 80px auto 80px;
  padding: 142px 0 80px;
  background: url(../img/top/top_recruit_bg.jpg) no-repeat;
  background-size: cover;
  background-position: top right;
  border-radius: 26px;
  overflow: hidden;
}
.sec_home-recruit .inner_w1024 {
  position: relative;
  width: 92%;
}
.sec_home-recruit .sec_home-heading {
  margin-bottom: 40px;
  font-size: 60px;
  letter-spacing: .02em;
  line-height: 1.65;
  color: #fff;
}
.sec_home-recruit .sec_home-lead {
  font-weight: var(--normal);
  font-size: 22px;
  letter-spacing: .02em;
  line-height: 2.2727;
  color: #fff;
}
.sec_home-recruit .link_btn {
  position: absolute;
  right: 0;
  bottom: -30px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1246px) {
  .sec_home-recruit .flex {
    max-width: 96%;
    margin: 0 auto;
  }
  .sec_home-recruit .link_btn {
    margin: 8.419vw 60px 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .sec_home-recruit {
    width: calc(100% - 33px);
    min-height: 544px;
    margin: 31px auto 35px;
    padding: 33px 0 20px;
    background: url(../img/top/top_recruit_bg_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
    border-radius: 20px;
  }
  .sec_home-recruit .inner_w1024 {
    width: 91%;
    min-height: 500px;
    height: 100%;
  }
  .sec_home-recruit .sec_home-heading {
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.6;
  }
  .sec_home-recruit .sec_home-lead {
    font-size: 14px;
    line-height: 2.2857;
  }
  .sec_home-recruit .link_btn {
    position: absolute;
    right: unset;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    margin: 0 auto;
  }
}

/* -----------------------------------------
- .footer
----------------------------------------- */
.footer {
  padding: 14px 0 20px;
  background: var(--lightgray);
}
.footer .ft_inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 26px 0 20px;
  }
  .footer .ft_inner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px 0;
    width: 90%;
    margin: 0 auto;
  }
}

/* .ft_company_box
------------------------------------- */
.ft_company_box {
  display: flex;
  flex-direction: column;
}
.ft_company_box .ft_logo {
  margin-bottom: 24px;
}
.ft_company_box dl {
  margin-bottom: 20px;
}
.ft_company_box dt,
.ft_company_box dd {
  font-weight: var(--normal);
  font-size: 12px;
  line-height: 1.5;
}
/* .footer .ft_nav
------------------------------------- */
.footer .ft_nav {
  display: flex;
  width: 340px;
}
.footer .ft_nav ul {
  width: 50%;
}
.footer .ft_nav li {
  font-size: 16px;
  padding: .3em 0;
  line-height: 1.5;
}
.footer .copyright {
  display: block;
  text-align: center;
}
.footer .copyright small {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .ft_company_box {
    display: flex;
    flex-direction: column;
    margin: 0 auto 14px;
    width: 100%;
    max-width: 400px;
  }
  .ft_company_box .ft_logo {
    margin-bottom: 20px;
  }
  .ft_company_box dl {
    margin-bottom: 17px;
  }
  .ft_company_box dt,
  .ft_company_box dd {
    font-weight: var(--normal);
    font-size: 12px;
    line-height: 1.5;
  }
  /* .footer .ft_nav
  ------------------------------------- */
  .footer .ft_nav {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer .ft_nav ul {
    width: 50%;
  }
  .footer .ft_nav li {
    font-size: clamp(13px, 3.733vw, 14px);
    padding: .3em 0;
    line-height: 1.5;
  }
  .footer .copyright {
    display: block;
    text-align: center;
  }
  .footer .copyright small {
    font-size: 11px;
  }
}

/* -----------------------------------------
- lower common
----------------------------------------- */
/* .breadcrumb
------------------------------------- */
.breadcrumb {
  position: relative;
  padding: 18px 20px;
  color: #fff;
}
.breadcrumb a {
  color: #fff;
}
.breadcrumb ol,
.breadcrumb li {
  display: flex;
  align-items: center;
  font-weight: var(--medium);
  font-size: 12px;
  text-align: left;
  color: #fff;
}
.breadcrumb ol li::after {
  content: ">";
  margin: 0 1em;
}
.breadcrumb ol li:last-child::after {
  display: none;
}
.breadcrumb.color-txt {
  color: var(--txt);
}
.breadcrumb.color-txt a {
  color: var(--txt);
}
.breadcrumb.color-txt ol,
.breadcrumb.color-txt li {
  color: var(--txt);
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    position: relative;
    padding: 6px 10px;
    color: #fff;
  }
  .breadcrumb a {
    color: #fff;
  }
  .breadcrumb ol,
  .breadcrumb li {
    display: flex;
    align-items: center;
    font-weight: var(--medium);
    font-size: 12px;
    text-align: left;
    color: #fff;
  }
  .breadcrumb ol li::after {
    content: ">";
    margin: 0 1em;
  }
  .breadcrumb ol li:last-child::after {
    display: none;
  }
  .breadcrumb.color-txt {
    color: var(--txt);
  }
  .breadcrumb.color-txt a {
    color: var(--txt);
  }
  .breadcrumb.color-txt ol,
  .breadcrumb.color-txt li {
    color: var(--txt);
  }
}

/* .heading_area each
------------------------------------- */
.heading_area {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: var(--blue);
  overflow: hidden;
}
.heading_area .inner_w1366 {
  position: relative;
  height: 344px;
}
.heading_area::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: calc(100% - 22vw);
  height: 100%;
  background: url(../img/features/features_heading_bg.jpg) no-repeat;
  background-size: cover;
}
.heading_area .heading_txt_en {
  position: absolute;
  left: 0;
  bottom: -45px;
  z-index: 9;
  display: block;
  max-width: 1366px;
  font-family: var(--noto-sans-Kannada);
  font-weight: var(--bold);
  font-size: 115px;
  font-size: clamp(100px, 10.455vw, 115px);
  letter-spacing: .02em;
  color: #fff;
  transition: .5s;
}
/* main_features .heading_area */
.main_features .heading_area::before {
  background: url(../img/features/features_heading_bg.jpg) no-repeat;
  background-size: cover;
}
.main_features .heading_area .heading_txt_en {
  bottom: -45px;
}
/* main_company .heading_area */
.main_company .heading_area::before {
  background: url(../img/company/company_heading_bg.jpg) no-repeat;
  background-size: cover;
}
.main_company .heading_area .heading_txt_en {
  bottom: -15px;
}
/* main_products .heading_area */
.main_products .heading_area::before {
  background: url(../img/products/products_heading_bg.jpg) no-repeat;
  background-size: cover;
}
.main_products .heading_area .heading_txt_en {
  bottom: -45px;
}
/* main_privacy .heading_area */
.main_privacy .heading_area::before {
  background: url(../img/privacy/privacy_heading_bg.jpg) no-repeat;
  background-size: cover;
}
.main_privacy .heading_area .heading_txt_en {
  bottom: -25px;
}
/* main_contact .heading_area */
.main_contact .heading_area::before {
  background: url(../img/contact/contact_heading_bg.jpg) no-repeat;
  background-size: cover;
}
.main_contact .heading_area .heading_txt_en {
  bottom: -44px;
}
/* main_page .heading_area */
.main_page .heading_area::before {
  background: url(../img/common/page_heading_bg.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .heading_area .inner_w1366 {
    height: 172px;
  }
  .heading_area::before {
    width: calc(100% - 19.2%);
  }
  .heading_area .heading_txt_en {
    left: -5px;
    bottom: -15px;
    z-index: 9;
    max-width: 100%;
    font-size: 46px;
  }
  /* main_features .heading_area */
  .main_features .heading_area::before {
    background: url(../img/features/features_heading_bg.jpg) no-repeat;
    background-size: cover;
  }
  .main_features .heading_area .heading_txt_en {
    left: -5px;
    bottom: -17px;
  }
  /* main_company .heading_area */
  .main_company .heading_area::before {
    background: url(../img/company/company_heading_bg.jpg) no-repeat;
    background-size: cover;
  }
  .main_company .heading_area .heading_txt_en {
    left: -5px;
    bottom: -15px;
  }
  /* main_products .heading_area */
  .main_products .heading_area::before {
    background: url(../img/products/products_heading_bg.jpg) no-repeat;
    background-size: cover;
  }
  .main_products .heading_area .heading_txt_en {
    left: -5px;
    bottom: -17px;
  }
  /* main_privacy .heading_area */
  .main_privacy .heading_area::before {
    background: url(../img/privacy/privacy_heading_bg.jpg) no-repeat;
    background-size: cover;
  }
  .main_privacy .heading_area .heading_txt_en {
    left: -5px;
    bottom: -15px;
  }
  /* main_contact .heading_area */
  .main_contact .heading_area::before {
    background: url(../img/contact/contact_heading_bg.jpg) no-repeat;
    background-size: cover;
  }
  .main_contact .heading_area .heading_txt_en {
    left: -5px;
    bottom: -15px;
  }
}

/* .lower_heading
------------------------------------- */
.lower_heading {
  bottom: 0;
  display: block;
  max-width: 1024px;
  margin: 0 auto;
  color: #fff;
  transition: .5s;
}
.lower_heading .heading_txt {
  display: block;
  margin: 80px 0 0 0;
  font-weight: var(--bold);
  font-size: 32px;
}
@media screen and (max-width: 1064px) {
  .lower_heading {
    max-width: 98%;
  }
}
@media screen and (max-width: 767px) {
  .lower_heading {
    max-width: 91%;
  }
  .lower_heading .heading_txt {
    margin: 47px auto;
    font-size: 20px;
  }
}

/* -----------------------------------------
- .features
----------------------------------------- */
.sec_features {
  padding: 60px 0 80px;
  background: var(--lightgray);
}
.sec_features .lead_box {
  padding: 40px 0 6px;
}
.sec_features .lead_box .sec_heading {
  margin-bottom: 10px;
  font-weight: var(--bold);
  font-size: 60px;
  color: var(--headline);
}
.sec_features .lead_box .lead {
  font-weight: var(--medium);
  font-size: 18px;
  line-height: 1.7777;
  color: var(--headline);
}
@media screen and (max-width: 767px) {
  .sec_features {
    padding: 43px 0 80px;
  }
  .sec_features .lead_box {
    width: 91%;
    margin: 0 auto;
    padding: 0;
  }
  .sec_features .lead_box .sec_heading {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .sec_features .lead_box .lead {
    font-size: 16px;
    line-height: 1.875;
  }
}

/* .features_box_wrap
------------------------------------- */
.features_box_wrap {}
.features_box {
  position: relative;
  margin: 60px auto;
}
.features_box::after {
  position: absolute;
  top: 0;
  right: 40vw;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}
.features_inner {
  max-width: 1366px;
  margin: 0 auto;
}
.features_inner >* {
  position: relative;
  z-index: 1;
}
.features_inner::before {
  position: absolute;
  top: 0;
  left: 10vw;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lightgray);
}
.features_box:nth-child(even)::after {
  position: absolute;
  top: 0;
  left: 40vw;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}
.features_inner:nth-child(even)::before {
  position: absolute;
  top: 0;
  right: 10vw;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lightgray);
}
@media screen and (max-width: 767px) {
  .features_box_wrap {}
  .features_box {
    position: relative;
    margin: 97px auto 0;
  }
  .features_box::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
  }
  .features_inner {
    max-width: 1366px;
    margin: 0 auto;
  }
  .features_inner >* {
    position: relative;
    z-index: 1;
  }
  .features_inner::before {
    position: relative;
    top: 0;
    left: 0;
  }
  .features_box:nth-child(even)::after {
    position: relative;
    top: 0;
    left: 0;
  }
  .features_inner:nth-child(even)::before {
    position: relative;
    top: 0;
    right: 0;
  }
}

/* .features_box .figure_wrap */
.features_box .figure_wrap {
  width: calc(100% - 60px);
  padding: 78px 0 87px;
  background: #fff;
  overflow-x: hidden;
}
.features_box:nth-child(even) .figure_wrap {
  margin-left: auto;
}
.features_box .figure {
  display: flex;
  align-items: flex-start;
  gap: 0 40px;
  width: 100%;
  margin: 0 auto;
}
.features_box .figure img {
  object-fit: contain;
  flex-shrink: unset;
  width: 56%;
  max-width: 624px;
}
.features_box:nth-child(odd) .figure {
  padding-left: 171px;
}
.features_box:nth-child(even) .figure {
  padding-right: 171px;
}
.features_box:nth-child(even) .figcaption {
  order: 2;
}
@media screen and (max-width: 1366px) {
  .features_box .figure_wrap {
    margin: 0 auto 0 0;
  }
  .features_box:nth-child(even) .figure_wrap {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .features_box .figure_wrap {
    width: calc(100% - 16px);
    padding: 28px 0 50px;
  }
  .features_box:nth-child(even) .figure_wrap {
    margin-left: auto;
  }
  .features_box .figure {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px 0;
    width: 100%;
    margin: 0 auto;
  }
  .features_box .figure img {
    order: 3;
    width: 100%;
    max-width: 624px;
  }
  .features_box:nth-child(odd) .figure {
    padding-left: 32px;
  }
  .features_box:nth-child(even) .figure {
    padding-right: 32px;
  }
  .features_box:nth-child(even) .figcaption {
    order: 1;
    margin: 0 0 0 16px;
  }
  .features_box:nth-child(even) .features_02b {
    width: 226px;
    margin: 11px 0 0 16px;
  }
}

/* .features_box .figcaption */
.features_box .figcaption {
  width: 40.5%;
  max-width: 484px;
}
.features_box .figcaption .txt {
  margin-bottom: 3em;
}
/* .features_box_heading */
.features_box .figcaption .features_box_heading {
  margin: 107px 0 80px;
  font-weight: var(--bold);
  font-size: 35px;
  letter-spacing: .02em;
  line-height: 1.4571;
  text-align: left;
  color: #222;
}
@media screen and (max-width: 767px) {
  .features_box .figcaption {
    width: 80%;
    max-width: 484px;
    margin: 0 4% 0 auto;
  }
  .features_box .figcaption .txt {
    margin-bottom: 1em;
  }
  /* .features_box_heading */
  .features_box .figcaption .features_box_heading {
    margin: 25px 0 20px;
    font-size: clamp(17px, 5.333vw, 20px);
    line-height: 1.7;
  }
}

/* .features_box .features_num */
.features_box .features_num {
  position: absolute;
  top: 40px;
  left: 33px;
  z-index: -1;
  content: "";
  display: block;
  width: 113px;
  height: 206px;
  background: url(../img/features/features_num_01.svg) no-repeat;
  background-size: contain;
}
.features_box:nth-child(even) .features_num {
  left: unset;
}
.features_box_01 .features_num {
  top: 40px;
  left: 33px;
  width: 113px;
  height: 206px;
  background: url(../img/features/features_num_01.svg) no-repeat;
  background-size: contain;
}
.features_box_02 .features_num {
  top: 102px;
  right: 12px;
  width: 126px;
  height: 208px;
  background: url(../img/features/features_num_02.svg) no-repeat;
  background-size: contain;
}
.features_box_03 .features_num {
  top: 40px;
  left: 33px;
  width: 129px;
  height: 210px;
  background: url(../img/features/features_num_03.svg) no-repeat;
  background-size: contain;
}
.features_box_04 .features_num {
  top: 97px;
  right: 4px;
  width: 139px;
  height: 206px;
  background: url(../img/features/features_num_04.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .features_box .features_num {
    position: absolute;
    top: 10px;
    left: 10px;
    content: "";
    display: block;
    width: 39px;
    height: 97px;
    background: url(../img/features/features_num_01.svg) no-repeat;
    background-size: contain;
  }
  .features_box:nth-child(even) .features_num {
    left: unset;
  }
  .features_box_01 .features_num {
    top: 18px;
    left: 6px;
    width: 58px;
    height: 97px;
    background: url(../img/features/features_num_01.svg) no-repeat;
    background-size: contain;
  }
  .features_box_02 .features_num {
    top: 25px;
    right: 22px;
    width: 58px;
    height: 97px;
    background: url(../img/features/features_num_02.svg) no-repeat;
    background-size: contain;
  }
  .features_box_03 .features_num {
    top: 20px;
    left: 5px;
    width: 60px;
    height: 97px;
    background: url(../img/features/features_num_03.svg) no-repeat;
    background-size: contain;
  }
  .features_box_04 .features_num {
    top: 23px;
    right: 18px;
    width: 66px;
    height: 97px;
    background: url(../img/features/features_num_04.svg) no-repeat;
    background-size: contain;
  }
}

/* .features_box_xx each
------------------------------------- */
/* .features_box_01 */
.features_box_01 {}
.features_box_01 .figure img {
  margin-left: auto;
}
/* .features_box_02 */
.features_box_02 {}
.features_box_02 .figure_wrap {
  padding: 144px 0 87px;
}
.features_box_02 .figcaption .features_box_heading {
  margin: 14px 0 80px;
}
.features_box_02 img.features_02b {
  width: 100%;
}
/* .features_box_03 */
.features_box_03 {}
.features_box_03 .figure img.features_03a {max-width: 456px;margin: 50px 111px 0 auto;}
.features_box_03 .figure {
  margin-bottom: 100px;
}
.features_box_03 .img_box img {
  display: block;
  width: calc(100% - 171px);
  margin-left: auto;
}
/* .features_box_04 */
.features_box_04 {}
.features_box_04 .figcaption .features_box_heading {
  margin: 74px 0 80px;
}
@media screen and (max-width: 767px) {
  .features_box_01 {}
  .features_box_01 .figure img {
    margin-left: auto;
  }
  /* .features_box_02 */
  .features_box_02 {
    margin: 22px auto 0;
  }
  .features_box_02 .figure_wrap {
    padding: 38px 0 47px;
  }
  .features_box_02 .figcaption .features_box_heading {
    margin: 14px 0 20px;
  }
  .features_box_02 img.features_02b {
    width: 100%;
  }
  /* .features_box_03 */
  .features_box_03 {
    margin: 24px auto 0;
  }
  .features_box_03 .figure_wrap {
    padding: 28px 0 50px;
  }
  .features_box_03 .figure img.features_03a {
    width: 79.5%;
    max-width: 456px;
    margin: -16px 16px 10px auto;
  }
  .features_box_03 .figure {
    margin-bottom: 22px;
  }
  .features_box_03 .img_box img {
    width: calc(100% - 32px);
    height: 311px;
    object-fit: cover;
    object-position: left;
    margin-left: auto;
  }
  /* .features_box_04 */
  .features_box_04 {
    margin: 24px auto 0;
  }
  .features_box_04 .figcaption .features_box_heading {
    margin: 23px 0 20px;
  }
}

/* .sec_features_flow
------------------------------------- */
.sec_features_flow {
  padding: 80px 0;
  background: var(--blue);
}
.sec_features_flow .inner {
  max-width: 1186px;
  padding: 87px 0 73px;
  border-radius: 26px;
  background: #fff;
}
@media screen and (max-width: 1226px) {
  .sec_features_flow .inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .sec_features_flow {
    padding: 70px 0;
  }
  .sec_features_flow .inner {
    max-width: 92%;
    padding: 65px 0 20px;
    border-radius: 20px;
  }
}

/* .sec_features_flow .heading_l_box
------------------------------------- */
.sec_features_flow .heading_l_box {
  max-width: 913px;
  margin: 0 auto 94px;
}
.sec_features_flow .heading_l_box .sec_heading {
  margin: 0 auto 25px;
  font-size: 60px;
  text-align: center;
  color: var(--blue);
}
.sec_features_flow .heading_l_box .lead {
  display: block;
  max-width: 838px;
  margin: 0 auto;
  font-weight: var(--normal);
  font-size: 18px;
  line-height: 1.7777;
  text-align: left;
  color: var(--txt);
}
@media screen and (max-width: 1100px) {
  .sec_features_flow .heading_l_box {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .sec_features_flow .heading_l_box {
    max-width: 100%;
    margin: 0 auto 57px;
  }
  .sec_features_flow .heading_l_box .sec_heading {
    margin: 0 auto 21px;
    font-size: clamp(28px, 8vw, 30px);
  }
  .sec_features_flow .heading_l_box .lead {
    max-width: 90%;
    margin: 0 auto;
    font-size: clamp(16px, 4.8vw, 18px);
    line-height: 1.7777;
  }
}

/* .features_flow_box
------------------------------------- */
.features_flow_box {
  max-width: 913px;
  margin: 0 auto;
}
.features_flow_box .figure {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 0 0 96px;
}
.features_flow_box .figure::before {
  position: absolute;
  top: 5px;
  left: 30px;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--blue);
}
.features_flow_box li:last-child .figure::before {
  display: none;
}
.features_flow_box .figure img {
  margin-top: 20px;
}
.features_flow_box .figcaption {
  padding-left: 86px;
}
@media screen and (max-width: 767px) {
  .features_flow_box {
    max-width: 913px;
    margin: 0 auto;
  }
  .features_flow_box .figure {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 52px;
  }
  .features_flow_box .figure::before {
    position: absolute;
    top: 5px;
    left: 22.5px;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: var(--blue);
  }
  .features_flow_box li:last-child .figure::before {
    display: none;
  }
  .features_flow_box .figure img {
    width: 100%;
    margin-top: 0;
    padding-left: 62px;
  }
  .features_flow_box .figcaption {
    padding-left: 62px;
  }
}

.flow_heading {
  margin: 10px 0 20px;
  font-size: 28px;
  text-align: left;
  color: var(--blue);
}
.flow_heading .num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 50%;
  font-weight: bold;
  font-size: 32px;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .features_flow_box {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .features_flow_box {
    max-width: 90%;
  }
  .flow_heading {
    margin: 7px 0 18px;
    font-size: 20px;
  }
  .flow_heading .num {
    width: 45px;
    height: 45px;
    font-size: 23px;
  }
}

/* -----------------------------------------
- .company
----------------------------------------- */
/* sec_company_greeting
------------------------------------- */
.sec_company_greeting {
  padding: 135px 0;
}
.company_greeting {
  background: url(../img/company/company_greeting.jpg) no-repeat;
  background-size: 343px auto;
}
.company_greeting .txt_box {
  position: relative;
  margin-left: auto;
  max-width: 686px;
  padding-right: 92px;
  padding-right: 8.5%;
}
.company_greeting .txt_box .txt {
  margin-bottom: 2em;
  line-height: 1.875;
}
.company_greeting .heading_l_box {
  margin-bottom: 40px;
}
.company_greeting .sec_heading {
  margin-bottom: 30px;
  font-size: 60px;
  color: var(--headline);
}
.company_greeting .lead {
  font-weight: bold;
  font-size: 28px;
  line-height: 1.7142;
  color: var(--headline);
}
.company_greeting .company_sign {
  display: block;
  margin-left: auto;
  padding: 20px 0 0 0;
  width: 235px;
  text-align: left;
}
.company_greeting .company_sign .txt {
  margin-bottom: 0;
  margin-left: 14px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .sec_company_greeting {
    padding: 45px 0 86px;
  }
  .company_greeting {
    background: url(../img/company/company_greeting.jpg) no-repeat;
    background-size: 117px auto;
  }
  .company_greeting .txt_box {
    position: relative;
    margin-left: auto;
    max-width: 100%;
    padding-right: 0;
  }
  .company_greeting .txt_box .txt {
    width: 90%;
    margin: 0 auto 2em;
    line-height: 1.875;
  }
  .company_greeting .heading_l_box {
    margin-bottom: 90px;
    padding-top: 58px;
    margin-left: 132px;
  }
  .company_greeting .sec_heading {
    margin-bottom: 22px;
    font-size: 30px;
  }
  .company_greeting .lead {
    font-size: 18px;
    line-height: 1.7142;
  }
  .company_greeting .company_sign {
    margin: 0;
    padding: 14px 0 0 0;
    width: 156px;
  }
  .company_greeting .company_sign .txt {
    margin-bottom: 0;
    margin-left: 10px;
    font-size: 17px;
  }
}

/* .sec_company_overview
------------------------------------- */
.sec_company_overview {
  min-height: 1329px;
  padding: 96px 0 96px;
  background: url(../img/company/company_overview_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.sec_company_overview .sec_heading {
  margin-bottom: 40px;
  font-size: 60px;
  text-align: left;
  color: var(--headline);
}
.company_overview {
  width: calc(100% - 120px);
  max-width: 1193px;
  margin: 0 auto;
  background: rgba(255,255,255,.88);
  border-radius: 26px;
}
.company_overview .inner_w1024 {
  padding: 80px 0 40px;
}
@media screen and (max-width: 767px) {
  .sec_company_overview {
    min-height: auto;
    padding: 46px 0 46px;
  }
  .sec_company_overview .sec_heading {
    margin-bottom: 13px;
    font-size: 30px;
  }
  .company_overview {
    width: calc(100% - 32px);
    max-width: 100%;
    background: rgba(255,255,255,.88);
    border-radius: 20px;
  }
  .company_overview .inner_w1024 {
    padding: 60px 0 30px;
  }
}

/* .company_overview_box
------------------------------------- */
.company_overview_box {
  margin: 0 auto 30px;
}
/* .sec_company_diagram
------------------------------------- */
.sec_company_diagram {
  position: relative;
  padding: 85px 0;
}
.company_diagram {
  max-width: 1366px;
  margin: 0 auto;
}
.company_diagram .inner {
  width: calc(100% - 175px);
  max-width: 100%;
  margin: 0 auto;
  background: #f2f7fa;
  border-radius: 26px;
}
.company_diagram .figure {
  display: flex;
  justify-content: space-between;
  padding: 90px 85px;
}
.company_diagram .heading_l_box {
  position: absolute;
}
.company_diagram .heading_l_box .sec_heading {
  margin-bottom: 0;
  font-size: 60px;
  text-align: left;
  color: var(--headline);
}
.company_diagram .heading_l_box .lead {
  font-size: 18px;
  line-height: 1.7777;
  text-align: left;
  color: var(--headline);
}
.company_diagram img {
  margin: 28px 0 0 auto;
  width: 100%;
  max-width: 747px;
  transition: .5s;
}
@media screen and (max-width: 1024px) {
  .company_diagram img {
    margin: 148px 0 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .company_overview_box {
    margin: 0 auto 30px;
  }
  /* .sec_company_diagram
  ------------------------------------- */
  .sec_company_diagram {
    padding: 25px 0;
  }
  .company_diagram {
    max-width: 100%;
    margin: 0 auto;
  }
  .company_diagram .inner {
    width: calc(100% - 32px);
    max-width: 100%;
    border-radius: 20px;
    padding: 0 16px;
  }
  .company_diagram .figure {
    display: flex;
    flex-direction: column;
    padding: 45px 0;
  }
  .company_diagram .heading_l_box {
    position: relative;
    margin-bottom: 25px;
  }
  .company_diagram .heading_l_box .sec_heading {
    margin-bottom: 15px;
    font-size: 30px;
  }
  .company_diagram .heading_l_box .lead {
    font-size: 16px;
    line-height: 1.875;
  }
  .company_diagram img {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 20px auto;
  }
}

/* .sec_company_history
------------------------------------- */
.sec_company_history {
  padding: 0;
  background: linear-gradient(#f4f9ff 0%, #dce8f4 100%);
}
.sec_company_history .inner_heading {
  padding: 122px 60px 138px;
  background-image: url(../img/company/history_heading.svg);
  background-repeat: no-repeat;
  background-position: top 20px left;
  background-size: auto;
}
.sec_company_history .sec_heading {
  margin-bottom: 32px;
  font-size: 60px;
  color: var(--headline);
}
@media screen and (max-width: 767px) {
  .sec_company_history {
    padding: 0;
  }
  .sec_company_history .inner_heading {
    padding: 60px 0 60px;
    background-image: none;
  }
  .sec_company_history .inner_w1024 {
    max-width: 83%;
  }
  .sec_company_history .sec_heading {
    margin-bottom: 32px;
    font-size: 30px;
    color: var(--headline);
  }
  .company_history_box dt {
    color: var(--blue);
  }
}

/* .sec_company_access
------------------------------------- */
.sec_company_access {
  padding: 0;
  background: linear-gradient(#f4f9ff 0%, #dce8f4 100%);
}
.sec_company_access .inner_heading {
  padding: 132px 60px 10px;
  background-image: url(../img/company/access_heading.svg);
  background-repeat: no-repeat;
  background-position: top 100px left;
  background-size: auto;
}
.sec_company_access .sec_heading {
  margin-bottom: 20px;
  font-size: 60px;
  color: var(--headline);
}
/* .company_access_box */
.company_access_box .company_access {
  margin-bottom: 10px;
  padding: 35px 0 65px;
  border-bottom: 1px solid #d5d5d5;
}
.company_access_box .company_access:last-child {
  border-bottom: 0;
}
.company_access_box .figure {
  display: flex;
  gap: 0 29px;
  margin: 0 auto 34px;
}
.company_access_box .figure img {
  flex-shrink: 0;
}
.company_access_box .figcaption {
  padding-top: 20px;
}
.company_access_box .access_heading {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .sec_company_access {
    padding: 0;
  }
  .sec_company_access .inner_heading {
    padding: 45px 0 20px;
    background-image: none;
  }
  .sec_company_access .sec_heading {
    margin-bottom: 0;
    font-size: 30px;
  }
  /* .company_access_box */
  .company_access .inner_w1024 {
    max-width: 83%;
  }
  .company_access_box .company_access {
    margin-bottom: 10px;
    padding: 25px 0 30px;
    border-bottom: 1px solid #d5d5d5;
  }
  .company_access_box .company_access:last-child {
    border-bottom: 0;
  }
  .company_access_box .figure {
    display: flex;
    gap: 0;
    margin: 0 auto 34px;
    flex-direction: column;
  }
  .company_access_box .figure img {
    flex-shrink: 0;
    width: 64.5%;
    max-width: 300px;
  }
  .company_access_box .figcaption {
    padding-top: 20px;
  }
  .company_access_box .access_heading {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .company_access_box .map iframe {
    width: 100%;
    height: 218px;
  }
}

/* .sec_company_factory
------------------------------------- */
.sec_company_factory {
  padding: 0;
  background: #f3f8fa;
}
.sec_company_factory .inner_heading {
  padding: 95px 0 100px;
  background-image: url(../img/company/factory_heading.svg);
  background-repeat: no-repeat;
  background-position: top 110px left 10px;
  background-size: auto;
}
.sec_company_factory .heading_l_box {
  margin-bottom: 60px;
}
.sec_company_factory .heading_l_box .sec_heading {
  display: block;
  margin-bottom: 35px;
  font-size: 50px;
  text-align: left;
  font-weight: var(--bold);
  color: var(--headline);
}
.sec_company_factory .heading_l_box .lead {
  font-size: 18px;
  line-height: 1.7777;
  text-align: left;
  color: var(--headline);
}
/* .company_factory */
.company_factory .inner_w1024 {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .sec_company_factory {
    padding: 0;
  }
  .sec_company_factory .inner_heading {
    padding: 65px 0 70px;
    background-image: none;
  }
  .sec_company_factory .heading_l_box {
    margin-bottom: 30px;
  }
  .sec_company_factory .heading_l_box .sec_heading {
    margin-bottom: 35px;
    font-size: 30px;
  }
  .sec_company_factory .heading_l_box .lead {
    font-size: 16px;
    line-height: 1.875;
  }
  /* .company_factory */
  .company_factory .inner_w1024 {
    max-width: 100%;
    padding: 0 32px;
  }
}

/* slider .factory_slider
------------------------------------- */
/* .factory_photo*/
.factory_slider .factory_photo {}
/* .factory_photo-thumb */
.factory_photo-thumb {
  padding-bottom: 15px;
}
.factory_photo-thumb .slick-track {
  transform: unset!important;
  height: 79px;
}
.factory_photo-thumb .thumbnail_img {
  width: calc(100% / 6 - 1.7%)!important;
  margin-right: 2%;
}
.factory_photo-thumb .thumbnail_img img {
  height: 70px;
  object-fit: cover;
}
.factory_photo-thumb .thumbnail_img:last-child {
  margin-right: 0;
}
.factory_photo-thumb .slick-current {
  position: relative;
}
.factory_photo-thumb .slick-current::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: var(--blue);
}
/* .factory_slider .slider-arrow */
.factory_slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  left: -40px;
  z-index: 9;
  display: block;
  width: 16px;
  height: 29px;
  background: url(../img/common/ico_slider_left.svg) no-repeat;
  background-size: contain;
}
.factory_slider .slider-arrow.next {
  left: unset;
  right: -40px;
  background: url(../img/common/ico_slider_right.svg) no-repeat;
  background-size: contain;
}
.factory_slider .slider-arrow:hover {
  cursor: pointer;
  opacity: .7;
}
@media screen and (max-width: 767px) {
  .factory_slider {
    width: 311px;
    margin: 0 auto;
  }
  .factory_slider .factory_photo img {
    max-width: 311px;
  }
  /* .factory_photo-thumb */
  .factory_photo-thumb {
    padding-bottom: 10px;
  }
  .factory_photo-thumb .slick-track {
    transform: unset!important;
    height: 58px;
  }
  .factory_photo-thumb .thumbnail_img {
    width: 96px!important;
    margin-right: 11px;
  }
  .factory_photo-thumb .thumbnail_img img {
    width: 100%;
    height: 47px;
    object-fit: cover;
  }
  .factory_photo-thumb .thumbnail_img:last-child {
    margin-right: 0;
  }
  .factory_photo-thumb .thumbnail_img:nth-child(3n) {
    margin-right: 0;
  }
  .factory_photo-thumb .slick-current {
    position: relative;
  }
  .factory_photo-thumb .slick-current::after {
    bottom: 7px;
    height: 2px;
  }
  /* .factory_slider .slider-arrow */
  .factory_slider .slider-arrow {
    left: -16px;
    width: 8px;
    height: 16px;
  }
  .factory_slider .slider-arrow.next {
    right: -16px;
  }
}
@media screen and (max-width: 320px) {
  .factory_slider {
    width: 240px;
  }
  .factory_slider .factory_photo img {
    max-width: 240px;
  }
  /* .factory_photo-thumb */
  .factory_photo-thumb {
    padding-bottom: 0;
  }
  .factory_photo-thumb .slick-track {
    height: 58px;
  }
  .factory_photo-thumb .thumbnail_img {
    width: calc(100% / 3 - 3.3333px)!important;
    margin-right: 5px;
  }
  .factory_photo-thumb .thumbnail_img img {
    height: 47px;
  }
  .factory_photo-thumb .slick-current::after {
    bottom: 7px;
  }
}
/* -----------------------------------------
- .recruit
----------------------------------------- */
.sec-recruit-heading {
  width: calc(100% - 120px);
  max-width: 1366px;
  min-height: 711px;
  margin: 5px auto 20px;
  padding: 80px 0 85px;
  background: url(../img/recruit/recruit_heading_bg.jpg) no-repeat;
  background-size: cover;
  background-position: top right;
  border-radius: 26px;
  color: #fff;
  transition: .5s;
}
.sec-recruit-heading .top_heading-recruit_01 {
  color: #fff;
  margin-bottom: 70px;
}
.top_heading-recruit_01 .heading_txt {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 23px;
  font-weight: var(--bold);
}
.top_heading-recruit_01 .heading_txt_en {
  display: block;
  color: #fff;
  font-size: 115px;
  letter-spacing: .02em;
  font-weight: var(--bold);
}
.sec-recruit-heading .top_heading-recruit_02 {
  display: block;
  font-size: 53px;
  letter-spacing: .02em;
  line-height: 1.4339;
  color: #fff;
}
@media screen and (max-width: 1225px) {
  .sec-recruit-heading {
    background: url(../img/recruit/recruit_bg_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
  }
  .sec-recruit-heading .inner_w1024 {
    max-width: 91%;
  }
}
@media screen and (max-width: 767px) {
  .sec-recruit-heading {
    width: calc(100% - 32px);
    max-width: 100%;
    min-height: 711px;
    margin: 0 auto 20px;
    padding: 50px 0 45px;
    background: url(../img/recruit/recruit_bg_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
    border-radius: 20px;
  }
  .sec-recruit-heading .top_heading-recruit_01 {
    margin-bottom: 35px;
  }
  .top_heading-recruit_01 .heading_txt {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .top_heading-recruit_01 .heading_txt_en {
    margin-bottom: 10px;
    font-size: 60px;
  }
  .sec-recruit-heading .top_heading-recruit_02 {
    font-size: 37px;
    line-height: 1.4594;
  }
}

/* .sec_recruit_message
------------------------------------- */
.sec_recruit_message {}
.recruit_message {
  padding: 40px 0 40px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.recruit_message .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 20px;
}
.recruit_message .message_heading {
  flex-shrink: 0;
  font-size: 30px;
  line-height: 1.6666;
}
.recruit_message .message_lead {
  max-width: 573px;
  font-weight: var(--normal);
  font-size: 18px;
  line-height: 1.7777;
  color: var(--headline);
}
@media screen and (max-width: 767px) {
  .sec_recruit_message {}
  .recruit_message {
    max-width: 91%;
    margin: 0 auto;
    padding: 32px 0 32px;
  }
  .recruit_message .flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px 0;
  }
  .recruit_message .message_heading {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.7;
  }
  .recruit_message .message_lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.75;
  }
}

/* .sec_recruit_voice
------------------------------------- */
.sec_recruit_voice {
  padding: 210px 0 80px;
}
/* .recruit_voice
------------------------------------- */
.recruit_voice {
  position: relative;
  transition: .5s;
}
.recruit_voice:nth-child(odd)::before {
  position: absolute;
  right: -50%;
  top: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: var(--lightgray);
}
.recruit_voice .inner {
  position: relative;
  max-width: 1225px;
  margin: 0 auto 230px;
  padding-left: 92px;
  padding-left: 8.5%;
  padding-bottom: 20px;
  background: var(--lightgray);
  border-radius: 0 0 0 26px;
}
.recruit_voice:last-child .inner {
  margin: 0 auto 60px;
}
/* .num_heading */
.recruit_voice .num_heading {
  position: absolute;
  top: -87px;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 92px;
  height: 87px;
  padding-top: 8px;
  border-radius: 26px 26px 0 0px;
  background: #9a9a9a;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  color: #fff;
}
.recruit_voice .num_heading .num {
  font-weight: bold;
  font-size: 47px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1225px) {
  .recruit_voice:nth-child(odd) {
    padding-left: 16px;
  }
  .recruit_voice:nth-child(even) {
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .sec_recruit_voice {
    padding: 77px 0 70px 16px;
  }
  .recruit_voice:nth-child(odd) {
    padding-left: 0;
  }
  .recruit_voice:nth-child(even) {
    padding-right: 0;
  }
  .recruit_voice:nth-child(odd)::before {
    position: absolute;
    right: 0;
    width: calc(100% - 32px);
  }
  .recruit_voice .inner {
    max-width: calc(100% - 16px);
    margin: 0 auto 115px 0;
    padding-left: 16px;
    padding-bottom: 45px;
    border-radius: 0 0 0 26px;
  }
  .recruit_voice:last-child .inner {
    margin: 0 auto 0 0;
  }
  /* .num_heading */
  .recruit_voice .num_heading {
    top: -71px;
    width: 75px;
    height: 71px;
    padding-top: 8px;
    border-radius: 20px 20px 0 0px;
    font-size: 11px;
  }
  .recruit_voice .num_heading .num {
    font-size: 38px;
  }
}

/* .profile_01 */
.recruit_voice .profile_01 {
  display: flex;
  justify-content: space-between;
  gap: 0 4.5%;
  margin: 0 auto 155px;
}
.recruit_voice .profile_01 .profile_txt {
  width: 50.5%;
  padding-top: 75px;
}
.recruit_voice .profile_01 .profile_img {
  width: 53.5%;
  max-width: 558px;
  margin-top: -87px;
}

/* .dept_box */
.recruit_voice .dept_box {
  margin-bottom: 26px;
}
.recruit_voice .dept_box .dept {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 34px;
  margin-bottom: 16px;
  background: var(--blue);
  color: #fff;
}
.recruit_voice .dept_box p {
  font-size: 16px;
}
.recruit_voice .dept_box .dept {
  color: #fff;
}

/* .profile_heading */
.recruit_voice .profile_heading {
  margin-bottom: 36px;
  font-weight: var(--bold);
  font-size: clamp(25px, 3.182vw, 35px);
  line-height: 1.5428;
  text-align: left;
  color: var(--txt);
  white-space: nowrap;
}

/* .profile_voice */
.profile_voice .title {
  margin-bottom: 22px;
  font-weight: var(--bold);
  font-size: clamp(20px, 2.182vw, 24px);
  line-height: 1.6666;
  text-align: left;
  color: var(--txt);
}
.profile_voice .txt {
  line-height: 2;
}

/* .profile_02 */
.recruit_voice .profile_02 {
  margin: 0 auto 60px;
  padding-right: 100px;
  padding-right: 5.9%;
}
.recruit_voice .profile_02 .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 50px;
}
.recruit_voice .profile_02 .flex img {
  width: 50%;
  max-width: 402px;
}
.recruit_voice .profile_02 .profile_voice {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .recruit_voice .profile_01 {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 0;
    margin: 0 auto 45px;
  }
  .recruit_voice .profile_01 .profile_txt {
    width: calc(100% - 16px);
    padding-top: 45px;
  }
  .recruit_voice .profile_01 .profile_img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 30px 0;
  }
  /* .dept_box */
  .recruit_voice .dept_box {
    margin-bottom: 20px;
  }
  .recruit_voice .dept_box .dept {
    width: 148px;
    height: 29px;
    margin-bottom: 16px;
  }
  .recruit_voice .dept_box p {
    font-size: 14px;
  }
  /* .profile_heading */
  .recruit_voice .profile_heading {
    margin-bottom: 36px;
    font-size: 22px;
    line-height: 1.7727;
  }
  /* .profile_voice */
  .profile_voice .title {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.75;
  }
  /* .profile_02 */
  .recruit_voice .profile_02 {
    width: calc(100% - 16px);
    margin: 0 0 20px;
    padding-right: 0;
  }
  .recruit_voice .profile_02 .flex {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
  }
  .recruit_voice .profile_02 .flex img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 34px;
  }
  .recruit_voice .profile_02 .profile_voice {
    margin-top: 0;
  }
}

/* .recruit_voice:nth-child(even)
------------------------------------- */
.recruit_voice:nth-child(even)::before {
  position: absolute;
  left: -50%;
  top: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #e2eaf5;
}
.recruit_voice:nth-child(even) .num_heading {
  left: unset;
  right: 0;
}
.recruit_voice:nth-child(even) .inner {
  padding-left: 0;
  padding-right: 92px;
  padding-right: 8.5%;
  background: #e2eaf5;
  border-radius: 0 0 26px 0;
}
.recruit_voice:nth-child(even) .profile_01 {
  display: flex;
  flex-direction: row-reverse;
}
.recruit_voice:nth-child(even) .profile_02 {
  padding-right: 0;
  padding-left: 110px;
  padding-left: 9.9%;
}
.recruit_voice:nth-child(even) .profile_02 .flex {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .recruit_voice:nth-child(even)::before {
    left: -16px;
    width: calc(100% - 32px);
  }
  .recruit_voice:nth-child(even) .num_heading {
    left: unset;
    right: 0;
  }
  .recruit_voice:nth-child(even) .inner {
    width: calc(100% - 32px);
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto 108px;
    border-radius: 0 0 20px 0;
  }
  .recruit_voice:nth-child(even) .profile_01 {
    display: flex;
    flex-direction: column;
  }
  .recruit_voice:nth-child(even) .profile_02 {
    padding-right: 0;
    padding-left: 0;
  }
  .recruit_voice:nth-child(even) .profile_02 .flex {
    display: flex;
    flex-direction: column;
  }
}

/* .sec_recruit_recruiting
------------------------------------- */
.sec_recruit_recruiting {
  position: relative;
  padding: 100px 0 0;
  background: var(--blue);
}
/* .recruit_recruiting_box */
.recruit_recruiting_box {
  position: relative;
  width: 100%;
  max-width: 1195px;
  margin: 0 auto;
  padding: 140px 0 85px;
  background: #fff;
  transition: .5s;
}
.recruit_recruiting_box::before {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #fff;
}
.recruit_recruiting_box .sec_heading {
  margin-bottom: 20px;
  font-weight: var(--bold);
  font-size: 60px;
  color: #5d6e83;
}
/* .recruit_recruiting_box .recruiting */
.recruit_recruiting_box .recruiting {
  position: relative;
  z-index: 1;
  padding-bottom: 140px;
}
.recruit_recruiting_box .recruiting:last-child {
  padding-bottom: 90px;
}
.recruit_recruiting_box .heading_box {
  padding: 16px 0;
  font-size: 18px;
  text-align: left;
  color: var(--blue);
  border-top: 1px solid var(--blue);
}
.recruit_recruiting_box .heading_box .en {
  margin-bottom: 10px;
  font-weight: var(--bold);
  font-size: 18px;
  color: var(--blue);
}
.recruit_recruiting_box .recruiting_heading {
  font-weight: var(--bold);
  font-size: 36px;
  text-align: left;
  color: var(--headline);
}
/* .recruiting_box */
.recruit_recruiting_box .recruiting_box {
  margin-bottom: 60px;
}
.recruit_recruiting_box .recruiting_box dt {
  width: 197px;
}
@media screen and (max-width: 1300px) {
  .recruit_recruiting_box {
    margin: 0 0 0 auto;
    padding: 140px .5% 85px 7%;
    max-width: calc(100% - 7%);
  }
}
@media screen and (max-width: 767px) {
  .sec_recruit_recruiting {
    max-width: 100%;
    margin: 0;
    padding: 50px 0 0;
    overflow-x: hidden;
  }
  .recruit_recruiting_box {
    position: relative;
    width: 100%;
    max-width: calc(100% - 16px);
    margin: 0 0 0 auto;
    padding: 55px 0 45px;
  }
  .recruit_recruiting_box::before {
    top: 0;
    left: 0;
  }
  .recruit_recruiting_box .sec_heading {
    margin-bottom: 30px;
    font-weight: var(--bold);
    font-size: 30px;
  }
  /* .recruit_recruiting_box .recruiting */
  .recruit_recruiting_box .recruiting {
    max-width: calc(100% - 16px);
    padding-bottom: 85px;
  }
  .recruit_recruiting_box .recruiting:last-child {
    padding-bottom: 0;
  }
  .recruit_recruiting_box .heading_box {
    padding: 16px 0;
    font-size: 18px;
  }
  .recruit_recruiting_box .heading_box .en {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .recruit_recruiting_box .recruiting_heading {
    font-size: 24px;
  }
  /* .recruiting_box */
  .recruit_recruiting_box .recruiting_box {
    margin-bottom: 60px;
  }
  .recruit_recruiting_box .recruiting_box dl {
    padding: 10px 0;
  }
  .recruit_recruiting_box .recruiting_box dt {
    width: 100%;
  }
}

/* .sec_recruit_recruiting_flow
------------------------------------- */
.sec_recruit_recruiting_flow {
  background: var(--lightgray);
  padding: 130px 0 160px;
}
.sec_recruit_recruiting_flow .heading_l_box {
  max-width: 680px;
  margin: 0 auto 80px;
}
.sec_recruit_recruiting_flow .heading_l_box .sec_heading {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_recruit_recruiting_flow {
    padding: 115px 0 35px;
  }
  .sec_recruit_recruiting_flow .heading_l_box {
    max-width: 91%;
    margin: 0 auto 45px;
  }
  .sec_recruit_recruiting_flow .heading_l_box .sec_heading {
    margin-bottom: 20px;
    text-align: center;
  }
}

/* .recruiting_flow_box
------------------------------------- */
.recruiting_flow_box {
  margin: 0 auto;
  padding: 110px 0 70px;
  border-radius: 20px;
  background: #fff;
}
.recruiting_flow_box ol {
  margin: 0 auto 40px;
}
.recruiting_flow_box .figure {
  position: relative;
  display: flex;
  max-width: 696px;
  margin: 0 auto;
  padding: 0 0 70px;
}
.recruiting_flow_box .figure::before {
  position: absolute;
  top: 5px;
  left: 30px;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--blue);
}
.recruiting_flow_box li:last-child .figure::before {
  display: none;
}
.recruiting_flow_box .figcaption {
  padding-left: 96px;
}
.recruiting_flow_box .flow_heading {
  margin: 8px 0 20px;
  font-size: 28px;
  text-align: left;
  color: var(--blue);
}
.recruiting_flow_box .flow_heading .num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 50%;
  font-weight: bold;
  font-size: 32px;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .recruiting_flow_box {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .recruiting_flow_box {
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 0 50px;
    border-radius: 20px;
  }
  .recruiting_flow_box ol {
    margin: 0 auto;
  }
  .recruiting_flow_box .figure {
    position: relative;
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 50px;
  }
  .recruiting_flow_box .figure::before {
    position: absolute;
    top: 5px;
    left: 40px;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: var(--blue);
  }
  .recruiting_flow_box li:last-child .figure::before {
    display: none;
  }
  .recruiting_flow_box .figcaption {
    max-width: 91%;
    margin: 0 auto;
    padding-left: 60px;
  }
  .recruiting_flow_box .flow_heading {
    margin: 8px 0 15px;
    font-size: 20px;
  }
  .recruiting_flow_box .flow_heading .num {
    left: 17px;
    width: 45px;
    height: 45px;
    font-size: 23px;
  }
}

/* .sec_products_info
------------------------------------- */
.sec_products_info {
  padding: 80px 0;
  background: #edf3fa;
}
.sec_products_info .heading_l_box {
  margin: 0 auto 104px;
}
/* .products_info_box */
.products_info_box {
  overflow: hidden;
}
.products_info_box .products_wrap {
  position: relative;
  z-index: 9;
  max-width: 1192px;
  margin: 0 auto;
  padding: 92px 0 92px;
  background: #fff;
}
.products_info_box .products_wrap::before {
  position: absolute;
  right: -50%;
  top: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .sec_products_info {
    padding: 45px 0;
    background: #edf3fa;
  }
  .sec_products_info .heading_l_box {
    max-width: 91%;
    margin: 0 auto 35px;
  }
  /* .products_info_box */
  .products_info_box .products_wrap {
    max-width: 100%;
    padding: 35px 0 45px;
  }
  .products_info_box .products_wrap::before {
    position: absolute;
    right: -50%;
    top: 0;
    z-index: -1;
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #fff;
  }
}

/* .sec_privacy
------------------------------------- */
.sec_privacy {
  padding: 125px 0 125px;
}
.sec_privacy .sec_heading {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.7142;
  color: var(--blue);
}
.sec_privacy p,
.sec_privacy ul,
.sec_privacy li {
  line-height: 2;
}
.privacy_list >li {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .sec_privacy {
    padding: 58px 0 58px;
  }
  .sec_privacy .sec_heading {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7777;
  }
  .sec_privacy p,
  .sec_privacy ul,
  .sec_privacy li {
    line-height: 1.875;
  }
  .privacy_list >li {
    margin-bottom: 50px;
  }
}

/* -----------------------------------------
- .contact
----------------------------------------- */
/* .sec_contact
------------------------------------- */
.sec_contact {
  padding: 88px 0;
}
.sec_contact .inner {
  max-width: 700px;
  padding: 0 10px;
}
.sec_contact .txt_box {
  margin: 0 auto 48px;
}
.sec_contact .txt {
  margin-bottom: 1em;
  letter-spacing: normal;
}
/* .tel_box
------------------------------------- */
.sec_contact .tel_box {
  display: flex;
  align-items: baseline;
}
.sec_contact .tel_box .txt_small {
  margin-left: 5px;
  font-size: 14px;
  font-weight: var(--bold);
}
/* .agree_box
------------------------------------- */
.sec_contact .agree_box {
  margin: 1em auto 1.25em;
  text-align: center;
}
.sec_contact .agree_box a {
  color: #1571DA;
}
/* .ico_blank
------------------------------------- */
.sec_contact .ico_blank::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: url(../img/common/ico_blank_bl.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec_contact {
    padding: 40px 0 50px;
  }
  .sec_contact .inner {
    max-width: 91.4666%;
    padding: 0;
  }
  .sec_contact .txt_box {
    margin: 0 auto 42px;
  }
  .sec_contact .txt {
    margin-bottom: 1.5em;
  }
  .sec_contact .tel_box {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .sec_contact .tel_box .txt_small {
    margin-left: 0;
    margin-top: 1em;
  }
  .sec_contact .agree_box .txt {
    font-size: 15px;
  }
}

/* .form_box
------------------------------------- */
.form_box .input label {
  display: flex;
  align-items: center;
  margin-bottom: .75em;
  font-weight: var(--bold);
  font-size: 18px;
  color: var(--headline);
}
.form_box .input {
  margin-bottom: 1.75em;
}
.form_box .input .txt {
  margin-top: -.5em;
  margin-bottom: .75em;
}
/* .required */
.required {
  order: 4;
  font-size: 0;
}
.required::before {
  content: "必須";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 20px;
  background: #F2390C;
  color: #fff;
  font-size: 12px;
  font-weight: var(--bold);
  margin-left: 8px;
}
.form_box .input input,
.form_box .input select {
  width: 100%;
  height: 44px;
  padding: .25em .5em;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ddd;
}
.form_box .input textarea {
  width: 100%;
  height: 240px;
  padding: .75em .75em;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #ddd;
  outline: 0;
}
.form_box ::placeholder {
  color: #ccc;
}
/* .form_box .input.select */
.form_box .input select {
  color: var(--txt);
}
.form_box .input select:invalid {
  color: #ccc;
}
.form_box .input.select label::after {
  order: 3;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url(../img/common/ico_info.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .form_box .input {
    margin-bottom: 1.75em;
  }
  .form_box .input label {
    font-size: 16px;
  }
  .form_box .input .txt {
    font-size: 14px;
  }
  .required::before {
    margin-left: 10px;
  }
  .form_box .input input,
  .form_box .input select {
    padding: .25em .75em;
  }
  .form_box .input textarea {
    height: 231px;
  }
}

/* .submit_box
------------------------------------- */
.submit_box {
  display: flex;
  width: 100%;
  max-width: 440px;
  height: 80px;
  margin: 40px auto;
  text-align: center;
  border-radius: 4px;
}
.submit_box .submit_btn {
  width: 100%;
  height: 100%;
  font-size: 22px;
  font-weight: var(--bold);
  color: #ccc;
  border-radius: 4px;
  background: #f2f2f2;
  transition: .25s;
}
.submit_box .submit_btn:hover {
  background: var(--gray);
  color: #fff;
}
.submit_box.flex {
  gap: 0 1em;
}
.submit_box .submit_btn.back {
  border: 2px solid #ccc;
}
@media screen and (max-width: 767px) {
  .submit_box {
    width: 100%;
    max-width: 311px;
    height: 55px;
  }
  .submit_box .submit_btn {
    font-size: 16px;
  }
}

/* .formTable
------------------------------------- */
.formTable {
  margin: 0 auto 2em;
}
.formTable th {
  width: 25%;
  background: #eee;
}
.formTable td {
  width: 75%;
}
.formTable tr {
  display: flex;
}
.formTable th,
.formTable td {
  min-height: 3em;
  padding: .5em .75em;
  font-size: 16px;
  line-height: 1.75;
  border: 1px solid #ddd;
  vertical-align: text-top;
}
.error_messe {
  display: block;
  color: red;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .formTable tr {
    display: block;
  }
  .formTable th,
  .formTable td {
    display: block;
    width: 100%;
    font-size: 14px;
  }
}

/* -----------------------------------------
- addpage .main_page / 404 /
----------------------------------------- */
.sec_page .page_heading {
  font-size: 39px;
  margin-bottom: 30px;
}
.sec_page .txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec_page .page_heading {
    font-size: 30px;
  }
}


/* -----------------------------------------
- add style
----------------------------------------- */
@media screen and (max-width: 767px) {
}


