@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=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
/* 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: "IBM Plex Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #333;
  background: #fff;
  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 (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: 1241px) {
  .container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1240px) {
  .container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

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

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 #CDCDCD;
    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 #CDCDCD;
  }
}
@media screen and (max-width: 1000px) {
  td {
    border-bottom: 1px solid #CDCDCD;
    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: 1000px) {
  .wp-pagenavi {
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .wp-pagenavi {
    gap: 8px;
  }
}
.archive .wp-pagenavi {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .archive .wp-pagenavi {
    margin-top: 80px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  border: none;
  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;
  box-sizing: border-box;
  border: none !important;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #333;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 1001px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 36px;
  }
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 32px;
  }
}
.wp-pagenavi a::before,
.wp-pagenavi span::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: 0%;
  height: 2px;
  background-color: #0c1c89;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .wp-pagenavi a::before,
  .wp-pagenavi span::before {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi a::before,
  .wp-pagenavi span::before {
    transition-duration: 300ms;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  opacity: 1;
  color: #fff;
  background-color: #42C2EA;
}
.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(94%) sepia(0%) saturate(41%) hue-rotate(183deg) brightness(96%) contrast(94%);
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  opacity: 0.6;
  background-color: initial !important;
}
.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 {
  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 {
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 160%;
  color: #333333;
}
.cm-bread a {
  color: inherit;
  font-size: inherit;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
}
@media screen and (min-width: 1001px) {
  .breadcrumbs {
    justify-content: right;
  }
}
@media screen and (max-width: 1000px) {
  .breadcrumbs {
    gap: 6px 16px;
  }
}
.breadcrumbs img {
  aspect-ratio: 13/8;
  max-width: 8px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
kv----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.kv {
  padding-top: 56px;
}
@media screen and (max-width: 1000px) {
  .kv {
    padding-top: 40px;
  }
}

.kv_head {
  padding-top: 96px;
}
@media screen and (max-width: 1000px) {
  .kv_head {
    padding-top: 64px;
  }
}
@media screen and (max-width: 500px) {
  .kv_head {
    padding-top: 56px;
  }
}

.kv_head__slag {
  display: block;
  font-weight: 500;
  font-size: clamp(4.6rem, 6.4516129032vw, 8rem);
  line-height: 160%;
  color: #333333;
  text-transform: capitalize;
}

.kv_head__lead {
  margin-top: 8px;
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.7rem, 1.6129032258vw, 2rem);
  line-height: 200%;
  color: #42C2EA;
  gap: 8px;
}
.kv_head__lead::before {
  content: "●";
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  color: #333333;
}

.page__privacy-policy,
.post_main,
.post_single,
.page__contact {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .page__privacy-policy,
  .post_main,
  .post_single,
  .page__contact {
    margin-top: 80px;
  }
}

/*================================================
kv----END
==================================================*/
/* page */
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
mv----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.mv {
  position: relative;
  height: calc(100vh - 96px);
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .mv {
    height: auto;
  }
}
@media screen and (max-width: 1000px) {
  .mv {
    height: calc(100vh - 60px);
  }
}

.mv__back {
  height: 100%;
  width: 100%;
}

.mv__back__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .mv__back__img {
    height: auto;
  }
}

.mv__txt {
  position: absolute;
  width: 100%;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .mv__txt {
    bottom: -53px;
  }
}
@media screen and (max-width: 1000px) {
  .mv__txt {
    bottom: -36px;
  }
}
@media screen and (max-width: 500px) {
  .mv__txt {
    bottom: -32px;
  }
}

.mv__headline {
  font-weight: 500;
  font-size: clamp(6.4rem, 9.6774193548vw, 12rem);
  line-height: 160%;
  text-align: center;
}
.mv__headline br {
  display: block;
}

.mv__read {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.935483871vw, 2.4rem);
  line-height: 200%;
  text-align: center;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  width: 100%;
}

/*================================================
mv----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
汎用クラス----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_headline__slag {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.7rem, 1.6129032258vw, 2rem);
  line-height: 200%;
  color: #42C2EA;
  gap: 8px;
}
.home_headline__slag::before {
  content: "●";
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  color: #333333;
}

.home_headline__read {
  margin-top: 40px;
  font-weight: 600;
  font-size: clamp(2.8rem, 3.2258064516vw, 4rem);
  line-height: 180%;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .home_headline__read {
    margin-top: 24px;
  }
}

.home_headline__read br {
  display: block;
}

/*================================================
汎用クラス----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_strength----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_strength {
  position: relative;
  padding: 148px 0;
  background: #F7F6F4;
}
@media screen and (max-width: 1000px) {
  .home_strength {
    padding: 72px 0 74px;
  }
}

@media screen and (min-width: 1001px) {
  .home_strength__pos {
    position: absolute;
    left: 50%;
    bottom: 72px;
    transform: translateX(-50%);
    max-width: 784px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_strength__pos {
    bottom: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .home_strength__pos {
    display: block;
    margin: 32px auto 40px;
    max-width: 360px;
  }
}
@media screen and (max-width: 500px) {
  .home_strength__pos {
    max-width: 298px;
  }
}

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

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

.home_strength__content {
  padding-top: 200px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_strength__content {
    padding-top: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .home_strength__content {
    padding-top: 0px;
  }
}

.lower_btn--home_strength {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .lower_btn--home_strength {
    text-align: center;
  }
}

/*================================================
home_strength----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_business----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_business__section {
  position: relative;
  padding: 120px 0;
}
@media screen and (max-width: 1000px) {
  .home_business__section {
    padding: 72px 0 74px;
  }
}

.home_business__section + .home_business__section {
  margin-top: 16px;
}

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

.home_business__block {
  position: relative;
  z-index: 1;
  background: #fff;
  max-width: 664px;
  margin: auto;
  padding: 64px 117px 64px;
}
@media screen and (max-width: 1000px) {
  .home_business__block {
    padding: 43px 46px 43px;
  }
}

@media screen and (min-width: 1001px) {
  .home_headline__slag--home_business {
    margin-left: -52px;
  }
}
@media screen and (max-width: 1000px) {
  .home_headline__slag--home_business {
    margin-left: -8px;
  }
}

.home_headline__read--home_business {
  font-size: clamp(1.8rem, 2.5806451613vw, 3.2rem);
}
@media screen and (min-width: 1001px) {
  .home_headline__read--home_business {
    width: -moz-max-content;
    width: max-content;
  }
}

.home_business__img {
  margin: 32px 0;
}
@media screen and (max-width: 1000px) {
  .home_business__img {
    margin: 28px 0 24px;
  }
}

.lower_btn--home_business {
  margin-top: 40px;
  text-align: center;
}

/*================================================
home_business----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_works----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_works {
  position: relative;
  padding: 148px 0 72px;
}

.home_headline--home_works {
  margin-bottom: 56px;
}

.lower_btn--home_works {
  text-align: center;
  margin-top: 80px;
}

.home_works_post__tabs {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 500px) {
  .home_works_post__tabs {
    display: none !important;
  }
}

.home_works_post__tab {
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  width: 224px;
  color: #FFFFFF;
  background: #42C2EA;
  border-radius: 8px 8px 0px 0px;
  padding: 9px 8px;
  text-align: center;
  opacity: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .home_works_post__tab {
    width: 180px;
    padding: 6px 8px 4px;
  }
}

@media screen and (min-width: 501px) {
  .home_works_post__contents {
    padding: 40px;
    border-radius: 8px;
    background: #F7F6F4;
  }
}
@media screen and (min-width: 501px) and (max-width: 1200px) {
  .home_works_post__contents {
    padding: 40px 32px;
  }
}
.home_works_post__title {
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  width: 224px;
  color: #FFFFFF;
  background: #42C2EA;
  border-radius: 8px 8px 0px 0px;
  padding: 12px 8px;
  text-align: center;
}
@media screen and (min-width: 501px) {
  .home_works_post__title {
    display: none;
  }
}

@media screen and (min-width: 501px) {
  .home_works_post__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1200px) {
  .home_works_post__list {
    gap: 16px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .home_works_post__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 500px) {
  .home_works_post__list {
    padding: 20px;
    border-radius: 8px;
    background: #F7F6F4;
  }
}

.home_works_post__txt {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  line-height: 200%;
  color: #000000;
}
@media screen and (min-width: 501px) {
  .home_works_post__txt {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_works_post__txt {
    margin-top: 12px;
    font-size: 1.3rem;
  }
}

.home_works_post__img {
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .home_works_post__img {
    display: none !important;
  }
}

.home_works_post__img__main {
  transition: all 0.6s;
  aspect-ratio: 262/196;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background: #fff;
}

.home_works_post__link:hover {
  opacity: 1;
}
.home_works_post__link:hover .home_works_post__img__main {
  transform: scale(1.1, 1.1);
}

.home_works_post__tab:hover,
.home_works_post__tab.is-active {
  opacity: 1;
}

@media screen and (min-width: 501px) {
  .home_works_post__wrap {
    clip-path: inset(0 0 0 0);
    transition: all 1.6s ease;
    position: relative;
    opacity: 1;
  }
  .home_works_post__wrap.is-hidden {
    position: absolute;
    clip-path: inset(0 50% 0 50%);
    transition: all 0s ease;
    opacity: 0;
  }
}
@media screen and (max-width: 500px) {
  .home_works_post__wrap + .home_works_post__wrap {
    margin-top: 16px;
  }
  .home_works_post__item + .home_works_post__item {
    margin-top: 8px;
  }
  .home_works_post__link {
    display: flex;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    align-items: center;
    gap: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    color: #333333;
  }
  .home_works_post__link::before {
    content: "";
    background: url(../images/home/ico_home_works_link.png);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1/1;
    width: 24px;
    height: auto;
    display: inline-block;
  }
}
/*================================================
home_works----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_asider----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_aside {
  position: relative;
  overflow: hidden;
}

.home_aside__readline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 54px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5806451613vw, 3.2rem);
  line-height: 180%;
  color: #333333;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .home_aside__readline {
    bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .home_aside__readline {
    bottom: 0px;
  }
}

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

.main_about__slide {
  font-weight: 500;
  font-size: clamp(8rem, 14.5161290323vw, 18rem);
  line-height: 160%;
  color: #42C2EA;
}

@keyframes a_home_asider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
/*================================================
home_asider----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_company----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_company__content {
  padding-top: 148px;
  margin-top: 72px;
  border-top: solid 1px #D9D9D9;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .home_company__content {
    display: block;
    padding-top: 72px;
    margin-top: 72px;
  }
}

.home_company__btns {
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_company__btns .lower_btn--home_company {
    width: 100%;
  }
  .home_company__btns a {
    width: 100%;
    min-width: 270px;
  }
}
@media screen and (max-width: 1000px) {
  .home_company__btns {
    margin-top: 24px;
    gap: 8px;
    max-width: 100%;
  }
}
@media screen and (max-width: 1000px) and (min-width: 501px) and (max-width: 1000px) {
  .home_company__btns .lower_btn--home_company {
    width: 100%;
  }
  .home_company__btns a {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .home_company__btns {
    flex-direction: column;
  }
}

/*================================================
home_company----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_news----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_news {
  margin-top: 148px;
}
@media screen and (max-width: 1000px) {
  .home_news {
    margin-top: 72px;
  }
}

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

.home_news__content {
  flex-basis: 890px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_news__content {
    flex-basis: 840px;
  }
}
@media screen and (max-width: 1000px) {
  .home_news__content {
    margin-top: 24px;
  }
}

.home_news__link {
  position: relative;
  display: flex;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: solid 1px #CDCDCD;
}
@media screen and (max-width: 1000px) {
  .home_news__link {
    display: block;
    padding-bottom: 24px;
  }
}

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

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

.home_news__time {
  font-weight: 600;
  font-size: 1.6rem;
  color: #42C2EA;
}
@media screen and (max-width: 1000px) {
  .home_news__time {
    margin-bottom: 8px;
  }
}

.home_news__caption {
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 1000px) {
  .home_news__caption {
    -webkit-line-clamp: 2;
  }
}

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

.home_news__btn {
  text-align: right;
  margin-top: 24px;
}

.home_news__btn__link {
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-decoration-line: underline;
  color: #333333;
}

/*================================================
home_news----END
==================================================*/
.no_scroll {
  overflow: hidden;
}

.loading__box {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 100vh;
  opacity: 1;
  box-sizing: border-box;
  overflow: hidden;
}
.loading__box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50vw;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 1.6s ease;
}
.loading__box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50vw;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 1.6s ease;
}

@media screen and (min-width: 501px) {
  .loading__box.loading__step1::before {
    width: 0%;
  }
  .loading__box.loading__step1::after {
    width: 0%;
  }
}
.loading__box.loading__step2::before {
  width: 0%;
}
.loading__box.loading__step2::after {
  width: 0%;
}

.loading__box.loading__comp {
  display: none !important;
}

.lower_catchline {
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 200%;
  color: #333333;
}
@media screen and (min-width: 1001px) {
  .lower_catchline {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-top: -66px;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .lower_catchline {
    margin: 64px 0 80px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .lower_catchline br {
    display: block;
  }
}

.lower_bigline {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(2.8rem, 3.2258064516vw, 4rem);
  line-height: 180%;
  color: #333333;
}

.lower_cttitle {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(2.6rem, 2.5806451613vw, 3.2rem);
  line-height: 180%;
  color: #333333;
}

.lower_btn__link {
  width: 286px;
  background: #42C2EA;
  border-radius: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-align: center;
  color: #fff;
  font-family: "IBM Plex Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  padding: 24px 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .lower_btn__link {
    padding: 20px 8px;
  }
}
@media screen and (max-width: 500px) {
  .lower_btn__link {
    width: 100%;
    padding: 17px 8px;
  }
}

.lower_btn__link_mini {
  width: 208px;
  background: #42C2EA;
  border-radius: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-align: center;
  color: #fff;
  font-family: "IBM Plex Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  padding: 24px 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .lower_btn__link_mini {
    padding: 20px 8px;
  }
}
@media screen and (max-width: 500px) {
  .lower_btn__link_mini {
    padding: 17px 8px;
  }
}

.open_content.cs_st {
  clip-path: inset(0 50% 0 50%);
  transition: all 1.6s ease;
}
.open_content.cs_ac {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.6s;
}

.single_block__inner a {
  text-decoration: underline;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
only----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
@media screen and (min-width: 501px) {
  .sp_only {
    display: none !important;
  }
  .pc_only {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none !important;
  }
}
@media screen and (min-width: 1001px) {
  .mobile_only {
    display: none !important;
  }
  .pc_only2 {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .mobile_only {
    display: block;
  }
  .pc_only2 {
    display: none !important;
  }
}
/*================================================
only----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
business_catch----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.business_catch + .business_catch {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .business_catch + .business_catch {
    margin-top: 64px;
  }
}

.business_catch__headline {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 200%;
  color: #42C2EA;
}

.lower_bigline--business_catch {
  margin: 36px 0;
}
@media screen and (max-width: 1000px) {
  .lower_bigline--business_catch {
    margin: 24px 0;
  }
}

.business_catch__img {
  margin-top: 64px;
}
@media screen and (max-width: 1000px) {
  .business_catch__img {
    margin-top: 56px;
  }
}
@media screen and (max-width: 500px) {
  .business_catch__img img {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

/*================================================
business_catch----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
business_works----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.business_works {
  position: relative;
  margin-top: 240px;
  padding: 120px 0;
}
@media screen and (max-width: 1000px) {
  .business_works {
    margin-top: 160px;
    padding: 80px 0;
  }
}

.business_works::before {
  content: "";
  background: #42C2EA;
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.business_works.cs_st::before {
  clip-path: inset(0 50% 0 50%);
  transition: all 1.6s ease;
}
.business_works.cs_ac::before {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.6s;
}

.business_works__pos {
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  font-size: clamp(3.2rem, 9.6774193548vw, 12rem);
  line-height: 50%;
  text-align: center;
  color: #42C2EA;
  width: 100%;
}

.lower_cttitle--business_works {
  text-align: center;
  color: #fff;
  margin-bottom: 64px;
}
@media screen and (max-width: 1000px) {
  .lower_cttitle--business_works {
    margin-bottom: 56px;
  }
}

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

.business_works__img {
  overflow: hidden;
}
.business_works__img img {
  transition: all 0.6s;
}

.business_works__txt {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .business_works__txt {
    margin-top: 8px;
  }
}

.business_works__card {
  display: block;
}

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

.lower_btn--business_works {
  margin-top: 56px;
  text-align: center;
}
.lower_btn--business_works .lower_btn__link {
  color: #42C2EA;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .lower_btn--business_works {
    margin-top: 48px;
  }
}

/*================================================
business_works----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
business_area----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.business_area {
  padding: 156px 0 184px;
}
@media screen and (max-width: 1000px) {
  .business_area {
    padding: 120px 0 120px;
  }
}

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

.business_area__txt {
  flex-basis: 360px;
}

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

.business_area__headline {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #42C2EA;
}

.lower_bigline--business_area {
  margin: 40px 0 32px;
}
@media screen and (max-width: 1000px) {
  .lower_bigline--business_area {
    margin: 32px 0 24px;
  }
}

/*================================================
business_area----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
business_flow----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.business_flow {
  position: relative;
  background: #F7F6F4;
  padding: 120px 0;
}
@media screen and (max-width: 1000px) {
  .business_flow {
    padding: 80px 0;
  }
}

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

.business_flow__wrap {
  background: #fff;
  max-width: 564px;
  margin: auto;
  padding: 64px 80px;
}
@media screen and (max-width: 1000px) {
  .business_flow__wrap {
    padding: 56px 48px;
  }
}
@media screen and (max-width: 500px) {
  .business_flow__wrap {
    padding: 48px 32px;
  }
}

.business_flow__wrap + .business_flow__wrap {
  margin-top: 32px;
}

.business_flow__headline {
  position: relative;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  color: #42C2EA;
}

.business_flow__headline::before {
  content: "●";
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .business_flow__headline::before {
    right: calc(100% + 6px);
  }
}
@media screen and (min-width: 501px) {
  .business_flow__headline::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 8px);
  }
}
@media screen and (max-width: 500px) {
  .business_flow__headline::before {
    display: inline-block;
    margin-right: 4px;
    vertical-align: middle;
  }
}

.business_flow__readline {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(2.6rem, 2.5806451613vw, 3.2rem);
  color: #333333;
  margin: 40px 0 32px;
}
@media screen and (min-width: 1001px) {
  .business_flow__readline {
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 1000px) {
  .business_flow__readline {
    margin: 32px 0 24px;
  }
}

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

.business_flow .business_flow__tel {
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(2.8rem, 3.2258064516vw, 4rem);
  line-height: 1;
  color: #42C2EA;
}
.business_flow .business_flow__small {
  font-weight: 600;
  font-size: clamp(2.2rem, 1.935483871vw, 2.4rem);
  color: #42C2EA;
}

.business_flow__day {
  margin-top: 8px;
  display: block;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #42C2EA;
}

.lower_btn--business_flow {
  text-align: center;
  margin-top: 32px;
}
@media screen and (max-width: 1000px) {
  .lower_btn--business_flow {
    margin-top: 24px;
  }
}

.business_flow__line {
  content: "";
  width: 0.5%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: width 0.1s linear;
}

/*================================================
business_flow----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;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
works_list----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.works_list {
  padding: 24px 40px 24px;
  background: #F7F6F4;
  border-radius: 8px;
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .works_list {
    padding: 24px 32px 24px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 500px) {
  .works_list {
    padding: 24px;
  }
}

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

.works_list__link {
  display: flex;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .works_list__link {
    padding: 12px 10px;
  }
}
.works_list__link::before {
  content: "";
  background: url(../images/common/ico_works_link.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .works_list__link::before {
    width: 28px;
  }
}

.works_list__link:hover,
.works_list__link.current {
  opacity: 1;
  background: #42C2EA;
  color: #fff;
  font-weight: 600;
}

.works_child {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 40px;
}
@media screen and (max-width: 1000px) {
  .works_child {
    margin-top: 32px;
  }
}

.works_child__link {
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #000000;
}

.works_child__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  background: #000;
  width: 0%;
  height: 1px;
  transition: all 0.3s;
}

.works_child__link.current,
.works_child__link:hover {
  opacity: 1;
}
.works_child__link.current::before,
.works_child__link:hover::before {
  width: 100%;
}

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

.works_cards__card {
  display: block;
}

.works_cards__img {
  overflow: hidden;
}

.works_cards__img__main {
  transition: all 0.6s;
  aspect-ratio: 572/417;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background: #F7F6F4;
}

.works_cards__title {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #333333;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .works_cards__title {
    margin-top: 16px;
  }
}

.works_cards__card:hover {
  opacity: 1;
}
.works_cards__card:hover .works_cards__img__main {
  transform: scale(1.05, 1.05);
}

.works_cards__read {
  margin-top: 16px;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 1.8;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .works_cards__read {
    margin-top: 8px;
  }
}

/*================================================
works_cards----END
==================================================*/
.policy_block__wrap + .policy_block__wrap {
  margin-top: 32px;
}

.policy_block__lead {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.found_block {
  padding-top: clamp(56px, 6vw, 96px);
}

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

.found_head__caption {
  display: block;
  font-size: clamp(3.2rem, 5.1612903226vw, 6.4rem);
  color: #ADADAD;
  line-height: 1.6;
  letter-spacing: -0.05em;
}

.found_head__lead {
  font-size: 1.6rem;
  font-weight: 600;
}

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

.lower_btn--prev {
  text-align: center;
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .lower_btn--prev {
    margin-top: 72px;
  }
}/*# sourceMappingURL=customize.css.map */