@charset "UTF-8";
/* mixin */
/* インデント調整 */
/* センター寄せのインデント調整 */
/* 動作の時間（1001px以上の時,1000px以下の時） */
/* 行数によるテキスト変換（501px以上の時,500px以下の時） */
/* フォルダ内の背景画像取得 */
/* 丸角(丸角のpx数,丸角を適用するカドの指定) */
/* container生成（要素の幅,余白,位置【center left right】） */
/* コンテンツの中央配置 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* flexのfit */
/* template color */
/* custom color */
/* font */
@font-face {
  font-family: LINESeedJP;
  font-display: swap;
  src: local("LINE Seed JP TTF"), url("../fonts/LINESeedJP_OTF_Eb.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: LINESeedJP;
  font-display: swap;
  src: local("LINE Seed JP TTF"), url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: LINESeedJP;
  font-display: swap;
  src: local("LINE Seed JP TTF"), url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-feature-settings: "palt";
  font-weight: 500;
}

/* setting */
.list_dotted__tab {
  position: relative;
  padding-left: 1em;
}
.list_dotted__tab::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.list_count {
  counter-reset: count;
}

.list_count__tab {
  position: relative;
  padding-left: 1.5em;
}
.list_count__tab::before {
  counter-increment: count;
  content: counter(count, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
}

.list_num {
  counter-reset: num;
}

.list_num__tab {
  position: relative;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  padding-left: 1.5em;
}
.list_num__tab::before {
  counter-increment: num;
  content: counter(num);
  position: absolute;
  top: 0;
  left: 0;
}

.list_unit {
  counter-reset: unit;
}

.list_unit__tab {
  position: relative;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  padding-left: 1.5em;
}
.list_unit__tab::before {
  counter-increment: unit;
  content: counter(unit) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.cm_btn {
  margin-top: clamp(32px, 3.5vw, 56px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.cm_btn__link {
  display: block;
  min-width: 200px;
  width: 100%;
  height: auto;
  line-height: 56px;
  text-align: center;
  flex: 1;
  border-radius: 56px;
  overflow: clip;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #0c1c89;
}
@media screen and (min-width: 501px) {
  .cm_btn__link {
    max-width: 320px;
  }
}
@media screen and (max-width: 500px) {
  .cm_btn__link {
    max-width: 240px;
  }
}

.item_more {
  margin-top: clamp(32px, 2.5vw, 40px);
  text-align: right;
}

.item_more__link {
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  display: inline;
  text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none !important;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  color: #1D1D1D;
  background: #fff;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 1200px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-width: 1000px) {
  body #swipebox-close {
    right: auto;
    left: 0;
  }
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 500;
  }
}
@media (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

p,
th,
td,
li,
dt,
dd,
address {
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 225%;
  color: #1D1D1D;
  font-style: normal;
}
@media screen and (max-width: 500px) {
  p,
  th,
  td,
  li,
  dt,
  dd,
  address {
    line-height: 200%;
  }
}

div {
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
@media screen and (max-width: 1000px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br {
    display: none;
  }
}

img,
picture,
figure {
  margin: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a.link {
  display: inline;
  color: #0c1c89;
  text-decoration: underline;
}
a:hover {
  opacity: 0.6;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
  cursor: default;
}
a[href^=tel]:hover {
  opacity: 1;
}
@media screen and (min-width: 1001px) {
  a[href^=tel] {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}

.wp-caption {
  margin: 10px;
  padding-top: 4px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-align: center;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: none;
}
.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

@media screen and (min-width: 1001px) {
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
}
.text_center {
  text-align: center;
}
.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}

.swipe {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .swipe {
    position: relative;
    padding: 5px 0;
    overflow: hidden;
    z-index: 1;
  }
  .swipe img {
    min-width: 1200px;
  }
  .swipe::before {
    position: absolute;
    content: "";
    z-index: 2;
    max-width: 180px;
    width: 100%;
    max-height: 56px;
    height: 100%;
    top: 60px;
    left: 20px;
    background-image: url(../images/svg_swipe_ig.svg);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
    animation: 2s ease-in-out alternate infinite please__swipe;
  }
  .swipe::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background: #ddd;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
  }
  .swipe__on {
    overflow: auto;
    white-space: nowrap;
  }
  .swipe__on::after, .swipe__on::before {
    opacity: 0;
    z-index: 2;
    animation: none;
  }
  .swipe__on::-webkit-scrollbar {
    height: 5px;
  }
  .swipe__on::-webkit-scrollbar-track, .swipe__on::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .swipe th,
  .swipe td {
    display: table-cell !important;
    white-space: nowrap;
  }
}

@keyframes please__swipe {
  0% {
    left: 10px;
  }
  100% {
    left: 50px;
  }
}
@media screen and (min-width: 1001px) {
  .l-following_contents {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    position: relative;
  }
  .l-following_contents .--side {
    top: 0;
    width: 200px;
  }
  .l-following_contents .--main {
    flex: 1;
  }
}
@media screen and (max-width: 1000px) {
  .l-following_contents .--side {
    bottom: 0;
  }
}
.l-following_contents .--side {
  position: sticky;
  left: 0;
}

.flickWrap {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .flickWrap {
    padding: 5px 0;
    overflow: auto;
    white-space: nowrap;
  }
  .flickWrap::before {
    margin-bottom: 20px;
    color: #f55;
    font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
    content: "※表が見切れる場合は横スクロールでご覧ください。";
  }
  .flickWrap::-webkit-scrollbar {
    height: 5px;
  }
  .flickWrap::-webkit-scrollbar-track, .flickWrap::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

.lazy {
  opacity: 0;
  position: relative;
  transform: translate(0%, 50px);
}

.lazy-show {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 1s;
}

.container {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1241px) {
  .container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1240px) {
  .container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.over-right {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1241px) {
  .over-right {
    margin-left: calc((100vw - 1220px) / 2);
  }
}
@media screen and (max-width: 1240px) {
  .over-right {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .over-right {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .over-right {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.over-left {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1241px) {
  .over-left {
    margin-right: calc((100vw - 1220px) / 2);
  }
}
@media screen and (max-width: 1240px) {
  .over-left {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .over-left {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .over-left {
    padding-left: 30px;
    padding-right: 30px;
  }
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.image {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

tbody,
tr {
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

th,
td {
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  th,
  td {
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
@media screen and (max-width: 1000px) {
  th,
  td {
    display: block;
  }
}

@media screen and (min-width: 1001px) {
  th {
    width: 200px;
    border-bottom: 1px solid #ccc;
    background-color: #f8f8f8;
  }
}
@media screen and (max-width: 1000px) {
  th {
    padding-left: 1em;
    padding-right: 1em;
  }
  tr + tr th {
    padding-top: 1em;
  }
}

@media screen and (min-width: 1001px) {
  td {
    border-bottom: 1px solid #ccc;
  }
}
@media screen and (max-width: 1000px) {
  td {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 1em;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi {
    gap: 20px;
  }
}
.archive .wp-pagenavi {
  margin-top: 48px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  border: none;
  padding: unset;
  margin: unset;
  border: none;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border: none;
  padding: 0 0 8px !important;
  background: initial !important;
  border: none !important;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  text-align: center;
  color: #1D1D1D;
}
@media screen and (min-width: 1001px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 18px;
  }
}
.wp-pagenavi a::before,
.wp-pagenavi span::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: 0%;
  height: 2px;
  background-color: #034CA6;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .wp-pagenavi a::before,
  .wp-pagenavi span::before {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi a::before,
  .wp-pagenavi span::before {
    transition-duration: 300ms;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  opacity: 1;
  color: #034CA6;
}
.wp-pagenavi a:hover::before, .wp-pagenavi a.current::before,
.wp-pagenavi span:hover::before,
.wp-pagenavi span.current::before {
  width: 100%;
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: initial;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #1D1D1D;
}
@media screen and (min-width: 501px) {
  .--pc {
    display: block !important;
  }
}
@media screen and (max-width: 500px) {
  .--pc {
    display: none !important;
  }
}

@media screen and (min-width: 501px) {
  .--sp {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .--sp {
    display: block !important;
  }
}

.link-under {
  color: #034CA6;
  text-decoration: underline;
}
@media screen and (max-width: 500px) {
  .link-under {
    display: inline-block;
  }
}

.cm-block + .cm-block {
  margin-top: clamp(60px, 5vw, 80px);
}

@media screen and (min-width: 1001px) {
  .cm-column {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  .cm-rev {
    flex-direction: row-reverse;
  }
}
.cm-pic {
  width: 33.3333333333%;
  aspect-ratio: 4/3;
  background-color: #ddd;
}

.cm-fit {
  flex: 1;
}
@media screen and (max-width: 1000px) {
  .cm-pic + .cm-fit {
    margin-top: 64px;
  }
}

.cm-cards {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
}
@media screen and (min-width: 501px) {
  .cm-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .cm-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .cm-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

/* module */
.header_block {
  position: relative;
  background: #fff;
  z-index: 5;
}

.header_area {
  display: flex;
  padding: 34px 100px 34px 64px;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  transition: all 0.6s;
  background: #fff;
}
@media screen and (min-width: 1001px) {
  .header_area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header_area.header_area.hide__fixed {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .header_area {
    padding: 34px 40px 34px 40px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_area {
    padding: 24px 40px 24px 40px;
  }
}
@media screen and (max-width: 1000px) {
  .header_area {
    padding: 18px 20px;
  }
}

.header_logo {
  max-width: 352px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_logo {
    max-width: 280px;
  }
}
@media screen and (max-width: 1000px) {
  .header_logo {
    max-width: 272px;
  }
}
@media screen and (max-width: 500px) {
  .header_logo {
    max-width: 227px;
  }
}

.header_menu a {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #1D1D1D;
  box-sizing: border-box;
}
.header_menu a:hover {
  opacity: 1;
  color: #034CA6;
}
.header_menu ul {
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .header_menu ul {
    display: flex;
    gap: 40px;
    align-items: center;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu ul {
    gap: 24px;
  }
}
@media screen and (min-width: 1001px) {
  .header_menu li {
    line-height: 1;
  }
  .header_menu .menu-item-has-children:hover {
    opacity: 1;
  }
  .header_menu .menu-item-has-children:hover a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .header_menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: all;
  }
  .header_menu .menu-item-has-children {
    padding: 16px 0;
    position: relative;
    cursor: pointer;
  }
  .header_menu .menu-item-has-children a {
    position: relative;
    padding-right: 24px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu .menu-item-has-children a {
    padding-right: 20px;
  }
}
@media screen and (min-width: 1001px) {
  .header_menu .menu-item-has-children a::after {
    content: "";
    background: url(../images/common/header_icon_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1/1;
    width: 16px;
    height: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu .menu-item-has-children a::after {
    width: 14px;
  }
}
@media screen and (min-width: 1001px) {
  .header_menu .menu-item-has-children a:hover {
    color: #034CA6;
  }
  .header_menu .sub-menu {
    opacity: 0;
    transition: all 0.6s;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 24px;
    border-radius: 8px;
    display: block;
    width: -moz-max-content;
    width: max-content;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
    pointer-events: none;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1201px) and (max-width: 1600px) {
  .header_menu .sub-menu {
    padding: 24px 16px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu .sub-menu {
    padding: 16px 8px;
  }
}
@media screen and (min-width: 1001px) {
  .header_menu .sub-menu a {
    font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
    font-weight: 400;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 100%;
    color: #1D1D1D;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1201px) and (max-width: 1600px) {
  .header_menu .sub-menu a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu .sub-menu a {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1001px) {
  .header_menu .sub-menu a::before {
    content: "- ";
    transition: all 0.3s;
  }
  .header_menu .sub-menu a::after {
    display: none;
  }
  .header_menu .sub-menu li + li {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu .sub-menu li + li {
    margin-top: 8px;
  }
}
@media screen and (max-width: 1000px) {
  .header_menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s;
    z-index: 5;
    overflow-y: scroll;
  }
  .header_menu .sub-menu {
    display: none;
  }
  .header_menu.active {
    opacity: 1;
    transform: translateX(0%);
  }
  .header_menu ul {
    padding-top: 70px;
    padding-bottom: 150px;
  }
  .header_menu li {
    border-bottom: 1px solid #fff;
  }
  .header_menu .mobile_header_contact a {
    background: #034CA6;
    padding: 24px 0;
  }
  .header_menu .mobile_header_entry a {
    background: #26364C;
    padding: 24px 0;
  }
  .header_menu a {
    display: block;
    text-align: center;
    padding: 20px 0;
    color: #fff;
  }
}

.header_trigger {
  position: fixed;
  top: 10px;
  right: 19px;
  aspect-ratio: 1/1;
  width: 48px;
  height: auto;
  background: #00A9EA;
  z-index: 10;
  cursor: pointer;
  border-radius: 8px;
}
@media screen and (min-width: 1001px) {
  .header_trigger {
    display: none;
  }
}
.header_trigger:hover {
  opacity: 1;
}
.header_trigger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transform: translateY(-50%) translateX(-50%);
  transition: all 0.6s;
}
.header_trigger span:first-child {
  transform: translateY(calc(-50% - 6px)) translateX(-50%) rotate(0deg);
}
.header_trigger span:last-child {
  transform: translateY(calc(-50% + 6px)) translateX(-50%) rotate(0deg);
}
.header_trigger.active span {
  opacity: 0;
}
.header_trigger.active span:first-child {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(385deg);
}
.header_trigger.active span:last-child {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-385deg);
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
kv----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.kv_wrap {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-top: 150px;
}
@media screen and (min-width: 1241px) {
  .kv_wrap {
    margin-left: calc((100vw - 1220px) / 2);
  }
}
@media screen and (max-width: 1240px) {
  .kv_wrap {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .kv_wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .kv_wrap {
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .kv_wrap {
    padding: 0;
    padding-top: 24px;
  }
}
@media screen and (max-width: 500px) {
  .kv_wrap {
    padding-left: 10px;
  }
}

.cm-bread {
  padding: 24px 0 172px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.0483870968vw, 1.3rem);
  line-height: 1.6;
  color: #707070;
}
.cm-bread a {
  color: inherit;
  font-size: inherit;
}
@media screen and (min-width: 1001px) {
  .cm-bread {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 650px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .cm-bread {
    max-width: 520px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .cm-bread {
    max-width: 430px;
  }
}
@media screen and (max-width: 1000px) {
  .cm-bread {
    padding: 16px 0 32px;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.kv_columns {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1000px) {
  .kv_columns {
    display: block;
  }
}

.kv_pic {
  flex-basis: 54.79%;
}
@media screen and (max-width: 1000px) {
  .kv_pic {
    padding-left: 40px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .kv_pic {
    margin-top: 24px;
    padding-left: 20px;
  }
}

.kv_pic__image {
  vertical-align: bottom;
  border-radius: 100px 0 0 0;
  overflow: hidden;
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .kv_pic__image {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .kv_pic__image {
    border-radius: 72px 0 0 0;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1000px) {
  .kv_pic__image {
    border-radius: 56px 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .kv_pic__image {
    height: 188px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 40px 0 0 0;
  }
}

.kv_head {
  padding-bottom: 92px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .kv_head {
    padding-bottom: 56px;
  }
}
@media screen and (max-width: 1000px) {
  .kv_head {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1000px) {
  .kv_content {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .kv_content {
    padding: 0 20px;
  }
}
.kv_head__caption {
  position: relative;
  padding-left: 33px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.935483871vw, 2.4rem);
  line-height: 100%;
  text-transform: uppercase;
  color: #00A9EA;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .kv_head__caption {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .kv_head__caption {
    padding-left: 24px;
  }
}
.kv_head__caption::before {
  content: "";
  background: url(../images/common/kv_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 24px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .kv_head__caption::before {
    width: 20px;
    height: 19px;
  }
}
@media screen and (max-width: 500px) {
  .kv_head__caption::before {
    width: 15px;
    height: 14px;
  }
}

.kv_head__lead {
  display: block;
  margin-top: 24px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(3rem, 3.8709677419vw, 4.8rem);
  line-height: 100%;
  color: #1D1D1D;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .kv_head__lead {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1000px) {
  .kv_head__lead {
    margin-top: 14px;
  }
}

/*================================================
kv----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
pc_fixdbanner----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.pc_fixdbanner {
  position: fixed;
  right: 0;
  top: 134px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .pc_fixdbanner {
    display: none !important;
  }
}

.fixd_link {
  display: block;
  writing-mode: vertical-rl;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.3709677419vw, 1.7rem);
  line-height: 105%;
  text-align: center;
  color: #FFFFFF;
  padding: 22px 21px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.fixd_contact {
  background: #034CA6;
  border-radius: 14px 0 0 0;
}

.fixd_entry {
  background: #26364C;
  border-radius: 0px 0 0 14px;
}

.pc_fixdbanner.hide__fixed .fixd_link {
  transform: translateX(100%);
}

/*================================================
pc_fixdbanner----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
fixd_logo----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.fixd_logo {
  position: fixed;
  z-index: 3;
  pointer-events: none;
  left: 62px;
  bottom: 72px;
  max-width: 664px;
  mix-blend-mode: soft-light;
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .fixd_logo {
    left: 40px;
    bottom: 40px;
    max-width: 400px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .fixd_logo {
    left: 40px;
    max-width: 360px;
  }
}
@media screen and (max-width: 1000px) {
  .fixd_logo {
    left: 20px;
    bottom: 32px;
    max-width: 360px;
  }
}
@media screen and (max-width: 500px) {
  .fixd_logo {
    left: 0px;
    bottom: 32px;
    max-width: 258px;
  }
}

/*================================================
fixd_logo----END
==================================================*/
.footer_block {
  position: relative;
  padding: 112px 0 72px;
  background: #26364C;
}
@media screen and (max-width: 1000px) {
  .footer_block {
    padding: 50px 0 80px;
  }
}

.footer_area {
  position: relative;
  margin-top: 160px;
  color: #fff;
  z-index: 4;
}
@media screen and (max-width: 1000px) {
  .footer_area {
    margin-top: 40px;
  }
}

.footer_wrap {
  max-width: 936px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .footer_wrap {
    max-width: 100%;
  }
}

.footer_columns {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .footer_columns {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
@media screen and (max-width: 1000px) {
  .footer_columns {
    display: block;
    margin: auto;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .footer_columns {
    width: 282px;
  }
}

.footer_logo {
  max-width: 381px;
}
@media screen and (max-width: 1000px) {
  .footer_logo {
    max-width: 332px;
  }
}
@media screen and (max-width: 500px) {
  .footer_logo {
    max-width: 282px;
  }
}

.footer_info {
  flex-basis: 47.44%;
}
@media screen and (max-width: 1000px) {
  .footer_info {
    margin-top: 24px;
  }
}

.footer_info__main {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 150%;
  color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .footer_info__main {
    line-height: 175%;
  }
}

.footer_nav a {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 100%;
  color: #FFFFFF;
  display: flex;
  gap: 6px;
  align-items: center;
}
.footer_nav a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 1001px) {
  .footer_nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px 40px;
    height: 346px;
    flex-wrap: wrap;
  }
  .footer_nav li {
    padding-bottom: 24px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    width: 440px;
  }
  .footer_nav .sub-menu {
    height: auto;
    flex-direction: row;
    justify-content: left;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    padding-top: 16px;
    padding-left: 14px;
  }
  .footer_nav .sub-menu li {
    border: none;
    padding: 0;
    width: initial;
  }
  .footer_nav .sub-menu a {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 125%;
    color: #FFFFFF;
    border: none;
    padding: 0;
  }
  .footer_nav .sub-menu a::before {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav li + li a {
    padding-top: 20px;
  }
  .footer_nav a {
    padding-bottom: 20px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  }
  .footer_nav ul {
    max-width: 400px;
    margin: auto;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .footer_nav ul {
    max-width: 282px;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav .sub-menu {
    display: none;
  }
}

.footer_copy {
  margin-top: 86px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: clamp(1rem, 1.0483870968vw, 1.3rem);
  line-height: 100%;
  color: #DCE1E6;
}
@media screen and (max-width: 1000px) {
  .footer_copy {
    margin-top: 32px;
  }
}

.footer_rtt {
  position: absolute;
  bottom: 50px;
  max-width: 56px;
}
@media screen and (min-width: 1001px) {
  .footer_rtt {
    right: 42px;
  }
}
@media screen and (max-width: 1000px) {
  .footer_rtt {
    max-width: 35px;
    left: 50%;
    bottom: 21px;
    transform: translateX(-50%);
  }
}

.footer_rtt__main {
  transition: all 0.5s;
}

.footer_rtt:hover {
  opacity: 1;
}
.footer_rtt:hover .footer_rtt__main {
  transform: translateY(-10px);
}

.cta_area {
  position: relative;
}

@media screen and (min-width: 501px) and (max-width: 1600px) {
  .cta_back img {
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (min-width: 501px) and (max-width: 1200px) {
  .cta_back img {
    height: 450px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .cta_back img {
    height: 280px;
  }
}
.cta_content {
  padding: 0 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .cta_content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
}
@media screen and (max-width: 1000px) {
  .cta_content {
    margin-top: -48px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 500px) {
  .cta_content {
    margin-top: -24px;
    padding: 0 30px;
  }
}

.cta_columns {
  padding: 64px 72px;
  background: #fff;
}
@media screen and (min-width: 1001px) {
  .cta_columns {
    width: 936px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 1000px) {
  .cta_columns {
    padding: 32px 40px;
  }
}
@media screen and (max-width: 500px) {
  .cta_columns {
    padding: 32px 30px;
  }
}

@media screen and (min-width: 1001px) {
  .cta_txt {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.cta_read {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.4516129032vw, 1.8rem);
  line-height: 150%;
  color: #1D1D1D;
}
@media screen and (max-width: 1000px) {
  .cta_read br {
    display: block;
  }
}

.cta_tel {
  margin: 16px 0 8px;
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(3rem, 3.3870967742vw, 4.2rem);
  line-height: 100%;
  color: #1D1D1D;
}
@media screen and (max-width: 1000px) {
  .cta_tel {
    margin: 16px 0 6px;
    gap: 4px;
  }
}

.cta_tel::before {
  content: "";
  background: url(../images/footer/cta_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 33px;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .cta_tel::before {
    width: 24px;
  }
}
@media screen and (max-width: 500px) {
  .cta_tel::before {
    width: 20px;
  }
}

.cta_time {
  display: block;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
  color: #1D1D1D;
}

@media screen and (max-width: 1000px) {
  .cta_btns {
    margin-top: 24px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .cta_btns {
    display: flex;
    gap: 24px;
  }
}

.cta_btn + .cta_btn {
  margin-top: 16px;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .cta_btn + .cta_btn {
    margin-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .cta_btn + .cta_btn {
    margin-top: 12px;
  }
}

@media screen and (min-width: 1001px) {
  .lower_btn__link.cta_btn__link {
    width: 376px;
    height: 84px;
    border-radius: 44px;
    padding: 32px 40px;
    padding-right: 32px;
  }
}
.mw_wp_form {
  margin-top: clamp(32px, 3.125vw, 50px);
  background: #FFFFFF;
  box-sizing: border-box;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  border-radius: 36px;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form {
    padding: 88px 100px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .mw_wp_form {
    padding: 40px 25px;
    border-radius: 16px;
  }
}
.mw_wp_form.mw_wp_form_complete {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form tr + tr {
    padding-top: 24px;
  }
}
.mw_wp_form table,
.mw_wp_form tbody,
.mw_wp_form tr,
.mw_wp_form th,
.mw_wp_form td {
  border: none;
  padding: 0;
  background-color: unset !important;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form table,
  .mw_wp_form tbody,
  .mw_wp_form tr,
  .mw_wp_form th,
  .mw_wp_form td {
    display: block;
    width: 100%;
  }
}
.mw_wp_form th {
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form th {
    width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form th {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
  }
}
.mw_wp_form th > span {
  position: absolute;
  display: block;
  height: auto;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form th > span {
    top: 50%;
    left: 0;
    width: 38px;
    line-height: 28px;
    translate: 0 -50%;
    font-weight: 700;
    font-size: 1.2rem;
  }
}
.mw_wp_form th > span.required {
  background-color: #C50000;
}
.mw_wp_form th > span.any {
  background-color: #8F8F8F;
}
.mw_wp_form th small {
  display: block;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form th small {
    margin-top: -20px;
  }
}
@media screen and (min-width: 1001px) {
  .mw_wp_form td th {
    width: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form td th {
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.mw_wp_form input,
.mw_wp_form textarea,
.mw_wp_form select {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.4375em;
  box-sizing: border-box;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid #cccccc;
  outline: none;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form input,
  .mw_wp_form textarea,
  .mw_wp_form select {
    padding: 1em;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form input,
  .mw_wp_form textarea,
  .mw_wp_form select {
    padding: 10px;
  }
}
.mw_wp_form input.var01,
.mw_wp_form textarea.var01,
.mw_wp_form select.var01 {
  max-width: 500px;
}
@media screen and (min-width: 501px) {
  .mw_wp_form input.var02,
  .mw_wp_form textarea.var02,
  .mw_wp_form select.var02 {
    max-width: 5em;
  }
}
@media screen and (max-width: 500px) {
  .mw_wp_form input.var02,
  .mw_wp_form textarea.var02,
  .mw_wp_form select.var02 {
    max-width: 4em;
  }
}
.mw_wp_form input,
.mw_wp_form textarea {
  width: 100%;
}
.mw_wp_form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 48px;
  background-image: url("../images/common/svg-select.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: center right 16px;
}
.mw_wp_form input[type*=file] {
  width: auto;
  background-color: transparent;
  padding: 0;
  border: none;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  margin-top: clamp(10px, 1vw, 16px);
}
.mw_wp_form input[type*=file]::file-selector-button {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 0.2em 0.5em;
  box-sizing: border-box;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.2903225806vw, 1.6rem);
}
.mw_wp_form .error {
  display: block;
  font-size: 1.5rem;
  padding: 0.5em;
  box-sizing: border-box;
  background-color: pink;
  margin-top: 8px;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form.mw_wp_form_input th,
  .mw_wp_form.mw_wp_form_input td {
    padding-bottom: 40px;
  }
  .mw_wp_form.mw_wp_form_input th {
    line-height: 57px;
  }
  .mw_wp_form.mw_wp_form_input th > span {
    top: 11px;
    right: 56px;
    width: 44px;
    line-height: 30px;
    font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
    font-weight: 400;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFFFFF;
  }
  .mw_wp_form.mw_wp_form_confirm th,
  .mw_wp_form.mw_wp_form_confirm td, .mw_wp_form.mw_wp_form_preview th,
  .mw_wp_form.mw_wp_form_preview td {
    padding-top: 5px;
    padding-bottom: 40px;
  }
  .mw_wp_form.mw_wp_form_confirm th > span, .mw_wp_form.mw_wp_form_preview th > span {
    top: 0;
    right: 56px;
    width: 60px;
    line-height: 40px;
  }
  .mw_wp_form.mw_wp_form_confirm td th,
  .mw_wp_form.mw_wp_form_confirm td td, .mw_wp_form.mw_wp_form_preview td th,
  .mw_wp_form.mw_wp_form_preview td td {
    padding-bottom: 10px;
  }
  .mw_wp_form.mw_wp_form_confirm td tr:first-child th,
  .mw_wp_form.mw_wp_form_confirm td tr:first-child td, .mw_wp_form.mw_wp_form_preview td tr:first-child th,
  .mw_wp_form.mw_wp_form_preview td tr:first-child td {
    padding-top: 0;
  }
  .mw_wp_form.mw_wp_form_confirm td tr:last-child th,
  .mw_wp_form.mw_wp_form_confirm td tr:last-child td, .mw_wp_form.mw_wp_form_preview td tr:last-child th,
  .mw_wp_form.mw_wp_form_preview td tr:last-child td {
    padding-bottom: 0;
  }
}

.mwform-checkbox-field input {
  display: none;
}
.mwform-checkbox-field input:checked + .mwform-checkbox-field-text::before {
  background-image: url("../images/common/check.svg");
}

.mwform-checkbox-field-text {
  position: relative;
  padding-left: 60px;
  margin-right: 20px;
  cursor: pointer;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #1D1D1D;
}
@media screen and (min-width: 1001px) {
  .mwform-checkbox-field-text {
    line-height: 57px;
  }
}
@media screen and (max-width: 1000px) {
  .mwform-checkbox-field-text {
    line-height: 32px;
  }
}
.mwform-checkbox-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 40px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  border: 1px solid #cccccc;
}

.mwform-radio-field input {
  display: none;
}
.mwform-radio-field input:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

.mwform-radio-field-text {
  position: relative;
  padding-left: 40px;
  margin-right: 20px;
  cursor: pointer;
}
@media screen and (min-width: 1001px) {
  .mwform-radio-field-text {
    line-height: 57px;
  }
}
@media screen and (max-width: 1000px) {
  .mwform-radio-field-text {
    line-height: 32px;
  }
}
.mwform-radio-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.mwform-radio-field-text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 8px;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  width: 16px;
  background-color: #C50000;
  border-radius: 50%;
  opacity: 0;
}

.file-text {
  display: inline-block;
  font-size: clamp(1.1rem, 1.2903225806vw, 1.6rem);
  word-break: auto-phrase;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
  color: #1D1D1D;
}
@media screen and (max-width: 500px) {
  .file-text {
    word-break: break-word;
  }
}
@media screen and (min-width: 1001px) {
  .file-text {
    padding-top: 13px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 1000px) {
  .file-text {
    line-height: 1.3;
  }
}

@media screen and (min-width: 501px) {
  .sp-break {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .sp-break {
    display: block !important;
  }
}

.form-agree {
  margin-top: 40px;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
}
.form-agree::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.form-agree::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.mw_wp_form_confirm .form-agree {
  display: none !important;
}
.form-agree a {
  color: #034CA6;
  text-decoration: underline;
}
@media screen and (min-width: 1001px) {
  .form-agree {
    text-align: center;
  }
}

.form-wrap {
  margin-top: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.form-wrap input[type=checkbox] + .mwform-checkbox-field-text {
  margin-right: 0;
}

.form-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-top: 48px;
}
.form-btns a,
.form-btns [type=submit] {
  max-width: 280px;
  width: 100%;
  align-items: left;
  font-size: clamp(1.5rem, 1.4516129032vw, 1.8rem);
  font-weight: 700;
  padding: 22px 36px;
  color: #1D1D1D;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  transition-property: all;
  border-radius: 36px;
  border: solid 1px #034CA6;
  text-align: left;
  background: url(../images/contact/contact_arrow.png);
  background-color: #fff;
  background-position: center right 26px;
  background-size: 28px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1001px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .form-btns a,
  .form-btns [type=submit] {
    max-width: 256px;
    padding: 21px 32px;
    background: url(../images/contact/contact_arrow.png);
    background-color: #fff;
    background-position: center right 26px;
    background-size: 22px;
    background-repeat: no-repeat;
  }
}
.form-btns a:hover,
.form-btns [type=submit]:hover {
  opacity: 1;
}
@media screen and (min-width: 1001px) {
  .form-btns a:hover,
  .form-btns [type=submit]:hover {
    background: url(../images/contact/contact_arrow_hov.png);
    background-color: #034CA6;
    background-position: center right 22px;
    background-size: 36px;
    background-repeat: no-repeat;
    color: #fff;
  }
}

.ui-datepicker th,
.ui-datepicker td {
  display: table-cell !important;
  font-size: 1.3rem;
}
.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0;
  font-size: 1.2rem;
}

.page__check .mw_wp_form th small {
  margin-top: 0;
}

/* page */
.mv {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 150px;
}
@media screen and (max-width: 1000px) {
  .mv {
    padding-top: 24px;
  }
}
.mv::before {
  content: "";
  background-image: url(../images/common/bg.webp);
  background-color: #fff;
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 256px;
}
@media screen and (max-width: 1000px) {
  .mv::before {
    height: 200px;
  }
}
@media screen and (max-width: 500px) {
  .mv::before {
    height: 108px;
  }
}

.mv__wrap {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1401px) {
  .mv__wrap {
    margin-right: calc((100vw - 1380px) / 2);
  }
}
@media screen and (max-width: 1400px) {
  .mv__wrap {
    max-width: 1440px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .mv__wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .mv__wrap {
    padding-left: 0;
    padding-right: 160px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv__wrap {
    padding-left: 0;
    padding-right: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .mv__wrap {
    padding: 0;
  }
}

.mv__columns {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .mv__columns {
    display: block;
  }
}

.mv__slider {
  max-width: 85%;
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .mv__slider {
    max-width: 83%;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv__slider {
    max-width: 82%;
  }
}
@media screen and (max-width: 1000px) {
  .mv__slider {
    margin-top: 24px;
    padding-right: 40px;
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .mv__slider {
    padding-right: 30px;
  }
}

@media screen and (min-width: 1001px) {
  .mv__headline {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    writing-mode: vertical-rl;
    gap: 40px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .mv__headline {
    gap: 32px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv__headline {
    gap: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .mv__headline {
    padding-left: 40px;
  }
}
@media screen and (max-width: 500px) {
  .mv__headline {
    padding-left: 20px;
  }
}

.mv__headline__inner {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.6rem, 3.7903225806vw, 4.7rem);
  line-height: 100%;
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .mv__headline__inner {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv__headline__inner {
    font-size: 3rem;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .mv__headline__inner {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1000px) {
  .mv__headline__inner {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .mv__headline__inner + .mv__headline__inner {
    margin-top: 20px;
  }
}
.mv__headline__point {
  color: #034CA6;
}

.mv__slide {
  overflow: hidden;
  border-radius: 0 100px 0 0;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv__slide {
    border-radius: 0 80px 0 0;
  }
}
@media screen and (max-width: 1000px) {
  .mv__slide {
    border-radius: 0 64px 0 0;
  }
}
@media screen and (max-width: 500px) {
  .mv__slide {
    border-radius: 0 40px 0 0;
  }
}

.mv .cs_st img {
  transform: scale(1, 1) !important;
}
.mv .cs_ac .slick-active img {
  transform: scale(1.06, 1.06) !important;
}
.mv img {
  transition: all 6s;
  transform: scale(1, 1);
}
.mv .slick-active img {
  transform: scale(1.04, 1.04);
}

.mv_content {
  position: absolute;
  left: 22px;
  bottom: 0;
}
@media screen and (max-width: 1000px) {
  .mv_content {
    left: 20px;
    bottom: 12px;
  }
}

.mv_content__catch {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6612903226vw, 3.3rem);
  line-height: 100%;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media screen and (min-width: 1001px) {
  .mv_content__catch {
    padding-left: 12px;
  }
}

.mv_roop {
  position: relative;
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  animation: a_mv_roop 50s linear infinite;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .mv_roop {
    margin-top: 10px;
  }
}

.mv_roop__slide {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(5.8rem, 14.3548387097vw, 17.8rem);
  line-height: 100%;
  letter-spacing: -0.01em;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv_roop__slide {
    font-size: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .mv_roop__slide {
    -webkit-text-stroke-width: 1px;
  }
}

@keyframes a_mv_roop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}
.mv__headline__inner {
  clip-path: inset(0 0 100% 0);
  transition: all 2s ease;
}
@media screen and (max-width: 1000px) {
  .mv__headline__inner {
    clip-path: inset(0 100% 0 0);
  }
}

.mv.cs_ac .mv__headline__inner {
  clip-path: inset(0% 0 0 0);
}
.mv.cs_ac .mv__headline__inner2 {
  transition-delay: 0.6s;
}

.main_block {
  overflow: hidden;
  position: relative;
}
.main_block::before {
  content: "";
  background-image: url(../images/common/bg.webp);
  background-color: #fff;
  background-repeat: repeat;
  background-position: center top;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
汎用クラス----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_headline__slag {
  position: relative;
  padding-left: 24px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.6129032258vw, 2rem);
  line-height: 100%;
  color: #00A9EA;
  text-transform: uppercase;
}
@media screen and (max-width: 1000px) {
  .main_headline__slag {
    padding-left: 20px;
  }
}
.main_headline__slag::before {
  content: "";
  background: url(../images/home/ico_home_headline.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 17px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .main_headline__slag::before {
    width: 15px;
    height: 14px;
  }
}

.main_headline__title {
  display: block;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(3rem, 3.2258064516vw, 4rem);
  line-height: 100%;
  color: #1D1D1D;
  margin-top: 18px;
}
@media screen and (max-width: 1000px) {
  .main_headline__title {
    margin-top: 14px;
  }
}

/*================================================
汎用クラス----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_message----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_message {
  position: relative;
  padding: 152px 0 160px;
}
@media screen and (max-width: 1000px) {
  .main_message {
    padding: 56px 0 72px;
  }
}

.main_message__back {
  max-width: 522px;
  position: absolute;
  top: -178px;
  right: 0;
  pointer-events: none;
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .main_message__back {
    max-width: 452px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .main_message__back {
    max-width: 350px;
    top: -140px;
  }
}
@media screen and (max-width: 1000px) {
  .main_message__back {
    display: none;
  }
}

.main_message__ico {
  max-width: 64px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .main_message__ico {
    max-width: 48px;
  }
}
@media screen and (max-width: 500px) {
  .main_message__ico {
    max-width: 32px;
  }
}

.main_message__headline {
  text-align: center;
  margin-bottom: 56px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .main_message__headline {
    margin-bottom: 40px;
  }
}

.main_message__slag {
  display: block;
  font-weight: 700;
  font-size: clamp(4.4rem, 7.0967741935vw, 8.8rem);
  line-height: 100%;
  text-transform: uppercase;
  color: #00A9EA;
  margin: 22px 0;
}
@media screen and (max-width: 1000px) {
  .main_message__slag {
    margin: 16px 0;
  }
}

.main_message__title {
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5806451613vw, 3.2rem);
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #1D1D1D;
}

.main_message__read {
  font-weight: 400;
  text-align: center;
  color: #1D1D1D;
}
@media screen and (min-width: 1001px) {
  .main_message__read {
    line-height: 225%;
  }
}
@media screen and (max-width: 500px) {
  .main_message__read {
    text-align: left;
  }
}

.lower_btn--main_message {
  margin-top: 56px;
}
@media screen and (max-width: 1000px) {
  .lower_btn--main_message {
    margin-top: 40px;
  }
}
.lower_btn--main_message a {
  margin: auto;
}

/*================================================
main_message----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_business----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_business {
  position: relative;
  padding: 112px 0 104px;
}
@media screen and (max-width: 1000px) {
  .main_business {
    padding: 56px 0 72px;
  }
}

.main_business__back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  mix-blend-mode: overlay;
}

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

.main_business__read {
  max-width: 592px;
  margin: 40px 0;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .main_business__read {
    max-width: 562px;
  }
}
@media screen and (max-width: 1000px) {
  .main_business__read {
    max-width: 100%;
  }
}

.main_business__btns {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 500px) {
  .main_business__btns {
    display: block;
  }
  .main_business__btns .lower_btn a {
    margin: auto;
  }
  .main_business__btns .lower_btn + .lower_btn {
    margin-top: 12px;
  }
}

/*================================================
main_business----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_works----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_works {
  padding: 132px 0 180px;
}
@media screen and (max-width: 1000px) {
  .main_works {
    padding: 72px 0;
  }
}

/*================================================
main_works----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_recruit----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_recruit {
  position: relative;
  padding: 144px 0 112px;
  background: url(../images/common/deepbg.webp);
  background-repeat: repeat;
  background-position: center top;
  border-radius: 100px 0 0 0;
}
@media screen and (max-width: 1000px) {
  .main_recruit {
    padding: 56px 0 78px;
    border-radius: 56px 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .main_recruit {
    border-radius: 40px 0 0 0;
  }
}

.main_recruit__wrap {
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (max-width: 1000px) {
  .main_recruit__wrap {
    margin-bottom: 56px;
  }
}

.main_recruit__logo {
  max-width: 64px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .main_recruit__logo {
    max-width: 48px;
  }
}
@media screen and (max-width: 500px) {
  .main_recruit__logo {
    max-width: 32px;
  }
}

.main_recruit__slag {
  margin: 22px 0;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(4.4rem, 7.0967741935vw, 8.8rem);
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #00A9EA;
}
@media screen and (max-width: 1000px) {
  .main_recruit__slag {
    margin: 16px 0;
  }
}
@media screen and (max-width: 500px) {
  .main_recruit__slag {
    margin: 11px 0;
  }
}

.main_recruit__title {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5806451613vw, 3.2rem);
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

.main_recruit__headline {
  margin: 72px 0 40px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.4rem, 3.2258064516vw, 4rem);
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .main_recruit__headline {
    margin: 40px 0 24px;
  }
  .main_recruit__headline br {
    display: block;
  }
}

.main_recruit__read {
  color: #FFFFFF;
}
@media screen and (max-width: 500px) {
  .main_recruit__read {
    text-align: left;
  }
}

@media screen and (min-width: 1001px) {
  .main_recruit__fiximgs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
}
@media screen and (max-width: 1000px) {
  .main_recruit__fiximgs {
    margin-bottom: 14px;
  }
}

.main_recruit__fiximgs .main_recruit__fiximg {
  opacity: 0;
  filter: blur(20px);
  transition: all 1.6s;
}

.main_recruit__fiximgs.cs_ac .main_recruit__fiximg {
  opacity: 1;
  filter: blur(0px);
}
.main_recruit__fiximgs.cs_ac .main_recruit__fiximg1 {
  transition-delay: 1s;
}
.main_recruit__fiximgs.cs_ac .main_recruit__fiximg2 {
  transition-delay: 0.5s;
}
@media screen and (max-width: 1000px) {
  .main_recruit__fiximgs.cs_ac .main_recruit__fiximg1 {
    transition-delay: 0.8s;
  }
  .main_recruit__fiximgs.cs_ac .main_recruit__fiximg2 {
    transition-delay: 0.4s;
  }
}

@media screen and (min-width: 1001px) {
  .main_recruit__fiximg1 {
    position: absolute;
    top: -98px;
    right: 126px;
    max-width: 296px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .main_recruit__fiximg1 {
    top: -40px;
    max-width: 180px;
    right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .main_recruit__fiximg1 {
    margin-left: auto;
    max-width: 35.46%;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .main_recruit__fiximg1 {
    max-width: 133px;
  }
}

@media screen and (min-width: 1001px) {
  .main_recruit__fiximg2 {
    position: absolute;
    top: 464px;
    left: 0;
    max-width: 284px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .main_recruit__fiximg2 {
    top: 400px;
    max-width: 160px;
  }
}
@media screen and (max-width: 1000px) {
  .main_recruit__fiximg2 {
    max-width: 34.13%;
    margin-right: auto;
    margin-top: -70px;
  }
}
@media screen and (max-width: 500px) {
  .main_recruit__fiximg2 {
    max-width: 128px;
    margin-top: -20px;
  }
}

@media screen and (min-width: 1001px) {
  .main_recruit__fiximg3 {
    position: absolute;
    top: 646px;
    right: 0px;
    max-width: 256px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .main_recruit__fiximg3 {
    top: 656px;
    max-width: 150px;
  }
}
@media screen and (max-width: 1000px) {
  .main_recruit__fiximg3 {
    max-width: 30.66%;
    margin-left: auto;
    margin-top: -120px;
  }
}
@media screen and (max-width: 500px) {
  .main_recruit__fiximg3 {
    max-width: 115px;
    margin-top: -70px;
  }
}

@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__content--main_recruit .recruit_catch__main {
    max-width: 477px;
  }
}

.recruit_links--main_recruit.recruit_links {
  padding-top: 21px;
}
@media screen and (max-width: 1000px) {
  .recruit_links--main_recruit.recruit_links {
    padding-top: 40px;
  }
}

.recruit_links--main_recruit .recruit_links__pos {
  top: -326px;
}
@media screen and (max-width: 1000px) {
  .recruit_links--main_recruit .recruit_links__pos {
    display: none;
  }
}

.recruit_slider_wrap--main_recruit.recruit_slider_wrap {
  display: block;
  margin-top: 132px;
}
@media screen and (max-width: 1000px) {
  .recruit_slider_wrap--main_recruit.recruit_slider_wrap {
    margin-top: 64px;
  }
}

/*================================================
main_recruit----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_company----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_company {
  padding: 144px 0;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .main_company {
    padding: 64px 0 72px;
  }
}

.main_company__container {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1241px) {
  .main_company__container {
    margin-right: calc((100vw - 1220px) / 2);
  }
}
@media screen and (max-width: 1240px) {
  .main_company__container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .main_company__container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .main_company__container {
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .main_company__container {
    padding: 0;
  }
}

.main_company__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .main_company__columns {
    display: block;
  }
}

.main_company__img {
  flex-basis: 55.71%;
}
@media screen and (max-width: 1000px) {
  .main_company__img {
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .main_company__img {
    padding-right: 34px;
  }
}

.main_company__img_main {
  border-radius: 0 100px 0 0;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .main_company__img_main {
    height: 560px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1000px) {
  .main_company__img_main {
    border-radius: 0 56px 0 0;
  }
}
@media screen and (max-width: 500px) {
  .main_company__img_main {
    border-radius: 0 40px 0 0;
  }
}

.main_company__content {
  flex-basis: 37.14%;
}
@media screen and (max-width: 1000px) {
  .main_company__content {
    margin-top: 56px;
    padding: 0 30px;
  }
}

.main_company__read {
  margin: 40px 0 68px;
}
@media screen and (min-width: 1801px) {
  .main_company__read {
    margin: 60px 0 90px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .main_company__read {
    margin: 32px 0 52px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .main_company__read {
    margin: 32px 0 52px;
  }
}
@media screen and (max-width: 1000px) {
  .main_company__read {
    margin: 40px 0 48px;
  }
}

@media screen and (min-width: 501px) and (max-width: 1000px) {
  .main_company__list {
    max-width: 340px;
    margin: auto;
  }
}
.main_company__link {
  position: relative;
  display: block;
  padding-bottom: 40px;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 1000px) {
  .main_company__link {
    padding-bottom: 28px;
  }
}
.main_company__link::before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #034CA6;
  transition: all 0.3s;
}

.main_company__inner {
  position: relative;
  display: flex;
  gap: 16px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 100%;
  color: #1D1D1D;
  align-items: center;
  transition: all 0.3s;
}

.main_company__small {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #034CA6;
}

.main_company__circle {
  background: #EBF3FA;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 28px;
  transition: all 0.3s;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .main_company__circle {
    right: 16px;
  }
}
@media screen and (max-width: 500px) {
  .main_company__circle {
    width: 22px;
    right: 13px;
  }
}

.main_company__circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 1;
  background: #034CA6;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 7px;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .main_company__circle::before {
    width: 6px;
  }
}

.main_company__circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  z-index: 2;
  opacity: 0;
}

.main_company__item + .main_company__item a {
  padding-top: 40px;
}
@media screen and (max-width: 1000px) {
  .main_company__item + .main_company__item a {
    padding-top: 28px;
  }
}

.main_company__link:hover {
  opacity: 1;
}
.main_company__link:hover::before {
  width: 100%;
}
@media screen and (min-width: 1001px) {
  .main_company__link:hover .main_company__circle::before {
    background: #034CA6;
    width: 44px;
  }
  .main_company__link:hover .main_company__circle svg {
    opacity: 1;
  }
}

/*================================================
main_company----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_news----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_news {
  padding: 168px 0 120px;
  border-radius: 100px 0 0 0;
  background-image: url(../images/common/bg.webp);
  background-color: #fff;
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  .main_news {
    padding: 64px 0 72px;
    border-radius: 56px 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .main_news {
    border-radius: 40px 0 0 0;
  }
}

.main_news__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .main_news__columns {
    display: block;
  }
}

.main_news__info {
  flex-basis: 74.33%;
}
@media screen and (max-width: 1000px) {
  .main_news__info {
    margin-top: 48px;
  }
}

.main_news__link {
  display: block;
  position: relative;
  padding-bottom: 36px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1000px) {
  .main_news__link {
    padding-bottom: 28px;
  }
}
.main_news__link::before {
  content: "";
  background: #034CA6;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 1px;
  transition: all 0.3s;
}

.main_news__item + .main_news__item .main_news__link {
  padding-top: 36px;
}
@media screen and (max-width: 1000px) {
  .main_news__item + .main_news__item .main_news__link {
    padding-top: 28px;
  }
}

.main_news__time {
  display: block;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 100%;
  color: #034CA6;
  margin-bottom: 16px;
}
@media screen and (max-width: 1000px) {
  .main_news__time {
    margin-bottom: 12px;
  }
}

.main_news__caption {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 175%;
  color: #1D1D1D;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 500px) {
  .main_news__caption {
    -webkit-line-clamp: 3;
  }
}

.main_news__inner {
  position: relative;
  display: block;
  padding-right: 88px;
}
@media screen and (max-width: 1000px) {
  .main_news__inner {
    padding-right: 48px;
  }
}

.main_news__circle {
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 28px;
  transition: all 0.3s;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .main_news__circle {
    right: 16px;
  }
}
@media screen and (max-width: 500px) {
  .main_news__circle {
    width: 22px;
    right: 13px;
  }
}

.main_news__circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 1;
  background: #034CA6;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 7px;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .main_news__circle::before {
    width: 6px;
  }
}

.main_news__circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  z-index: 2;
  opacity: 0;
}

.lower_btn--main_news {
  margin-top: 48px;
}
@media screen and (max-width: 1000px) {
  .lower_btn--main_news {
    margin-top: 40px;
  }
}
.lower_btn--main_news a {
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .lower_btn--main_news a {
    margin: auto;
  }
}

.main_news__link:hover {
  opacity: 1;
}
.main_news__link:hover::before {
  width: 100%;
}
@media screen and (min-width: 1001px) {
  .main_news__link:hover .main_news__circle::before {
    background: #034CA6;
    width: 44px;
  }
  .main_news__link:hover .main_news__circle svg {
    opacity: 1;
  }
}

/*================================================
main_news----END
==================================================*/
.page__body {
  background: url(../images/common/bg.webp);
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  padding: 88px 0 160px;
}
@media screen and (max-width: 1000px) {
  .page__body {
    padding: 80px 0 120px;
  }
}

.lower_catch__headline {
  position: relative;
  font-weight: 700;
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #1D1D1D;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 72px;
  padding-bottom: 5px;
}
@media screen and (max-width: 1000px) {
  .lower_catch__headline {
    padding-bottom: 4px;
    margin-bottom: 56px;
  }
}

.lower_catch__headline::before {
  content: "";
  background: #1D1D1D;
  width: 0%;
  height: 2px;
  transition: all 0.6s ease-in-out;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.lower_catch__headline--white {
  color: #fff;
}

.lower_catch__headline--white::before {
  background: #fff;
}

.lower_catch__headline.cs_ac::before {
  width: 100%;
}

.lower_catch__read {
  max-width: 830px;
  margin: auto;
}

.lower_maker_headline {
  display: flex;
  gap: 8px;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
  color: #1D1D1D;
}

.lower_maker_headline::before {
  content: "";
  display: inline-block;
  background: #034CA6;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  transform: translateY(8px);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .lower_maker_headline::before {
    height: 18px;
    width: 18px;
    transform: translateY(4px);
  }
}
@media screen and (max-width: 500px) {
  .lower_maker_headline::before {
    height: 16px;
    width: 16px;
    transform: translateY(4px);
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
lower_btn----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lower_btn__link {
  position: relative;
  width: 280px;
  height: 72px;
  box-sizing: border-box;
  border-radius: 36px;
  border: solid 1px #034CA6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 18px 36px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .lower_btn__link {
    width: 256px;
    height: 64px;
    padding: 18px 26px 18px 32px;
  }
}

.lower_btn__txt {
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 100%;
  color: #1D1D1D;
  transition: all 0.3s;
}

.lower_btn__circle {
  position: relative;
  background: #EBF3FA;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 28px;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .lower_btn__circle {
    width: 22px;
  }
}

.lower_btn__circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 1;
  background: #034CA6;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 7px;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .lower_btn__circle::before {
    width: 6px;
  }
}

.lower_btn__circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  z-index: 2;
  opacity: 0;
}

.lower_btn__link:hover {
  opacity: 1;
  background: #034CA6;
}
.lower_btn__link:hover .lower_btn__txt {
  color: #fff;
}
.lower_btn__link:hover .lower_btn__circle::before {
  background: #fff;
  width: 36px;
}
.lower_btn__link:hover .lower_btn__circle svg {
  opacity: 1;
}

.lower_btn__prev {
  margin-top: 56px;
}
.lower_btn__prev .lower_btn__link {
  margin: auto;
}

/*================================================
lower_btn----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
lower_anchor----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lower_anchor {
  margin-bottom: 128px;
}
@media screen and (max-width: 1000px) {
  .lower_anchor {
    margin-bottom: 80px;
  }
}

.lower_anchor__list {
  display: flex;
  gap: 32px 40px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .lower_anchor__list {
    gap: 24px;
  }
}
@media screen and (max-width: 500px) {
  .lower_anchor__list {
    display: block;
  }
}

@media screen and (min-width: 501px) and (max-width: 1000px) {
  .lower_anchor__list.lower_anchor__list--recruit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 540px;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .lower_anchor__item + .lower_anchor__item {
    margin-top: 16px;
  }
}
.lower_anchor__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 100%;
  color: #1D1D1D;
  transition: all 0.3s;
}

.lower_anchor__circle {
  position: relative;
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 36px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .lower_anchor__circle {
    width: 30px;
  }
}

.lower_anchor__circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.3s;
}
.lower_anchor__circle svg path {
  transition: all 0.3s;
}

.lower_anchor__link:hover,
.lower_anchor__link--current {
  opacity: 1;
  color: #034CA6;
}
.lower_anchor__link:hover .lower_anchor__circle,
.lower_anchor__link--current .lower_anchor__circle {
  background: #034CA6;
}
.lower_anchor__link:hover .lower_anchor__circle svg,
.lower_anchor__link--current .lower_anchor__circle svg {
  transform: translate(-50%, -50%) rotate(90deg);
}
.lower_anchor__link:hover .lower_anchor__circle svg path,
.lower_anchor__link--current .lower_anchor__circle svg path {
  fill: #fff;
}

/*================================================
lower_anchor----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
lower_banner----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lower_banner {
  position: relative;
  display: block;
  max-width: 638px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .lower_banner {
    max-width: 560px;
  }
}

.lower_banner::before {
  content: "";
  background: #034CA6;
  opacity: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
  z-index: 1;
}

.lower_banner__img {
  overflow: hidden;
}

.lower_banner__img_main {
  transition: all 0.6s;
}

.lower_banner__inner {
  position: absolute;
  color: #fff;
  z-index: 2;
  top: 80px;
  left: 56px;
}
@media screen and (max-width: 1000px) {
  .lower_banner__inner {
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
  }
}
@media screen and (max-width: 500px) {
  .lower_banner__inner {
    left: 30px;
  }
}

.lower_banner__slag {
  display: block;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.lower_banner__title {
  display: block;
  margin-top: 16px;
  font-weight: 700;
  font-size: clamp(2.2rem, 2.5806451613vw, 3.2rem);
  line-height: 100%;
  color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .lower_banner__title {
    margin-top: 12px;
  }
}

.lower_banner__circle {
  background: #EBF3FA;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 28px;
  transition: all 0.3s;
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .lower_banner__circle {
    right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .lower_banner__circle {
    width: 22px;
    right: 30px;
  }
}

.lower_banner__circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 1;
  background: #034CA6;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 7px;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .lower_banner__circle::before {
    width: 6px;
  }
}

.lower_banner__circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  z-index: 2;
  opacity: 0;
}

.lower_banner:hover {
  opacity: 1;
}
.lower_banner:hover::before {
  opacity: 30%;
}
.lower_banner:hover .lower_banner__img_main {
  transform: scale(1.05, 1.05);
}
.lower_banner:hover .lower_banner__circle::before {
  background: #fff;
  width: 48px;
}
.lower_banner:hover .lower_banner__circle svg {
  opacity: 1;
}

/*================================================
lower_banner----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
table----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.table_title {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  color: #000000;
  padding-left: 24px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .table_title {
    padding-left: 22px;
    margin-bottom: 32px;
  }
}
.table_title::before {
  content: "";
  background: #034CA6;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .table_title::before {
    width: 14px;
    height: 14px;
  }
}

.page__body .table_wrap table th,
.page__body .table_wrap table td {
  padding: 32px 32px;
  border: none;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 175%;
  color: #1D1D1D;
  background: initial;
  border-bottom: solid 1px #ccc;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .page__body .table_wrap table th,
  .page__body .table_wrap table td {
    padding: 24px 16px;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .page__body .table_wrap table th,
  .page__body .table_wrap table td {
    padding: 16px;
  }
}
.page__body .table_wrap table th {
  font-weight: 700;
  color: #1D1D1D;
}
@media screen and (min-width: 1001px) {
  .page__body .table_wrap table th {
    width: 248px;
    border-bottom: solid 1px #034CA6;
  }
}
@media screen and (max-width: 1000px) {
  .page__body .table_wrap table th {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 1000px) {
  .page__body .table_wrap table tr:first-child th {
    border-top: solid 1px #ccc;
  }
  .page__body .table_wrap table td {
    padding-top: 16px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .page__body .table_wrap table td {
    padding-top: 8px;
  }
}

/*================================================
table----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
うごき ----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.move_txt span {
  opacity: 0;
  transform: translateY(10px);
}

.move_txt.active span {
  opacity: 1;
  transform: translateY(0);
}

.cs_st.fade_img {
  opacity: 0;
  filter: blur(20px);
  transition: all 1.6s;
}

.cs_ac.fade_img {
  opacity: 1;
  filter: blur(0px);
}

/*================================================
うごき ----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
only----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
@media screen and (min-width: 1001px) {
  .pc_only2 {
    display: block;
  }
  .mobile_only {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .pc_only2 {
    display: none !important;
  }
  .mobile_only {
    display: block;
  }
}
@media screen and (min-width: 501px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block;
  }
}
/*================================================
only----END
==================================================*/
.outline_block + .outline_block {
  margin-top: clamp(80px, 7.5vw, 120px);
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
company----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.company_wrap {
  padding: 88px;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 1000px) {
  .company_wrap {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .company_wrap {
    padding: 40px 25px;
    border-radius: 16px;
  }
}

.lower_pagetop {
  margin-top: 32px;
}

.lower_pagetop__link {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1D1D1D;
}
@media screen and (max-width: 1000px) {
  .lower_pagetop__link {
    gap: 8px;
  }
}

.lower_pagetop__ico {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #034CA6;
  display: inline-block;
}
.lower_pagetop__ico svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.lower_pagetop__link:hover {
  opacity: 1;
}
.lower_pagetop__link:hover .lower_pagetop__ico svg {
  top: calc(50% - 3px);
}

.company_section + .company_section {
  margin-top: 128px;
}

.message_sign {
  max-width: 382px;
  margin-left: auto;
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .message_sign {
    max-width: 342px;
  }
}
@media screen and (max-width: 500px) {
  .message_sign {
    max-width: 240px;
  }
}

/*================================================
company----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
message_section----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.message_columns {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1200px) {
  .message_columns {
    display: block;
  }
}

.message_img {
  flex-basis: 34.37%;
}
@media screen and (max-width: 1200px) {
  .message_img {
    max-width: 352px;
  }
}

.message_txt {
  flex-basis: 59.37%;
}
@media screen and (max-width: 1200px) {
  .message_txt {
    margin-top: 40px;
  }
}

.message__headline {
  font-weight: 700;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
  color: #1D1D1D;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .message__headline br {
    display: block;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .message__headline {
    font-size: 2.6rem;
  }
}

.message_read {
  margin-top: 48px;
}
@media screen and (max-width: 1200px) {
  .message_read {
    margin-top: 24px;
  }
}

.message_name {
  text-align: right;
  margin-top: 48px;
  font-weight: 700;
  font-size: clamp(2.6rem, 2.2580645161vw, 2.8rem);
  color: #1D1D1D;
}
@media screen and (max-width: 1200px) {
  .message_name {
    margin-top: 40px;
  }
}

.message_name__class {
  display: inline-block;
  margin-right: 16px;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  color: #1D1D1D;
}
@media screen and (max-width: 1000px) {
  .message_name__class {
    margin-right: 12px;
  }
}

/*================================================
message_section----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
outline_section----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.outline_wrap + .outline_wrap {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .outline_wrap + .outline_wrap {
    margin-top: 56px;
  }
}

/*================================================
outline_section----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
access_section----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.access_read {
  display: block;
  margin-top: 24px;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 150%;
  color: #1D1D1D;
}

@media screen and (max-width: 1000px) {
  .access_map iframe {
    height: 400px !important;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .access_map iframe {
    height: 300px !important;
  }
}
/*================================================
access_section----END
==================================================*/
.page__about-us {
  position: relative;
}

.page__body.page__about-us {
  background: initial;
}

.lower_catch--about {
  padding: 136px 0;
  background-image: url(../images/common/bg.webp);
  background-color: #fff;
  background-repeat: repeat;
  background-position: center top;
}
@media screen and (max-width: 1000px) {
  .lower_catch--about {
    padding: 80px 0;
  }
}

@media screen and (max-width: 500px) {
  .lower_catch__headline.lower_catch__headline--about-us_c {
    font-size: 1.8rem;
  }
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about_content----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.about_content {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 112px 0 152px;
}
@media screen and (max-width: 1000px) {
  .about_content {
    padding: 72px 0 116px;
  }
}

.about_content::before {
  content: "";
  background-image: url(../images/common/bg.webp);
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  mix-blend-mode: overlay;
  z-index: -1;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .about_content::before {
    background-size: cover;
  }
}

.about_content__img {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -4;
}
@media screen and (max-width: 1200px) {
  .about_content__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.about_content__wrap {
  padding: 32px 56px;
  background: #fff;
  width: 626px;
  box-sizing: border-box;
  border-radius: 24px;
}
@media screen and (max-width: 1000px) {
  .about_content__wrap {
    padding: 32px 40px;
    width: 100%;
    max-width: 626px;
  }
}
@media screen and (max-width: 500px) {
  .about_content__wrap {
    width: 100%;
    padding: 32px 25px;
    border-radius: 16px;
  }
}

.about_content__wrap + .about_content__wrap {
  margin-top: 28px;
}

.about_content__headline {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 100%;
  color: #00A9EA;
  margin-bottom: 24px;
}

.about_content__num {
  font-weight: 700;
  font-size: clamp(3.2rem, 3.2258064516vw, 4rem);
  text-transform: uppercase;
  color: #00A9EA;
  line-height: 1;
}

/*================================================
about_content----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about_area----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.about_area {
  padding: 96px 0 140px;
  background-image: url(../images/common/bg.webp);
  background-color: #fff;
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  .about_area {
    padding: 80px 0 116px;
  }
}

.about_area__columns {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .about_area__columns {
    display: block;
  }
}

.about_area__img {
  flex-basis: 48%;
}

.about_area__txt {
  flex-basis: 45.16%;
}
@media screen and (max-width: 1000px) {
  .about_area__txt {
    margin-top: 48px;
  }
}

.about_area__headline {
  font-weight: 700;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
  color: #1D1D1D;
}

.about_area__read {
  margin-top: 24px;
}

/*================================================
about_area----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about_aside----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.about_aside {
  position: relative;
  padding: 136px 0 128px;
}
@media screen and (max-width: 1000px) {
  .about_aside {
    padding: 96px 0 96px;
  }
}

.about_aside::before {
  content: "";
  background-image: url(../images/common/bg.webp);
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  mix-blend-mode: overlay;
  z-index: -1;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .about_aside::before {
    background-size: cover;
  }
}

.about_aside__headline {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 225%;
  text-align: center;
  color: #1D1D1D;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .about_aside__headline br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .about_aside__headline {
    line-height: 2;
    text-align: left;
  }
}

.about_aside__btns {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 1000px) {
  .about_aside__btns {
    margin-top: 40px;
    display: block;
  }
  .about_aside__btns .lower_btn + .lower_btn {
    margin-top: 16px;
  }
  .about_aside__btns .lower_btn__link {
    margin: auto;
  }
}

/*================================================
about_aside----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
lower_catch--communication----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lower_catch--communication {
  margin-bottom: 88px;
}
@media screen and (max-width: 1000px) {
  .lower_catch--communication {
    margin-bottom: 72px;
  }
}

/*================================================
lower_catch--communication----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
communication_content----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.communication_content__wrap {
  padding: 96px 88px 80px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .communication_content__wrap {
    padding: 80px 40px 72px;
  }
}
@media screen and (max-width: 500px) {
  .communication_content__wrap {
    padding: 40px 25px 40px;
    border-radius: 16px;
  }
}

.lower_maker_headline--communication_content {
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .lower_maker_headline--communication_content {
    margin-bottom: 16px;
  }
}

.communication_content__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .communication_content__columns {
    display: block;
  }
}

.communication_content__txt {
  flex-basis: 43.94%;
}

.communication_content__img {
  flex-basis: 49.8%;
}
@media screen and (max-width: 1000px) {
  .communication_content__img {
    margin-top: 40px;
  }
}

.communication_content__subline {
  margin: 48px 0 16px;
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 150%;
  color: #1D1D1D;
}
@media screen and (max-width: 1000px) {
  .communication_content__subline {
    margin: 64px 0 24px;
  }
}

.communication_content__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 80px;
  border-bottom: solid 1px #CCCCCC;
}
@media screen and (max-width: 1000px) {
  .communication_content__cards {
    padding-bottom: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .communication_content__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.communication_content__card {
  padding: 18px 20px 28px;
  border-radius: 16px;
  background: #F1F1F2;
}

.communication_content__card_headline {
  margin-top: 18px;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #1D1D1D;
}

.communication_content__columns--bt {
  margin-top: 40px;
}

/*================================================
communication_content----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
communication_banner----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.communication_banner {
  margin-top: 130px;
}
@media screen and (max-width: 1000px) {
  .communication_banner {
    margin-top: 80px;
  }
}

/*================================================
communication_banner----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
lower_catch--electrical----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lower_catch--electrical {
  margin-bottom: 88px;
}
@media screen and (max-width: 1000px) {
  .lower_catch--electrical {
    margin-bottom: 72px;
  }
}

/*================================================
lower_catch--electrical----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
electrical_content----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.electrical_content__wrap {
  padding: 88px 88px 92px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .electrical_content__wrap {
    padding: 64px 40px 72px;
  }
}
@media screen and (max-width: 500px) {
  .electrical_content__wrap {
    padding: 40px 25px 40px;
    border: 16px;
  }
}

.lower_maker_headline--electrical_content {
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .lower_maker_headline--electrical_content {
    margin-bottom: 16px;
  }
}

.electrical_content__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .electrical_content__columns {
    display: block;
  }
}

.electrical_content__txt {
  flex-basis: 43.94%;
}

.electrical_content__img {
  flex-basis: 49.8%;
}
@media screen and (max-width: 1000px) {
  .electrical_content__img {
    margin-top: 40px;
  }
}

.electrical_content__subline {
  margin: 48px 0 16px;
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 150%;
  color: #1D1D1D;
}
@media screen and (max-width: 1000px) {
  .electrical_content__subline {
    margin: 64px 0 24px;
  }
}

.electrical_content__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1000px) {
  .electrical_content__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .electrical_content__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.electrical_content__card {
  padding: 32px 16px;
  border-radius: 16px;
  background: #F1F1F2;
}
@media screen and (max-width: 1000px) {
  .electrical_content__card {
    padding: 24px 16px;
  }
}
.electrical_content__card img {
  height: 120px;
  width: auto;
}
@media screen and (max-width: 1000px) {
  .electrical_content__card img {
    height: 100px;
  }
}

.electrical_content__card_headline {
  margin-top: 18px;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #1D1D1D;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .electrical_content__card_headline br {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .electrical_content__card_headline br {
    display: block;
  }
}

.electrical_content__columns--bt {
  margin-top: 80px;
}

/*================================================
electrical_content----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
electrical_banner----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.electrical_banner {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .electrical_banner {
    margin-top: 80px;
  }
}

/*================================================
electrical_banner----END
==================================================*/
.access_block__map {
  display: block;
  width: 100%;
  margin-bottom: clamp(24px, 2vw, 32px);
}
@media screen and (min-width: 1001px) {
  .access_block__map {
    height: 500px;
  }
}
@media screen and (max-width: 1000px) {
  .access_block__map {
    height: 350px;
  }
}
.access_block__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
archive__list----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.archive__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 88px;
}
@media screen and (max-width: 1000px) {
  .archive__list {
    gap: 10px;
    margin-bottom: 72px;
  }
}

.archive__list__link {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #034CA6;
  border-radius: 24px;
  background: #fff;
  padding: 14px 32px;
}
@media screen and (max-width: 1000px) {
  .archive__list__link {
    padding: 8px 24px;
  }
}

.current_page_item .archive__list__link,
.archive__list__link:hover {
  opacity: 1;
  background: #034CA6;
  color: #fff;
}

/*================================================
archive__list----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
works_cards----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.works_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}
@media screen and (max-width: 1000px) {
  .works_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media screen and (max-width: 500px) {
  .works_cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}

.works_card__link {
  display: block;
}

.works_card__pic {
  overflow: hidden;
}
.works_card__pic img {
  transition: all 0.6s;
  background: #fff;
  aspect-ratio: 368/272;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.works_card__flex {
  margin: 24px 0 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .works_card__flex {
    margin: 16px 0 8px;
  }
}

.works_card__caption {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  color: #FFFFFF;
  height: -moz-fit-content;
  height: fit-content;
  padding: 6px 11px;
  border-radius: 15px;
}
@media screen and (max-width: 1000px) {
  .works_card__caption {
    padding: 6px 8px;
  }
}

.works_card__title {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 150%;
  color: #1D1D1D;
}

.works_card__txt {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 175%;
  color: #1D1D1D;
}

.works_card__link:hover {
  opacity: 1;
}
.works_card__link:hover .works_card__pic img {
  transform: scale(1.1, 1.1);
}

/*================================================
works_cards----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
works__field----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.works__field {
  margin-top: 96px;
  padding-top: 96px;
  border-top: solid 1px #fff;
}
@media screen and (max-width: 1000px) {
  .works__field {
    margin-top: 80px;
    padding-top: 80px;
  }
}

.works__field__block + .works__field__block {
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .works__field__block + .works__field__block {
    margin-top: 16px;
  }
}

.works__field__headline {
  position: relative;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.935483871vw, 2.4rem);
  line-height: 150%;
  color: #FFFFFF;
  padding: 20px 32px;
  padding-right: 72px;
  background: #26364C;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .works__field__headline {
    padding: 16px 24px;
    padding-right: 56px;
  }
}

.works__field__headline::after {
  content: "";
  background: url(../images/works/field_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 12px;
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .works__field__headline::after {
    right: 32px;
    width: 19px;
    height: 11px;
  }
}
@media screen and (max-width: 500px) {
  .works__field__headline::after {
    right: 16px;
    width: 16px;
    height: 8px;
  }
}

.works__field__headline::before {
  content: "● ";
}

.works__field__headline.open_class::after {
  transform: translateY(-50%) rotate(0deg);
}

.works__field__content {
  pointer-events: none;
  border-top: solid 2px #CFDDEB;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  cursor: auto;
}

.works__field__content.open_class {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.works__field__content table th,
.works__field__content table td {
  border: solid 2px #CFDDEB;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 175%;
  color: #1D1D1D;
  padding: 18px 32px;
  background: #fff;
}
.works__field__content table th {
  background: #084B9D;
  color: #fff;
  text-align: center;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #FFFFFF;
  padding: 14px 12px;
}
.works__field__content table .works_th_1,
.works__field__content table .works_td_1 {
  width: -moz-fit-content;
  width: fit-content;
}
.works__field__content table .works_th_2,
.works__field__content table .works_td_2 {
  width: 460px;
}
.works__field__content table .works_th_3,
.works__field__content table .works_td_3 {
  width: 460px;
}
.works__field__content table .works_td_1 {
  background: #828282;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.works__field__content .swipe {
  pointer-events: none;
}

.works__field__content.open_class .swipe {
  pointer-events: all;
}

/*================================================
works__field----END
==================================================*/
.cm-bread.recruit {
  position: static;
  top: auto;
  left: auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .cm-bread.recruit {
    padding-bottom: 56px;
  }
}

.page__recruit {
  overflow: hidden;
  padding-top: 170px;
  background: initial !important;
}
@media screen and (max-width: 1000px) {
  .page__recruit {
    padding-top: 0px;
  }
}

.recruit_wrapper {
  background: url(../images/common/deepbg.webp);
  background-repeat: repeat;
  background-position: center top;
  border-radius: 100px 0 0 0;
  padding-bottom: 190px;
}
@media screen and (max-width: 1000px) {
  .recruit_wrapper {
    border-radius: 56px 0 0 0;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_wrapper {
    border-radius: 40px 0 0 0;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
recruit_catch----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.recruit_catch {
  position: relative;
  padding: 160px 0 48px;
}
@media screen and (max-width: 1000px) {
  .recruit_catch {
    padding: 56px 0 48px;
  }
}

.recruit_catch__headline {
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 1000px) {
  .recruit_catch__headline {
    margin-bottom: 56px;
  }
}

.recruit_catch__logo {
  max-width: 64px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .recruit_catch__logo {
    max-width: 48px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__logo {
    max-width: 32px;
  }
}

.recruit_catch__slag {
  display: block;
  font-weight: 700;
  font-size: clamp(4.4rem, 7.0967741935vw, 8.8rem);
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #00A9EA;
  margin: 22px 0;
}
@media screen and (max-width: 1000px) {
  .recruit_catch__slag {
    margin: 16px 0;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__slag {
    margin: 11px 0;
  }
}

.recruit_catch__title {
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5806451613vw, 3.2rem);
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

@media screen and (min-width: 1001px) {
  .recruit_catch__imgs {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_catch__imgs {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
}

@media screen and (min-width: 1001px) {
  .recruit_catch__l_imgs {
    position: absolute;
    top: -36px;
    left: 110px;
    width: 390px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1500px) {
  .recruit_catch__l_imgs {
    left: 40px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__l_imgs {
    width: 240px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_catch__l_imgs {
    width: 280px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__l_imgs {
    width: 140px;
  }
}

.recruit_catch__l_img1 {
  max-width: 218px;
  margin-left: auto;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__l_img1 {
    max-width: 164px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_catch__l_img1 {
    max-width: 180px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__l_img1 {
    max-width: 100px;
  }
}

.recruit_catch__l_img2 {
  padding-top: 74px;
  max-width: 264px;
  margin-right: auto;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__l_img2 {
    padding-top: 40px;
    max-width: 180px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_catch__l_img2 {
    padding-top: 40px;
    max-width: 220px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__l_img2 {
    padding-top: 32px;
    max-width: 120px;
  }
}

@media screen and (min-width: 1001px) {
  .recruit_catch__r_imgs {
    position: absolute;
    top: 60px;
    right: 140px;
    width: 360px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1500px) {
  .recruit_catch__r_imgs {
    right: 40px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__r_imgs {
    top: 120px;
    width: 240px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_catch__r_imgs {
    padding-top: 40px;
    width: 300px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__r_imgs {
    padding-top: 16px;
    width: 160px;
  }
}

.recruit_catch__r_img1 {
  max-width: 300px;
  margin-right: auto;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__r_img1 {
    max-width: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_catch__r_img1 {
    max-width: 260px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__r_img1 {
    max-width: 140px;
  }
}

.recruit_catch__r_img2 {
  padding-top: 36px;
  max-width: 233px;
  margin-left: auto;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__r_img2 {
    padding-top: 32px;
    max-width: 180px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_catch__r_img2 {
    max-width: 180px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__r_img2 {
    max-width: 132px;
  }
}

.recruit_catch__imgs .recruit_catch__img {
  opacity: 0;
  filter: blur(20px);
  transition: all 1.6s;
}

.recruit_catch__imgs.cs_ac .recruit_catch__img {
  opacity: 1;
  filter: blur(0px);
}
.recruit_catch__imgs.cs_ac .recruit_catch__l_img1 {
  transition-delay: 0.8s;
}
.recruit_catch__imgs.cs_ac .recruit_catch__l_img2 {
  transition-delay: 0.4s;
}
.recruit_catch__imgs.cs_ac .recruit_catch__r_img1 {
  transition-delay: 1.2s;
}

.recruit_catch__content {
  position: relative;
  overflow: hidden;
}

.recruit_catch__main {
  position: relative;
  max-width: 537px;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .recruit_catch__main {
    max-width: 368px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__main {
    max-width: 190px;
  }
}

.recruit_catch__slider_area {
  pointer-events: none;
  position: absolute;
  top: 211px;
}
@media screen and (max-width: 1000px) {
  .recruit_catch__slider_area {
    top: 180px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__slider_area {
    top: 113px;
  }
}

.recruit_catch__slider1 {
  position: relative;
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  animation: a_recruit_catch__slider1 50s linear infinite;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .recruit_catch__slider1 {
    gap: 18px;
  }
}

.recruit_catch__slider1__slide {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .recruit_catch__slider1__slide {
    gap: 18px;
  }
}

.recruit_catch__slider1__img {
  max-width: 210px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__slider1__img {
    max-width: 156px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_catch__slider1__img {
    max-width: 148px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__slider1__img {
    max-width: 80px;
  }
}

.recruit_catch__slider1__txt {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-weight: 600;
  font-size: clamp(5.8rem, 14.3548387097vw, 17.8rem);
  line-height: 100%;
  letter-spacing: -0.01em;
  opacity: 0.5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__slider1__txt {
    font-size: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__slider1__txt {
    -webkit-text-stroke-width: 1px;
  }
}

@keyframes a_recruit_catch__slider1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}
@media screen and (max-width: 500px) {
  @keyframes a_recruit_catch__slider1 {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 9px));
    }
  }
}
.recruit_catch__slider2 {
  position: relative;
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  animation: a_recruit_catch__slider2 35s linear infinite;
  z-index: 1;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__slider2 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__slider2 {
    gap: 18px;
  }
}

.recruit_catch__slider2__slide {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .recruit_catch__slider2__slide {
    gap: 18px;
  }
}

.recruit_catch__slider2__img {
  max-width: 210px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__slider2__img {
    max-width: 156px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_catch__slider2__img {
    max-width: 148px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__slider2__img {
    max-width: 80px;
  }
}

.recruit_catch__slider2__txt {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-weight: 600;
  font-size: clamp(5.8rem, 14.3548387097vw, 17.8rem);
  line-height: 100%;
  letter-spacing: -0.01em;
  opacity: 0.5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_catch__slider2__txt {
    font-size: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .recruit_catch__slider2__txt {
    -webkit-text-stroke-width: 1px;
  }
}

@keyframes a_recruit_catch__slider2 {
  from {
    transform: translateX(calc(-50% - 10px));
  }
  to {
    transform: translateX(0);
  }
}
@media screen and (max-width: 500px) {
  @keyframes a_recruit_catch__slider2 {
    from {
      transform: translateX(calc(-50% - 9px));
    }
    to {
      transform: translateX(0);
    }
  }
}
/*================================================
recruit_catch----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
recruit_message----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.recruit_message {
  position: relative;
  padding-top: 48px;
}

.recruit_message__pos {
  position: absolute;
  top: -232px;
  right: 0px;
  max-width: 628px;
}
@media screen and (max-width: 1500px) {
  .recruit_message__pos {
    top: -120px;
    max-width: 400px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_message__pos {
    display: none;
  }
}

.recruit_message__wrap {
  padding: 72px 88px;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 1000px) {
  .recruit_message__wrap {
    padding: 48px 40px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_message__wrap {
    padding: 40px 25px;
    border-radius: 16px;
  }
}

.recruit_message__headline {
  margin-bottom: 48px;
  font-weight: 700;
  font-size: clamp(2rem, 3.2258064516vw, 4rem);
  line-height: 150%;
  color: #034CA6;
}
@media screen and (max-width: 1000px) {
  .recruit_message__headline {
    margin-bottom: 32px;
  }
}

.recruit_message__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .recruit_message__columns {
    display: block;
  }
}

.recruit_message__txt {
  flex-basis: 74.61%;
}
@media screen and (max-width: 1200px) {
  .recruit_message__txt {
    margin-top: 32px;
  }
}

.recruit_message__img {
  flex-basis: 20.8%;
}
@media screen and (max-width: 1200px) {
  .recruit_message__img {
    max-width: 214px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_message__img {
    max-width: 100%;
  }
}

.recruit_message__read {
  font-weight: bold;
}

.recruit_message__name {
  text-align: right;
  margin-top: 16px;
  font-weight: 700;
  font-size: clamp(2.6rem, 2.2580645161vw, 2.8rem);
  color: #1D1D1D;
}
@media screen and (max-width: 500px) {
  .recruit_message__name {
    margin-top: 24px;
  }
}

.recruit_message__class {
  display: inline-block;
  margin-right: 16px;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
}

.recruit_sign {
  max-width: 299px;
  margin-left: auto;
  margin-top: 8px;
}
@media screen and (max-width: 1200px) {
  .recruit_sign {
    margin-top: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_sign {
    max-width: 280px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_sign {
    max-width: 240px;
  }
}

/*================================================
recruit_message----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
recruit_personality----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.recruit_personality {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .recruit_personality {
    margin-top: 80px;
  }
}

.recruit_personality__wrap {
  padding: 56px 88px 64px;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 1000px) {
  .recruit_personality__wrap {
    padding: 56px 40px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_personality__wrap {
    padding: 40px 25px;
    border-radius: 16px;
  }
}

.recruit_personality__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .recruit_personality__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.recruit_personality__num {
  font-weight: 700;
  font-size: clamp(3.6rem, 4.5161290323vw, 5.6rem);
  line-height: 100%;
  color: #034CA6;
}

.recruit_personality__headline {
  font-weight: 700;
  font-size: clamp(1.8rem, 1.935483871vw, 2.4rem);
  line-height: 150%;
  color: #FFFFFF;
  background: #034CA6;
  padding: 10px 16px 6px;
  margin: -10px 0 26px;
}
@media screen and (max-width: 1000px) {
  .recruit_personality__headline {
    padding: 8px 12px 5px;
    margin: -6px 0 16px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_personality__headline {
    padding: 8px 8px 5px;
  }
}

.recruit_personality__read {
  font-weight: 700;
  color: #1D1D1D;
}

/*================================================
recruit_personality----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
recruit_point----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.recruit_point {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .recruit_point {
    margin-top: 80px;
  }
}

.recruit_point__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .recruit_point__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.recruit_point__card {
  padding: 40px;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 500px) {
  .recruit_point__card {
    padding: 40px 25px;
    border-radius: 16px;
  }
}

.recruit_point__img {
  max-width: 120px;
  margin: auto;
}

.recruit_point__headline {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.935483871vw, 2.4rem);
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #034CA6;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto;
}
@media screen and (max-width: 1000px) {
  .recruit_point__headline {
    margin: 16px auto;
  }
}

.recruit_point__headline::before {
  content: "";
  background: #034CA6;
  width: 100%;
  height: 2px;
  transition: all 0.6s ease-in-out;
  position: absolute;
  left: 0;
  bottom: 1px;
}

.recruit_point__read {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 175%;
  color: #333333;
}

/*================================================
recruit_point----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
recruit_links----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.recruit_links {
  position: relative;
  padding-top: 125px;
}
@media screen and (max-width: 1000px) {
  .recruit_links {
    padding-top: 80px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .recruit_links {
    max-width: 540px;
    margin: auto;
  }
}

.recruit_links__pos {
  position: absolute;
  top: -140px;
  right: 0;
  max-width: 484px;
  pointer-events: none;
}
@media screen and (max-width: 1500px) {
  .recruit_links__pos {
    max-width: 400px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_links__pos {
    display: none;
  }
}

.recruit_links__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .recruit_links__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.recruit_links__card {
  display: block;
  position: relative;
  padding: 24px;
  background: #fff;
}
@media screen and (max-width: 500px) {
  .recruit_links__card {
    padding: 14px;
  }
}

.recruit_links__columns {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .recruit_links__columns {
    gap: 16px;
  }
}

.recruit_links__img {
  overflow: hidden;
  max-width: 142px;
}
.recruit_links__img img {
  transition: all 0.6s;
}
@media screen and (max-width: 500px) {
  .recruit_links__img {
    max-width: 76px;
  }
}

.recruit_links__slag {
  font-weight: 700;
  font-size: clamp(1rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #034CA6;
  text-transform: uppercase;
}

.recruit_links__title {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: clamp(1.7rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
  color: #000000;
}
@media screen and (max-width: 500px) {
  .recruit_links__title {
    margin-top: 5px;
  }
  .recruit_links__title br {
    display: block;
  }
}

.recruit_links__circle {
  background: #EBF3FA;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 32px;
  transition: all 0.3s;
  position: absolute;
  right: 46px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .recruit_links__circle {
    right: 32px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_links__circle {
    width: 22px;
    right: 26px;
  }
}

.recruit_links__circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 1;
  background: #034CA6;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 7px;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .recruit_links__circle::before {
    width: 6px;
  }
}

.recruit_links__circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  z-index: 2;
  opacity: 0;
}

.recruit_links__card:hover {
  opacity: 1;
}
.recruit_links__card:hover .recruit_links__img img {
  transform: scale(1.1, 1.1);
}
.recruit_links__card:hover .recruit_links__circle::before {
  background: #034CA6;
  width: 44px;
}
@media screen and (max-width: 500px) {
  .recruit_links__card:hover .recruit_links__circle::before {
    width: 32px;
  }
}
.recruit_links__card:hover .recruit_links__circle svg {
  opacity: 1;
}

/*================================================
recruit_links----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
recruit_slider_wrap----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.recruit_slider_wrap {
  margin-top: 168px;
}
@media screen and (max-width: 1000px) {
  .recruit_slider_wrap {
    margin-top: 64px;
  }
}

.recruit_slider {
  position: relative;
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  animation: a_recruit_slider 60s linear infinite;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .recruit_slider {
    gap: 10px;
  }
}

.recruit_slide {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .recruit_slide {
    gap: 10px;
  }
}

.recruit_slide__img {
  max-width: 533px;
}
@media screen and (max-width: 1000px) {
  .recruit_slide__img {
    max-width: 320px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_slide__img {
    max-width: 264px;
  }
}

@keyframes a_recruit_slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}
@media screen and (max-width: 1000px) {
  @keyframes a_recruit_slider {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 5px));
    }
  }
}
.recruit_slider_wrap__txt {
  display: block;
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(3.6rem, 3.8709677419vw, 4.8rem);
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 1600px;
  margin: -16px auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .recruit_slider_wrap__txt {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_slider_wrap__txt {
    display: none;
  }
}

/*================================================
recruit_slider_wrap----END
==================================================*/
.voice__content__wrap {
  padding: 88px;
  border-radius: 24px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .voice__content__wrap {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .voice__content__wrap {
    padding: 40px 25px;
    border-radius: 16px;
  }
}

.voice__catch {
  position: relative;
  margin-bottom: 72px;
}
@media screen and (max-width: 1000px) {
  .voice__catch {
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 1000px) {
  .voice__catch img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.voice__catch__headline {
  position: absolute;
  left: 38px;
  bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .voice__catch__headline {
    left: 32px;
    bottom: 32px;
  }
}
@media screen and (max-width: 500px) {
  .voice__catch__headline {
    left: 20px;
    bottom: 32px;
  }
}

.voice__catch__img {
  position: relative;
}

.voice__catch__headline__main {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2580645161vw, 2.8rem);
  line-height: 100%;
  color: #FFFFFF;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  background: #034CA6;
}
@media screen and (max-width: 1000px) {
  .voice__catch__headline__main {
    padding: 8px;
  }
}

.voice__catch__info {
  padding: 40px 30px 0 48px;
  background: #fff;
  border-radius: 24px 0 0 0;
}
@media screen and (min-width: 501px) {
  .voice__catch__info {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .voice__catch__info {
    padding: 32px 24px 0 32px;
  }
}
@media screen and (max-width: 500px) {
  .voice__catch__info {
    padding: 32px 0 0;
  }
}

.voice__catch__info__name {
  font-weight: 700;
  font-size: clamp(2.8rem, 2.5806451613vw, 3.2rem);
  line-height: 100%;
  color: #000000;
}

.voice__catch__info__small {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}

.voice__catch__info__class {
  display: block;
  margin-top: 8px;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 150%;
  color: #000000;
}

.voice_Q {
  position: relative;
  padding-left: 56px;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.7741935484vw, 2.2rem);
  line-height: 150%;
  color: #3A3A3A;
}
@media screen and (max-width: 1000px) {
  .voice_Q {
    padding-left: 40px;
  }
}

.voice_Q::before {
  position: absolute;
  left: 0;
  content: "Q";
  font-weight: 700;
  font-size: clamp(1.5rem, 1.4516129032vw, 1.8rem);
  line-height: 80%;
  color: #FFFFFF;
  width: 49px;
  height: 33px;
  border-radius: 30px;
  background: #0A58B8;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .voice_Q::before {
    width: 32px;
    height: 26px;
  }
}

.voice_A {
  display: block;
  margin-top: 16px;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 200%;
  color: #3A3A3A;
}
@media screen and (max-width: 1000px) {
  .voice_A {
    margin-top: 10px;
  }
}

.voice__wrap + .voice__wrap {
  margin-top: 72px;
}
@media screen and (max-width: 1000px) {
  .voice__wrap + .voice__wrap {
    margin-top: 56px;
  }
}

.voice__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .voice__columns {
    display: block;
  }
}

.voice__columns--swap {
  flex-direction: row-reverse;
}

.voice__columns__img {
  flex-basis: 40.23%;
}
@media screen and (max-width: 1000px) {
  .voice__columns__img {
    max-width: 412px;
  }
}

.voice__columns__txt {
  flex-basis: 53.51%;
}
@media screen and (max-width: 1000px) {
  .voice__columns__txt {
    margin-top: 32px;
  }
}

.voice_message {
  margin-top: 72px;
  padding: 48px;
  border-radius: 8px;
  background: #F7F7F7;
}
@media screen and (max-width: 1000px) {
  .voice_message {
    margin-top: 64px;
    padding: 40px;
  }
}
@media screen and (max-width: 500px) {
  .voice_message {
    padding: 40px 20px;
  }
}

.voice_message__columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .voice_message__columns {
    display: block;
  }
}

.voice_message__columns__img {
  flex-basis: 21.61%;
}
@media screen and (max-width: 1000px) {
  .voice_message__columns__img {
    max-width: 200px;
    margin: auto;
  }
}

.voice_message__columns__txt {
  flex-basis: 73.87%;
}
@media screen and (max-width: 1000px) {
  .voice_message__columns__txt {
    margin-top: 32px;
  }
}

.voice_message__headline {
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  color: #28A7E1;
  margin-bottom: 12px;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .voice_message__headline {
    text-align: center;
    margin-bottom: 24px;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
job_catch----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.job_catch {
  margin-bottom: 128px;
}
@media screen and (max-width: 1000px) {
  .job_catch {
    margin-bottom: 80px;
  }
}

.job_catch__headline {
  font-weight: 700;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
  text-align: center;
  color: #1D1D1D;
}

.job_catch__read {
  font-weight: 400;
  max-width: 830px;
  margin: 24px auto 0;
}
@media screen and (min-width: 1001px) {
  .job_catch__read {
    line-height: 225%;
  }
}
@media screen and (max-width: 1000px) {
  .job_catch__read {
    margin: 16px auto 0;
  }
}

/*================================================
job_catch----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
job_content----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.job_content__warp {
  padding: 72px 88px 88px;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 1000px) {
  .job_content__warp {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .job_content__warp {
    padding: 40px 25px;
    border-radius: 16px;
  }
}

.job_content__warp + .job_content__warp {
  margin-top: 72px;
}
@media screen and (max-width: 1000px) {
  .job_content__warp + .job_content__warp {
    margin-top: 64px;
  }
}

.job_content__headline {
  font-weight: 700;
  font-size: clamp(2.2rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
  color: #1D1D1D;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .job_content__headline {
    margin-bottom: 32px;
  }
}

.job_content__columns {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .job_content__columns {
    display: block;
  }
}

.job_content__img {
  flex-basis: 39.24%;
}
@media screen and (max-width: 1000px) {
  .job_content__img {
    max-width: 402px;
  }
}

.job_content__txt {
  flex-basis: 54%;
}
@media screen and (max-width: 1000px) {
  .job_content__txt {
    margin-top: 32px;
  }
}

.job_content__readline {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 80%;
  color: #FFFFFF;
  background: #0A58B8;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 16px 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1000px) {
  .job_content__readline {
    padding: 8px 10px 6px;
    margin-bottom: 8px;
  }
}

.job_content__txtwarp + .job_content__txtwarp {
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .job_content__txtwarp + .job_content__txtwarp {
    margin-top: 16px;
  }
}

.job_content__cards {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .job_content__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .job_content__cards {
    margin-top: 72px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .job_content__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.job_content__card {
  padding: 40px 30px 32px;
  background: #F1F1F2;
  border-radius: 16px;
}
@media screen and (max-width: 1000px) {
  .job_content__card {
    padding: 32px 20px;
  }
}

.job_content__card__headline {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5322580645vw, 1.9rem);
  line-height: 150%;
  color: #034CA6;
}
@media screen and (max-width: 1000px) {
  .job_content__card__headline {
    padding-left: 24px;
  }
}

.job_content__card__headline::before {
  content: "";
  background: url(../images/our-job/check_our-job.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .job_content__card__headline::before {
    width: 18px;
    height: 18px;
    top: 2px;
  }
}

.job_content__card__read {
  display: block;
  margin-top: 16px;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 175%;
  color: #1D1D1D;
}

/*================================================
job_content----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
support_system----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.support_system__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1088px;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .support_system__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.support_system__card {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 1000px) {
  .support_system__card {
    padding: 40px;
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .support_system__card {
    padding: 32px 25px;
  }
}

.support_system__img {
  flex-basis: 120px;
}
@media screen and (max-width: 1000px) {
  .support_system__img {
    max-width: 120px;
    margin: auto;
  }
}

.support_system__txt {
  flex-basis: 67.57%;
}
@media screen and (max-width: 1000px) {
  .support_system__txt {
    margin-top: 24px;
  }
}

.support_system__headline {
  font-weight: 700;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 150%;
  color: #034CA6;
}
@media screen and (max-width: 1000px) {
  .support_system__headline {
    text-align: center;
  }
}

.support_system__read {
  margin-top: 8px;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 175%;
  color: #1D1D1D;
}

/*================================================
support_system----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
support----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.support_career {
  max-width: 1002px;
  margin: auto;
  margin-top: 132px;
}
@media screen and (max-width: 1000px) {
  .support_career {
    margin-top: 80px;
  }
}

.support_career__read {
  max-width: 830px;
  margin: auto;
}

.support_career__img {
  margin-top: 102px;
}
@media screen and (max-width: 1000px) {
  .support_career__img {
    margin-top: 80px;
  }
  .support_career__img img {
    min-width: 800px;
  }
}

/*================================================
support----END
==================================================*/
.requirements_post {
  padding: 88px;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 1000px) {
  .requirements_post {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .requirements_post {
    padding: 40px 25px;
    border-radius: 16px;
  }
}

.requirements_post_wrap + .requirements_post_wrap {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .requirements_post_wrap + .requirements_post_wrap {
    margin-top: 80px;
  }
}

.lower_btn--requirements.lower_btn--requirements {
  margin-top: 48px;
}

.lower_btn__link.lower_btn__link--requirements {
  width: 376px;
  height: 84px;
  margin: auto;
  border-radius: 44px;
}
.lower_btn__link.lower_btn__link--requirements .lower_btn__txt {
  font-size: clamp(1.6rem, 1.6129032258vw, 2rem);
}
@media screen and (max-width: 1000px) {
  .lower_btn__link.lower_btn__link--requirements {
    width: 286px;
    height: 74px;
  }
}
@media screen and (max-width: 500px) {
  .lower_btn__link.lower_btn__link--requirements {
    width: 240px;
    height: 68px;
  }
}

.contact_block__lead {
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  margin-bottom: 10px;
}

.contact_block__list {
  counter-reset: num;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1001px) {
  .contact_block__list {
    margin-top: 72px;
    margin-bottom: 96px;
    gap: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__list {
    margin-top: 40px;
    margin-bottom: 48px;
    gap: 8px;
  }
}

.contact_block__tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: bold;
  color: #1D1D1D;
  color: #034CA6;
  background: #fff;
  border-radius: 30px;
}
.contact_block__tab.active {
  color: #fff;
  background: #034CA6;
}
@media screen and (min-width: 1001px) {
  .contact_block__tab {
    line-height: 54px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__tab {
    line-height: 34px;
  }
}
.contact_block__tab::before {
  counter-increment: num;
  content: counter(num) ".";
}

.contact_block__line {
  display: block;
  height: 1px;
  background: #3A3A3A;
}
@media screen and (min-width: 1001px) {
  .contact_block__line {
    width: 72px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__line {
    width: 20px;
  }
}

.policy_block__wrap + .policy_block__wrap {
  margin-top: clamp(24px, 2.25vw, 36px);
}

.policy_block__lead {
  margin-bottom: 12px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  color: #1D1D1D;
}
@media screen and (max-width: 1000px) {
  .policy_block__lead {
    margin-bottom: 8px;
  }
}

.policy_block__description {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 200%;
  color: #1D1D1D;
}

.cm-bread.bread404 {
  position: static;
  top: auto;
  left: auto;
}

@media screen and (min-width: 501px) and (max-width: 1000px) {
  .found_block .text-center {
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .found_block p br {
    display: none;
  }
}

.found_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  text-align: center;
  margin-bottom: clamp(40px, 4.5vw, 72px);
}
@media screen and (max-width: 1000px) {
  .found_head {
    gap: 24px;
  }
}

.found_head__caption {
  display: block;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(3.2rem, 5.1612903226vw, 6.4rem);
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #034CA6;
}

.found_head__lead {
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 100%;
  text-align: center;
  color: #3A3A3A;
}

.found_menu {
  margin-top: clamp(32px, 3.5vw, 56px);
}
.found_menu ul ul {
  display: none !important;
}
.found_menu a {
  display: block;
  box-sizing: border-box;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #1D1D1D;
}
@media screen and (min-width: 1001px) {
  .found_menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 40px;
    margin: auto;
  }
  .found_menu li {
    box-sizing: border-box;
    line-height: 1;
  }
}
@media screen and (max-width: 1000px) {
  .found_menu li {
    text-align: center;
  }
  .found_menu li + li {
    border-top: 1px solid #1D1D1D;
  }
  .found_menu ul {
    max-width: 500px;
    margin: auto;
  }
  .found_menu a {
    padding: 20px 0;
  }
}

.post_item {
  padding: 88px;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 1000px) {
  .post_item {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .post_item {
    padding: 40px 25px;
    border-radius: 16px;
  }
}

.post_item__side + .post_item__side .post_item__columns {
  padding-top: 48px;
}
@media screen and (max-width: 1000px) {
  .post_item__side + .post_item__side .post_item__columns {
    padding-top: 40px;
  }
}

.post_item__columns {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 1000px) {
  .post_item__columns {
    padding-bottom: 40px;
    display: block;
  }
}

.post_item__columns::before {
  content: "";
  background: #034CA6;
  width: 0%;
  height: 1px;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.post_item__pic {
  flex-basis: 23.43%;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
}
.post_item__pic img {
  transition: all 0.3s;
  aspect-ratio: 240/160;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background: #F5F5F5;
  background: #fff;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .post_item__pic {
    max-width: 240px;
  }
}

.post_item__inner {
  position: relative;
  flex-basis: 72.65%;
  padding-right: 88px;
}
@media screen and (max-width: 1000px) {
  .post_item__inner {
    padding-right: 0px;
    margin-top: 24px;
  }
}

.post_item__time {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 100%;
  color: #034CA6;
}

.post_item__lead {
  display: block;
  margin-top: 16px;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 175%;
  color: #1D1D1D;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 1000px) {
  .post_item__lead {
    margin-top: 8px;
  }
}

.post_item__circle {
  position: absolute;
  background: #EBF3FA;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 28px;
  transition: all 0.3s;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .post_item__circle {
    display: none;
  }
}

.post_item__circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 1;
  background: #034CA6;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 7px;
  transition: all 0.3s;
}

.post_item__circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  z-index: 2;
  opacity: 0;
}

.post_item__columns:hover {
  opacity: 1;
}
.post_item__columns:hover::before {
  width: 100%;
}
.post_item__columns:hover .post_item__circle::before {
  background: #034CA6;
  width: 44px;
}
.post_item__columns:hover .post_item__circle svg {
  opacity: 1;
}

.single_block {
  padding: 88px;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 1000px) {
  .single_block {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .single_block {
    padding: 40px 25px;
    border-radius: 16px;
  }
}

.single_block__time {
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 100%;
  color: #034CA6;
}

.single_block__lead {
  display: block;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 175%;
  color: #1D1D1D;
  padding: 24px 0;
  border-bottom: solid 1px #034CA6;
}
@media screen and (max-width: 1000px) {
  .single_block__lead {
    padding: 16px 0 24px;
  }
}

.single_block__image {
  max-width: 800px;
  margin: 72px auto 0;
}
@media screen and (max-width: 1000px) {
  .single_block__image {
    margin: 56px auto 0;
  }
}

.single_block__inner {
  margin-top: 72px;
}
@media screen and (max-width: 1000px) {
  .single_block__inner {
    margin-top: 56px;
  }
}
.single_block__inner a {
  color: #034CA6;
}

.single_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #CCC;
  margin-top: clamp(56px, 4.5vw, 72px);
  padding-top: clamp(40px, 3vw, 48px);
}

.single_nav__link {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: "LINESeedJP", "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #1D1D1D;
}

.single_nav__circle {
  position: relative;
  background: #EBF3FA;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 28px;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .single_nav__circle {
    width: 22px;
  }
}

.single_nav__circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 1;
  background: #034CA6;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 7px;
  transition: all 0.3s;
}

.single_nav__circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  z-index: 2;
  opacity: 0;
}

.single_nav__circle.single_nav__circle--reverse svg {
  transform: translate(-50%, -50%) rotate(180deg);
}

.single_nav__link:hover {
  opacity: 1;
}
.single_nav__link:hover .single_nav__circle::before {
  background: #034CA6;
  width: 32px;
}
.single_nav__link:hover .single_nav__circle svg {
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .single_nav__back {
    margin-top: 40px;
  }
  .single_nav__back a {
    margin: auto;
  }
}/*# sourceMappingURL=customize.css.map */