@charset "utf-8"; 

/* ==================================================
   EARTH THEME TOKENS
   Sand Beige × Deep Green
   (common palette)
================================================== */
:root{
  --earth-sand: #E7D8C9;
  --earth-sand-light: #F3EDE6;
  --earth-green: #1F3A34;
  --earth-green-soft: #2E5A50;
  --earth-green-light: #3F7A6B;

  /* Mappings (legacy compatibility) */
  --theme-accent: var(--earth-green);
  --theme-primary: var(--earth-green);

  --grad-main: linear-gradient(90deg, var(--earth-green) 0%, var(--earth-green-light) 55%, var(--earth-sand) 100%);
  --grad-main-vertical: linear-gradient(0deg, var(--earth-green) 0%, var(--earth-green-light) 55%, var(--earth-sand) 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  line-height: 1.7em;
  font-weight: 400;
  color: #111;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

html {
}

body {
}

.wrapper {
  /* overflow-x: hidden; */
}

.wrapper > article {
  /*   overflow-x: hidden; */
}

#top .wrapper {
  overflow-x: hidden;
}
#graduates .wrapper {
  overflow-x: hidden;
}

#career .wrapper {
  overflow-x: hidden;
}
#experienced .wrapper {
  overflow-x: hidden;
}

#message .wrapper {
  overflow-x: hidden;
}

#freshers .wrapper {
  overflow-x: hidden;
}

#colleague .wrapper {
  overflow-x: hidden;
}

#leader .wrapper {
  overflow-x: hidden;
}

#civil .wrapper > article {
  overflow: hidden;
}

#architecture .wrapper > article {
  overflow: hidden;
}

#job_category .wrapper > article {
  overflow: hidden;
}

main {
}

section {
}

.section_inner {
  width: 100%;
  max-width: 1280px;
  margin: 60px auto 30px;
}

/*.section_inner.isPlay {
  animation: opa 1.5s forwards;
} */
.opa_inner {
  opacity: 0;
}

.opa_inner.isPlay {
  animation: opa 1.5s forwards;
}

.opa {
  opacity: 0;
}

.opa.isPlay2 {
  animation: opa 1.5s forwards;
}

@keyframes leftmove {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes rightmove {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

a {
  transition: 0.1s;
}

/*--------button------------------------------------*/
.button {
  border: solid 1px var(--theme-primary);
  text-align: center;
  margin: 0px auto 30px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: var(--theme-primary);
  padding: 4px;
  transition: 0.2s;
}

.button a {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 4px;
  transition: 0.2s;
  color: #fff;
}

.button:hover {
  border: solid 1px var(--theme-primary);
  background: #fff;
  color: #fff;
  opacity: 1;
}

.button:hover a {
  color: #fff;
  opacity: 1;
  color: var(--theme-primary);
}

/*--------button--------ここまで----------------------*/
/*--------header------------------------------------*/
header {
  width: 100%;
  height: 100px;
  display: flex;
  background: rgba(255, 255, 255, .9);
  position: fixed;
  top: 0;
  z-index: 20;
}

header.header {
  display: none;
}

.header_inner {
  width: 100%;
  max-width: 1280px;
  margin: 15px auto 5px;
  padding: 0;
}

header dl {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

header dt {
  width: 94%;
  margin: auto;
}

header dt a {
  display: grid;
  /*   place-items: center; */
  height: 100%;
  max-width: 85%;
}

header dt a figure {
  display: flex;
  align-items: center;
  margin-right: 14px;
}

header dt a figure img {
  width: 50%;
  object-fit: contain;
}

header dt a figure figcaption {
  font-weight: bold;
  margin-left: 16px;
  font-size: 3vw;
}

header dd {
  display: none;
}

header dd>ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
}

header dd>ul>li {
  height: 100%;
  padding: 0 20px 0 0;
  position: relative;
}

header dd>ul>li:nth-of-type(6) {
  background: var(--theme-accent);
  position: relative;
  padding: 0;
}

header dd>ul>li:nth-of-type(7) {
  background: #111;
  position: relative;
  padding: 0;
}

header dd>ul>li>a {
  transition: 0.2s;
  font-weight: bold;
  color: #111;
  text-align: center;
  font-size: 16px;
  position: relative;
  height: 100%;
  display: grid;
  align-items: center;
}

header dd>ul>li>.dropmenu_wrap {
  display: none;
}

header dd>ul>li:hover>.dropmenu_wrap {
  position: absolute;
  z-index: 111111111;
  display: block;
  width: max-content;
}

.dropmenu_wrap {
  position: relative;
}

.dropmenu {
  display: flex;
  padding: 20px 15px;
  background: var(--theme-accent);
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, .2));
  gap: 40px;
  width: 100%;
}

header dd>ul>li:nth-of-type(4) .dropmenu {
  position: relative;
  right: 294px
}

header dd>ul>li:nth-of-type(5) .dropmenu {
  position: relative;
  right: 58px;
}

header dd>ul>li:nth-of-type(6) .dropmenu {
  background: #fff;
  position: relative;
  right: 71px;
}

header dd>ul>li:nth-of-type(7) .dropmenu {
  background: #fff;
  position: relative;
  right: 230px;
}

.dropmenu dt {
}

.dropmenu dt a {
  color: #fff;
  font-weight: bold;
}

.dropmenu dt a:hover {
  opacity: 1;
  color: #111;
}

header dd>ul>li:nth-of-type(6) a {
  color: #fff;
  width: 160px;
}

header dd>ul>li:nth-of-type(7) a {
  color: #fff;
  width: 160px;
}

header dd>ul>li:hover>a {
}

header dd>ul>li:nth-of-type(6):hover {
  background: rgba(31, 58, 52, .7);
}

header dd>ul>li:nth-of-type(7):hover {
  background: rgb(35 24 21 / 70%);
}

/*--------header--------ここまで----------------------*/
/*--------top_hero_header------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: calc(100svh - 80px);
  overflow: hidden;
  top: 100px;
}

.color_filter {
}

.back_block {
  background-image: url(../img/hero_bw.jpg);
  height: 100%;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 5;
}

.back_block img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* scale: 1.01; */
  transform-origin: center;
  /* display: none; */
  clip-path: circle(0% at 50% 50%);
  animation-name: circle;
  animation-duration: 3s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

@keyframes circle {
  0% {
    clip-path: circle(0% at 50% 50%);
  }

  100% {
    clip-path: circle(100% at 50% 50%);
  }
}

@keyframes over {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.catch_block_top {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 17;
}

.catch_block_top img:nth-of-type(1) {
  width: 45px;
  width: 8vw;
  filter: drop-shadow(1px 3px 6px rgba(0, 0, 0, .2));
  opacity: 0;
  animation-name: over;
  animation-duration: 3s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

.catch_block_top img:nth-of-type(2) {
  width: 8vw;
  margin-top: 15px;
  filter: drop-shadow(1px 3px 6px rgba(0, 0, 0, .2));
  opacity: 0;
  animation-name: over;
  animation-duration: 3s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

.catch_block_bottom {
  z-index: 7;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.catch_block_bottom img {
  display: grid;
  place-items: center;
  width: 85%;
  filter: brightness(0.7);
  max-height: 800px;
  opacity: 0;
  animation-name: over;
  animation-duration: 3s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

.scroll_block {
  position: absolute;
  bottom: 3%;
  left: 7vw;
  z-index: 20;
  display: none;
}

.scroll_block img {
  width: 25px;
}

.scroll_block svg {
  width: 25px;
}

/*--------top_hero_header--------ここまで------------------*/
/*-----------footer-------------------------------*/
footer {
  border-top: none;
  margin-top: 0;
  position: relative;
  bottom: 100px;
}

.footer_inner {
  margin: 0px auto 0;
  padding: 1px 0 20vw;
  width: 100%;
  background-image: url(../img/footer_bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  background-color: #fff;
}

.footer_link {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  display: none;
}

.footer_link li {
  width: fit-content;
}

.footer_link li h4 {
  font-size: 19px;
  font-weight: bold;
  color: var(--theme-accent);
}

.footer_link li a {
  margin-top: 10px;
  font-weight: bold;
}

.footer_link li+li {
  margin-left: 20px;
  padding-left: 20px;
  border-left: solid 1px #111;
}

.footer_company {
  max-width: 940px;
  margin: 20px auto 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
}

.footer_company dt {
  width: 100%;
}

.footer_company dt figure {
  width: 100%;
}

.footer_company dt figure img {
  width: 100%;
}

.footer_company dd {
  display: flex;
  gap: 5px;
  margin-top: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3.5vw;
  font-weight: bold;
}

.footer_company dd p {
}

.footer_bottom {
  background: var(--theme-accent);
  text-align: center;
  padding: 8px 0;
}

.footer_bottom small {
  font-weight: bold;
}

.footer_recruit {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.footer_recruit ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100px;
}

.footer_recruit li {
  position: relative;
  width: 50%;
}

.footer_recruit li:nth-of-type(1) {
  background: var(--theme-accent);
}

.footer_recruit li:nth-of-type(2) {
  background: #111;
}

.footer_recruit li a {
  transition: 0.2s;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 3.5vw;
  position: relative;
  height: 100px;
  display: grid;
  align-items: center;
  padding: 10px;
}

.dropup_wrap_entry {
  width: 90%;
  margin: 0px 20px 15px;
  opacity: 0;
  display: none;
}

.dropup_shadow_entry {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.5));
}

.dropup_entry {
  display: flex;
  width: 100%;
  padding: 10px 10px 25px;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 23% 85%, 19% 100%, 15% 85%, 0 85%);
}

.dropup_wrap_entry.open_entry {
  display: block;
  opacity: 1;
}

.dropup_wrap_intern {
  width: 90%;
  margin: 0px 20px 15px;
  opacity: 0;
  display: none;
}

.dropup_shadow_intern {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.5));
}

.dropup_intern {
  display: flex;
  width: 100%;
  padding: 10px 10px 25px;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 77% 85%, 73% 100%, 69% 85%, 0 85%);
}

.dropup_wrap_intern.open_intern {
  display: block;
  opacity: 1;
}

.menu_recruit {
  width: 100%;
  z-index: 2;
  /*   height: 160px; */
  margin-bottom: 20px;
}

.menu_recruit ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.menu_recruit li {
  position: relative;
  width: 50%;
}

.menu_recruit li:nth-of-type(1) {
  background: var(--theme-accent);
}

.menu_recruit li:nth-of-type(2) {
  background: #111;
}

.menu_recruit li a {
  transition: 0.2s;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 4vw;
  position: relative;
  height: 100%;
  display: grid;
  align-items: center;
  padding: 10px;
}

.menu_rec_entry {
  transition: 0.2s;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 16px;
  position: relative;
  height: 100%;
  display: grid;
  align-items: center;
  padding: 10px;
}

.menu_dropdown_wrap_entry {
  width: 90%;
  margin: 10px 20px 10px;
  opacity: 0;
  display: none;
}

.menu_dropdown_shadow_entry {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.5));
}

.menu_dropdown_entry {
  display: flex;
  width: 100%;
  padding: 25px 10px 10px;
  background: #fff;
  clip-path: polygon(0 15%, 15% 13%, 17% 0, 21% 15%, 100% 15%, 100% 100%, 0 100%);
}

.menu_dropdown_entry dt {
  width: 50%;
}

.menu_dropdown_entry dd {
  width: 50%;
}

.menu_dropdown_wrap_entry.menu_open_entry {
  display: block;
  opacity: 1;
}

.menu_dropdown_wrap_intern {
  width: 90%;
  margin: 10px 20px 10px;
  opacity: 0;
  display: none;
}

.menu_dropdown_shadow_intern {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.5));
}

.menu_dropdown_intern {
  display: flex;
  width: 100%;
  padding: 25px 10px 10px;
  background: #fff;
  clip-path: polygon(0 15%, 69% 13%, 73% 0, 77% 15%, 100% 15%, 100% 100%, 0 100%);
}

.menu_dropdown_wrap_intern.menu_open_intern {
  display: block;
  opacity: 1;
}

.menu_dropdown_intern dt {
  width: 50%;
}

/*-----------footer--------------ここまで-----------*/
/*-----------その他共通----------------------------*/
#page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  font-size: 10px;
  z-index: 1000;
  display: none;
}

#page-top a {
  text-decoration: none;
  width: 70px;
  text-align: center;
  display: block;
  color: #fff;
  background-color: #111;
  padding-top: 21px;
  padding-right: 0;
  padding-bottom: 21px;
  padding-left: 0;
  font-size: 18px;
}

#page-top a:hover {
  text-decoration: none;
  color: #30313a;
  background-color: #fff;
  border: solid 1px #30313a;
}

.breadcrums-wrap {
  width: 100%;
  background: #eff0f5;
}

ul.breadcrums {
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 13px 0;
}

ul.breadcrums li {
  margin: 0 12px 0 0;
  font-size: 12px;
  color: #111;
}

ul.breadcrums li a {
  color: var(--theme-primary);
  font-weight: bold;
  font-size: 12px;
  border-bottom: solid 1px #eff0f5;
}

ul.breadcrums li a:hover {
  border-bottom: solid 1px var(--theme-primary);
}

.pc {
  display: none;
}

.sp {
  display: block;
}

/*-----------その他共通--------------ここまで--------------*/
/*-----SPメニュー用-----*/
.menu {
  position: relative;
  z-index: 25;
}

#smt_menu_wrapper {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  color: #fff;
  text-align: center;
  /*transform: translateY(-100%);*/
  transition: all 0.2s;
  width: 100%;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  height: calc(100svh - 100px);
}

#smt_menu_wrapper .smt_menu {
  /* padding: 0px 10%; */
  width: 100%;
  height: 100%;
  /* display: flex; */
  flex-wrap: wrap;
  align-content: center;
  background-color: rgba(255, 255, 255, .92);
  background-blend-mode: color;
  background-size: cover;
  /* margin-top: 80px; */
  overflow-y: scroll;
}

#smt_menu_wrapper .smt_menu p.title {
  font-size: 4vw;
  text-align: left;
  font-weight: bold;
  margin-top: 20px;
}

#smt_menu_wrapper .smt_menu a.list_l {
  list-style-type: none;
  padding: 0;
  width: 100%;
  color: #111;
  font-weight: bold;
  text-align: left;
  margin: 10px 0;
  display: flex;
  color: #111;
  padding: 0;
  background: none;
  font-size: 3vw;
  align-items: center;
  padding: 0 1em;
}

#smt_menu_wrapper .smt_menu a.list_l::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--theme-accent);
  display: inline-block;
  /* margin-top: 12px; */
  margin-right: 0.3em;
}

#smt_menu_wrapper .smt_menu a.list_s {
  list-style-type: none;
  width: 100%;
  font-weight: bold;
  text-align: left;
  margin: 5px 0;
  color: #111;
  background: none;
  font-size: 3vw;
  display: flex;
  align-items: center;
  padding: 0 2em;
}

#smt_menu_wrapper .smt_menu a.list_s::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--theme-accent);
  display: inline-block;
  /* margin-top: 12px; */
  margin-right: 0.3em;
}

.menu_main {
  width: 84%;
  margin: auto;
  padding-bottom: 30px;
}

.cta_bg {
  width: 252px;
  height: 49px;
  text-align: center;
  line-height: 29px;
  margin: 5px 0 0 0;
  display: block;
  transition: all 0.2s ease;
}

.cta_bg:hover {
  color: #f5f5f5;
}

#smt_menu_wrapper.active {
  transform: translateY(0%);
  visibility: inherit;
  opacity: 1;
}

.navToggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  transform: rotate(-45deg);
  border-color: #111;
}

.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
  border-color: #111;
}

.pc_none {
  display: block;
}

.navToggle {
  display: block;
  position: fixed;
  top: 30px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10015;
  text-align: center;
  border-radius: 2px;
}

.navToggle span:nth-child(1) {
  top: 15px;
}

.navToggle span:nth-child(2) {
  top: 24px;
}

.navToggle span {
  display: block;
  position: absolute;
  width: 30px;
  border-top: solid 3px #111;
  transition: 0.2s;
  left: 6px;
}

/*-----SPメニュー用-----*/
/*-----------トップtop_aboutus----------------------------*/

#top_aboutus {
}

.top_about_comme {
  opacity: 0;
}

.top_about_comme.isPlay {
  animation: opa 1.5s forwards;
}

.top_about_comme_inner {
  max-width: 1000px;
  margin: auto;
  padding: 30px 5%;
  /* background: #fff; */
}

.top_about_comme_inner p {
  font-size: 3.5vw;
  text-align: center;
  line-height: 1.7;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-weight: bold;
}

.big_title {
  /* margin-top: -226px; */
  width: 84%;
  margin: auto;
  scroll-margin-top: 80px;
}

.big_title h2 {
  color: var(--theme-accent);
  font-weight: bold;
  font-family: "roboto", sans-serif;
  font-size: 18vw;
  /* margin-top: -100px; */
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap
}

.big_title p {
  color: var(--theme-accent);
  font-weight: bold;
  font-size: 5.5vw;
  margin-top: 10px;
  letter-spacing: 0.08em;
}

.top_aboutus_2way {
  display: flex;
  align-items: end;
  margin: 30px auto 0;
  flex-direction: column-reverse;
  width: 94%;
}

.top_aboutus_2way dt {
  width: 100%;
  padding: 30px;
}

.top_aboutus_2way dt h3 {
  font-size: 5vw;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 2;
}

.top_aboutus_2way dt p {
  font-size: 4vw;
  text-align: justify;
  font-weight: bold
}

.top_aboutus_2way dd {
  width: 100%;
  /* margin-right: calc(50% - 50vw); */
  flex: 1;
}

.top_aboutus_2way dd figure {
}

.top_aboutus_2way dd figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----------トップtop_aboutus--------------ここまで--------------*/
/*-----------トップtop_strength----------------------------*/
#top_strength {
  margin: 100px 0 30px;
	scroll-margin-top: 100px;
}

.middle_title {
  text-align: center;
}

.middle_title h2 {
  font-weight: bold;
  font-size: 8vw;
  border-bottom: solid 4px var(--theme-accent);
  width: fit-content;
  margin: auto;
  line-height: 1.3;
  letter-spacing: 0.07em;
}

.top_strength_comme {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.top_strength_comme > .gradationline_left {
  display: none;
}

.top_strength_comme > .gradationline_right {
  display: none;
}

.top_strength_comme ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 30px 20px;
  gap: 20px;
  z-index: 2;
  position: relative;
  /*   background: url(../img/top_strength_01_bg.jpg) no-repeat;*/
  flex-direction: column;
  background-size: cover;
}

.gradationline_left {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2200px;
  height: 500px;
  z-index: -1;
  opacity: 0;
  transform: translate(-50%, 0%);
  background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(255,81,18,1) 18%, rgba(255,158,35,1) 100%);
}

.gradationline_left.isPlay {
  animation: move 1s forwards;
}

.top60vw {
  top: 200vw!important;
}

.top-20vw {
  top: -150px!important;
}

@keyframes move {
  0% {
    opacity: 0;
    clip-path: polygon(0 40%, 0% 70%, 0% 100%);
  }

  100% {
    opacity: 1;
    clip-path: polygon(0 40%, 100% 0, 0% 100%);
  }
}

@keyframes opa {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.gradationline_right {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  width: 2200px;
  height: 500px;
  z-index: -1;
  opacity: 0;
  transform: translate(-50%, 0%);
  background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(255,81,18,1) 18%, rgba(255,158,35,1) 100%);
}

.gradationline_right.isPlay {
  animation: move2 1s forwards;
}

@keyframes move2 {
  0% {
    opacity: 0;
    clip-path: polygon(100% 70%, 100% 40%, 100% 100%);
  }

  100% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 40%, 100% 100%);
  }
}

.top_strength_comme:nth-of-type(2) ul {
  background: url(../img/top_strength_01_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}

.top_strength_comme:nth-of-type(3) ul {
  background: url(../img/top_strength_02_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}

.top_strength_comme:nth-of-type(4) ul {
  background: url(../img/top_strength_03_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}

.top_strength_comme li.number {
  width: 25%;
}

.top_strength_comme li.text {
  width: 100%;
  text-align: center;
}

.top_strength_comme li.text h3 {
  color: #fff;
  font-size: 5.6vw;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.top_strength_comme li.text p {
  color: #fff;
  font-size: 4vw;
  margin-top: 20px;
  /* font-weight: bold; */
  text-align: justify;
}

/*-----------トップtop_strength--------------ここまで--------------*/
/*-----------トップtop_photo----------------------------*/
#top_photo {
  margin-top: 50px;
  opacity: 0;
}

#top_photo.isPlay {
  animation: opa 1s forwards;
}

#top_photo ul {
  display: flex;
}

#top_photo li {
  width: 25%;
}

#top_photo figure {
}

#top_photo img {
}

/*-----------トップtop_photo--------------ここまで--------------*/
/*-----------トップtop_number----------------------------*/
#top_number {
  margin-top: 60px;
	scroll-margin-top: 100px;
}


.top_number_inner.isPlay {
  animation: opa 1.5s forwards;
}

.small_title {
  padding-top: 0px;
  width: 94%;
  margin: auto;
  padding: 0 2em;
}

.small_title h2 {
  color: var(--theme-accent);
  font-weight: bold;
  font-size: 6vw;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

#top_number ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 4%;
  margin-top: 60px;
  justify-content: center;
  width: 94%;
  margin: 30px auto 0;
}

#top_number li {
  width: 48%;
}

#top_number figure {
}

#top_number img {
}

/*-----------トップtop_number--------------ここまで--------------*/
/*-----------トップtop_works----------------------------*/
#top_works {
  margin: 60px 0;
  scroll-margin-top: 80px;
}

.work_title {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  width: 84%;
}

.work_title h2 {
  color: var(--theme-accent);
  font-weight: bold;
  font-family: "roboto", sans-serif;
  font-size: 20vw;
  line-height: 1;
  letter-spacing: -0.02em;
}

.work_title h4 {
  color: var(--theme-accent);
  font-weight: bold;
  font-size: 5.5vw;
  margin-top: 10px;
  letter-spacing: 0.08em;
}

.work_title p {
  font-weight: bold;
  font-size: 5vw;
  margin-top: 10px;
  font-family: YuMincho, 'Yu Mincho', serif;
}

.top_civil_engineering {
  margin: 50px 0 50px;
	scroll-margin-top: 100px;
}

.top_work_section_head {
}

.top_civil_engineering .top_work_section_head > div {
  height: 350px;
  background: url(../img/top_work_civil_sp_bg.jpg) no-repeat;
  background-size: cover;
  padding: 1px;
  /* margin-top: 60px; */
  background-position: center center;
  position: relative;
}

.top_work_section_head_title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
}

.top_work_section_head_title h3 {
  color: #fff;
  font-size: 6vw;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.top_work_section_head_title p {
  color: #fff;
  font-size: 4.55vw;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.top_work_section_inner {
  max-width: 800px;
  margin: 30px auto 30px;
  width: 90%;
}

.top_work_section_inner h4 {
  font-family: YuMincho, 'Yu Mincho', serif;
  font-weight: bold;
  font-size: 4.5vw;
  text-align: center;
  line-height: 2;
}

.top_work_section_inner>figure {
  margin: 30px 0 30px;
  position: relative;
}

.top_work_section_inner>figure > .gradationline_left {
  width: 800px;
  height: 350px;
}

.top_work_section_inner>figure>img {
  position: relative;
  z-index: 2;
}

.top_work_section_inner p {
  font-size: 3.5vw;
  padding: 0 20px;
  text-align: justify;
}

ul.top_work_photo_area {
  display: flex;
  width: 94%;
  margin: 30px auto;
  flex-wrap: wrap;
}

ul.top_work_photo_area li {
  width: 50%;
}

ul.top_work_photo_area li figure {
}

ul.top_work_photo_area li figure img {
}

.top_architecture {
  margin: 50px 0;
}

#architecture {
	scroll-margin-top: 100px;
}

.top_architecture .top_work_section_head > div {
  background: url(../img/top_work_architecture_sp_bg.jpg) no-repeat;
  background-size: cover;
  height: 350px;
  /* padding: 220px; */
  /* margin-top: 60px; */
  background-position: center center;
  position: relative;
}

.top_report {
  margin: 50px auto;
  width: 94%;
}

.top_report dl {
  display: flex;
  align-items: center;
  justify-content: end;
  max-width: 1280px;
  margin: auto;
  position: relative;
}

.top_report dt {
  color: #fff;
  background: #111;
  font-size: 3.5vw;
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: absolute;
  left: 0;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  z-index: 1;
  width: 45%;
}

.top_report dt::before {
  content: "";
  margin-right: 10px;
  background-image: url(../img/icon_report.png);
  width: 20px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.top_report dd {
  width: 80%;
  /* height: 220px; */
  /* background: #ddd; */
}

.top_report dd figure {
  overflow: hidden;
  height: 150px;
}

.top_report dd figure img {
  transition: 0.2s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -35% center;
}

.top_report dd figure img:hover {
  transform: scale(1.05);
}

.top_job_category {
  margin: 50px 0;
}

.top_job_category .section_inner {
  margin: 60px 0;
}

.top_job_category .top_work_section_head a {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}


.top_job_category .top_work_section_head a:hover:after {
  transform: scale(1.05);
}

.top_job_category_link {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
  width: 85%;
  margin: auto;
}

.top_job_category_link li {
  width: 100%;
}

.top_job_category_link a {
  background: var(--grad-main-vertical);
  padding: 20px 0 20px;
  display: grid;
  place-items: center;
}

.top_job_category_link h5 {
  color: #fff;
  font-size: 5vw;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.top_job_category_link p {
  color: #fff;
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.top_job_category_workandlife {
  max-width: 1400px;
  margin: 0 auto;
}

.top_job_category_workandlife>a {
  background: url(../img/top_job_category_workandlife_bg.jpg) no-repeat;
  background-size: 100%;
  background-position: -27px top;
  padding: 20px 0 0;
}

.top_job_category_workandlife ul {
}

.top_job_category_workandlife li {
  width: 60%;
  margin-left: auto;
  padding: 0 0px;
}

.top_job_mid_title {
  /* margin-top: 20px; */
  margin-left: 20px;
}

.top_job_mid_title h4 {
  font-size: 6vw;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.top_job_mid_title p {
  font-size: 5vw;
  font-weight: bold;
  color: var(--theme-accent);
  letter-spacing: 0.04em;
}

.top_job_slide {
  margin-top: 20px;
  position: relative;
}

.top_job_slide div {
  font-size: 4vw;
  padding: 4px 16px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.04em;
  max-width: 330px;
}

.top_job_slide div+div {
  margin-top: 10px
}

.top_job_slide div.first {
  background: #7cddd5;
  margin-left: 20%;
  transform: translateX(200%);
}

.top_job_slide div.first.isPlay {
  animation: rslide 1s 0.2s forwards;
}

.top_job_slide div.second {
  background: #a2d500;
  margin-left: 0%;
  transform: translateX(200%);
}

.top_job_slide div.second.isPlay {
  animation: rslide 1s 0.6s forwards;
}

.top_job_slide div.third {
  background: #7cddd5;
  margin-left: 10%;
  transform: translateX(200%);
}

.top_job_slide div.third.isPlay {
  animation: rslide 1s 1s forwards;
}

@keyframes rslide {
  0% {
    transform: translateX(200%);
  }

  100% {
    transform: translateX(0%);
  }
}

#top_interview {
  margin: 60px 0;
}

.top_interview_crosstalk {
  margin: 0px 0;
}

.top_interview_crosstalk .top_work_section_head a {
  position: relative;
  width: 100%;
  height: 42vw;
  overflow: hidden;
  margin-top: 60px;
  max-height: 300px;
}

.top_interview_crosstalk .top_work_section_head a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/top_interview_crosstalk_sp_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 0.2s;
}

.top_interview_crosstalk .top_work_section_head a:hover:after {
  transform: scale(1.05);
}

ul.top_interview_crosstalk_head_title {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 2;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  gap: 10px;
}

ul.top_interview_crosstalk_head_title li {
}

ul.top_interview_crosstalk_head_title li:nth-of-type(1) {
  flex: 1;
  /* padding: 0 10px; */
  /* width: 40%; */
}

ul.top_interview_crosstalk_head_title li:nth-of-type(2) {
  /* width: 20%; */
}

ul.top_interview_crosstalk_head_title li:nth-of-type(3) {
  flex: 1;
  /* padding: 0 10px; */
  /* width: 40%; */
}

ul.top_interview_crosstalk_head_title h3 {
  font-size: 7.5vw;
  color: #fff;
  line-height: 1;
  font-family: "roboto", sans-serif;
  font-weight: bold;
  /* margin-top: 30px; */
  margin-top: 14px;
}

ul.top_interview_crosstalk_head_title p {
  color: #fff;
  font-size: 3vw;
  font-weight: bold;
  margin-top: 4px;
}

span.cross {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
}

span.cross::before, span.cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 1px;
  height: 85px;
  background: #fff;
}

span.cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

span.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.float_right {
  float: right;
}

.top_interview_leader_message {
  margin: 30px auto 30px;
}

.top_interview_leader_message a {
  max-width: 1000px;
  margin: auto;
}

.top_interview_leader_message a:hover img {
  transform: scale(1.05);
}

.top_interview_leader_message dl {
  display: flex;
  position: relative;
  height: 42vw;
}

.top_interview_leader_message dt {
  display: flex;
  position: relative;
  width: 86%;
}

.top_interview_leader_message ul {
  display: flex;
  height: 100%;
  width: 100%;
}

.top_interview_leader_message li {
  background: linear-gradient(155deg, rgba(255, 255, 255, 1) 42%, rgba(26, 26, 26, 1) 100%);
  width: calc(100% / 3);
}

.top_interview_leader_message figure {
  height: 100%;
  overflow: hidden;
}

.top_interview_leader_message li:nth-of-type(1) {
  width: 28%;
}

.top_interview_leader_message li:nth-of-type(2) {
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  margin-left: -10%;
}

.top_interview_leader_message li:nth-of-type(3) {
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  margin-left: -10%;
}

.top_interview_leader_message img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.top_interview_leader_message li:nth-of-type(1) img {
  object-position: -11vw;
}

.top_messege_catch {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: rgb(255 255 255 / 60%);
  font-size: 5vw;
  line-height: 1;
  font-family: "roboto", sans-serif;
  font-weight: bold;
}

.top_interview_leader_message dd {
  background: #000;
  width: 43%;
  display: grid;
  place-items: center;
  clip-path: polygon(16% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 10px 5px 10px 25px;
  margin-left: -10%;
  position: absolute;
  right: 0;
  height: 42vw;
}

.top_interview_leader_message dd h4 {
  color: #fff;
  font-size: 3.5vw;
  font-family: "roboto", sans-serif;
}

.top_interview_leader_message dd h3 {
  color: #fff;
  font-size: 5vw;
  font-feature-settings: "palt";
  font-weight: bold;
}

.top_interview_leader_message dd h5 {
  color: #fff;
  font-size: 3.6vw;
  font-weight: bold;
}

.top_interview_leader_message dd p {
  color: #fff;
  font-size: 2.5vw;
  font-family: YuMincho, 'Yu Mincho', serif;
}

.top_message_inner {
}

.top_interview_personnel_message {
  margin: 30px 0 30px;
}

.top_interview_personnel_message a {
  max-width: 1000px;
  margin: auto;
  background: #ddd;
  padding: 30px 10px 20px 20px;
}

.top_interview_personnel_message a:hover img {
  transform: scale(1.03);
}

.top_interview_personnel_message dl {
  display: flex;
}

.top_interview_personnel_message dt {
  width: 50%;
  display: grid;
  place-items: center left;
}

.personnel_catch {
  width: 100%;
}

.top_interview_personnel_message h2 {
  font-size: 5vw;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

.top_interview_personnel_message h3 {
  position: relative;
  font-size: 3vw;
  font-weight: bold;
  color: var(--theme-accent);
  font-family: "roboto", sans-serif;
}

.top_interview_personnel_message h3::after {
  content: "";
  position: absolute;
  width: 53vw;
  border-bottom: solid 1px #111;
  left: 0;
  bottom: 0;
}

.top_interview_personnel_message h4 {
  font-size: 4.8vw;
  font-weight: bold;
}

.top_interview_personnel_message dd {
  width: 50%;
}

.top_interview_personnel_message figure {
}

.top_interview_personnel_message img {
  z-index: 2;
  position: relative;
  transition: 0.2s;
}

.top_interview_faq_message {
  margin: 30px 0 60px;
}

.top_interview_faq_message a {
  max-width: 1000px;
  margin: auto;
  background: var(--grad-main-vertical);
  padding: 24px;
  text-align: center;
  width: 85%;
}

.top_interview_faq_message h2 {
  font-size: 5vw;
  color: #fff;
  font-weight: bold;
}

.top_interview_faq_message h3 {
  font-size: 3.8vw;
  color: #fff;
  font-weight: bold;
}

/*-----------トップtop_works--------------ここまで--------------*/
/*-----------sns_bnr_block----------------------------*/
#sns_bnr_block {
  margin: 30px 0 80px;
}

.sns_bnr_block_inner {
  display: flex;
  max-width: 1000px;
  margin: auto;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 80%;
  z-index: 20;
  position: relative;
}

.sns_bnr_block_inner a {
}

.sns_bnr_block_inner a img {
  max-height: 70px;
  max-width: 120px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*-----------sns_bnr_block--------------ここまで--------------*/
/*-----------recruit_bnr_block----------------------------*/
#recruit_bnr_block {
  margin: 60px 0 120px;
  display: none;
}

.recruit_bnr_block_inner {
  max-width: 1000px;
  margin: auto;
}

.recruit_bnr_block_inner dl {
  display: flex;
}

.recruit_bnr_block_inner dt {
  width: 50%;
  position: relative;
}

.recruit_bnr_entry {
  padding: 40px;
}

dt .recruit_bnr_entry {
  background: var(--theme-accent);
  position: relative;
}

dt .recruit_bnr_entry:after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 20px;
  width: 95%;
  height: 20px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: skew(45deg);
}

.recruit_bnr_entry:active {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.recruit_bnr_block_inner dt:hover>.recruit_wrap {
  display: block;
  transition: 0.1s;
  position: absolute;
  width: 100%;
}

dd .recruit_bnr_entry {
  background: #111;
}

dd .recruit_bnr_entry:after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 20px;
  width: 95%;
  height: 20px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: skew(45deg);
}

.recruit_bnr_block_inner dd:hover>.recruit_wrap2 {
  display: block;
  transition: 0.1s;
  position: absolute;
  width: 100%;
}

.recruit_bnr_entry h3 {
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  line-height: 1;
}

.recruit_bnr_entry p {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.recruit_wrap {
  transition: 0.1s;
  filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, .3));
  display: none;
}

.recruit_wrap2 {
  transition: 0.1s;
  filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, .3));
  display: none;
}

.recruit_bnr_block_inner dt ul {
  transition: 0.1s;
  display: flex;
  border-radius: 4px;
  width: 94%;
  margin: -12px auto 0;
  background: #fff;
  padding: 45px 20px 25px;
  justify-content: space-around;
  clip-path: polygon(0 20%, 45% 20%, 50% 0, 55% 20%, 100% 20%, 100% 100%, 0 100%);
}

.recruit_bnr_block_inner dt ul li {
}

.recruit_bnr_block_inner dt ul a {
}

.recruit_bnr_block_inner dt ul a img {
}

.recruit_bnr_block_inner dd {
  width: 50%;
  position: relative;
}

.recruit_bnr_block_inner dd ul {
  display: flex;
  border-radius: 4px;
  width: 94%;
  margin: -12px auto 0;
  background: #fff;
  padding: 45px 20px 25px;
  justify-content: space-around;
  clip-path: polygon(0 20%, 45% 20%, 50% 0, 55% 20%, 100% 20%, 100% 100%, 0 100%);
}

.recruit_bnr_block_inner dd ul li {
}

.recruit_bnr_block_inner dd ul a {
}

.recruit_bnr_block_inner dd ul a img {
}

/*-----------recruit_bnr_block--------------ここまで--------------*/
/*--------title_header------------------------------*/
#title_header {
  display: grid;
  place-items: center;
  height: 470px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

body#culture #title_header {
  background: url(../img/culture/culture_bg.jpg);
  background-position: center center;
  background-size: cover;
}

.title_header_inner {
  text-align: center;
  margin-top: 75px;
}

.title_header_inner h1 {
  font-size: 80px;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.04em;
  font-family: "roboto", sans-serif;
  color: #fff;
}

.title_header_inner p {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
}

#title_header_sub {
  display: grid;
  place-items: center;
  height: 200px;
  margin-top: 100px;
}

#title_header_sub_short {
  display: grid;
  place-items: center;
  height: 150px;
  margin-top: 100px;
}

.title_header_sub_inner {
  text-align: center;
}

.title_header_sub_inner h1 {
  font-size: 8vw;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.04em;
}

.title_header_sub_inner h2 {
  font-size: 5vw;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.04em;
}

.title_header_sub_inner p {
  font-size: 5vw;
  font-weight: bold;
  color: var(--theme-accent);
  letter-spacing: 0.04em;
}

/*--------top_hero_header--------ここまで------------------*/
/*--------category_navi------------------------------*/
.category_navi {
}

.category_navi ul {
  display: flex;
  justify-content: left;
  gap: 20px 3.5%;
  flex-wrap: wrap;
  width: 84%;
  margin: 50px auto 100px;
}

.category_navi li {
  width: 31%;
}

.category_navi a {
  font-size: 3.5vw;
  font-weight: bold;
  text-align: center;
}

/*--------category_navi--------ここまで------------------*/
/*--------category_navi------------------------------*/
.job_category_unit {
  margin: 60px 0 120px;
  scroll-margin-top: 130px;
  position: relative;
}

.job_category_unit h2 {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 6vw;
  letter-spacing: 0.04em;
  width: 70%;
  text-align: center;
}

.job_category_unit_inner {
  max-width: 1148px;
  margin: auto;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, .3));
  background: #fff;
  padding: 60px 20px 30px;
  position: relative;
  width: 84%;
}

.job_category_unit dl {
  display: flex;
  gap: 20px;
  border-bottom: solid 1px #ddd;
  padding-bottom: 40px;
  flex-direction: column;
}

.job_category_unit dl:nth-last-of-type(1) {
  border: none;
  padding-bottom: 0;
}

.job_category_unit dl+dl {
  margin-top: 40px;
}

.job_category_unit dt {
  width: 100%;
}

.job_category_unit dt figure {
  width: 80%;
  margin: auto;
}

.job_category_unit dt figure img {
}

.job_category_unit dd {
  width: 100%;
}

.job_category_unit dd h3 {
  font-size: 5vw;
  font-weight: bold;
}

.job_category_unit dd h4 {
  margin-top: 5px;
  padding: 10px 10px;
  color: #fff;
  font-weight: bold;
  font-size: 3.5vw;
}

#job_category_construction_management dd h4 {
  background: #3366ff;
  font-weight: bold;
}

#job_category_design dd h4 {
  background: #0099cc;
}

#job_category_sales dd h4 {
  background: #333399;
}

#job_category_safety dd h4 {
  background: #006600;
}

#job_category_technology dd h4 {
  background: #336699;
}

#job_category_management dd h4 {
  background: #339999;
}

.job_category_unit dd p {
  font-size: 2.5vw;
  text-align: justify;
  margin-top: 20px;
}

/*--------category_navi--------ここまで------------------*/
/*--------culture--------------------------*/
#culture_main {
  margin: 60px 0;
}

#culture_title_header {
  display: grid;
  place-items: center;
  height: 400px;
  background: url(../img/culture/culture_bg.jpg);
  background-position: 36% center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 100px;
}

.culture_title_header_inner {
  text-align: center;
  /* margin-top: 75px; */
}

.culture_title_header_inner h1 {
  font-size: 11vw;
  /* font-weight: bold; */
  margin: 0;
  letter-spacing: 0.04em;
  font-family: "roboto", sans-serif;
  color: #fff;
  -webkit-text-stroke: 0.5px;
  line-height: 1;
}

.culture_title_header_inner p {
  font-size: 2.7vw;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.cluture_unit {
}

#culture_sub {
  padding: 1px 0;
  background: #efefef;
}

.culture_unit_wrap {
}

.culture_unit_inner {
  max-width: 1280px;
  margin: 60px auto;
  padding: 0 0px;
  width: 94%;
}

.culture_unit_wrap h2 {
  font-size: 5vw;
  font-weight: bold;
  border-bottom: solid 4px var(--theme-accent);
  /* max-width: 372px; */
  text-align: center;
  letter-spacing: 0.2em;
  margin: 0px auto 30px;
}

.culture_unit_wrap dl {
  display: flex;
  border-bottom: solid 1px var(--theme-accent);
  padding: 20px 0;
  gap: 3%;
}

.culture_unit_wrap dt {
  width: 22%;
  font-size: 3.4vw;
}

.culture_unit_wrap dt p {
  width: 4.2em;
  text-align-last: justify;
  font-weight: bold;
}

.culture_unit_wrap dd {
  width: 75%;
  font-size: 3.5vw;
}

#culture_sub {
  margin-bottom: 120px;
}

#culture_sub .culture_unit_inner {
  max-width: 1280px;
  margin: 60px auto;
  padding: 0 0px;
}

#culture_sub h3 {
  font-size: 6vw;
  text-align: center;
  font-weight: bold;
  color: var(--theme-accent);
}

#culture_sub h4 {
  text-align: center;
  font-size: 3vw;
  font-weight: bold;
}

.culture_welfare {
  display: flex;
  gap: 30px calc(7% / 2);
  flex-wrap: wrap;
  margin: 60px 0 0;
}

.culture_welfare li {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
}

.culture_welfare li figure {
}

.culture_welfare li figure img {
  width: auto;
  margin: auto;
}

.culture_welfare li h5 {
  font-size: 5vw;
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  font-feature-settings: "palt";
  /* min-height: 75px; */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.culture_welfare li p {
  margin-top: 10px;
  text-align: justify;
  font-size: 3vw;
}

.toppage_btn {
  max-width: 1280px;
  margin: 30px auto 30px;
  width: 90%;
  display: none;
}

.toppage_btn a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  position: relative;
}

.toppage_btn a::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 50%;
  transform: rotate(45deg) translate(-50%, 22%);
  display: block;
  width: 22px;
  height: 22px;
  border: 0;
  border-top: solid 3px #111;
  border-left: solid 3px #111;
}

.footer_toppage_btn {
  max-width: 1280px;
  margin: 0px auto 0px;
  width: 90%;
  padding: 30px 0;
}

.footer_toppage_btn a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  position: relative;
}

.footer_toppage_btn a::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 50%;
  transform: rotate(45deg) translate(-50%, 22%);
  display: block;
  width: 22px;
  height: 22px;
  border: 0;
  border-top: solid 3px #111;
  border-left: solid 3px #111;
}

/*--------culture--------ここまで------------------*/
/*--------taoyaka--------------------------*/
#taoyaka {
}

#taoyaka .wrapper {
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
  /* padding-bottom: 180px; */
}

.taoyaka_wrapper_color {
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
  padding-bottom: 60px;
}

#taoyaka_header {
  display: grid;
  height: 250px;
  margin-top: 100px;
}

.taoyaka_header_inner {
  width: fit-content;
  position: relative;
  margin: auto auto 0;
}

.taoyaka_header_inner p {
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.04em;
  font-family: YuMincho, 'Yu Mincho', serif;
}

.taoyaka_header_inner h1 {
  font-size: 8vw;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.1em;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  padding-right: 1em;
}

.taoyaka_header_inner figure {
  margin: 0px 0px 0 10px;
  width: 40%;
}

.taoyaka_header_inner figure img {
  width: 100%;
}

.taoyaka_header_inner figure.leaf {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  width: 110px;
}

.taoyaka_title_h2 {
  font-size: 7vw;
  text-align: center;
  margin: 60px 0 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.taoyaka_main {
  max-width: 1280px;
  margin: 0 auto 120px;
  background: #fff;
  padding: 30px 20px;
  width: 90%;
}

.taoyaka_inner {
  margin: auto;
}

.taoyaka_inner+.taoyaka_inner {
  margin: 80px auto 0;
}

.taoyaka_content_title {
  border-left: solid 15px #ff4f7e;
  border-bottom: solid 2px #ff4f7e;
  padding: 0 0px 6px 15px;
}

.taoyaka_content_title h4 {
  font-size: 17px;
  font-weight: bold;
}

.taoyaka_content_title h3 {
  font-size: 4vw;
  font-weight: bold;
}

.taoyaka_main p {
  margin: 20px 0;
  font-size: 3.5vw;
  text-align: justify;
}

.taoyaka_main ul {
  display: flex;
  gap: 20px;
  align-items: end;
  flex-direction: column;
}

.taoyaka_main li {
  width: 100%;
}

.taoyaka_main figure {
}

.taoyaka_main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*--------taoyaka--------ここまで------------------*/
/*--------womens_activities--------------------------*/
#womens_activities {
}

#womens_activities_header {
  display: grid;
  place-items: end center;
  height: 400px;
  background-repeat: no-repeat;
  background: url(../img/womens_activities/womens_activities_sp_bg.jpg);
  background-position: center center;
  background-size: cover;
  margin-top: 100px;
}

.womens_activities_header_inner {
  text-align: center;
  /* margin-top: 7%; */
  margin-bottom: 10px;
}

.womens_activities_header_inner h1 {
  font-size: 15vw;
  margin: 0;
  font-family: "roboto", sans-serif;
  color: #fff;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #fff;
}

.womens_activities_header_inner p {
  font-size: 5vw;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
}

.womens_activities_gradation_line {
  width: 100%;
  height: 25px;
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
}

.womens_activities_main {
  max-width: 1280px;
  margin: 60px auto;
}

.womens_activities_main h2 {
  font-size: 5.5vw;
  font-weight: bold;
  text-align: center;
  font-family: YuMincho, 'Yu Mincho', serif;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

.womens_activities_main_unit {
  margin: 45px 0;
  max-width: 1100px;
  margin-left: auto;
  /* padding-right: 30px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}

.womens_activities_main_unit:nth-of-type(1) .womens_activities_main_image img {
  object-position: 7% center;
}

.womens_activities_main_line {
  width: 24%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.womens_first_line {
  width: 100px;
  height: 30px;
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
  transform: translateX(-30%);
  opacity: 0;
  display: none;
}

.womens_first_line.isPlay {
  animation: leftmove 1s 2s forwards;
}

@keyframes leftmove {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes rightmove {
  0% {
    opacity: 0;
    transform: translateX(30%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.womens_second_line {
  width: 140px;
  height: 30px;
  margin-top: 30px;
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
  margin-left: 30px;
  transform: translateX(-30%);
  opacity: 0;
  display: none;
}

.womens_second_line.isPlay {
  animation: leftmove 1s 2.25s forwards;
}

.womens_third_line {
  width: 250px;
  height: 30px;
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
  margin-left: -40px;
  transform: translateX(30%);
  opacity: 0;
  display: none;
}

.womens_third_line.isPlay {
  animation: rightmove 1s 2s forwards;
}

.womens_forth_line {
  width: 140px;
  height: 30px;
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
  margin-top: 80px;
  margin-left: 40px;
  transform: translateX(-30%);
  opacity: 0;
  display: none;
}

.womens_forth_line.isPlay {
  animation: leftmove 1s 2s forwards;
}

.womens_activities_main_image {
  width: 76%;
  /* max-height: 425px; */
  opacity: 0;
  height: 360px;
}

.womens_activities_main_image.isPlay {
  animation: opa 1s 1s forwards;
}

.womens_activities_main_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.womens_activities_main_catch {
  width: 77%;
  background: rgb(251 215 207 / 70%);
  /* height: 340px; */
  margin-top: -50px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: end;
  opacity: 0;
  margin: -50px 20px 0;
}

.womens_activities_main_catch.isPlay {
  animation: opa 1s 1.5s forwards;
}

.womens_activities_main_catch h3 {
  font-size: 4.5vw;
  line-height: 1.5;
  font-family: YuMincho, 'Yu Mincho', serif;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-weight: bold;
}

.womens_activities_main_catch p {
  font-size: 3vw;
  text-align: justify;
  margin-top: 10px;
}

.reve {
  flex-direction: row-reverse;
  margin-right: auto;
  margin-left: 0;
}

.womens_activities_main_unit:nth-of-type(2) .womens_activities_main_catch {
  background: rgb(152 218 215 / 70%);
}

.womens_activities_main_unit:nth-of-type(3) .womens_activities_main_catch {
  background: rgb(251 220 140 / 70%);
}

.womens_activities_main_sign {
  width: 100%;
  opacity: 0;
  margin-top: 10px;
}

.womens_activities_main_sign.isPlay {
  animation: opa 1s 2.5s forwards;
}

.womens_activities_main_sign img {
  width: 80%;
  margin-left: auto;
  padding-right: 8%;
  /* margin-top: -2%; */
}

.womens_activities_support_system {
  background: url(../img/womens_activities/womens_activities_support_system_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 50px 0 50px;
}

.womens_activities_support_system h2 {
  font-size: 5vw;
  text-align: center;
  font-family: YuMincho, 'Yu Mincho', serif;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-weight: bold;
}

.womens_activities_support_system ul {
  display: flex;
  max-width: 1000px;
  margin: 40px auto 0;
  gap: 20px 6%;
  flex-wrap: wrap;
  width: 90%;
}

.womens_activities_support_system li {
  width: 47%;
  background: #fff;
  padding: 15px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.womens_activities_support_system figure {
  margin-bottom: 10px;
  width: 80%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
}

.womens_activities_support_system img {
}

.womens_activities_support_system p {
  font-size: 3.5vw;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  font-feature-settings: "palt";
}

.womens_activities_support_system p span {
  font-size: 11vw;
  line-height: 1;
  font-family: "roboto", sans-serif;
  font-weight: bold;
  letter-spacing: -0.1em;
  margin: 0 6px;
  display: inline-block;
}

.womens_activities_support_system p span.pink {
  color: #ff4f7e;
}

.womens_activities_support_system p span.blue {
  color: #24b0ab;
}

.womens_activities_support_system p.small {
  font-size: 2.5vw;
  line-height: 1.3;
  margin-top: 5px;
}

.mamapapa_talk_bnr {
  margin: 30px 0;
}

.mamapapa_talk_bnr a {
}

ul.mamapapa_talk_bnr_unit {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

li.mamapapa_talk_bnr_unit_left {
  background: #88e0d9;
  width: 15%;
  clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  height: 100px;
  margin-bottom: 55px;
}

li.mamapapa_talk_bnr_unit_center {
  width: 65%;
}

img.mamapapa_talk_bnr_title {
  width: 85%;
  margin: auto;
}

ul.mamapapa_talkbnr_unit_photo {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

ul.mamapapa_talkbnr_unit_photo li {
  border-radius: 50%;
  overflow: hidden;
  width: 24%;
}

ul.mamapapa_talkbnr_unit_photo li img {
}

div.mamapapa_line {
  width: 100%;
  height: 10px;
  margin: 10px 0;
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
}

p.mamapapa_comment {
  font-size: 4vw;
  text-align: center;
  color: #333;
  font-family: YuMincho, 'Yu Mincho', serif;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-weight: bold;
  line-height: 1.3;
}

li.mamapapa_talk_bnr_unit_right {
  width: 15%;
  background: #c5e250;
  clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
  height: 100px;
  margin-bottom: 55px;
}

.womens_activities_taoyaka {
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
  margin-bottom: 120px;
}

.womens_activities_taoyaka_inner {
  /* background: url(../img/womens_activities/womens_activities_taoyaka_inner_bg.png); */
  padding: 30px 0 30px;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: left top;
  background-attachment: fixed;
}

.womens_activities_taoyaka_header_inner {
  width: fit-content;
  position: relative;
  margin: auto auto 0;
}

.womens_activities_taoyaka_header_inner p {
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.04em;
  font-family: YuMincho, 'Yu Mincho', serif;
}

.womens_activities_taoyaka_header_inner h1 {
  font-size: 8vw;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.1em;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  padding-right: 1em;
}

.womens_activities_taoyaka_header_inner figure {
  margin: 0px 0px 0 10px;
  width: 40%;
}

.womens_activities_taoyaka_header_inner figure img {
  width: 100%;
}

.womens_activities_taoyaka_header_inner figure.leaf {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  width: 100px;
}

.womens_activities_taoyaka_main {
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
}

.womens_activities_taoyaka_main h4 {
  font-size: 3.5vw;
  text-align: justify;
}

.outline_wrap {
  position: relative;
}

.outline_wrap h5 {
  font-size: 3.5vw;
  letter-spacing: 0.1em;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  background: rgb(255 255 255 / 60%);
  padding: 40px 10px;
  text-align: center;
  font-weight: bold;
  margin: 60px 30px 60px;
  width: auto;
  line-height: 2;
  position: relative;
}

.left_cross {
  content: "";
  position: absolute;
  top: -15px;
  left: 0px;
  width: 240px;
  height: 90px;
  display: block;
}

.left_cross .width_cross {
  width: 150px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
}

.left_cross .height_cross {
  width: 2px;
  height: 90px;
  background: #fff;
  display: block;
  position: relative;
  top: -15px;
  left: 15px;
}

.right_cross {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 90px;
  display: block;
}

.right_cross .width_cross {
  width: 150px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
  right: 0px;
  bottom: -105px;
}

.right_cross .height_cross {
  width: 2px;
  height: 90px;
  background: #fff;
  display: block;
  position: relative;
  bottom: -30px;
  left: 135px;
}

.womens_activities_taoyaka_role {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
}

.womens_activities_taoyaka_role h2 {
  font-size: 6vw;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  font-weight: bold;
  margin-bottom: 30px;
}

.taoyaka_role_box {
  background: #fff;
  border-radius: 30px;
  position: relative;
  width: 90%;
  margin: auto;
}

.taoyaka_role_box+.taoyaka_role_box {
  margin-top: 40px;
}

.taoyaka_role_box::after {
  content: "";
  position: absolute;
  bottom: -17px;
  right: -20px;
  background: url(../img/taoyaka/taoyaka_leaf.png);
  width: 114px;
  height: 103px;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
}

.taoyaka_role_box h3 {
  color: #fff;
  font-weight: bold;
  padding: 10px 30px;
  font-size: 4vw;
  letter-spacing: 0.04em;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.taoyaka_role_box h3.pi {
  background: #ff4f7e;
}

.taoyaka_role_box h3.ye {
  background: #f6b057;
}

.taoyaka_role_box h3.bl {
  background: #68c2c0;
}

.taoyaka_role_box_text {
  padding: 20px 20px 30px;
}

.taoyaka_role_box_text p {
  font-size: 3.5vw;
  /* font-weight: bold; */
  letter-spacing: 0.04em;
  padding-left: 1em;
  text-indent: -1em;
}

.taoyaka_role_box_text p+p {
  margin-top: 10px;
}

.taoyaka_role_box_text p.pi::before {
  content: "●";
  color: #ff4f7e;
}

.taoyaka_role_box_text p.ye::before {
  content: "●";
  color: #f6b057;
}

.taoyaka_role_box_text p.bl::before {
  content: "●";
  color: #68c2c0;
}

.initiative_report {
  width: 94%;
  margin: auto;
}

.initiative_report a {
  background: rgb(248, 175, 159);
  background: linear-gradient(90deg, rgba(248, 175, 159, 1) 0%, rgba(249, 180, 117, 1) 37%, rgba(249, 185, 78, 1) 50%, rgba(160, 203, 108, 1) 87%, rgba(73, 220, 138, 1) 100%);
  padding: 20px;
  margin-top: 60px;
}

.initiative_report ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.initiative_report li:nth-of-type(1) {
  width: 15%;
}

.initiative_report li:nth-of-type(1) img {
}

.initiative_report li:nth-of-type(2) {
  text-align: center;
  width: 63%;
}

.initiative_report li:nth-of-type(2) h3 {
  font-size: 4vw;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  font-weight: bold;
}

.initiative_report li:nth-of-type(2) h4 {
  font-size: 5.0vw;
  letter-spacing: 0.04em;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  font-weight: bold;
  line-height: 1.3;
}

.initiative_report li:nth-of-type(3) {
  width: 15%;
}

.initiative_report li:nth-of-type(3) img {
  transform: scale(-1, 1);
}

/*--------womens_activities--------ここまで------------------*/
/*--------training--------------------------*/
#training {
}

#training_title_header {
  display: grid;
  place-items: center;
  height: 400px;
  background: url(../img/training/training_bg.jpg);
  background-position: 22% center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 100px;
}

.training_main .section_inner {
  width: 94%;
}

.training_title_header_inner {
  text-align: center;
  /* margin-top: 75px; */
}

.training_title_header_inner h1 {
  font-size: 12vw;
  /* font-weight: bold; */
  margin: 0;
  letter-spacing: 0.04em;
  font-family: "roboto", sans-serif;
  color: #fff;
  -webkit-text-stroke: 0.5px;
  line-height: 1;
}

.training_title_header_inner p {
  font-size: 4vw;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.section_title {
  text-align: center;
}

.section_title h2 {
  font-size: 8vw;
  font-weight: bold;
}

.section_title p {
  font-size: 4vw;
  margin-top: 20px;
  text-align: justify;
}

.training_unit {
  max-width: 1120px;
  margin: 60px auto 120px;
}

.training_unit_inner {
}

.training_unit h3 {
  font-size: 7vw;
  font-weight: bold;
  border-bottom: solid 4px var(--theme-accent);
  max-width: 8em;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0px auto 30px;
}

.training_unit h4 {
  background: #111;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 5vw;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}

.training_unit h5 {
  color: var(--theme-accent);
  font-size: 4.5vw;
  text-align: center;
  font-weight: bold;
}

.training_unit p {
  text-align: justify;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 3.5vw;
}

.training_table {
}

.training_table dl {
  display: flex;
  border-bottom: solid 1px var(--theme-accent);
  margin-bottom: 30px;
  padding-bottom: 30px;
  flex-direction: column;
}

.training_table dt {
  width: 100%;
  font-size: 4.5vw;
  font-weight: bold;
  padding: 0 1em;
  display: grid;
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
}

.training_table dd {
  width: 100%;
  text-align: justify;
  font-size: 3vw;
}

.training_unit figure {
  width: 90%;
  margin: 60px auto 0;
}

.training_unit figure img {
}

.training_list {
  border: solid 4px var(--theme-accent);
  padding: 10vw;
  margin-top: 30px;
}

.training_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px calc(8% / 3);
}

.training_list li {
  width: 100%;
  font-size: 3vw;
  font-weight: bold;
  padding-left: 1em;
  text-indent: -1em;
}

/*--------training--------ここまで------------------*/
/*--------recruitment_guidelines--------------------------*/
#recruit {
}

.recruitment_unit {
}

.recruitment_unit_block {
  max-width: 1020px;
  margin: auto;
  width: 90%;
}

.recruitment_unit_block+.recruitment_unit_block {
  margin-top: 40px;
}

.recruitment_unit h3 {
  border-left: solid 13px var(--theme-accent);
  padding: 5px 20px;
  margin-bottom: 20px;
  font-size: 5vw;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.recruitment_unit dl {
  display: flex;
  /* border-bottom: solid 1px #808080; */
  flex-direction: column;
  /* margin-bottom: 10px; */
}

.recruitment_unit dt {
  background: #efefef;
  width: 100%;
  padding: 6px;
  line-height: 1.7;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
}

.recruitment_unit dd {
  width: 100%;
  padding: 20px 10px;
  line-height: 1.7;
  font-size: 3vw;
}

.recruitment_unit dd a {
  color: var(--theme-accent);
  font-weight: bold;
}

.recruitment_unit dd table {
  border-top: solid 1px #808080;
  border-left: solid 1px #808080;
  width: 100%;
}

.recruitment_unit dd tr {
  border-bottom: solid 1px #808080;
}

.recruitment_unit dd td {
  border-right: solid 1px #808080;
  padding: 3px 3px;
  font-size: 2.5vw;
  text-align: center;
}

.recruit_mail {
  display: inline-block;
}

#faq {
  margin-top: 60px;
  margin-bottom: 120px;
}

.faq_title {
  text-align: center;
}

.faq_title h3 {
  margin-bottom: 20px;
  font-size: 16vw;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: var(--theme-accent);
  font-family: "roboto", sans-serif;
}

.faq_title p {
  font-size: 5vw;
  font-weight: bold;
}

.faq_back_inner {
  width: 90%;
  margin: 30px auto 0;
}

.faq_back_inner_bg {
  position: sticky;
  top: 70px;
  z-index: -1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.faq_back_inner_bg img {
  position: absolute;
  z-index: 0;
  width: 90%;
  margin: 20px auto;
  /* width: 100%; */
  display: block;
  display: none;
}

.faq_inner {
  border: solid 1px var(--theme-accent);
  max-width: 1280px;
  margin: 0px auto 0;
  padding: 20px;
  background: url(../img/recruitment_guidelines/faq_back_bg.png);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center center;
  background-attachment: fixed;
}

dl.question {
  display: flex;
  /* align-items: center; */
  max-width: 900px;
  margin: auto;
  padding: 0 0px 10px;
  gap: 5%;
}

dl.question dt {
  font-size: 12vw;
  font-family: "roboto", sans-serif;
  line-height: 1;
  /* margin-right: 20px; */
  color: var(--theme-accent);
  font-weight: bold;
  width: 15%;
}

dl.question dd {
  font-size: 3.5vw;
  color: var(--theme-accent);
  font-weight: bold;
  width: 80%;
}

dl.answer {
  display: flex;
  border-bottom: solid 1px var(--theme-accent);
  padding: 0px 0px 20px;
  max-width: 900px;
  margin: 0px auto 20px;
  gap: 5%;
}

dl.answer dt {
  font-size: 12vw;
  font-family: "roboto", sans-serif;
  line-height: 1;
  /* margin-right: 20px; */
  font-weight: bold;
  width: 15%;
}

dl.answer dd {
  width: 80%;
}

dl.answer dd p {
  font-size: 3vw;
}

dl.answer dd p.down {
  /* padding-top: 13px; */
}

/*--------recruitment_guidelines--------ここまで----------*/
/*--------experienced_header------------------------------*/
#experienced_hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
  margin-top: 100px;
  z-index: 3;
}

.experienced_back_block {
}

.experienced_back_block img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.01;
  transform-origin: center;
}

.experienced_catch_block_top {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 80%;
  text-align: center;
}

.experienced_catch_block_top h1 {
  font-size: 8vw;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-weight: bold;
  letter-spacing: 0.15em;
  font-feature-settings: "palt";
}

.experienced_catch_block_top figure {
}

.experienced_catch_block_top img:nth-of-type(1) {
  width: 100%;
  filter: drop-shadow(1px 3px 6px rgba(0, 0, 0, .2));
  margin: 40px auto;
}

.experienced_catch_block_bottom {
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100%;
}

.experienced_catch_block_bottom img {
  width: 100%;
  display: grid;
  place-items: center;
  width: 37%;
}

.experienced_scroll_block {
  position: absolute;
  bottom: 3%;
  left: 7vw;
  display: none;
}

.experienced_scroll_block img {
  width: 25px;
}

.scroll_block svg {
  width: 25px;
}

.scroll_block svg #poly {
  animation-name: scroll;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0px) scaleY(0.8);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(20px) scaleY(1.2);
    opacity: 0;
  }
}

/*--------experienced_header--------ここまで------------------*/
/*--------experienced--------------------------*/
.ex_point {
  background-image: url(../img/ex_point_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  padding: 100px 0 1px;
  z-index: 1;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 99%, 0% 100%);
}

.ex_point_inner {
  margin-bottom: 100px;
}

dl.ex_point_block {
  display: flex;
  max-width: 1280px;
  flex-direction: column-reverse;
  width: 90%;
  margin: 0px auto 0;
}

dl.ex_point_block dt {
  width: 100%;
  background: #fff;
  padding: 30px 30px 30px;
  /* border-image: linear-gradient(0deg, #fff 100%, #0000 0) fill 0 //0 10vw 0 0; */
  display: grid;
  place-content: end;
}

dl.ex_point_block dt h3 {
  font-size: 5vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

dl.ex_point_block dt p {
  font-size: 3.5vw;
  margin-top: 30px;
  text-align: justify;
}

dl.ex_point_block dd {
  width: 100%;
  position: relative;
  /* top: -50px; */
  /* margin-right: calc(50% - 50vw); */
  /* flex: 1; */
  /* min-height: 550px; */
}

dl.ex_point_block dd figure {
  height: 100%;
}

dl.ex_point_block dd figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

dl.ex_point_block_re {
  display: flex;
  max-width: 1280px;
  flex-direction: column-reverse;
  margin: 60px auto 60px;
  width: 90%;
}

dl.ex_point_block_re dt {
  width: 100%;
  background: #fff;
  padding: 30px 30px;
  /* border-image: linear-gradient(0deg, #fff 100%, #0000 0) fill 0 //0 0 0 10vw; */
  display: grid;
  /* place-content: end; */
}

dl.ex_point_block_re dt h3 {
  font-size: 5.5vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

dl.ex_point_block_re dt p {
  font-size: 3.5vw;
  margin-top: 40px;
  text-align: justify;
}

dl.ex_point_block_re dd {
  width: 100%;
  position: relative;
  /* top: -50px; */
  /* margin-left: calc(50% - 50vw); */
  /* flex: 1; */
  /* min-height: 550px; */
}

dl.ex_point_block_re dd figure {
  height: 100%;
}

dl.ex_point_block_re dd figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------experienced--------ここまで------------------*/
/*--------ex_about--------------------------*/
.ex_about {
  padding: 0px 0 0px;
  position: relative;
}

.ex_about_inner {
  width: 100%;
  max-width: 1280px;
  margin: 0px auto 120px;
}

.ex_title_unit {
  width: fit-content;
  margin: 130px auto 0;
}

.ex_title_unit h2 {
  color: #0065b3;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  font-size: 18vw;
  margin-top: -100px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ex_title_unit p {
  color: #0065b3;
  font-weight: bold;
  font-size: 4.5vw;
  margin-top: 10px;
  letter-spacing: 0.08em;
}


.ex_about_graph_inner figure {
}

.ex_about_graph_inner figure img {
  width: 90%;
  margin: auto;
}

.ex_interview {
  border-bottom: solid 1px #666;
  position: relative;
}

.ex_interview_inner {
  width: 100%;
  max-width: 1280px;
  margin: 60px auto;
}

dl.ex_interview_block {
  display: flex;
  max-width: 1280px;
  margin: 60px auto 0;
  align-items: center;
}

dl.ex_interview_block dt {
  width: 100%;
  display: flex;
  flex-direction: column;
}

dl.ex_interview_block dt h3 {
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  background: #111;
  color: #fff;
  line-height: 1.5;
  width: fit-content;
  padding: 5px 10px;
  margin-top: 5px;
  position: relative;
}

dl.ex_interview_block dt p {
  font-size: 3vw;
  background: #0065b3;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  letter-spacing: 0.04em;
  width: fit-content;
  text-align: left;
  /* margin-left: auto; */
  /* min-width: 400px; */
  position: relative;
  /* right: -60px; */
}

dl.ex_interview_block dd {
  width: 100%;
  margin-left: -10em;
}

dl.ex_interview_block dd figure {
  height: 100%;
}

dl.ex_interview_block dd figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

dl.ex_interview_block_re {
  display: flex;
  max-width: 1280px;
  margin: 60px auto 0;
  width: 100%;
  align-items: center;
}

dl.ex_interview_block_re dt {
  text-align: right;
  width: 100%;
  display: flex;
  flex-direction: column;
}

dl.ex_interview_block_re dt h3 {
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  background: #111;
  color: #fff;
  line-height: 1.5;
  width: fit-content;
  /* margin-left: auto; */
  padding: 5px 10px;
  margin-top: 5px;
  position: relative;
  /* right: -60px; */
}

dl.ex_interview_block_re dt p {
  font-size: 3vw;
  background: #0065b3;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  letter-spacing: 0.04em;
  width: fit-content;
  text-align: left;
  /* margin-left: auto; */
  /* min-width: 400px; */
  position: relative;
  /* right: -60px;*/
}

dl.ex_interview_block_re dd {
  width: 50%;
  width: 100%;
  /* margin-right: calc(50% - 50vw); */
  /* flex: 1; */
  margin-left: -10em;
}

dl.ex_interview_block_re dd figure {
  height: 100%;
  width: 100%;
}

dl.ex_interview_block_re dd figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ex_interview_text {
  margin: 30px auto;
  max-width: 900px;
  width: 90%;
}

.ex_interview_text p {
  text-align: justify;
  font-size: 3vw;
}

.ex_interview_text p+p {
  margin-top: 20px;
}

.ex_interview_text ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-direction: column;
}

.ex_interview_text li {
  width: 80%;
  margin: auto;
}

.ex_interview_text li:nth-of-type(2) {
  margin-top: 0px;
}

.ex_interview_text img {
}

.ex_interview_text h4 {
  font-size: 5vw;
  color: #0065b3;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}

.ex_recruitment {
}

.ex_recruitment_unit {
  margin: 0px 0 60px;
}

.ex_recruitment_unit_block {
  max-width: 1020px;
  margin: auto;
  width: 90%;
}

.ex_recruitment_unit_block+.ex_recruitment_unit_block {
  margin-top: 40px;
}

.ex_recruitment_unit h3 {
  border-left: solid 13px #0065b3;
  padding: 5px 20px;
  margin-bottom: 20px;
  font-size: 5vw;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.ex_recruitment_unit dl {
  display: flex;
  flex-direction: column;
}

.ex_recruitment_unit dt {
  background: #efefef;
  width: 100%;
  padding: 6px;
  line-height: 1.7;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
}

.ex_recruitment_unit dd {
  width: 100%;
  padding: 20px 10px;
  line-height: 1.7;
  font-size: 3vw;
}

.ex_recruitment_title {
  background: linear-gradient(90deg, rgba(255, 0, 0, 1) 0%, rgba(255, 82, 18, 1) 19%, rgba(255, 158, 35, 1) 100%);
  margin: 60px 0 60px;
}

.ex_recruitment_title h2 {
  text-align: center;
  color: #fff;
  font-size: 5vw;
  padding: 25px 0;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
}

.ex_recruitment_contact {
  margin-bottom: 120px;
}

.ex_recruitment_contact_inner {
  max-width: 840px;
  margin: auto;
  width: 90%;
}

.ex_recruitment_contact h5 {
  position: relative;
}

.ex_recruitment_contact h5:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #111;
}

.ex_recruitment_contact h5 span {
  font-size: 4vw;
  position: relative;
  padding-right: 20px;
  background: #fff;
  z-index: 1;
  font-weight: bold;
}

.ex_recruitment_contact p {
  font-size: 3.5vw;
  border-bottom: solid 1px #111;
  padding: 20px 0;
}

.ex_recruitment_contact p a {
  font-size: 3.5vw;
  display: inline-block;
  color: var(--theme-accent);
}

.ex_footer {
  padding: 50px 0 50px;
  background-image: none;
}

/*--------ex_about--------ここまで------------------*/
/*--------message--------------------------*/
#message_title_header {
  background: url(../img/message/message_bg.jpg);
  background-position: top center;
  background-size: 135%;
  background-repeat: no-repeat;
  height: 400px;
  /* display: grid; */
  /* place-content: end center; */
  margin-bottom: 150px;
  margin-top: 80px;
}

.message_title_header_inner {
  text-align: center;
  background: #fff;
  padding: 20px 20px 20px;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .3));
  position: relative;
  bottom: -60%;
  width: 70%;
  margin: auto;
}

.message_title_header_inner h1 {
  font-size: 6vw;
  margin: 0;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  border-bottom: solid 7px var(--theme-accent);
  line-height: 1.3;
  width: 100%;
  padding-bottom: 10px;
}

.message_title_header_inner p {
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.message_unit {
  position: relative;
}

.message_unit_inner dt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: var(--theme-accent);
  transform: rotate(353deg) translate(0px, -34px) scale(1.1);
}

.message_unit_inner:nth-of-type(2) dt {
  margin-top: 60px;
}

.message_unit_inner:nth-of-type(3) dt {
  margin-top: 60px;
}

.message_unit_inner:nth-of-type(2) dt:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: var(--theme-accent);
  transform: rotate(4deg) translate(0px, -32px) scale(1.1);
}

.message_unit_inner:nth-of-type(3) dt:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: var(--theme-accent);
  transform: rotate(353deg) translate(0px, -34px) scale(1.1);
}

.message_unit_inner {
  margin: 100px auto;
}

.message_unit h2 {
  font-size: 4.8vw;
  font-weight: bold;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  font-family: YuMincho, 'Yu Mincho', serif;
  position: relative;
  width: 90%;
  margin: auto;
  padding: 0 10px;
}

.message_unit h2::after {
  content: "";
  background-image: url(../img/message/message_fukidashi.png);
  width: 75vw;
  height: 100px;
  position: absolute;
  bottom: -45%;
  left: -7%;
  background-size: contain;
  background-repeat: no-repeat;
}

.message_unit h2+p {
  margin-top: 70px;
}

.message_unit dl {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.message_unit dl.re {
  flex-direction: column-reverse;
}

.message_unit dt {
  width: 80%;
  margin-top: 50px;
}

.message_unit dt figure {
}

.message_unit dt figure img {
  position: relative;
  z-index: 2;
}

.message_unit dd {
  width: 90%;
  /* padding-right: 2em; */
  margin: auto;
}

.message_unit dd p {
  font-size: 3vw;
  text-align: justify;
}

.message_unit dd p+p {
  margin-top: 10px;
}

.message_unit dd p.member {
  font-weight: bold;
  float: right;
}

.message_unit dd p.member_r {
  font-weight: bold;
  float: right;
}

.message_other {
  margin-bottom: 120px;
}

.message_other_inner {
  max-width: 900px;
  margin: auto;
  width: 90%;
}

ul.member_other_unit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
  align-items: flex-start;
}

ul.member_other_unit+ul.member_other_unit {
  margin-top: 60px;
}

ul.member_other_unit li:nth-of-type(1) {
  width: 25%;
  max-width: 168px;
}

ul.member_other_unit li:nth-of-type(1) figure {
}

ul.member_other_unit li:nth-of-type(1) figure img {
}

ul.member_other_unit li:nth-of-type(2) {
  width: 70%;
  font-size: 3vw;
  text-align: justify;
  line-height: 1.5;
}

ul.member_other_unit li:nth-of-type(3) {
  font-size: 3vw;
  font-weight: bold;
  margin-left: 30%;
}

ul.member_other_unit_point {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
  align-items: flex-start;
  margin-top: 30px;
  border: solid 4px var(--theme-accent);
  padding: 20px 15px;
  border-radius: 40px;
}

ul.member_other_unit_point li:nth-of-type(1) {
  width: 25%;
  /* max-width: 168px; */
}

ul.member_other_unit_point li:nth-of-type(1) figure {
}

ul.member_other_unit_point li:nth-of-type(1) figure img {
}

ul.member_other_unit_point li:nth-of-type(2) {
  width: 70%;
  font-size: 20px;
  text-align: justify;
  line-height: 1.7;
}

ul.member_other_unit_point li:nth-of-type(2) h5 {
  width: 100%;
  line-height: 1.7;
  font-weight: bold;
  color: var(--theme-accent);
  font-size: 5vw;
  font-family: "roboto", sans-serif;
  margin-bottom: 5px;
}

ul.member_other_unit_point li:nth-of-type(2) p {
  font-size: 3vw;
}

ul.member_other_unit_point li:nth-of-type(3) {
  font-size: 3vw;
  font-weight: bold;
  /* text-align: center; */
  width: 70%;
  /* max-width: 168px; */
  margin-left: 30%;
}

/*--------message--------ここまで------------------*/
/*--------freshers--------------------------*/
#freshers {
}

#freshers_title_header {
  background: url(../img/freshers/freshers_sp_bg.jpg);
  background-position: center center;
  background-size: cover;
  height: 400px;
  display: grid;
  place-content: end center;
  margin-top: 100px;
}

.freshers_title_header_inner {
  text-align: center;
}

.freshers_title_header_inner h1 {
  font-size: 14vw;
  margin: 0;
  color: rgb(255 255 255 / 50%);
  font-weight: bold;
  font-family: "roboto", sans-serif;
  line-height: 1;
}

.freshers_title_header_inner p {
  font-feature-settings: "palt";
  font-size: 5vw;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1;
}

.freshers_head {
  margin: 60px 0;
}

.freshers_head_inner {
  text-align: center;
}

.freshers_head h2 {
  font-size: 5vw;
  font-weight: bold;
  width: 94%;
  margin: auto;
  text-align: center;
}

.freshers_head h3 {
  font-size: 8vw;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  line-height: 1;
  color: var(--theme-accent);
  margin: 30px 0 30px;
}

.freshers_head_members {
  display: flex;
  max-width: 1086px;
  margin: auto;
  justify-content: center;
  gap: 40px 10%;
  flex-wrap: wrap;
  width: 94%;
  position: relative;
}

.freshers_head_members > .s_cross {
  display: none;
}

.freshers_head_members_block {
  width: 45%;
}

.freshers_head_members_block figure {
  border: solid 6px var(--theme-accent);
  border-radius: 50%;
  overflow: hidden;
  max-width: 80%;
  margin: auto;
}

.freshers_head_members_block figure img {
  width: 100%;
}

.freshers_head_members_block figcaption {
  margin-top: 10px;
  font-size: 3vw;
  font-weight: bold;
}

span.s_cross {
  display: block;
  position: relative;
  width: 60px;
  height: 26vw;
}

span.s_cross::before, span.s_cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 3px;
  height: 60px;
  background: #111;
}

span.s_cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

span.s_cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

span.ex_cross {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

span.ex_cross::before, span.ex_cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 4px;
  height: 100px;
  background: #111;
}

span.ex_cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

span.ex_cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.freshers_talk {
  margin: 60px 0;
}

.freshers_talk_inner {
  max-width: 1280px;
  margin: 0 auto 100px;
  width: 94%;
}

.freshers_talk_title {
  /* margin-top: 60px; */
}

.freshers_talk_title p {
  color: var(--theme-accent);
  font-weight: bold;
  font-size: 30vw;
  line-height: 1;
  font-family: "roboto", sans-serif;
  position: relative;
  bottom: -5vw;
  letter-spacing: -0.04em;
}

.freshers_talk_title h3 {
  color: #fff;
  background: var(--theme-accent);
  padding: 15px 15px;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.3;
  width: 100%;
}

.talk_block {
  margin: 50px 0;
}

.talk_block dl {
  display: flex;
  /* align-items: center; */
}

.talk_block dl+dl {
  margin-top: 40px;
}

.talk_block dl:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.talk_block dt {
  /* padding: 0 40px; */
  width: 30%;
}

.talk_block dt figure {
  border: solid 5px var(--theme-accent);
  border-radius: 50%;
  overflow: hidden;
  margin-top: 20px;
}

.talk_block dt figure img {
  transform: scale(1.05);
}

.talk_block dd {
  max-width: 660px;
  display: flex;
  align-items: start;
  width: 70%;
}

.talk_block dd .text_unit {
  background: #fce3cd;
  padding: 20px 20px;
  border-radius: 20px;
  flex: 1;
  font-size: 3vw;
  text-align: justify;
}

.fukidashi {
  width: 20px;
  height: 20px;
  background: #fce3cd;
  display: block;
  clip-path: polygon(0 90%, 100% 100%, 100% 24%);
  position: relative;
  top: 30px;
}

.fukidashi_re {
  width: 20px;
  height: 20px;
  background: #fce3cd;
  display: block;
  clip-path: polygon(0 90%, 100% 100%, 100% 24%);
  position: relative;
  top: 30px;
  transform: scale(-1, 1);
}

.talk_block dd p {
  font-size: 20px;
  text-align: justify;
  font-weight: bold;
}

.freshers_photo {
  margin: 60px calc(50% - 50vw) 40px;
}

.freshers_photo h4 {
  font-size: 16vw;
  font-family: "roboto", sans-serif;
  text-align: center;
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 1px var(--theme-accent);
  line-height: 1;
}

.freshers_photo ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.freshers_photo li {
  width: 100%;
}

.freshers_photo figure {
  overflow: hidden;
}

.freshers_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------freshers--------ここまで------------------*/
/*--------leader--------------------------*/
#leader {
}

#leader_title_header {
  background: url(../img/leader/leader_bg.jpg);
  background-position: center center;
  background-size: cover;
  height: 400px;
  display: grid;
  place-content: end left;
  margin-top: 100px;
}

.leader_title_header_inner {
  width: 100%;
  margin: 0 auto 0 20px;
  /* width: 1280px; */
}

.leader_title_header_inner h1 {
  font-size: 58px;
  margin: 0;
  color: #fff;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  line-height: 1.2;
  text-align: left;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  display: none;
}

.leader_title_header_inner p {
  font-feature-settings: "palt";
  font-size: 6vw;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1;
  font-family: "roboto", sans-serif;
}

.leader_head {
  margin: 40px 0 80px;
}

.leader_head_inner {
  text-align: center;
}

.leader_head h1 {
  font-size: 5.5vw;
  margin: 0;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  /* letter-spacing: 0.06em; */
}

.leader_head h3 {
  font-size: 7vw;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  line-height: 1;
  color: var(--theme-accent);
  margin: 30px 0;
}

.leader_head_members {
  display: flex;
  max-width: 1086px;
  margin: auto;
  justify-content: center;
  gap: 0 20px;
  width: 84%;
}

.leader_head_members_block {
}

.leader_head_members_block figure {
  border: solid 4px var(--theme-accent);
  border-radius: 50%;
  overflow: hidden;
}

.leader_head_members_block figure img {
  width: 100%;
}

.leader_head_members_block figcaption {
  margin-top: 10px;
  font-size: 3vw;
  font-weight: bold;
}

.leader_talk_block {
  margin: 60px 0;
}

.leader_talk_block + .leader_talk_block {
  margin-top: 60px;
}

.leader_talk_inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 50px;
  /* padding-right: 60px; */
  flex-direction: column;
}

.leader_talk_block:nth-of-type(2n) .leader_talk_inner {
  flex-direction: row-reverse;
  /* padding-left: 60px; */
  padding-right: 0;
}

.leader_talk_photo {
  width: 100%;
  padding-top: 60px;
  display: none;
}

.leader_talk_photo figure {
  overflow: hidden;
}

.leader_talk_photo figure+figure {
  margin-top: 20px;
}

.leader_talk_photo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader_talk_session {
  width: 100%;
}

.leader_talk_theme {
  padding-left: 8%;
}

.leader_talk_theme h3 {
  border-bottom: solid 2px var(--theme-accent);
  font-size: 3.5vw;
  width: fit-content;
  font-weight: bold;
}

.leader_talk_theme h4 {
  font-size: 6vw;
  margin-top: 20px;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-weight: bold;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}

.leader_talk_session dl {
  display: flex;
  margin-top: 40px;
  width: 84%;
  margin: 30px auto 0;
}

.leader_talk_session dt {
  width: 70px;
  font-weight: bold;
  color: var(--theme-accent);
  font-size: 3vw;
}

.leader_talk_session dd {
  flex: 1;
  text-align: justify;
  font-size: 3vw;
}

.sp_photo {
  margin: 30px 0;
}

/*--------leader--------ここまで------------------*/
/*--------colleague--------------------------*/
#colleague {
}

#colleague_title_header {
  background: url(../img/colleague/colleague_bg.jpg);
  background-position: 54% center;
  background-size: cover;
  height: 460px;
  display: grid;
  place-content: end left;
  margin-top: 100px;
  width: 100%;
}

.colleague_title_header_inner {
  width: 1280px;
  /* margin: auto; */
  position: relative;
  width: 100%;
}

.colleague_title_header_inner h1 {
  font-size: 15vw;
  margin: 0;
  color: #fff;
  line-height: 1;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  width: 100%;
  position: relative;
  bottom: 6px;
  left: 23px;
}

.colleague_title_header_inner p {
  font-feature-settings: "palt";
  font-size: 3.6vw;
  font-weight: bold;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
  position: absolute;
  right: -27px;
  top: 35px;
  font-family: "roboto", sans-serif;
}

.colleague_head {
  margin: 60px 0;
}

.colleague_head_inner {
  text-align: center;
}

.colleague_head h2 {
  font-size: 6vw;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.colleague_head h3 {
  font-size: 7vw;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  line-height: 1;
  color: var(--theme-accent);
  margin: 30px 0;
}

.colleague_head_members {
  display: flex;
  max-width: 1086px;
  margin: auto;
  justify-content: center;
  gap: 5px;
  width: 94%;
}

.colleague_head_members_block {
  width: 30%;
}

.colleague_head_members_block figure {
  border: solid 4px var(--theme-accent);
  border-radius: 50%;
  overflow: hidden;
}

.colleague_head_members_block figure img {
  width: 100%;
}

.colleague_head_members_block figcaption {
  margin-top: 10px;
  font-size: 3vw;
  font-weight: bold;
}

.colleague_talk_block {
}

.last {
  margin-bottom: 120px;
}

.colleague_talk_block + .colleague_talk_block {
  margin-top: 60px;
}

.colleague_talk_inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  gap: 50px;
  /* padding-right: 60px; */
  flex-direction: column;
  width: 94%;
}

.colleague_talk_block:nth-of-type(2n) .colleague_talk_photo {
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}

.colleague_talk_block:nth-of-type(2n) .colleague_talk_inner {
  flex-direction: row-reverse;
  /* padding-left: 60px; */
  padding-right: 0;
  flex-direction: column;
}

.colleague_talk_photo {
  width: 80vw;
  /* margin-right: calc(50% - 50vw); */
  /* flex: 1; */
  margin-left: 20vw;
}

.colleague_talk_photo figure {
  overflow: hidden;
}

.colleague_talk_photo figure+figure {
  margin-top: 20px;
}

.colleague_talk_photo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.colleague_talk_session {
  width: 100%;
}

.colleague_talk_theme {
}

.colleague_talk_theme > h3 {
  font-size: 4vw;
  font-weight: bold;
  max-width: 100%;
  text-align: justify;
}

.colleague_talk_title {
}

.colleague_talk_title p {
  color: var(--theme-accent);
  font-weight: bold;
  font-size: 30vw;
  line-height: 1;
  font-family: "roboto", sans-serif;
  position: relative;
  left: 0px;
  bottom: -5vw;
  /* letter-spacing: -0.04em; */
  /* transform: scaleX(0.93); */
}

.colleague_talk_title > h3 {
  color: #fff;
  background: var(--theme-accent);
  padding: 15px 15px;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.3;
  width: 100%;
}

.colleague_talk_session dl {
  display: flex;
  margin-top: 50px;
  gap: 15px;
}

.colleague_talk_session dt {
  width: 30%;
}

.colleague_talk_session dt figure {
  border: solid 4px var(--theme-accent);
  border-radius: 50%;
  overflow: hidden;
}

.colleague_talk_session dt figure img {
}

.colleague_talk_session dd {
  /* flex: 1; */
  text-align: justify;
  font-size: 3vw;
  line-height: 1.5;
  width: 65%;
  margin-right: 5%;
}

/*--------colleague--------ここまで------------------*/
/*--------mamapapa--------ここまで------------------*/
#mamapapa {
}

#mamapapa_header {
  display: grid;
  place-items: end center;
  height: 400px;
  background: url(../img/mamapapa/mamapapa_sp_bg.jpg);
  background-position: center center;
  background-size: cover;
  margin-top: 100px;
}

.mamapapa_header_inner {
  text-align: center;
  background: #fff;
  width: 80%;
  padding: 30px 20px 30px;
  position: relative;
  bottom: -127px;
}

.mamapapa_header_inner figure {
}

.mamapapa_header_inner figure img {
  max-width: 80%;
  margin: auto;
}

.mamapapa_header_inner p {
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
  font-family: YuMincho, 'Yu Mincho', serif;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #333;
}

.mamapapa_gradation_line {
  width: 100%;
  height: 15px;
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
  margin: 15px 0 15px;
}

.mamapapa_head {
  margin: 130px 0 60px;
}

.mamapapa_head_inner {
  text-align: center;
  max-width: 860px;
  margin: auto;
}

.mamapapa_head h2 {
  font-size: 46px;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1;
}

.mamapapa_head h3 {
  font-size: 43px;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  line-height: 1;
  color: var(--theme-accent);
  margin: 20px 0 40px;
}

.mamapapa_head_members {
  display: flex;
  max-width: 1086px;
  margin: auto;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  width: 90%;
  flex-direction: column;
}

.mamapapa_head_members::after {
  content: url(../img/mamapapa/mamapapa_head_05_sp.png);
  position: absolute;
  left: 33%;
  top: 45%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  height: auto;
}

.mamapapa_head_members_block {
  position: relative;
  /* max-width: 178px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mamapapa_head_members_block figure {
  border-radius: 50%;
  overflow: hidden;
  width: 35%;
}

.mamapapa_head_members_block:nth-of-type(1) figure {
  border: solid 6px #fcd8d0;
}

.mamapapa_head_members_block:nth-of-type(2) figure {
  border: solid 6px #fcd89b;
}

.mamapapa_head_members_block:nth-of-type(3) figure {
  border: solid 6px #fcd89b;
}

.mamapapa_head_members_block:nth-of-type(4) figure {
  border: solid 6px #99dbd8;
}

.mamapapa_head_members_block:nth-of-type(1)::after {
  content: url(../img/mamapapa/mamapapa_com_01.png);
  position: absolute;
  left: 0px;
  bottom: 25px;
  z-index: 2;
  transform: rotate(-7deg) scale(1.2);
}

.mamapapa_head_members_block:nth-of-type(2)::after {
  content: url(../img/mamapapa/mamapapa_com_02.png);
  position: absolute;
  left: 0;
  bottom: 25px;
  z-index: 2;
  transform: rotate(-7deg) scale(1.2);
}

.mamapapa_head_members_block:nth-of-type(3)::after {
  content: url(../img/mamapapa/mamapapa_com_03.png);
  position: absolute;
  left: 0;
  bottom: 25px;
  z-index: 2;
  transform: rotate(-7deg) scale(1.2);
}

.mamapapa_head_members_block:nth-of-type(4)::after {
  content: url(../img/mamapapa/mamapapa_com_04.png);
  position: absolute;
  left: 0;
  bottom: 25px;
  z-index: 2;
  transform: rotate(-7deg) scale(1.2);
}

.mamapapa_head_members_block figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mamapapa_text_wrap_block {
  width: 60%;
}

.mamapapa_head_members_block figcaption {
  /* margin-top: 20px; */
  font-size: 3.5vw;
  font-weight: bold;
  text-align: left;
}

.mamapapa_head_members_block p {
  margin-top: 5px;
  font-size: 2.5vw;
  text-align: justify;
}

.mamapapa_talk {
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.mamapapa_talk_inner {
  max-width: 860px;
  margin: 60px auto 0;
  width: 90%;
}

.mamapapa_talk_inner + .mamapapa_talk_inner {
  margin-top: 100px;
}

.mamapapa_talk_title {
  background: rgb(252, 216, 208);
  background: linear-gradient(90deg, rgba(252, 216, 208, 1) 0%, rgba(252, 216, 181, 1) 37%, rgba(252, 216, 155, 1) 50%, rgba(202, 218, 186, 1) 87%, rgba(153, 219, 216, 1) 100%);
  margin: auto;
  padding: 15px 30px 30px;
  width: fit-content;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 79% 85%, 63% 100%, 69% 85%, 0% 85%);
  /* min-width: 500px; */
  width: fit-content;
}

.mamapapa_talk_title h3 {
  font-size: 4vw;
  color: #4d4d4d;
  font-family: YuMincho, 'Yu Mincho', serif;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-weight: bold;
}

.mamapapa_talk dl {
  display: flex;
  margin-top: 30px;
  border-bottom: solid 1px #ddd;
  padding-bottom: 30px;
  gap: 30px 5%;
}

.mamapapa_talk dl:nth-of-type(2n) {
  flex-direction: row-reverse
}

.mamapapa_talk dl:last-child {
  border: none;
  padding-bottom: 0;
}

.mamapapa_talk dl + dl {
  margin-top: 30px;
}

.mamapapa_talk dt {
  width: 25%;
}

.mamapapa_talk dt figure {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.mamapapa_talk dt figure.pink {
  border: solid 4px #fcd8d0;
}

.mamapapa_talk dt figure.yellow {
  border: solid 4px #fcd89b;
}

.mamapapa_talk dt figure.green {
  border: solid 4px #99dbd8;
}

.mamapapa_talk dt figure img {
  width: 100%;
}

.mamapapa_talk dd {
  font-size: 3vw;
  text-align: justify;
  width: 70%;
}

.mamapapa_photo {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 80px auto;
  /* gap: 30px; */
  /* flex-direction: column; */
}

.mamapapa_photo figure {
}

.mamapapa_photo figure:nth-of-type(1) {
  margin-top: 140px;
}

.mamapapa_photo figure img {
}

.mamapapa_photo_2 {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 30px auto;
  /* gap: 30px; */
  /* padding-right: 210px; */
  /* flex-direction: column; */
}

.mamapapa_photo_2 figure {
}

.mamapapa_photo_2 figure:nth-of-type(1) {
  /* margin-top: 200px; */
}

.mamapapa_photo_2 figure img {
}

.return {
  max-width: 860px;
  text-align: center;
  margin: 0px auto 80px;
}

.return a {
  font-size: 15px;
  font-weight: bold;
}

/*--------mamapapa--------ここまで------------------*/
/*--------interview--------------------------*/
#interview {
}

#interview_header {
  display: grid;
  place-items: center;
  /* height: 250px; */
  position: relative;
  overflow: hidden;
}

#interview_header::before {
  content: "INTERVIEW";
  color: #fff;
  /* font-weight: bold; */
  position: absolute;
  top: 0;
  /* left: -21px; */
  font-size: 19.6vw;
  font-family: "roboto", sans-serif;
  line-height: 1;
  /* letter-spacing: -0.02em; */
  width: 100%;
  text-align: center;
}

.interview_header_inner {
  text-align: center;
  position: relative;
}

.interview_header_inner h1 {
  font-size: 5.3vw;
  font-weight: bold;
  margin: 90px 0 0 0;
  letter-spacing: 0.04em;
}

.interview_header_inner p {
  font-size: 3vw;
  font-weight: bold;
  letter-spacing: 0.04em;
  width: 94%;
  margin: 10px auto 0;
}

.interview_category_navi {
  margin-top: 50px;
  width: 84%;
  margin: 50px auto;
}

.interview_category_navi ul {
  display: flex;
  justify-content: center;
  gap: 20px 3.5%;
  flex-wrap: wrap;
  width: 100%;
}

.interview_category_navi li {
  background: #111;
  width: 31%;
}

.interview_category_navi a {
  font-size: 3vw;
  font-weight: bold;
  color: #fff;
  /* width: 180px; */
  text-align: center;
  padding: 5px 0;
}

.orange_wrap {
  background: #fce6d2;
  margin-top: 100px;
  margin-bottom: 0px;
}

.interview_employee {
  padding: 0 0 30px;
  margin-bottom: 100px;
}

.interview_employee_inner {
  max-width: 1320px;
  margin: 40px auto 0;
  width: 94%;
}

.interview_employee ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 4%;
}

.interview_employee li {
  width: 48%;
}

.interview_employee li a {
}

.interview_employee li a:hover img {
  transform: scale(1.05);
}

.interview_employee figure {
  margin-bottom: 10px;
  overflow: hidden;
}

.interview_employee img {
  transition: 0.2s;
}

.interview_employee p {
  font-weight: bold;
  font-size: 3vw;
}

.more {
  max-width: 1320px;
  margin: 40px 0px 0px;
  text-align: right;
}

.more a {
  font-size: 15px;
  font-weight: bold;
  display: flex;
  justify-content: end;
  align-items: baseline;
}

.more a span {
  width: 52px;
  height: 12px;
  border-bottom: 1px solid #111;
  border-right: 1px solid #111;
  transform: skew(45deg);
  display: block;
}

.interview_cross {
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.interview_cross_title {
  text-align: center;
  /* height: 140px; */
  display: grid;
  place-content: center;
  margin: 50px 0 30px;
}

.interview_cross_title h2 {
  font-size: 13vw;
  line-height: 1;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  /* margin-top: 40px; */
}

.interview_cross_title p {
  font-size: 7vw;
  line-height: 1;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  margin-top: 10px;
}

.interview_cross figure {
  width: 100%;
}

.interview_cross figure + figure {
  margin-top: 80px;
  margin-bottom: 30px;
}

.interview_cross a {
  position: relative;
  width: 100%;
}

.interview_cross a > div.image {
  overflow: hidden;
  /* position: relative; */
  /* z-index: 1; */
}

.interview_cross a > div img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.interview_cross a > div.image:hover img {
  transform: scale(1.05)
}

.interview_cross img {
  /* height: 526px; */
  width: 100%;
  object-fit: cover;
}

.interview_cross_catch {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 94%;
  max-width: 1280px;
  /* margin-left: calc(calc(100vw - 1280px) / 2); */
  pointer-events: none;
  margin: 0 3%;
  /* z-index: 2; */
}

.interview_cross_catch h3 {
  color: #fff;
  font-size: 6vw;
  font-weight: bold;
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,.6));
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

.interview_cross_catch h4 {
  color: #fff;
  font-size: 5vw;
  font-weight: bold;
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,.6));
  font-family: "roboto", sans-serif;
}

.interview_cross_catch ul {
  display: flex;
  align-items: center;
  margin-top: 10px;
  display: none;
}

.interview_cross_catch ul li {
}

.interview_cross_catch ul li:nth-of-type(2n - 1) {
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  width: 90px;
  justify-content: center;
}

.interview_cross_catch ul li:nth-of-type(2n - 1) p {
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.interview_cross_catch ul li:nth-of-type(2n - 1) span {
  font-size: 28px;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  /* vertical-align: sub; */
  padding: 0 2px;
  position: relative;
  bottom: 2px;
}

.interview_cross_catch ul li:nth-of-type(2n) {
  width: 60px;
}

span.interview_s_cross {
  display: block;
  position: relative;
  /* width: 66px; */
  /* height: 172px; */
}

span.interview_s_cross::before, span.interview_s_cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 54px;
  background: #fff;
}

span.interview_s_cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

span.interview_s_cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.interview_cross_comment {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #111;
  transform: translateY(50%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 8% 100%);
  width: fit-content;
  /* z-index: 2; */
}

.interview_cross_comment h5 {
  /* background: #111; */
  color: #fff;
  font-weight: bold;
  font-size: 3.5vw;
  padding: 10px 30px 10px 60px;
  /*   margin-right: calc(calc(100vw - 1280px) / 2); */
}

.interview_cross_catch_2 {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 94%;
  max-width: 1280px;
  /* margin-right: calc(calc(100vw - 1280px) / 2); */
  text-align: right;
  pointer-events: none;
  margin: 0 3%;
}

.interview_cross_catch_2 h3 {
  color: #fff;
  font-size: 6vw;
  font-weight: bold;
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,.6));
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  font-family: YuMincho, 'Yu Mincho', serif;
}

.interview_cross_catch_2 h4 {
  color: #fff;
  font-size: 5vw;
  font-weight: bold;
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,.6));
  font-family: "roboto", sans-serif;
}

.interview_cross_catch_2 ul {
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: end;
  display: none;
}

.interview_cross_catch_2 ul li {
}

.interview_cross_catch_2 ul li:nth-of-type(2n - 1) {
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  width: 90px;
  justify-content: center;
}

.interview_cross_catch_2 ul li:nth-of-type(2n - 1) p {
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.interview_cross_catch_2 ul li:nth-of-type(2n - 1) span {
  font-size: 28px;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  padding: 0 2px;
  position: relative;
  bottom: 2px;
}

.interview_cross_catch_2 ul li:nth-of-type(2n) {
  width: 60px;
}

.interview_cross_comment_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #111;
  transform: translateY(50%);
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  width: fit-content;
}

.interview_cross_comment_2 h5 {
  color: #fff;
  font-weight: bold;
  font-size: 3.5vw;
  padding: 10px 60px 10px 30px;
  /*   margin-right: calc(calc(100vw - 1280px) / 2); */
}

/*--------interview--------ここまで------------------*/
/*--------personal--------------------------*/
#personal {
}

#personal_header {
  display: grid;
  place-items: center;
  /* height: 250px; */
  position: relative;
  /* overflow: hidden; */
}

#personal_header::before {
  content: "INTERVIEW";
  color: #fff;
  /* font-weight: bold; */
  position: absolute;
  top: 0;
  /* left: -21px; */
  font-size: 19.6vw;
  font-family: "roboto", sans-serif;
  line-height: 1;
  /* letter-spacing: -0.02em; */
  width: 100%;
  text-align: center;
}

.personal_orange_wrap {
  background: #fce6d2;
  margin-top: 100px;
  margin-bottom: 80px;
  padding-bottom: 80px;
}

.personal_main {
  max-width: 1280px;
  margin: auto;
  position: relative;
  padding-top: 100px;
}

.personal_main_inner {
  padding: 30px 20px;
  background: #fff;
  width: 90%;
  margin: auto;
}

.personal_top {
  width: 100%;
  margin: auto;
}

.personal_top figure {
  margin-bottom: 10px;
}

.personal_top figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.personal_top p {
  font-weight: bold;
  font-size: 4vw;
}

.personal_top p.incharge {
}

.personal_top p.year {
}

.personal_top p.free {
  display: none;
}

.personal_bottom {
  max-width: 900px;
  margin: 40px auto 0;
}

.personal_bottom h4 {
  font-size: 5.5vw;
  margin-bottom: 30px;
  color: var(--theme-accent);
  font-weight: bold;
}

.personal_bottom p {
  font-size: 3.5vw;
  text-align: justify;
}

.personal_bottom p + h4 {
  margin-top: 40px;
}

.personal_bottom figure {
  width: 48%;
  display: inline-block;
  margin: 40px 0;
}

.personal_bottom figure + figure {
  margin-left: auto;
  float: right;
}

.personal_bottom figure img {
}

.personal_return {
  max-width: 1320px;
  text-align: center;
  margin: 60px auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.personal_return a {
  font-size: 5vw;
  font-weight: bold;
}

.personal_return p {
  font-size: 27px;
  margin: 0 0.5em;
  display: none;
}

/*--------interview--------ここまで------------------*/
/*--------civil--------------------------*/
#civil {
}

#civil_title_header {
  background: url(../img/civil/civil_bg.jpg);
  background-position: center center;
  background-size: cover;
  height: 400px;
  display: grid;
  place-content: end center;
  margin-top: 100px;
}

.civil_title_header_inner {
  text-align: center;
}

.civil_title_header_inner h1 {
  font-size: 8vw;
  margin: 0;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 10px;
  width: fit-content;
  margin: auto;
}

.civil_title_header_inner h1::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/civil/civil_title_mark.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-right: 0.5em;
}

.civil_title_header_inner p {
  font-size: 10vw;
  font-weight: bold;
  color: rgb(255 255 255 / 50%);
  line-height: 1;
  font-family: "roboto", sans-serif;
  transform: skewX(-15deg);
  margin-top: 6%;
}

.civil_main {
}

.civil_main_inner {
  max-width: 1280px;
  margin: 60px auto;
}

.civil_main h2 {
  border-bottom: solid 2px #111;
  font-size: 6vw;
  text-align: center;
  padding-bottom: 20px;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

.civil_main h3 {
  text-align: center;
  margin: 30px 0;
  font-size: 5vw;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}

.civil_main p {
  text-align: justify;
  font-size: 3.5vw;
  width: 84%;
  margin: auto;
}

.civil_main figure {
  margin-top: 30px;
  width: 94%;
  margin: 30px auto 0;
}

.civil_main figure img {
}

.civil_photo {
  margin-top: 60px;
}

.civil_photo figure {
}

.civil_photo figure img {
}

.civil_photo_2way {
  /* margin-top: 60px; */
  display: flex;
  flex-wrap: wrap;
}

.civil_photo_2way figure {
  position: relative;
}

.civil_photo_2way figure img {
}

.civil_photo_2way figure figcaption {
  position: absolute;
  right: 0;
  bottom: 30px;
  background: #111;
  color: #fff;
  padding: 5px 20px;
  font-size: 4vw;
}

.civil_photo_3way {
  /* margin-top: 60px; */
  display: flex;
  flex-wrap: wrap;
}

.civil_photo_3way figure {
  position: relative;
}

.civil_photo_3way figure img {
}

.civil_photo_3way figure figcaption {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #111;
  color: #fff;
  padding: 5px 20px;
  font-size: 4vw;
}

.civil_photo_pile {
    position: relative;
}

.civil_photo_pile figure {
    display: block;
    max-width: 100%;
    height: auto;
}

.civil_photo_pile figure:nth-of-type(1){
}

.civil_photo_pile figure:nth-of-type(2){
}

.civil_photo_pile figure img {
}

.civil_photo_pile figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0px;
  background: #111;
  color: #fff;
  padding: 5px 20px;
  font-size: 4vw;
}

.civil_photo_grid {
  /* margin-top: 60px; */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}

.civil_photo_grid figure {
  position: relative;
}

.civil_photo_grid figure:nth-of-type(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.civil_photo_grid figure:nth-of-type(2) {
  grid-column: 1 /2;
  grid-row: 2 / 3;
}

.civil_photo_grid figure:nth-of-type(3) {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.civil_photo_grid figure img {
}

.civil_photo_grid figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0px;
  background: #111;
  color: #fff;
  padding: 5px 20px;
  font-size: 4vw;
}

.civil_photo_grid figure:nth-of-type(1) figcaption {
  /* margin-left: calc(calc(100vw - 1280px) / 2); */
}

.civil_comment {
}

.civil_comment_inner {
  max-width: 1280px;
  margin: auto;
  padding: 30px 0;
  width: 84%;
}

.civil_comment h3 {
  font-size: 4.8vw;
  font-weight: bold;
  margin-bottom: 20px;
  font-feature-settings: "palt";
  /* letter-spacing: 0.04em; */
}

.civil_comment p {
  font-size: 3.5vw;
  text-align: justify;
}

.civil_report_last {
  position: relative;
  margin: 60px 0;
}

.civil_report_last figure {
}

.civil_report_last figure img {
  /* min-height: 400px; */
  object-fit: contain;
}

.civil_report_last_catch {
  /* position: absolute; */
  top: 10%;
  left: 47%;
  background: rgb(255 255 255 / 90%);
}

.civil_report_last_title {
  background: var(--theme-accent);
  display: flex;
  align-items: baseline;
  width: 90%;
  padding: 20px 30px;
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
}

.civil_report_last_title h3 {
  font-size: 7vw;
  color: #fff;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  line-height: 1;
  letter-spacing: -0.02em;
}

.civil_report_last_title p {
  font-size: 4vw;
  font-weight: bold;
  margin-left: 1em;
}

.civil_report_last_text {
  padding: 30px 30px;
  /* max-width: 640px; */
}

.civil_report_last_text h4 {
  font-size: 6vw;
  font-weight: bold;
}

.civil_report_last_text p {
  font-size: 3.5vw;
  margin-top: 20px;
  text-align: justify;
}

/*--------civil--------ここまで------------------*/
/*--------construction--------------------------*/
#construction {
}

#construction_title_header {
  background: url(../img/construction/construction_bg.jpg);
  background-position: center center;
  background-size: cover;
  display: grid;
  place-content: end center;
  height: 400px;
  /* position: relative; */
  /* top: 80px; */
  margin-top: 100px;
}

.construction_title_header_inner {
  text-align: center;
}

.construction_title_header_inner h1 {
  font-size: 8vw;
  margin: 0;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 10px;
  width: fit-content;
  margin: auto;
}

.construction_title_header_inner h1::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/civil/civil_title_mark.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-right: 0.5em;
}

.construction_title_header_inner p {
  font-size: 10vw;
  font-weight: bold;
  color: rgb(255 255 255 / 50%);
  line-height: 1;
  font-family: "roboto", sans-serif;
  transform: skewX(-15deg);
  margin-top: 14%;
}

.construction_main {
}

.construction_main_inner {
  max-width: 1280px;
  margin: 80px auto 0;
}

.construction_main h2 {
  border-bottom: solid 2px #111;
  font-size: 6vw;
  text-align: center;
  padding-bottom: 20px;
  font-family: YuMincho, 'Yu Mincho', serif;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.construction_main h3 {
  text-align: center;
  margin: 30px 0;
  font-size: 5vw;
  font-weight: bold;
  font-feature-settings: "palt";
  /* letter-spacing: 0.04em; */
}

.construction_main p {
  text-align: justify;
  font-size: 3.5vw;
  width: 84%;
  margin: auto;
}

.construction_main figure {
  margin-top: 30px;
}

.construction_main figure img {
}

.construction_photo {
  /* margin-top: 60px; */
}

.construction_photo figure {
}

.construction_photo figure img {
}

.construction_photo_2way {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
}

.construction_photo_2way figure {
  position: relative;
}

.construction_photo_2way figure img {
}

.construction_photo_2way figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0px;
  background: #111;
  color: #fff;
  padding: 5px 20px;
  font-size: 4vw;
}

.construction_photo_2way figure figcaption.fig_left {
  left: 0;
  right: inherit;
}

.construction_photo_grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  margin-top: 60px;
}

.construction_photo_grid figure {
  position: relative;
}

.construction_photo_grid figure:nth-of-type(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.construction_photo_grid figure:nth-of-type(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.construction_photo_grid figure:nth-of-type(3) {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.construction_photo_grid figure img {
}

.construction_photo_grid figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0px;
  background: #111;
  color: #fff;
  padding: 5px 20px;
  font-size: 4vw;
}

.construction_photo_grid figure:nth-of-type(1) figcaption {
  /* margin-left: calc(calc(100vw - 1280px) / 2); */
}

.construction_comment {
  /* margin-top: 80px; */
}

.construction_comment_inner {
  max-width: 1280px;
  margin: auto;
  width: 84%;
  padding: 30px 0;
}

.construction_comment h3 {
  font-size: 4.8vw;
  font-weight: bold;
  margin-bottom: 20px;
  font-feature-settings: "palt";
  /* letter-spacing: 0.04em; */
}

.construction_comment p {
  font-size: 3.5vw;
  text-align: justify;
}

.construction_report_last {
  margin: 80px 0;
}

.construction_report_last_wrap {
  /* background-image: url(../img/construction/construction_photo_11.jpg); */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 800px;
}

.construction_report_last_inner {
  /* padding: 60px 0; */
  max-width: 1280px;
  margin: auto;
}

.construction_report_last figure {
}

.construction_report_last figure img {
}

.construction_report_last_catch {
  /* background: rgb(255 255 255 / 90%); */
}

.construction_report_last_title {
  background: var(--theme-accent);
  display: flex;
  align-items: baseline;
  width: 90%;
  padding: 20px 30px;
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
}

.construction_report_last_title_inner {
  /* background: var(--theme-accent); */
  /* display: flex; */
  /* align-items: baseline; */
  /* justify-content: flex-start; */
  /* width: 100%; */
  /* padding: 20px 60px; */
  /* max-width: 1280px; */
  /* margin: auto; */
}

.construction_report_last_title h3 {
  font-size: 7vw;
  color: #fff;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  line-height: 1;
  letter-spacing: -0.02em;
}

.construction_report_last_title p {
  font-size: 4vw;
  font-weight: bold;
  /* margin-left: 1em; */
}

.construction_report_last_text {
  padding: 30px;
  /* max-width: 850px; */
  background: rgb(255 255 255 / 90%);
}

.construction_report_last_text + .construction_report_last_text {
  margin-top: 30px;
}

.construction_report_last_text h4 {
  font-size: 5.5vw;
  font-weight: bold;
  line-height: 1;
}

.construction_report_last_text p {
  font-size: 3.5vw;
  margin-top: 20px;
  text-align: justify;
}

/*--------construction--------ここまで------------------*/
/*--------formCont--------------------------------------*/
/* フォーム */
.formCont {
  margin-right: auto;
  margin-left: auto  
  border-top: 1px solid #e6e6e6;
  padding: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .formCont {
    margin: 30px 0 150px;
    padding: 15px 0 0;
  }
}
.formCont dl {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .formCont dl {
    flex-direction: column;
    margin: 20px 0;
  }
}
.formCont dl dt {
  width: 15em;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .formCont dl dt {
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: 5px;
  }
}
.formCont dl dd {
  position: relative;
  width: calc(100% - 18em);
}
@media screen and (max-width: 768px) {
  .formCont dl dd {
    width: 100%;
  }
}
.formCont .required {
  font-size: 1rem;
  color: #f00;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .formCont .required {
    font-size: 0.75rem;
  }
}
.formCont .error {
  display: inline-block !important;
}
.formCont .note {
  display: inline-block;
  color: #f00;
  padding-right: .5em;
}
@media screen and (max-width: 768px) {
  .formCont .note {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 561px) {
  .formCont .note {
    position: absolute;
    top: 7px;
    left: calc(100% + 10px);
    width: inherit;
    font-size: 1rem;
  }
}
.mw_wp_form_confirm .formCont .note {
  display: none;
}
.formCont input[type="hidden"] + .note {
  left: 350px;
}
.formCont .mwform-tel-field .note {
  position: relative;
  top: inherit;
  left: inherit;
}
.formCont ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
}
.formCont ul li {
  margin-left: 30px;
}
.formCont input[type="text"], .formCont input[type="email"], .formCont input[type="tel"], .formCont textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  background-color: #fff;
  padding: .7em;
  border: 1px solid #000;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .formCont input[type="text"], .formCont input[type="email"], .formCont input[type="tel"], .formCont textarea {
    padding: .3em .5em;
  }
}
.formCont textarea {
  resize: none;
  height: 150px;
}
.formCont input[type="radio"], .formCont input[type="checkbox"] {
  position: relative;
  top: -1px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #eb6400;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.formCont input[type="radio"]::before, .formCont input[type="checkbox"]::before {
  position: absolute;
  content: '';
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
}
.formCont input[type="radio"]:checked::before, .formCont input[type="checkbox"]:checked::before {
  background-color: #eb6400;
}
.formCont label {
  cursor: pointer;
}
.formCont p {
  display: flex;
  justify-content: center;
}

input[name="submitConfirm"], input[name="確認ボタン"], input[name="submitBack"] {
  display: block;
  width: 100%;
  max-width: 360px;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  line-height: 2;
  padding: 6px 10px;
  margin: 40px 20px 0;
  background-color: #000;
  cursor: pointer;
  transition: all .5s;
}
@media screen and (max-width: 768px) {
  input[name="submitConfirm"], input[name="確認ボタン"], input[name="submitBack"] {
    max-width: 300px;
    font-size: 0.875rem;
    margin: 30px 10px 0;
  }
}
input[name="submitConfirm"]:hover, input[name="確認ボタン"]:hover, input[name="submitBack"]:hover {
  background-color: #f5b400;
}

.mwform-tel-field {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}
@media screen and (max-width: 768px) {
  .mwform-tel-field {
    margin: 0 -5px;
  }
}
.mwform-tel-field input[type="text"] {
  max-width: 6em;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .mwform-tel-field input[type="text"] {
    max-width: 5em;
    margin: 0 5px;
  }
}

.mwform-radio-field {
  display: inline-block;
  margin: 0 25px 0 0 !important;
}

/* heroのSVGを強制表示（暫定 or 本番） */
#hero .catch_block_top,
#hero .catch_block_bottom {
  opacity: 1 !important;
}
/*--------formCont----ここまで------------------*/
/* エントリーフォーム
--------------------------------------------*/
.entryform {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
/*-----エントリーフォーム--ここまで---------*/
/* ページャー
--------------------------------------------*/
.pagination{
  text-align: center;
}
a.page-numbers, .pagination .current{
  background: #fff;
  border: solid 1px #ccc;
  padding:5px 8px;
  margin:0 2px;
  text-decoration: none;
}
.pagination .current{
  background: #000;
  border: solid 1px #000;
  color: #fff;
}
/*-----ページャー--ここまで---------------*/