@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=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");
.single_item__pic, .post_item__pic {
  margin-left: auto;
  margin-right: auto;
}

/* flexのfit */
/* template color */
/* custom color */
/* font */
.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: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #333;
  background: #F0F7FF;
  font-weight: 500;
  -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 only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

p,
th,
td,
li,
dt,
dd,
address {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
  line-height: 2;
  font-style: normal;
}

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.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: -1;
    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: 1221px) {
  .container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1220px) {
  .container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1200px) {
  .container {
    position: relative;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 500px) and (max-width: 1200px) and (min-width: 1241px) {
  .container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1200px) and (max-width: 1240px) {
  .container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1200px) and (min-width: 501px) and (max-width: 1000px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

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

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

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: 12px;
}
@media screen and (max-width: 500px) {
  .wp-pagenavi {
    gap: 8px;
  }
}
.archive .wp-pagenavi {
  margin-top: clamp(64px, 5.125vw, 82px);
}
.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  border: none;
  font-size: clamp(1.5rem, 1.6129032258vw, 2rem);
  padding: unset;
  margin: unset;
  border: none;
  aspect-ratio: 1/1;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  border: none !important;
  box-sizing: border-box;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  border-radius: 50%;
  background: initial;
}
@media screen and (min-width: 1001px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 36px;
    height: 36px;
    padding-bottom: 6px !important;
  }
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 32px;
    height: 32px;
    padding-bottom: 5px !important;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  opacity: 1;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  color: transparent !important;
  text-indent: -9999px;
  overflow: clip;
  aspect-ratio: 1/1;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/ico-arrow.svg");
  background-repeat: no-repeat;
  background-size: 9px 16px;
  background-position: center center;
  transform: translateX(1px);
  transition: inherit;
  filter: brightness(0) saturate(100%) invert(83%) sepia(23%) saturate(283%) hue-rotate(174deg) brightness(99%) contrast(91%);
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  opacity: 0.6;
  background: initial;
}
.wp-pagenavi .previouspostslink {
  rotate: 180deg;
}

@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 {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-decoration: underline;
}

.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 */
.cm-bread {
  padding-top: 16px;
  font-weight: normal;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  color: #333;
  line-height: 1.6;
  margin-bottom: 160px;
}
.cm-bread a {
  color: inherit;
  font-size: inherit;
}
@media screen and (max-width: 1000px) {
  .cm-bread {
    margin-bottom: 100px;
    padding-top: 12px;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
@media screen and (min-width: 1001px) {
  .breadcrumbs {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1000px) {
  .breadcrumbs {
    gap: 3px 6px;
  }
}

.header_trigger {
  position: fixed;
  top: 14px;
  right: 16px;
  aspect-ratio: 1/1;
  width: 48px;
  height: auto;
  background: linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
}
@media screen and (min-width: 1001px) {
  .header_trigger {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .header_trigger {
    top: 12px;
  }
}
.header_trigger:hover {
  opacity: 1;
}
.header_trigger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%) translateX(-50%);
  transition: all 0.6s;
}
.header_trigger span:first-child {
  transform: translateY(calc(-50% - 7px)) translateX(-50%) rotate(0deg);
}
.header_trigger span:last-child {
  transform: translateY(calc(-50% + 7px)) 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);
}

.header_menu a {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 500;
  color: #333;
  transition: all 0.3s;
}
.header_menu a:hover {
  opacity: 1;
  color: #1C68FF;
}
.header_menu .header__contact a {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  letter-spacing: 0.03em;
  color: #fff;
  width: 192px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
  border-radius: 40px;
}
.header_menu .header__contact a:hover {
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  color: #fff;
  transition: all 0.3s;
}
@media screen and (min-width: 1001px) {
  .header_menu .header__contact a {
    height: 64px;
  }
}
@media screen and (max-width: 1000px) {
  .header_menu .header__contact a {
    width: 100%;
    border-radius: 0;
  }
}
.header_menu ul {
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .header_menu ul {
    display: flex;
    gap: 0 56px;
    align-items: center;
  }
}
.header_menu .sub-menu,
.header_menu .children {
  display: none;
}
@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.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 a {
    display: block;
    text-align: center;
    padding: 1em 0;
    color: #fff;
  }
}

.header_block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 0;
  z-index: 1;
  box-sizing: border-box;
  transition: all 0.3s;
  z-index: 10;
}
.header_block.hide__fixed {
  transform: translateY(-100%);
}
@media screen and (max-width: 1000px) {
  .header_block {
    padding: 0px 0px 0;
  }
}

.header_columns {
  padding: 8px;
  padding-left: 56px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1001px) {
  .header_columns {
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    --webkit-backdrop-filter: blur(5px);
  }
}
@media screen and (max-width: 1000px) {
  .header_columns {
    background: white;
    border-radius: 0px;
    padding: 26px 24px;
  }
}

.header_logo {
  line-height: 1;
  max-width: 223px;
}
@media screen and (max-width: 500px) {
  .header_logo {
    max-width: 168px;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
kv----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
@media screen and (min-width: 1601px) {
  .kv_pic__image {
    height: 560px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.kv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .kv {
    padding-top: 72px;
  }
}
@media screen and (max-width: 500px) {
  .kv {
    padding-top: 70px;
  }
}

.kv_head {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 100%;
  transition: all 1.5s;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .kv_head {
    bottom: 32px;
  }
}

.kv_head__lead {
  font-weight: 500;
  font-size: clamp(3.2rem, 3.8709677419vw, 4.8rem);
  color: #333;
}

.kv_head__caption {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  .kv_head__caption {
    gap: 8px;
    margin-top: 4px;
  }
}

.kv_head__caption__sub__main {
  width: -moz-fit-content;
  width: fit-content;
  color: transparent;
  background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
  -webkit-background-clip: text;
          background-clip: text;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 2rem;
}

.kv_head__caption__sub__main::first-letter {
  text-transform: uppercase;
}

.kv_head__caption__circle {
  position: relative;
  content: "";
  background: #F0F7FF;
  aspect-ratio: 1/1;
  width: 20px;
  height: auto;
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .kv_head__caption__circle {
    width: 16px;
  }
}
.kv_head__caption__circle::before {
  content: "";
  background: #1C68FF;
  aspect-ratio: 1/1;
  width: 4px;
  height: auto;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kv_pic {
  overflow: hidden;
}

.kv_pic__image {
  transform: scale(1.2, 1.2);
  transition: all 1.5s;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .kv_pic__image {
    height: 330px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1000px) {
  .kv_pic__image {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.kv.cs_ac .kv_pic__image {
  transform: scale(1, 1);
  opacity: 1;
}
.kv.cs_ac .kv_head {
  transition-delay: 1s;
  opacity: 1;
}

/*================================================
kv----END
==================================================*/
.footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .footer_nav ul {
    gap: 32px 56px;
    max-width: 440px;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav ul {
    border-top: 1px solid #BFD6F0;
  }
}
.footer_nav li {
  box-sizing: border-box;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .footer_nav li {
    width: 50%;
    border-bottom: 1px solid #BFD6F0;
  }
  .footer_nav li:nth-child(even) {
    border-left: 1px solid #BFD6F0;
  }
  .footer_nav li:nth-child(odd):last-child {
    width: 100%;
    border-left: 1px solid #BFD6F0;
  }
}
.footer_nav a {
  display: block;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  box-sizing: border-box;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 1000px) {
  .footer_nav a {
    padding: 19px 10px;
    text-align: center;
  }
}
.footer_nav a:hover {
  opacity: 1;
  color: #1C68FF;
}
@media screen and (min-width: 1001px) {
  .footer_nav .children {
    display: block;
  }
  .footer_nav .children li {
    line-height: normal;
  }
  .footer_nav .children a {
    position: relative;
    display: inline-block;
    padding-left: 1em;
    font-size: 1.2rem;
  }
  .footer_nav .children a::before {
    position: absolute;
    content: "-";
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav .children {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 501px) {
  .footer_nav {
    margin-left: -40px;
    margin-right: -40px;
  }
}

.footer_block {
  margin-top: 260px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .footer_block {
    margin-top: 170px;
  }
}

.footer_area {
  position: relative;
  padding: 88px 0 72px;
}
@media screen and (max-width: 1000px) {
  .footer_area {
    padding: 64px 0 54px;
  }
}

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

.footer__link {
  max-width: 223px;
}

.footer_address {
  margin-top: 28px;
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .footer_content {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.footer_copy {
  margin-top: 96px;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #333;
}
@media screen and (max-width: 1000px) {
  .footer_copy {
    margin-top: 72px;
  }
}

.footer_rtt {
  position: absolute;
  right: 16px;
  bottom: 33px;
  aspect-ratio: 40/56;
  width: 40px;
  height: auto;
  display: block;
  background: #1C68FF;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .footer_rtt {
    aspect-ratio: 32/48;
    width: 32px;
    right: 8px;
    bottom: 16px;
  }
}
.footer_rtt svg {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.5s;
}
.footer_rtt svg:first-of-type {
  opacity: 1;
  top: 50%;
}
.footer_rtt svg:last-of-type {
  top: 150%;
}

.footer_rtt:hover {
  opacity: 1;
}
.footer_rtt:hover svg:first-of-type {
  top: -150%;
}
.footer_rtt:hover svg:last-of-type {
  top: 50%;
}

.footer__band {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 8px;
  background: linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
  transition: all 1s;
}
.footer__band.cs_ac {
  transition-delay: 0.3s;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .footer__band {
    height: 4px;
  }
}

.footer__back {
  position: absolute;
  right: 0;
  bottom: 100%;
  max-width: 561px;
  z-index: -2;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: all 1s;
}
.footer__back.cs_ac {
  transition-delay: 0.5s;
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
@media screen and (max-width: 1000px) {
  .footer__back {
    bottom: calc(100% - 70px);
    max-width: 375px;
  }
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
@media screen and (max-width: 1000px) {
  .cta {
    padding: 70px 40px 0;
  }
}
@media screen and (max-width: 500px) {
  .cta {
    padding: 70px 20px 0;
  }
}

.cta__wrap {
  border-radius: 10px;
  padding: 104px 0 120px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1000px) {
  .cta__wrap {
    padding: 72px 32px 72px;
  }
}

.cta__wrap__inner {
  max-width: 880px;
  margin: auto;
}

.cta__headline {
  padding-bottom: 48px;
  margin-bottom: 56px;
  line-height: 1;
  border-bottom: solid 1px #BFD6F0;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .cta__headline {
    display: block;
    padding-bottom: 32px;
    margin-bottom: 32px;
    text-align: center;
  }
}

.cta__headline__main {
  font-weight: 500;
  font-size: clamp(3.2rem, 3.2258064516vw, 4rem);
  color: #333;
}

.cta__headline__sub {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .cta__headline__sub {
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
  }
}

.cta__headline__sub__main {
  width: -moz-fit-content;
  width: fit-content;
  color: transparent;
  background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 2rem;
}

.cta__headline__circle {
  position: relative;
  content: "";
  background: #F0F7FF;
  aspect-ratio: 1/1;
  width: 20px;
  height: auto;
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .cta__headline__circle {
    width: 16px;
  }
}
.cta__headline__circle::before {
  content: "";
  background: #1C68FF;
  aspect-ratio: 1/1;
  width: 4px;
  height: auto;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .cta__columns {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

.cta__txt__main {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.cta__tel__link {
  display: flex;
  gap: 10px;
  font-family: "Host Grotesk";
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.8rem, 3.2258064516vw, 4rem);
  letter-spacing: 0.03em;
  color: #333;
  line-height: 1;
  align-items: baseline;
}
@media screen and (max-width: 1000px) {
  .cta__tel__link {
    margin: 32px 0 16px;
  }
}

.cta__tel__small {
  font-size: clamp(2rem, 2.5806451613vw, 3.2rem);
}

.cta__btns {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 500px) {
  .cta__btns {
    display: block;
    text-align: center;
  }
}
.cta__btns .common_btn__link {
  width: 256px;
}
@media screen and (max-width: 1000px) {
  .cta__btns .common_btn__link {
    width: 240px;
  }
}

@media screen and (max-width: 500px) {
  .cta__btn + .cta__btn {
    margin-top: 8px;
  }
}
.cta__slider {
  position: absolute;
  top: 48px;
  display: flex;
  gap: 64px;
  width: -moz-max-content;
  width: max-content;
  animation: a_cta__slider 30s linear infinite;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .cta__slider {
    top: 0px;
    gap: 32px;
  }
}

.cta__slide {
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: normal;
  font-size: clamp(9.6rem, 18.7903225806vw, 23.3rem);
  letter-spacing: 0.03em;
  color: #bfd6f0;
}

@keyframes a_cta__slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 32px));
  }
}
@media screen and (max-width: 1000px) {
  @keyframes a_cta__slider {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 16px));
    }
  }
}
.mw_wp_form {
  margin-top: clamp(32px, 3.125vw, 50px);
  background: #fff;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form {
    padding: 100px 80px 96px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mw_wp_form {
    padding: 100px 60px 96px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form {
    padding: 56px 40px 56px;
  }
}
@media screen and (max-width: 500px) {
  .mw_wp_form {
    padding: 48px 20px 48px;
  }
}
.mw_wp_form.mw_wp_form_complete {
  display: none !important;
}
.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%;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form tr + tr {
    margin-top: 16px;
  }
}
.mw_wp_form th {
  position: relative;
  font-weight: 500;
  color: #333;
}
@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;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
  letter-spacing: 0.06em;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form th > span {
    top: 50%;
    left: 0;
    width: 40px;
    line-height: 30px;
    translate: 0 -50%;
  }
}
.mw_wp_form th > span.required {
  background-color: #C50000;
}
.mw_wp_form th > span.any {
  background-color: #999999;
}
.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: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.4375em;
  box-sizing: border-box;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid #cccccc;
  outline: none;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  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: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  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 th,
  .mw_wp_form.mw_wp_form_input td th {
    font-weight: 400;
  }
  .mw_wp_form.mw_wp_form_input td {
    font-weight: 400;
  }
  .mw_wp_form.mw_wp_form_input th {
    line-height: 57px;
  }
  .mw_wp_form.mw_wp_form_input th > span {
    top: 9px;
    right: 56px;
    width: 60px;
    line-height: 40px;
  }
  .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: 56px;
  margin-right: 20px;
  cursor: pointer;
}
@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.4rem, 1.2903225806vw, 1.6rem);
  word-break: auto-phrase;
}
@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;
    word-break: break-all;
  }
}

@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: clamp(20px, 2.5vw, 40px);
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
  font-weight: 400;
}
.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 {
  text-decoration: underline;
}
@media screen and (min-width: 1001px) {
  .form-agree {
    text-align: center;
  }
}

.form-wrap {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 48px;
}
.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: clamp(40px, 3vw, 48px);
}
.form-btns a,
.form-btns [type=submit] {
  display: block;
  text-align: center;
  width: 288px;
  line-height: 56px;
  border-radius: 40px;
  padding: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  letter-spacing: 0.03em;
  text-align: left;
  padding: 0 32px;
  box-sizing: border-box;
  text-align: left;
  color: #fff;
  border: none;
  background: url(../../../uploads/2025/04/contact_btn_arrow.png) no-repeat center right 21px, linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
  background-size: 64px, cover;
  transition: all 0.3s;
  cursor: pointer;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .form-btns a,
  .form-btns [type=submit] {
    width: 240px;
    line-height: 48px;
    background: url(../../../uploads/2025/04/contact_btn_arrow.png) no-repeat center right 16px, linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
    background-size: 56px, cover;
    padding: 0 24px;
  }
}
.form-btns a:hover,
.form-btns [type=submit]:hover {
  opacity: 0.7;
}
.form-btns a.fm-modoru,
.form-btns [type=submit].fm-modoru {
  background: url(../../../uploads/2025/04/contact_btn_arrow.png) no-repeat center right 21px, linear-gradient(75deg, #999999 0%, #999999 100%);
  background-size: 64px, cover;
}
@media screen and (max-width: 1000px) {
  .form-btns a.fm-modoru,
  .form-btns [type=submit].fm-modoru {
    background: url(../../../uploads/2025/04/contact_btn_arrow.png) no-repeat center right 16px, linear-gradient(75deg, #999999 0%, #999999 100%);
    background-size: 56px, cover;
  }
}

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

@media screen and (max-width: 1000px) {
  .page__contact .form-wrap {
    flex-direction: column;
    gap: 24px;
  }
}
.page__check .mw_wp_form th small {
  margin-top: 0;
}

/* page */
.mv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .mv {
    margin-top: 72px;
  }
}
@media screen and (max-width: 500px) {
  .mv {
    margin-top: 70px;
  }
}

.mv__headline {
  position: absolute;
  left: 120px;
  color: #fff;
}
@media screen and (min-width: 1001px) {
  .mv__headline {
    bottom: 80px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv__headline {
    left: 40px;
    bottom: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .mv__headline {
    left: 40px;
    bottom: 40px;
  }
  .mv__headline br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .mv__headline {
    left: 40px;
    top: 50px;
  }
}

.mv__headline__main {
  font-weight: 500;
  font-size: clamp(3.5rem, 5.1612903226vw, 6.4rem);
  line-height: 1.25;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .mv__headline__main {
    line-height: 1.4;
  }
}

.mv__headline__sub {
  margin-top: 16px;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.6129032258vw, 2rem);
  letter-spacing: 0.03em;
  color: #fff;
}

@media screen and (min-width: 501px) and (max-width: 1000px) {
  .mv_slide img {
    height: 544px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
.mv img {
  transform: scale(1.15, 1.15);
  transition: all 1.5s;
  opacity: 0;
}
.mv .mv__headline {
  transition: all 1.5s;
  opacity: 0;
}

.mv.cs_ac img {
  transform: scale(1, 1);
  opacity: 1;
}
.mv.cs_ac .mv__headline {
  transition-delay: 1s;
  opacity: 1;
}

.lower__bigline {
  font-weight: 500;
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  line-height: 2;
  color: #333;
  margin-bottom: 40px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .lower__bigline {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1000px) {
  .lower__bigline {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 500px) {
  .lower__bigline {
    line-height: 1.6;
  }
}

.lower__bandline {
  display: block;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  letter-spacing: 0.03em;
  color: #333;
  background: #fff;
  border-radius: 10px;
  padding: 15px 32px;
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .lower__bandline {
    padding: 12px 16px;
    margin-bottom: 48px;
  }
}

.lower__button_arrow {
  position: relative;
  aspect-ratio: 88/24;
  width: 88px;
  height: auto;
  display: block;
  background: #1C68FF;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .lower__button_arrow {
    aspect-ratio: 56/20;
    width: 56px;
  }
}
.lower__button_arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.lower__button_arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.lower__button_arrow svg:last-of-type {
  left: -150%;
}

.common_btn__link {
  position: relative;
  width: 288px;
  padding: 16px 32px;
  box-sizing: border-box;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
  border-radius: 40px;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .common_btn__link {
    width: 240px;
    padding: 13px 32px;
  }
}

.common_btn_arrow {
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  aspect-ratio: 64/20;
  width: 64px;
  height: auto;
  display: block;
  background: #1C68FF;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .common_btn_arrow {
    right: 16px;
    aspect-ratio: 56/20;
    width: 56px;
  }
}
.common_btn_arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.common_btn_arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.common_btn_arrow svg:last-of-type {
  left: -150%;
}

.common_btn__link:hover {
  opacity: 1;
}
.common_btn__link:hover svg:first-of-type {
  left: 150%;
}
.common_btn__link:hover svg:last-of-type {
  left: 50%;
}

.lower__top {
  display: flex;
  justify-content: flex-end;
  margin-top: 56px;
  font-weight: normal;
  font-size: 1.5rem;
  color: #333;
  gap: 14px;
  font-weight: 500;
}
@media screen and (min-width: 1001px) {
  .lower__top {
    display: none !important;
  }
}

.lower__top_arrow {
  position: relative;
  aspect-ratio: 88/24;
  width: 88px;
  height: auto;
  display: block;
  background: #1C68FF;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.5s;
}
@media screen and (max-width: 1000px) {
  .lower__top_arrow {
    aspect-ratio: 56/20;
    width: 56px;
  }
}
.lower__top_arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
maker__headline----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.maker__headline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  letter-spacing: 0.03em;
  color: #1c68ff;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .maker__headline {
    gap: 12px;
    margin-bottom: 24px;
  }
}

.maker__circle {
  position: relative;
  content: "";
  background: #fff;
  aspect-ratio: 1/1;
  width: 20px;
  height: auto;
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .maker__circle {
    width: 16px;
  }
}
.maker__circle::before {
  content: "";
  background: #1C68FF;
  aspect-ratio: 1/1;
  width: 4px;
  height: auto;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .maker__circle::before {
    width: 3px;
  }
}

/*================================================
maker__headline----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
lower_flex----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lower_flex {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .lower_flex {
    display: block;
  }
}

.lower_flex__list {
  flex-basis: 240px;
}

@media screen and (min-width: 1001px) {
  .lower_flex__list__main {
    position: sticky;
    top: 124px;
    left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .lower_flex__list__main {
    max-width: 260px;
    margin: auto;
  }
}

.lower_flex__list__link {
  position: relative;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: solid 1px #BFD6F0;
  line-height: 1;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  letter-spacing: 0.03em;
  color: #333;
}
.lower_flex__list__link::before {
  content: "";
  background: #1C68FF;
  height: 1px;
  width: 0%;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.5s;
}
@media screen and (max-width: 1000px) {
  .lower_flex__list__link {
    padding-bottom: 24px;
  }
}

.lower_flex__list__link--ig {
  line-height: 1.5;
}

.lower_flex__list_arrow {
  position: relative;
  aspect-ratio: 64/20;
  width: 60px;
  height: auto;
  display: block;
  background: #FFFFFF;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.5s;
}
.lower_flex__list_arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.lower_flex__list_arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.lower_flex__list_arrow svg:last-of-type {
  left: -50%;
}
.lower_flex__list_arrow #lower_flex__list_arrow__inner {
  transition: all 0.5s;
}

.lower_flex__list__link:hover,
.lower_flex__list__link.active {
  opacity: 1;
  transition-delay: 0s;
}
.lower_flex__list__link:hover::before,
.lower_flex__list__link.active::before {
  transition-delay: 0s;
  width: 100%;
}
.lower_flex__list__link:hover .lower_flex__list_arrow,
.lower_flex__list__link.active .lower_flex__list_arrow {
  transition-delay: 0s;
  background: linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
}
.lower_flex__list__link:hover svg:first-of-type,
.lower_flex__list__link.active svg:first-of-type {
  transition-delay: 0s;
  left: 150%;
}
.lower_flex__list__link:hover svg:last-of-type,
.lower_flex__list__link.active svg:last-of-type {
  transition-delay: 0s;
  left: 50%;
}
.lower_flex__list__link:hover #lower_flex__list_arrow__inner,
.lower_flex__list__link.active #lower_flex__list_arrow__inner {
  transition-delay: 0s;
  fill: #fff;
}

@media screen and (max-width: 1000px) {
  .lower_flex__list__link {
    opacity: 1;
  }
  .lower_flex__list__link::before {
    width: 100%;
  }
  .lower_flex__list__link .lower_flex__list_arrow {
    background: linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
  }
  .lower_flex__list__link svg:first-of-type {
    left: 150%;
  }
  .lower_flex__list__link svg:last-of-type {
    left: 50%;
  }
  .lower_flex__list__link #lower_flex__list_arrow__inner {
    fill: #fff;
  }
}
.lower_flex__list__item + .lower_flex__list__item .lower_flex__list__link {
  padding-top: 32px;
}
@media screen and (max-width: 1000px) {
  .lower_flex__list__item + .lower_flex__list__item .lower_flex__list__link {
    padding-top: 24px;
  }
}

.lower_contents {
  flex-basis: 71.33%;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .lower_contents {
    flex-basis: 68%;
  }
}
@media screen and (max-width: 1000px) {
  .lower_contents {
    margin-top: 80px;
  }
}

/*================================================
lower_flex----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
table_wrap----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.table_wrap table td,
.table_wrap table th {
  border: none;
  border-bottom: solid 1px #BFD6F0;
  background: initial;
  box-sizing: border-box;
  padding: 30px 16px;
  font-weight: 400;
  color: #333;
}
@media screen and (max-width: 1000px) {
  .table_wrap table td,
  .table_wrap table th {
    display: block;
    padding: 16px 8px;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .table_wrap table td {
    border-top: none;
    padding-top: 4px;
  }
}
.table_wrap table th {
  width: 200px;
  font-weight: 500 !important;
  padding-right: 0;
}
@media screen and (max-width: 1000px) {
  .table_wrap table th {
    border-bottom: none;
    width: 100%;
    padding-bottom: 0;
  }
}
.table_wrap table th strong {
  font-weight: 500 !important;
}
@media screen and (min-width: 1001px) {
  .table_wrap table tr:first-of-type td {
    border-top: solid 1px #BFD6F0;
  }
}
.table_wrap table tr:first-of-type th {
  border-top: solid 1px #BFD6F0;
}

/*================================================
table_wrap----END
==================================================*/
/*imgzm*/
.imgzm {
  overflow: hidden;
}
.imgzm img {
  transition: all 1.5s;
  transform: scale(1.15, 1.15);
}
.imgzm.imgzm_ac img {
  transition-delay: 0.3s;
  transform: scale(1, 1);
}

@media screen and (min-width: 1001px) {
  .pc_only2 {
    display: block !important;
  }
  .mobile_only {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .pc_only2 {
    display: none !important;
  }
  .mobile_only {
    display: block !important;
  }
}
@media screen and (min-width: 501px) {
  .sp__only {
    display: none !important;
  }
  .pc__only {
    display: block !important;
  }
}
@media screen and (max-width: 500px) {
  .sp__only {
    display: block !important;
  }
  .pc__only {
    display: none !important;
  }
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
汎用クラス----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_head__lead {
  font-weight: 500;
  font-size: clamp(3.2rem, 3.2258064516vw, 4rem);
  color: #333;
}
@media screen and (max-width: 1000px) {
  .main_head__lead {
    text-align: center;
  }
}

.main_head__caption {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  .main_head__caption {
    gap: 8px;
    margin-top: 4px;
    justify-content: center;
  }
}

.main_head__caption__sub__main {
  width: -moz-fit-content;
  width: fit-content;
  color: transparent;
  background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
  -webkit-background-clip: text;
          background-clip: text;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 2rem;
}

.main_head__caption__circle {
  position: relative;
  content: "";
  background: #fff;
  aspect-ratio: 1/1;
  width: 20px;
  height: auto;
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .main_head__caption__circle {
    width: 16px;
  }
}
.main_head__caption__circle::before {
  content: "";
  background: #1C68FF;
  aspect-ratio: 1/1;
  width: 4px;
  height: auto;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main_head__caption__circle.main_head__caption__circle--incolor {
  background: #F0F7FF;
}

/*================================================
汎用クラス----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_news----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_news {
  padding: 164px 0 168px;
}
@media screen and (max-width: 1000px) {
  .main_news {
    padding: 130px 0 120px;
  }
}

.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: 68%;
  padding-top: 24px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .main_news__info {
    flex-basis: 64%;
  }
}
@media screen and (max-width: 1000px) {
  .main_news__info {
    padding-top: 56px;
  }
}

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

.main_news__link:hover {
  opacity: 1;
}
.main_news__link:hover::before {
  width: 100%;
}

.main_news__item + .main_news__item a {
  padding-top: 32px;
}
@media screen and (max-width: 1000px) {
  .main_news__item + .main_news__item a {
    padding-top: 24px;
  }
}

.main_news__time {
  display: block;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  color: #a3b6cc;
}

.main_news__caption {
  margin-top: 10px;
  font-weight: normal;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 1000px) {
  .main_news__caption {
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 500px) {
  .main_news__caption {
    -webkit-line-clamp: 3;
  }
}

.common_btn--main_news {
  margin-top: 100px;
}
@media screen and (max-width: 1000px) {
  .common_btn--main_news {
    text-align: center;
    margin-top: 64px;
  }
}

/*================================================
main_news----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_about----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_about {
  position: relative;
  padding: 137px 0 0;
  background: #FFFFFF;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .main_about {
    padding: 80px 0 0;
  }
}
.main_about::before {
  content: "";
  background: #F0F7FF;
  height: 136px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .main_about::before {
    height: 180px;
  }
}

.main_about__columns {
  display: flex;
  justify-content: space-between;
  margin: 80px 0 136px;
}
@media screen and (min-width: 1201px) {
  .main_about__columns {
    padding-right: 64px;
  }
}
@media screen and (max-width: 1000px) {
  .main_about__columns {
    display: block;
    margin: 56px 0 140px;
  }
}

.lower__bigline--main_about {
  margin: 0;
}
@media screen and (min-width: 1001px) {
  .lower__bigline--main_about {
    max-width: 540px;
  }
}

.main_about__pos {
  position: absolute;
  right: 0;
  width: 913px;
  z-index: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: all 1.6s;
}
@media screen and (min-width: 1001px) {
  .main_about__pos {
    top: 0;
  }
}
.main_about__pos.cs_ac {
  transition-delay: 1.6s;
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
@media screen and (max-width: 1000px) {
  .main_about__pos {
    bottom: 178px;
  }
}
@media screen and (max-width: 500px) {
  .main_about__pos {
    transition: all 1s;
    width: 100%;
  }
}

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

.common_btn--main_about {
  margin-top: 72px;
}
@media screen and (max-width: 1000px) {
  .common_btn--main_about {
    text-align: center;
    margin-top: 64px;
  }
}

.main_about__slider {
  position: relative;
  display: flex;
  gap: 16px;
  width: -moz-max-content;
  width: max-content;
  animation: a_main_about__slider 60s linear infinite;
  z-index: 1;
}

.main_about__slide {
  display: flex;
  gap: 16px;
  align-items: center;
}

.main_about__img {
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .main_about__img {
    max-width: 324px;
  }
}

.main_about__img--big {
  max-width: 480px;
}
@media screen and (max-width: 1000px) {
  .main_about__img--big {
    max-width: 400px;
  }
}

@keyframes a_main_about__slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
/*================================================
main_about----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_lineup----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_lineup {
  position: relative;
  padding: 176px 0 144px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .main_lineup {
    padding: 136px 0 120px;
  }
}

.main_lineup__pos {
  position: absolute;
  left: -80px;
  bottom: 0;
  width: 768px;
  z-index: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: all 1s;
}
.main_lineup__pos.cs_ac {
  transition-delay: 2s;
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
@media screen and (max-width: 1000px) {
  .main_lineup__pos {
    width: 425px;
    left: -97px;
  }
}

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

.main_lineup__content {
  flex-basis: 31.33%;
}

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

.main_lineup__link_wrap {
  flex-basis: 60%;
}

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

.main_lineup__list__link {
  display: flex;
  gap: 16px;
  border-radius: 10px;
  background: #E3ECF6;
  font-weight: 500;
  transition: all 0.3s;
  padding: 30px 32px;
  font-size: clamp(1.5rem, 1.4516129032vw, 1.8rem);
  align-items: center;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .main_lineup__list__link {
    padding: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .main_lineup__list__link {
    padding: 16px;
    background: #fff;
  }
}

.main_lineup__list__link::before {
  counter-increment: lineup_main__num;
  content: counter(lineup_main__num, decimal-leading-zero);
  aspect-ratio: 64/32;
  width: 64px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c68ff;
  background: #fff;
  border-radius: 4px;
  line-height: 1;
  box-sizing: border-box;
  padding-top: 1px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .main_lineup__list__link::before {
    background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
    color: #fff;
  }
}

.main_lineup__list__link:hover {
  opacity: 1;
  background: #fff;
}
.main_lineup__list__link:hover::before {
  background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
  color: #fff;
}

.main_stock {
  position: relative;
  margin-top: 16px;
}
@media screen and (max-width: 1000px) {
  .main_stock {
    margin-top: 8px;
  }
}

.main_stock__link {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.main_stock__img__main {
  transition: all 0.6s;
}

.main_stock__txt {
  position: absolute;
  top: 48px;
  left: 48px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .main_stock__txt {
    top: 32px;
    left: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .main_stock__txt {
    top: 42px;
    left: 32px;
  }
}

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

.main_head__lead--main_stock {
  font-weight: 500;
  font-size: clamp(3.2rem, 2.2580645161vw, 2.8rem);
}

.main_stock__read {
  margin-top: 16px;
}

.main_stock_banner__arrow {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .main_stock_banner__arrow {
    right: 24px;
    bottom: 24px;
  }
}

.main_stock__link:hover {
  opacity: 1;
}
.main_stock__link:hover img {
  transform: scale(1.05, 1.05);
}
.main_stock__link:hover svg:first-of-type {
  left: 150%;
}
.main_stock__link:hover svg:last-of-type {
  left: 50%;
}

@media screen and (max-width: 1000px) {
  .common_btn--main_lineup {
    text-align: center;
    margin-top: 64px;
  }
  .main_stock__read {
    padding-right: 32px;
  }
  .main_stock__read br {
    display: none;
  }
}
/*================================================
main_lineup----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_recruit----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_recruit {
  margin-bottom: 168px;
}
@media screen and (max-width: 1000px) {
  .main_recruit {
    margin-bottom: 96px;
  }
}

.main_recruit__link {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .main_recruit__link {
    display: block;
  }
}

.main_recruit__txt {
  padding-top: 48px;
  padding-left: 64px;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .main_recruit__txt {
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  .main_recruit__txt {
    padding: 48px 31px 32px;
  }
}

.main_recruit__headline {
  margin: 30px 0 0;
}

.main_recruit__pos {
  position: absolute;
  right: 32px;
  bottom: 24px;
  max-width: 456px;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .main_recruit__pos {
    right: auto;
    left: 40px;
    bottom: 40px;
    max-width: 365px;
  }
}
@media screen and (max-width: 500px) {
  .main_recruit__pos {
    right: 20px;
    max-width: 296px;
  }
}

.main_recruit__pos {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: all 1s;
}
.main_recruit__pos.cs_ac {
  transition-delay: 1s;
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.main_recruit__arrow {
  position: absolute;
  right: 32px;
  bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .main_recruit__arrow {
    right: 24px;
    bottom: 24px;
  }
}

.main_recruit__wrap {
  flex-basis: 54%;
  overflow: hidden;
}

.main_recruit__img {
  transition: all 0.6s;
}

@media screen and (max-width: 500px) {
  .main_recruit__img {
    height: 232px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top right;
       object-position: top right;
  }
}
.main_recruit__link:hover {
  opacity: 1;
}
.main_recruit__link:hover .main_recruit__img {
  transform: scale(1.1, 1.1);
}
.main_recruit__link:hover svg:first-of-type {
  left: 150%;
}
.main_recruit__link:hover svg:last-of-type {
  left: 50%;
}

/*================================================
main_recruit----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_company----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_company__columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .main_company__columns {
    display: block;
  }
}

.main_company__txt {
  position: relative;
  z-index: 1;
  flex-basis: 48.5%;
  margin-top: 274px;
  padding-bottom: 96px;
}
@media screen and (min-width: 1801px) {
  .main_company__txt {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 1400px) {
  .main_company__txt {
    margin-top: 120px;
  }
}
.main_company__txt::before {
  content: "";
  border-radius: 10px 0px 0px 10px;
  position: absolute;
  top: -120px;
  left: -144px;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1400px) {
  .main_company__txt::before {
    top: -60px;
    left: -70px;
  }
}
@media screen and (max-width: 1000px) {
  .main_company__txt::before {
    top: 0;
    left: 40px;
    right: 0;
    bottom: 0px;
  }
}
@media screen and (max-width: 500px) {
  .main_company__txt::before {
    left: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .main_company__txt {
    margin-top: 0px;
    padding: 80px 34px 80px;
    padding-left: 54px;
  }
}

.main_company__inner {
  max-width: 446px;
}
@media screen and (max-width: 1000px) {
  .main_company__inner {
    max-width: 100%;
  }
}

.main_company__headline {
  margin: 80px 0 64px;
}
@media screen and (max-width: 1000px) {
  .main_company__headline {
    margin: 56px 0 56px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .main_company__headline {
    text-align: center;
  }
}

@media screen and (min-width: 501px) and (max-width: 1000px) {
  .main_company__list {
    max-width: 360px;
    margin: auto;
  }
}
.main_company__link {
  position: relative;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: solid 1px #BFD6F0;
  line-height: 1;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  letter-spacing: 0.03em;
  color: #333;
}
.main_company__link::before {
  content: "";
  background: #1C68FF;
  height: 1px;
  width: 0%;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.5s;
}
@media screen and (max-width: 1000px) {
  .main_company__link {
    padding-bottom: 24px;
  }
}

.main_company__list__item + .main_company__list__item .main_company__link {
  padding-top: 32px;
}
@media screen and (max-width: 1000px) {
  .main_company__list__item + .main_company__list__item .main_company__link {
    padding-top: 24px;
  }
}

.main_company_arrow {
  position: relative;
  aspect-ratio: 64/20;
  width: 60px;
  height: auto;
  display: block;
  background: #F0F7FF;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.5s;
}
.main_company_arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.main_company_arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.main_company_arrow svg:last-of-type {
  left: -50%;
}
.main_company_arrow #main_company_arrow__inner {
  transition: all 0.5s;
}

.main_company__link:hover {
  opacity: 1;
}
.main_company__link:hover::before {
  width: 100%;
}
.main_company__link:hover .main_company_arrow {
  background: linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
}
.main_company__link:hover svg:first-of-type {
  left: 150%;
}
.main_company__link:hover svg:last-of-type {
  left: 50%;
}
.main_company__link:hover #main_company_arrow__inner {
  fill: #fff;
}

@media screen and (max-width: 1000px) {
  .main_company__link {
    opacity: 1;
  }
  .main_company__link::before {
    width: 100%;
  }
  .main_company__link .main_company_arrow {
    background: linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
  }
  .main_company__link svg:first-of-type {
    left: 150%;
  }
  .main_company__link svg:last-of-type {
    left: 50%;
  }
  .main_company__link #main_company_arrow__inner {
    fill: #fff;
  }
}
.main_company__img {
  flex-basis: 50%;
  border-radius: 0px 10px 10px 0px;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
@media screen and (min-width: 1801px) {
  .main_company__img {
    flex-basis: 48%;
  }
}
@media screen and (max-width: 1000px) {
  .main_company__img {
    margin-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .main_company__img {
    margin-right: 20px;
  }
}

.main_company__img__main {
  overflow: hidden;
  border-radius: 0px 10px 10px 0px;
}
@media screen and (max-width: 1000px) {
  .main_company__img__main {
    -o-object-fit: cover;
       object-fit: cover;
    height: 830px;
    -o-object-position: left;
       object-position: left;
  }
}
@media screen and (max-width: 500px) {
  .main_company__img__main {
    height: 410px;
  }
}

/*================================================
main_company----END
==================================================*/
.outline_block + .outline_block {
  margin-top: clamp(80px, 7.5vw, 120px);
}

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

.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: 50px;
    margin-bottom: 80px;
    gap: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__list {
    margin-top: 20px;
    margin-bottom: 50px;
    gap: 8px;
  }
}

.contact_block__tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  color: #333;
  background: #fff;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  border-radius: 40px;
  font-weight: 500;
  gap: 8px;
}
.contact_block__tab.active {
  color: #fff;
  background: linear-gradient(75deg, #1c68ff 0%, #50cbc7 100%);
}
@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: #BFD6F0;
}
@media screen and (min-width: 1001px) {
  .contact_block__line {
    width: 72px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__line {
    width: 20px;
  }
}

.common_btn--prev {
  text-align: center;
  margin-top: 64px;
}
@media screen and (max-width: 1000px) {
  .common_btn--prev {
    margin-top: 56px;
  }
}

.contact_block h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

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

.about-us_top__img {
  flex-basis: 48%;
  border-radius: 10px 0px 0px 10px;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .about-us_top__img {
    margin-top: 40px;
  }
}

.about-us_top__txt {
  flex-basis: 46.86%;
}

@media screen and (max-width: 1000px) {
  .about-us_top .over-right {
    padding: 0;
  }
  .about-us_top__txt {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .about-us_top__txt {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .about-us_top__img {
    margin-left: 40px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .about-us_top__img {
    margin-left: 20px;
  }
}
.about-us_contents {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .about-us_contents {
    margin-top: 64px;
  }
}

.about-us_contents__columns {
  display: flex;
  justify-content: space-between;
  max-width: 1124px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .about-us_contents__columns {
    display: block;
  }
}

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

@media screen and (min-width: 1201px) {
  .about-us_contents__columns:first-of-type .about-us_contents__txt {
    margin-top: 70px;
  }
}
.about-us_contents__columns--reverse {
  flex-direction: row-reverse;
}

.about-us_contents__img {
  flex-basis: 42.7%;
}
@media screen and (max-width: 1000px) {
  .about-us_contents__img {
    max-width: 480px;
    margin: auto;
  }
}

.about-us_contents__txt {
  flex-basis: 47.69%;
  box-sizing: border-box;
  margin-top: 56px;
}
@media screen and (max-width: 1000px) {
  .about-us_contents__txt {
    margin-top: 40px;
  }
}

.about-us_contents__bubbleline {
  position: relative;
  display: flex;
  gap: 12px;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  color: #333;
  align-items: baseline;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .about-us_contents__bubbleline {
    gap: 8px;
    margin-bottom: 16px;
  }
}

.about-us_contents__bubbleline::before {
  content: "";
  aspect-ratio: 1/1;
  width: 68px;
  height: auto;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: -16px;
  left: -36px;
  z-index: -1;
  transform: scale(0);
  transition: all 1s;
}
@media screen and (max-width: 1000px) {
  .about-us_contents__bubbleline::before {
    width: 56px;
    top: -16px;
    left: -32px;
  }
}
@media screen and (max-width: 500px) {
  .about-us_contents__bubbleline::before {
    width: 48px;
    left: -16px;
  }
}

.about-us_contents__bubbleline.cs_ac::before {
  transition-delay: 0.3s;
  transform: scale(1);
}

.about-us_contents__bubbleline__point {
  font-weight: 500;
  font-size: clamp(2.6rem, 2.9838709677vw, 3.7rem);
  color: #1c68ff;
}

.about-us_contents__flex {
  display: flex;
  gap: 21px;
  align-items: baseline;
  flex-wrap: wrap;
}

.about-us_contents__datail {
  font-weight: normal;
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
  color: #333;
}

.about-us_banner {
  margin-top: 200px;
}
@media screen and (max-width: 1000px) {
  .about-us_banner {
    margin-top: 120px;
  }
}

.about-us_banner__link {
  position: relative;
  display: block;
  max-width: 720px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

.about-us_banner__link::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #fff 0%, #fff 55.17%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.8;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .about-us_banner__link::before {
    background: linear-gradient(to bottom, #fff 0%, #fff 55.17%, rgba(255, 255, 255, 0) 100%);
  }
}

.about-us_banner__link img {
  transition: all 0.6s;
}
@media screen and (max-width: 500px) {
  .about-us_banner__link img {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.about-us_banner__txt {
  position: absolute;
  top: 48px;
  left: 48px;
  font-weight: 500;
  font-size: clamp(2.2rem, 2.2580645161vw, 2.8rem);
  color: #333;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .about-us_banner__txt {
    top: 42px;
    left: 32px;
  }
  .about-us_banner__txt br {
    display: block;
  }
}

.about-us_banner__arrow {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .about-us_banner__arrow {
    aspect-ratio: 88/24;
    width: 88px;
    right: 24px;
    bottom: 24px;
  }
}

.about-us_banner__link:hover {
  opacity: 1;
}
.about-us_banner__link:hover img {
  transform: scale(1.1, 1.1);
}
.about-us_banner__link:hover svg:first-of-type {
  left: 150%;
}
.about-us_banner__link:hover svg:last-of-type {
  left: 50%;
}

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

.recruit_personality__btmtxt {
  margin-bottom: 64px;
}
@media screen and (max-width: 1000px) {
  .recruit_personality__btmtxt {
    margin-bottom: 48px;
  }
}

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

.recruit_personality__columns + .recruit_personality__columns {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .recruit_personality__columns + .recruit_personality__columns {
    margin-top: 32px;
  }
}

.recruit_personality__img {
  flex-basis: 21.49%;
}
@media screen and (max-width: 1000px) {
  .recruit_personality__img {
    max-width: 184px;
    margin: auto;
  }
}

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

.recruit_personality__columns__healine {
  padding-top: 36px;
  position: relative;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  color: #333;
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .recruit_personality__columns__healine {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    padding-top: 24px;
    margin-bottom: 24px;
    text-align: center;
  }
}

.recruit_personality__columns__healine::before {
  content: "";
  aspect-ratio: 1/1;
  width: 68px;
  height: auto;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0px;
  left: -36px;
  z-index: -1;
  transform: scale(0);
  transition: all 1s;
}
@media screen and (max-width: 1000px) {
  .recruit_personality__columns__healine::before {
    width: 56px;
    top: 0px;
    left: -32px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_personality__columns__healine::before {
    left: -24px;
  }
}

.recruit_personality__columns__healine.cs_ac::before {
  transition-delay: 0.6s;
  transform: scale(1);
}

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

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

.recruit_job__columns--reverse {
  flex-direction: row-reverse;
}

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

.recruit_job__img {
  flex-basis: 37.38%;
  border-radius: 10px;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .recruit_job__img {
    max-width: 480px;
    margin: auto;
  }
}

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

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

.requirements__headline {
  position: relative;
  cursor: pointer;
  padding-bottom: 24px;
  border-bottom: solid 1px #1C68FF;
}
@media screen and (max-width: 1000px) {
  .requirements__headline {
    padding-bottom: 16px;
  }
}

.requirements__headline {
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .requirements__headline {
    margin-bottom: 24px;
  }
}

.requirements__post:last-of-type .requirements__headline {
  margin-bottom: 0px;
}

.requirements__headline_arrow {
  position: absolute;
  right: 0;
  top: 2px;
  aspect-ratio: 88/24;
  width: 88px;
  height: auto;
  display: block;
  background: #1C68FF;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.5s;
}
@media screen and (max-width: 1000px) {
  .requirements__headline_arrow {
    aspect-ratio: 56/20;
    width: 56px;
  }
}
.requirements__headline_arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.requirements__headline__maker__headline {
  margin-bottom: 0;
}

.requirements__headline.open_class .requirements__headline_arrow svg {
  transform: translate(-50%, -50%) rotate(180deg);
}

.requirements__content {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.requirements__content.is-animating {
  display: block;
}

.requirements__content.open_class {
  opacity: 1;
  transform: translateY(0);
}

.requirements__content {
  margin: 40px 0 120px;
}
@media screen and (max-width: 1000px) {
  .requirements__content {
    margin: 32px 0 80px;
  }
}

@media screen and (min-width: 1001px) {
  .requirements__table table tr:first-of-type td,
  .requirements__table table tr:first-of-type th {
    border-top: none;
    padding-top: 0;
  }
}
/*================================================
requirements----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
company_guidelines----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.company_guidelines {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .company_guidelines {
    margin-top: 80px;
  }
}

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

.company_guidelines__inner {
  padding-left: 64px;
}
@media screen and (max-width: 1000px) {
  .company_guidelines__inner {
    padding-left: 40px;
  }
}
@media screen and (max-width: 500px) {
  .company_guidelines__inner {
    padding-left: 20px;
  }
}

.company_guidelines__block + .company_guidelines__block {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .company_guidelines__block + .company_guidelines__block {
    margin-top: 32px;
  }
}

.company_circle {
  padding-top: 36px;
  position: relative;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  color: #333;
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .company_circle {
    padding-top: 24px;
    margin-bottom: 24px;
  }
}

.company_circle::before {
  content: "";
  aspect-ratio: 1/1;
  width: 68px;
  height: auto;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0px;
  left: -36px;
  z-index: -1;
  transform: scale(0);
  transition: all 1s;
}
@media screen and (max-width: 1000px) {
  .company_circle::before {
    width: 56px;
    top: 0px;
    left: -32px;
  }
}
@media screen and (max-width: 500px) {
  .company_circle::before {
    left: -24px;
  }
}

.company_circle.cs_ac::before {
  transition-delay: 0.6s;
  transform: scale(1);
}

.company_outline__wrap .table_wrap table + p {
  display: none;
}

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

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

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

.company_access__map {
  margin-top: 32px;
}
@media screen and (max-width: 1000px) {
  .company_access__map {
    margin-top: 24px;
  }
}

/*================================================
company_access----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
lineup_archive----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lineup_archive__txt {
  margin-bottom: 96px;
}
@media screen and (max-width: 1000px) {
  .lineup_archive__txt {
    margin-bottom: 72px;
  }
}

.lineup_archive__txt h2 {
  font-weight: 500;
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  line-height: 2;
  color: #333;
  margin-bottom: 48px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .lineup_archive__txt h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1000px) {
  .lineup_archive__txt h2 {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 500px) {
  .lineup_archive__txt h2 {
    line-height: 1.6;
  }
}

.lineup_archive__btns {
  counter-reset: lineup_archive__num;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 1000px) {
  .lineup_archive__btns {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media screen and (max-width: 500px) {
  .lineup_archive__btns {
    grid-template-columns: repeat(1, 1fr);
  }
}

.lineup_archive__btns__link {
  display: flex;
  gap: 36px;
  border-radius: 10px;
  background: #E3ECF6;
  font-weight: 500;
  transition: all 0.3s;
  padding: 30px 32px;
  font-size: clamp(1.5rem, 1.4516129032vw, 1.8rem);
  align-items: center;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .lineup_archive__btns__link {
    gap: 24px;
    padding: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .lineup_archive__btns__link {
    padding: 16px;
    gap: 16px;
  }
}

.lineup_archive__btns__link::before {
  counter-increment: lineup_archive__num;
  content: counter(lineup_archive__num, decimal-leading-zero);
  aspect-ratio: 64/32;
  width: 64px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  color: #1c68ff;
  background: #fff;
  border-radius: 4px;
  line-height: 1;
  box-sizing: border-box;
  padding-top: 1px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .lineup_archive__btns__link::before {
    padding-top: 0px;
  }
}

.lineup_archive__btns__link--current.lineup_archive__btns__link,
.lineup_archive__btns__link:hover {
  opacity: 1;
  background: #fff;
}
.lineup_archive__btns__link--current.lineup_archive__btns__link::before,
.lineup_archive__btns__link:hover::before {
  background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .lineup_archive__btns__link {
    opacity: 1;
    background: #fff;
  }
  .lineup_archive__btns__link::before {
    background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
    color: #fff;
  }
}
.stock_wrap {
  margin-top: 120px;
  padding: 80px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .stock_wrap {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 1000px) {
  .stock_wrap {
    margin-top: 80px;
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .stock_wrap {
    padding: 64px 20px;
  }
}

.stock_wrap__title {
  display: flex;
  margin-bottom: 40px;
  gap: 16px;
  font-weight: 500;
  font-size: clamp(2.4rem, 2.2580645161vw, 2.8rem);
  color: #333;
  align-items: baseline;
}
@media screen and (max-width: 1000px) {
  .stock_wrap__title {
    margin-bottom: 32px;
    gap: 12px;
  }
}

.stock_wrap__title__small {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .stock_wrap__title__small {
    gap: 8px;
  }
}

.stock_wrap__title__inner {
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  width: -moz-fit-content;
  width: fit-content;
  color: transparent;
  background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.stock_wrap__title__circle {
  position: relative;
  content: "";
  background: #F0F7FF;
  aspect-ratio: 1/1;
  width: 20px;
  height: auto;
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .stock_wrap__title__circle {
    width: 16px;
  }
}
.stock_wrap__title__circle::before {
  content: "";
  background: #1C68FF;
  aspect-ratio: 1/1;
  width: 4px;
  height: auto;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .stock_wrap__title__circle::before {
    width: 3px;
  }
}

.stock_wrap__txt {
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .stock_wrap__txt {
    margin-bottom: 24px;
  }
}

.stock_wrap__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 12px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .stock_wrap__columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .stock_wrap__columns {
    grid-template-columns: repeat(1, 1fr);
  }
}

.stock_wrap__table table {
  border-collapse: separate;
  border-spacing: 2px;
}
.stock_wrap__table table th,
.stock_wrap__table table td {
  border: none;
  vertical-align: middle;
}
.stock_wrap__table table th {
  padding: 10px 24px;
  background: #A3B6CC;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.125;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .stock_wrap__table table th {
    padding: 8px 16px;
  }
}
.stock_wrap__table table td {
  background: #F0F7FF;
  padding: 19px 16px;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.125;
  font-weight: normal;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .stock_wrap__table table td {
    padding: 16px 10px;
  }
}
.stock_wrap__table table tr th:first-of-type {
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1000px) {
  .stock_wrap__table table tr th:first-of-type {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
  }
}
.stock_wrap__table table tr th:nth-of-type(2) {
  width: 96px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .stock_wrap__table table tr th:nth-of-type(2) {
    width: 120px;
  }
}
.stock_wrap__table table tr th:nth-of-type(3) {
  width: 96px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .stock_wrap__table table tr th:nth-of-type(3) {
    width: 120px;
  }
}
.stock_wrap__table table tr th:nth-of-type(4) {
  width: 96px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .stock_wrap__table table tr th:nth-of-type(4) {
    width: 120px;
  }
}
.stock_wrap__table table tr td:first-of-type {
  text-align: left;
}

/*================================================
lineup_archive----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
lineup_datail----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lineup_datail__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .lineup_datail__columns {
    display: block;
  }
}

.lineup_datail__btns_wrap {
  flex-basis: 240px;
}

.lineup_datail__btns {
  counter-reset: lineup_datail__num;
}
@media screen and (min-width: 1401px) {
  .lineup_datail__btns {
    position: sticky;
    top: 124px;
  }
}
@media screen and (max-width: 1000px) {
  .lineup_datail__btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media screen and (max-width: 500px) {
  .lineup_datail__btns {
    grid-template-columns: repeat(1, 1fr);
  }
}

.lineup_datail__btns__link {
  display: flex;
  gap: 8px;
  border-radius: 10px;
  background: #E3ECF6;
  font-weight: 500;
  transition: all 0.3s;
  padding: 20px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .lineup_datail__btns__link {
    padding: 16px;
  }
}

.lineup_datail__btns__link::before {
  counter-increment: lineup_datail__num;
  content: counter(lineup_datail__num, decimal-leading-zero);
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  color: #1c68ff;
  background: #fff;
  border-radius: 4px;
  line-height: 1;
  box-sizing: border-box;
  padding-top: 1px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .lineup_datail__btns__link::before {
    padding-top: 0px;
    width: 30px;
  }
}

.lineup_datail__btns__link--current.lineup_datail__btns__link,
.lineup_datail__btns__link:hover {
  opacity: 1;
  background: #fff;
}
.lineup_datail__btns__link--current.lineup_datail__btns__link::before,
.lineup_datail__btns__link:hover::before {
  background: linear-gradient(65deg, #1c68ff 0%, #50cbc7 100%);
  color: #fff;
}

@media screen and (min-width: 1001px) {
  .lineup_datail__btns__item + .lineup_datail__btns__item {
    margin-top: 8px;
  }
}
.lineup_datail__content {
  flex-basis: 71.33%;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .lineup_datail__content {
    flex-basis: 68%;
  }
}
@media screen and (max-width: 1000px) {
  .lineup_datail__content {
    margin-top: 74px;
  }
}

.lineup_datail__txt {
  margin-bottom: 64px;
}
@media screen and (max-width: 1000px) {
  .lineup_datail__txt {
    margin-bottom: 56px;
  }
}

.lineup_datail__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media screen and (max-width: 500px) {
  .lineup_datail__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lineup_datail__item {
  background: #fff;
  padding: 19px 24px;
  line-height: 1.125;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  border-radius: 4px;
}
@media screen and (max-width: 1000px) {
  .lineup_datail__item {
    padding: 16px;
  }
}
@media screen and (max-width: 500px) {
  .lineup_datail__item {
    font-size: 1.3rem;
  }
}

.common_btn--lineup_datail {
  margin-top: 88px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .common_btn--lineup_datail {
    margin-top: 64px;
  }
}

/*================================================
lineup_datail----END
==================================================*/
.policy_block__wrap + .policy_block__wrap {
  margin-top: clamp(32px, 2.5vw, 40px);
}

.policy_block__lead {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  margin-bottom: 12px;
  font-weight: 500;
  color: #1c68ff;
}
@media screen and (max-width: 1000px) {
  .policy_block__lead {
    margin-bottom: 8px;
  }
}

.policy_block__description {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: normal;
  color: #333;
}

.found_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-bottom: clamp(32px, 2.5vw, 40px);
}

.found_head__caption {
  display: block;
  font-family: "Host Grotesk";
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(4.2rem, 4.8387096774vw, 6rem);
  text-align: center;
  color: #bfd6f0;
  line-height: 1;
}

.found_head__lead {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  color: #333;
}

@media screen and (min-width: 501px) and (max-width: 1000px) {
  .found_block__txt {
    text-align: center;
  }
}
.found_menu {
  margin-top: clamp(32px, 3vw, 48px);
}
.found_menu ul ul {
  display: none !important;
}
.found_menu a {
  display: block;
  font-size: inherit;
  text-align: center;
  box-sizing: border-box;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 600;
  color: #333;
}
@media screen and (min-width: 1001px) {
  .found_menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 0;
    margin: auto;
  }
  .found_menu li {
    padding: 0 24px;
    box-sizing: border-box;
    line-height: 1;
  }
  .found_menu li + li {
    border-left: 1px solid #BFD6F0;
  }
}
@media screen and (max-width: 1000px) {
  .found_menu ul {
    max-width: 400px;
    margin: auto;
  }
  .found_menu li {
    border-bottom: 1px solid #BFD6F0;
  }
  .found_menu li:last-of-type {
    border-bottom: none;
  }
  .found_menu a {
    padding: 1em 0;
  }
}

.post_main_wrap {
  margin: auto;
}
@media screen and (min-width: 1001px) {
  .post_main_wrap {
    max-width: 816px;
  }
}

.post_list__tab {
  display: block;
  position: relative;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 500;
  padding-bottom: 32px;
  box-sizing: border-box;
  border-bottom: 1px solid #BFD6F0;
}
@media screen and (max-width: 1000px) {
  .post_list__tab {
    padding-bottom: 24px;
  }
}
.post_list__tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1C68FF;
  scale: 0 1;
  transform-origin: left;
  transition: all 0.3s;
}
.post_list__tab:hover {
  opacity: 1;
}
.post_list__tab:hover::after {
  scale: 1 1;
}
.post_list__tab + .post_list__tab {
  padding-top: 32px;
}
@media screen and (max-width: 1000px) {
  .post_list__tab + .post_list__tab {
    padding-top: 24px;
  }
}

.post_list__time {
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #a3b6cc;
}

.post_list__lead {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  margin-top: 12px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 1000px) {
  .post_list__lead {
    margin-top: 10px;
  }
}

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

.post_card__link {
  display: block;
}
.post_card__link:hover {
  opacity: 1;
}

.post_card__pic {
  display: block;
  background-color: #ddd;
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  -o-object-fit: clip;
     object-fit: clip;
  margin-bottom: clamp(10px, 1vw, 16px);
}
.post_card__pic .image {
  width: 100%;
  height: 100%;
  scale: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_card__link .post_card__pic .image {
  scale: 1.1;
}

.post_card__headline {
  display: block;
  margin-bottom: clamp(10px, 1vw, 16px);
}

.post_card__time {
  display: block;
  font-size: clamp(1.2rem, 1.2096774194vw, 1.5rem);
  color: #0c1c89;
  margin-bottom: clamp(8px, 0.625vw, 10px);
  font-variant-numeric: tabular-nums;
}

.post_card__lead {
  display: block;
  font-size: clamp(1.6rem, 1.6129032258vw, 2rem);
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.post_card__lead::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * (0.5em - 1px));
}
.post_card__lead::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
@media screen and (min-width: 501px) {
  .post_card__lead {
    -webkit-line-clamp: 1;
  }
}
@media screen and (max-width: 500px) {
  .post_card__lead {
    -webkit-line-clamp: 1;
  }
}

.post_card__caption {
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 501px) {
  .post_card__caption {
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 500px) {
  .post_card__caption {
    -webkit-line-clamp: 1;
  }
}

.post_item__side {
  box-sizing: border-box;
}
@media screen and (min-width: 501px) {
  .post_item__side {
    display: flex;
    flex-direction: "row";
    align-items: "flex-start";
    gap: 48px;
  }
}
.post_item__side + .post_item__side {
  margin-top: clamp(32px, 2.5vw, 40px);
  padding-top: clamp(32px, 2.5vw, 40px);
  border-top: 1px solid #ccc;
}

.post_item__pic {
  display: block;
  max-width: 400px;
  aspect-ratio: 4/3;
  background-color: #ddd;
  overflow: clip;
}
@media screen and (min-width: 1001px) {
  .post_item__pic {
    width: 33.3333333333%;
    min-width: 280px;
  }
}
@media screen and (max-width: 1000px) {
  .post_item__pic {
    width: 100%;
  }
}
.post_item__pic .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .post_item__pic .image {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .post_item__pic .image {
    transition-duration: 300ms;
  }
}
.post_item__pic:hover {
  opacity: 1;
}
.post_item__pic:hover .image {
  scale: 1.1;
}

.post_item__inner {
  flex: 1;
}
@media screen and (max-width: 500px) {
  .post_item__inner {
    margin-top: 32px;
  }
}

.post_item__headline {
  margin-bottom: clamp(24px, 2vw, 32px);
}

.post_item__time {
  display: block;
  font-size: clamp(1.2rem, 1.2096774194vw, 1.5rem);
  color: #0c1c89;
  margin-bottom: clamp(8px, 0.625vw, 10px);
  font-variant-numeric: tabular-nums;
}

.post_item__lead {
  font-size: clamp(1.6rem, 1.6129032258vw, 2rem);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.post_item__lead::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.3) * (0.5em - 1px));
}
.post_item__lead::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.3) * 0.5em);
}
@media screen and (min-width: 501px) {
  .post_item__lead {
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 500px) {
  .post_item__lead {
    -webkit-line-clamp: 1;
  }
}

.post_item__caption {
  display: block;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 501px) {
  .post_item__caption {
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 500px) {
  .post_item__caption {
    -webkit-line-clamp: 2;
  }
}

@media screen and (min-width: 1001px) {
  .single_block {
    position: relative;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1001px) and (min-width: 817px) {
  .single_block {
    max-width: 816px;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 816px) {
  .single_block {
    max-width: 816px;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 501px) and (max-width: 1000px) {
  .single_block {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.single_block__image {
  display: block;
  margin-top: 48px;
}
@media screen and (max-width: 1000px) {
  .single_block__image {
    margin-top: 32px;
  }
}

.single_block__headline {
  display: block;
  margin-bottom: clamp(40px, 4vw, 64px);
}

.single_block__time {
  font-family: "Host Grotesk", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #a3b6cc;
}

.single_block__lead {
  margin-top: 12px;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  font-weight: 500;
  line-height: 1.66;
}
@media screen and (max-width: 1000px) {
  .single_block__lead {
    margin-top: 10px;
  }
}

.single_block__inner a {
  text-decoration: underline;
}

.single_item__side {
  box-sizing: border-box;
}
@media screen and (min-width: 501px) {
  .single_item__side {
    display: flex;
    flex-direction: "row";
    align-items: "flex-start";
    gap: 48px;
  }
}
.single_item__side + .single_item__side {
  margin-top: clamp(32px, 2.5vw, 40px);
  padding-top: clamp(32px, 2.5vw, 40px);
  border-top: 1px solid #ccc;
}

.single_item__pic {
  display: block;
  max-width: 400px;
  aspect-ratio: 4/3;
  background-color: #ddd;
  overflow: clip;
}
@media screen and (min-width: 1001px) {
  .single_item__pic {
    width: 33.3333333333%;
    min-width: 280px;
  }
}
@media screen and (max-width: 1000px) {
  .single_item__pic {
    width: 100%;
  }
}
.single_item__pic .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .single_item__pic .image {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .single_item__pic .image {
    transition-duration: 300ms;
  }
}
.single_item__pic:hover {
  opacity: 1;
}
.single_item__pic:hover .image {
  scale: 1.1;
}

.single_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #BFD6F0;
  padding-top: clamp(24px, 2vw, 32px);
  margin-top: clamp(80px, 8vw, 128px);
}
.single_nav a {
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  font-weight: 500;
}
.single_nav a:hover {
  opacity: 1;
  color: #1C68FF;
}

.single_nav__move {
  min-width: 56px;
}
.single_nav__move a {
  display: flex;
  gap: 16px;
  min-width: 56px;
  justify-content: space-between;
  align-items: center;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .single_nav__move a {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .single_nav__move a {
    transition-duration: 300ms;
  }
}
.single_nav__move a path {
  transition-property: all;
  filter: brightness(0) saturate(100%) invert(84%) sepia(5%) saturate(1774%) hue-rotate(184deg) brightness(104%) contrast(88%);
}
@media screen and (min-width: 1001px) {
  .single_nav__move a path {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .single_nav__move a path {
    transition-duration: 300ms;
  }
}
.single_nav__move a:hover path {
  filter: brightness(0) saturate(100%) invert(31%) sepia(91%) saturate(3118%) hue-rotate(215deg) brightness(99%) contrast(105%);
}/*# sourceMappingURL=customize.css.map */