@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=Shippori+Mincho+B1:wght@500&display=swap");
.single_item__pic {
  margin-left: auto;
  margin-right: auto;
}

/* flexのfit */
/* template color */
/* custom color */
/* font */
.mincho {
  font-family: "Shippori Mincho B1", "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: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #333;
  background: #FFFCF5;
  font-weight: 300;
  -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-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 300;
  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;
  }
}

.container.container--of {
  overflow: visible;
}

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;
  }
}
@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: 16px;
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi {
    gap: 10px;
  }
}
.archive .wp-pagenavi {
  margin-top: 36px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  border: none;
  font-size: clamp(1.2rem, 1.2096774194vw, 1.5rem);
  font-weight: 500;
  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;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.6129032258vw, 2rem);
  color: #333;
  background: initial !important;
  box-sizing: border-box;
  font-weight: 500 !important;
  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: 30px;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  opacity: 1;
  color: #fff;
  background: #333 !important;
}
.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(95%) sepia(7%) saturate(100%) hue-rotate(2deg) brightness(96%) contrast(86%);
  transition: all 0.3s;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  filter: brightness(0) saturate(100%) invert(50%) sepia(67%) saturate(594%) hue-rotate(83deg) brightness(93%) contrast(83%);
  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 {
  display: inline;
  word-break: break-all;
  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 {
  margin-top: 72px;
  font-size: 1.4rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 300;
}
.cm-bread a {
  color: inherit;
  font-size: inherit;
}
@media screen and (max-width: 1000px) {
  .cm-bread {
    margin-top: 66px;
  }
}

.breadcrumbs {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-weight: 300;
}

.header_block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  transition: all 0.3s;
  z-index: 10;
}
.header_block.hide__fixed {
  transform: translateY(-100%);
}

.header_area {
  padding: 38px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 252, 245, 0.8);
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_area {
    padding: 38px 20px;
  }
}
@media screen and (max-width: 1000px) {
  .header_area {
    padding: 16px 40px;
  }
}
@media screen and (max-width: 500px) {
  .header_area {
    padding: 16px 20px;
  }
}

.header_logo {
  display: inline-block;
  max-width: 231px;
  line-height: 1;
}
.header_logo img {
  display: block;
  width: auto;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .header_logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 500px) {
  .header_logo {
    max-width: 168px;
  }
}

.header_menu a {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.8;
  color: #333333;
}
.header_menu a:hover {
  opacity: 1;
  color: #20AC42;
}
.header_menu ul {
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .header_menu ul {
    display: flex;
    gap: 40px;
    align-items: center;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu ul {
    gap: 24px;
  }
}
.header_menu .sub-menu,
.header_menu .children {
  display: none;
}
@media screen and (min-width: 1401px) {
  .header_menu li + li {
    margin-left: 8px;
  }
}
@media screen and (max-width: 1000px) {
  .header_menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s;
    z-index: 5;
    overflow-y: scroll;
  }
  .header_menu.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__contact a {
  display: block;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-align: center;
  color: #FFFFFF;
  border-radius: 40px;
  width: 168px;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1001px) {
  .header__contact a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #20AC42;
    z-index: -1;
    transition: all 0.3s;
    border-radius: 40px;
  }
  .header__contact a:hover {
    opacity: 1;
    color: #fff;
  }
  .header__contact a:hover::before {
    transform: translate(-50%, -50%) scale(1.15, 1.15);
  }
}
@media screen and (max-width: 1000px) {
  .header__contact a {
    background: #20AC42;
    padding: 16px;
    width: 100%;
    border-radius: 0;
  }
}

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

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
kv----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.kv {
  padding: 248px 0 160px;
}
@media screen and (max-width: 1000px) {
  .kv {
    padding: 200px 0 80px;
  }
}
@media screen and (max-width: 500px) {
  .kv {
    padding: 128px 0 80px;
  }
}

.kv_head__caption {
  display: block;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(3.4rem, 5.1612903226vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #333333;
  text-transform: uppercase;
}

.kv_head__lead {
  margin-top: 16px;
  display: block;
  font-family: "Shippori Mincho B1", "游ゴシック", 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);
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .kv_head__lead {
    margin-top: 14px;
  }
}

/*================================================
kv----END
==================================================*/
.footer_block {
  margin-top: 240px;
}
@media screen and (max-width: 1000px) {
  .footer_block {
    margin-top: 160px;
  }
}

.footer_area {
  padding: 80px 0 48px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .footer_area {
    padding: 56px 0 26px;
  }
  .footer_area .container {
    padding: 0;
  }
}

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

@media screen and (max-width: 1000px) {
  .footer_comp {
    margin-top: 48px;
  }
}
.footer_logo {
  max-width: 231px;
}
@media screen and (max-width: 1000px) {
  .footer_logo {
    margin: auto;
  }
}

.footer_address {
  margin-top: 24px;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .footer_address {
    text-align: center;
  }
}

.footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .footer_nav ul {
    flex-direction: column;
    gap: 40px 80px;
    align-items: flex-start;
    height: 252px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1400px) {
  .footer_nav ul {
    gap: 40px 56px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .footer_nav ul {
    height: 240px;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav ul {
    border-top: 1px solid #DEDCD8;
  }
}
.footer_nav li {
  box-sizing: border-box;
  line-height: initial;
}
@media screen and (max-width: 1000px) {
  .footer_nav li {
    width: 50%;
    border-bottom: 1px solid #DEDCD8;
  }
  .footer_nav li:nth-child(even) {
    border-left: 1px solid #DEDCD8;
  }
  .footer_nav li:nth-child(odd):last-child {
    width: 100%;
    border-left: 1px solid #DEDCD8;
  }
}
.footer_nav a {
  display: block;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  box-sizing: border-box;
  line-height: 1.8;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .footer_nav a {
    padding: 16px 5px;
    line-height: 1.5;
    text-align: center;
  }
}
.footer_nav a:hover {
  opacity: 1;
  color: #20AC42;
}
@media screen and (min-width: 1001px) {
  .footer_nav .sub-menu {
    display: block;
    padding-left: 10px;
    margin-top: 8px;
    height: initial;
  }
  .footer_nav .sub-menu li {
    line-height: normal;
  }
  .footer_nav .sub-menu li + li {
    margin-top: 6px;
  }
  .footer_nav .sub-menu a {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #333333;
  }
  .footer_nav .sub-menu a::before {
    position: absolute;
    content: "-";
    top: 0;
    left: 0;
  }
  .footer_nav .sub-menu a:hover {
    opacity: 1;
    color: #20AC42;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav .sub-menu {
    display: none !important;
  }
}

@media screen and (min-width: 1001px) {
  @-moz-document url-prefix() {
    .footer_nav ul {
      width: 600px;
    }
    .footer_nav ul .sub-menu {
      width: initial;
    }
  }
}
.footer_blank {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .footer_blank {
    margin-top: 72px;
    justify-content: center;
  }
}

.footer_blank__logo {
  max-width: 40px;
}

.footer_copy {
  margin-top: 24px;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .footer_copy {
    font-weight: 400;
    text-align: center;
  }
}
@media screen and (max-width: 370px) {
  .footer_copy {
    font-size: 1.5rem;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
cta----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.cta {
  padding: 120px 0;
  background: url(../images/cta/back_cta.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .cta {
    padding: 80px 48px 96px;
  }
}
@media screen and (max-width: 500px) {
  .cta {
    background: url(../images/cta/back_cta_sp.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
}

.cta_area {
  max-width: 920px;
  margin: auto;
}

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

.cta_head__caption {
  display: block;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(3.4rem, 5.1612903226vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.cta_head__headline {
  display: block;
  margin-top: 16px;
  font-family: "Shippori Mincho B1", "游ゴシック", 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);
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .cta_head__headline {
    margin-top: 8px;
  }
}

.cta_readline {
  display: block;
  margin-top: 64px;
  font-family: "Shippori Mincho B1", "游ゴシック", 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.4516129032vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: -0.05em;
  color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .cta_readline {
    margin-top: 50px;
  }
  .cta_readline br {
    display: block;
  }
}

.cta_links {
  background: #fff;
  padding: 56px;
  max-width: 514px;
  width: 100%;
  margin-top: 26px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .cta_links {
    padding: 40px 24px 48px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .cta_links {
    width: 460px;
  }
}

.cta_link {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .cta_link {
    gap: 16px;
  }
}
@media screen and (max-width: 500px) {
  .cta_link {
    border-bottom: solid 1px #DEDCD8;
    padding-bottom: 24px;
  }
}

.cta_img {
  overflow: hidden;
  max-width: 128px;
}
.cta_img img {
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .cta_img {
    display: none;
  }
}

.cta_link__txt {
  font-family: "Shippori Mincho B1", "游ゴシック", 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.4516129032vw, 1.8rem);
  line-height: 1.8;
  color: #333333;
}

.cta_wrap + .cta_wrap {
  margin-top: 32px;
  padding-top: 32px;
  border-top: solid 1px #DEDCD8;
}
@media screen and (max-width: 1000px) {
  .cta_wrap + .cta_wrap {
    margin-top: 24px;
    padding-top: 24px;
  }
}
@media screen and (max-width: 500px) {
  .cta_wrap + .cta_wrap {
    margin-top: 0px;
    border-top: none;
  }
}

.cta_link__arrow {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  aspect-ratio: 27/14;
  width: 27px;
  height: auto;
  display: block;
  overflow: hidden;
}
.cta_link__arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.cta_link__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.cta_link__arrow svg:last-of-type {
  left: -150%;
}
@media screen and (max-width: 500px) {
  .cta_link__arrow {
    top: 0;
    transform: translateY(50%);
  }
}

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

/*================================================
cta----END
==================================================*/
.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: 400;
  font-weight: 300;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form {
    padding: 80px 100px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form {
    padding: 38px 40px;
  }
}
@media screen and (max-width: 500px) {
  .mw_wp_form {
    padding: 38px 20px;
  }
}
.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%;
  }
}
.mw_wp_form th {
  position: relative;
  font-weight: 300;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form th {
    width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form th {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
  }
}
.mw_wp_form th > span {
  position: absolute;
  display: block;
  height: auto;
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
}
@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: 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: 400;
  font-weight: 300;
}
@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%;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 300;
}
.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: 300;
  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: 400;
  font-size: clamp(1.2rem, 1.2903225806vw, 1.6rem);
  font-weight: 300;
}
.mw_wp_form .error {
  display: block;
  font-size: 1.5rem;
  padding: 0.5em;
  box-sizing: border-box;
  background-color: pink;
  margin-top: 8px;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form.mw_wp_form_input th,
  .mw_wp_form.mw_wp_form_input td {
    padding-bottom: 40px;
  }
  .mw_wp_form.mw_wp_form_input th {
    line-height: 57px;
  }
  .mw_wp_form.mw_wp_form_input th > span {
    top: 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;
  font-weight: 300;
}
@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;
  font-weight: 300;
}
@media screen and (min-width: 1001px) {
  .mwform-radio-field-text {
    line-height: 57px;
  }
}
@media screen and (max-width: 1000px) {
  .mwform-radio-field-text {
    line-height: 32px;
  }
}
.mwform-radio-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.mwform-radio-field-text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 8px;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  width: 16px;
  background-color: #C50000;
  border-radius: 50%;
  opacity: 0;
}

.file-text {
  display: inline-block;
  font-size: clamp(1.1rem, 1.2903225806vw, 1.6rem);
  word-break: auto-phrase;
}
@media screen and (min-width: 1001px) {
  .file-text {
    padding-top: 13px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 1000px) {
  .file-text {
    line-height: 1.3;
  }
}

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

.form-agree {
  margin-top: clamp(20px, 2.5vw, 40px);
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
  font-weight: 300;
}
.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: clamp(20px, 1.6875vw, 27px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.form-wrap input[type=checkbox] + .mwform-checkbox-field-text {
  margin-right: 0;
}

.form-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-top: clamp(48px, 3.5vw, 56px);
}
.form-btns a,
.form-btns [type=submit] {
  cursor: pointer;
  transition-property: all;
  display: inline-block;
  text-align: left;
  width: 240px;
  line-height: 54px;
  border-radius: 40px;
  border: solid 1px #DEDCD8;
  padding: 0;
  cursor: pointer;
  font-weight: bold;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #333;
  background: url("../images/common/contact_arrow.png");
  background-color: #fff;
  background-position: center right 16px;
  background-size: 22px;
  background-repeat: no-repeat;
  transition: all 0.3s;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0 20px;
  font-family: "Shippori Mincho B1", "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-feature-settings: "palt";
  font-weight: 500;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 1001px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 500px) {
  .form-btns a,
  .form-btns [type=submit] {
    width: 200px;
    line-height: 46px;
    background-size: 18px;
    background-position: center right 14px;
  }
}
.form-btns a:hover,
.form-btns [type=submit]:hover {
  background-color: #FBF0D9;
}

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

.mwform-radio-field-text::before {
  width: 14px;
}

.mwform-radio-field-text::after {
  width: 6px;
  left: 4px;
}

.mwform-radio-field-text {
  padding-left: 24px;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}

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

@media screen and (max-width: 1000px) {
  .mw_wp_form tr + tr {
    padding-top: 32px;
  }
}
/* page */
.mv {
  margin-top: 128px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .mv {
    margin-top: 124px;
  }
}
@media screen and (max-width: 1000px) {
  .mv {
    margin-top: 77px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .mv img {
    height: 480px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 500px) {
  .mv {
    margin-top: 72px;
  }
}

.mv_headline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  writing-mode: vertical-rl;
  gap: 26px;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 1000px) {
  .mv_headline {
    gap: 16px;
  }
}

.mv_slider.a_img {
  filter: blur(40px);
  transition: all 2s;
}

.mv_slider.a_img.cs_ac {
  transition-delay: 1.2s;
}

.mv_headline.bluer_class {
  filter: blur(30px);
  transition: all 1s;
}

.mv_headline.bluer_class.cs_ac {
  transition-delay: 0.1s;
}

.mv_headline__inner {
  font-family: "Shippori Mincho B1", "游ゴシック", 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.7096774194vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0.15em;
  color: #333333;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv_headline__inner {
    font-size: 3.2rem;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main_catch----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main_catch {
  position: relative;
  padding: 80px 0 68px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.main_catch__headline {
  font-family: "Shippori Mincho B1", "游ゴシック", 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.4516129032vw, 1.8rem);
  line-height: 1.6;
  text-align: center;
  color: #000000;
  position: relative;
  z-index: 1;
}

.main_catch__point {
  color: #0052A5;
}

.main_catch__slag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(5.8rem, 12.4193548387vw, 15.4rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: #FFFCF5;
  pointer-events: none;
  width: -moz-max-content;
  width: max-content;
}

/*================================================
main_catch----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_cssクラス----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_headline__slag {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(3.4rem, 5.1612903226vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #333333;
}

.home_headline__title {
  margin-top: 16px;
  font-family: "Shippori Mincho B1", "游ゴシック", 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);
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .home_headline__title {
    margin-top: 8px;
  }
}

/*================================================
home_cssクラス----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_about----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_about {
  padding-top: 184px;
}
@media screen and (max-width: 1000px) {
  .home_about {
    padding-top: 72px;
  }
}

.home_about__columns {
  padding-left: 72px;
  max-width: 950px;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .home_about__columns {
    padding-left: 0px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_about__columns {
    max-width: 800px;
  }
}
@media screen and (max-width: 1000px) {
  .home_about__columns {
    display: block;
    padding-left: 0;
  }
}

.home_about__read_flex {
  margin-top: 128px;
  display: flex;
  gap: 46px;
  flex-direction: row-reverse;
}

.home_about__read {
  display: flex;
  flex-direction: column;
  writing-mode: vertical-rl;
  gap: 20px;
  height: -moz-max-content;
  height: max-content;
}

.home_about__read__inner {
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #333333;
  letter-spacing: 0.15em;
}

.lower_btn--home_about {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 104px;
}
@media screen and (max-width: 1000px) {
  .lower_btn--home_about {
    margin-top: 40px;
    text-align: left;
  }
}

.home_about__back {
  margin-top: -253px;
}
@media screen and (min-width: 501px) {
  .home_about__back {
    background: url(../images/home/img_home_about1.webp);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 464px;
  }
}
@media screen and (max-width: 1000px) {
  .home_about__back {
    margin-top: 64px;
    height: 370px;
  }
}

@media screen and (max-width: 1000px) {
  .home_about__txt {
    margin-top: 48px;
  }
}
.home_about__read_sp {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2;
  color: #333333;
}
.home_about__read_sp br {
  display: block;
}

.home_readline {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.4rem, 2.2580645161vw, 2.8rem);
  line-height: 1.8;
  color: #333333;
}

/*================================================
home_about----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_service----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_service {
  padding-top: 152px;
}
@media screen and (max-width: 1000px) {
  .home_service {
    padding-top: 96px;
  }
}

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

.home_service__imgs {
  flex-basis: 50%;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1000px) {
  .home_service__imgs {
    margin-top: 64px;
    max-width: 400px;
    gap: 8px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .home_service__imgs {
    max-width: 460px;
    margin-left: auto;
  }
}

.home_service__imgs__left {
  flex-basis: 54.66%;
}
@media screen and (max-width: 1000px) {
  .home_service__imgs__left {
    flex-basis: 54.94%;
  }
}

.home_service__imgs__right {
  flex: 1;
  margin-top: 210px;
}
@media screen and (max-width: 1000px) {
  .home_service__imgs__right {
    margin-top: 120px;
  }
}

.home_service__img2 {
  max-width: 78.95%;
  margin-left: auto;
  margin-top: 16px;
}
@media screen and (max-width: 1000px) {
  .home_service__img2 {
    margin-top: 8px;
    max-width: 77.59%;
  }
}

.home_service__txt {
  padding-top: 32px;
  flex-basis: 42.66%;
}
@media screen and (max-width: 1000px) {
  .home_service__txt {
    padding-top: 0px;
  }
}

.home_readline--home_service {
  margin: 56px 0 32px;
}
@media screen and (max-width: 1000px) {
  .home_readline--home_service {
    margin: 48px 0 24px;
  }
}

.lower_btn--home_service {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .lower_btn--home_service {
    margin-top: 40px;
  }
}

.home_service__img1,
.home_service__img2,
.home_service__img3 {
  opacity: 0;
  transition: all 1s;
  filter: blur(10px);
}

.home_service__imgs.cs_ac .home_service__img1,
.home_service__imgs.cs_ac .home_service__img2,
.home_service__imgs.cs_ac .home_service__img3 {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.3s;
}
.home_service__imgs.cs_ac .home_service__img2 {
  transition-delay: 0.6s;
}
.home_service__imgs.cs_ac .home_service__img3 {
  transition-delay: 0.9s;
}

/*================================================
home_service----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_works----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_works {
  position: relative;
  margin-top: 240px;
}
@media screen and (max-width: 1000px) {
  .home_works {
    margin-top: 132px;
  }
}
.home_works::before {
  content: "";
  width: 100%;
  height: 168px;
  background: #FBF0D9;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1000px) {
  .home_works::before {
    height: 148px;
  }
}

.home_works__link {
  display: block;
  position: relative;
}

.home_works__back {
  overflow: hidden;
}
.home_works__back img {
  transition: all 0.3s;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .home_works__back img {
    height: 424px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}

.home_works__wrap {
  position: absolute;
  top: -40px;
  left: 0px;
  padding: 0 72px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .home_works__wrap {
    top: -20px;
    padding: 0 40px 0;
    padding-right: 30px;
  }
}
@media screen and (max-width: 500px) {
  .home_works__wrap {
    top: -20px;
  }
}

.home_works__read {
  max-width: 376px;
  margin-top: 32px;
  padding-left: 160px;
  box-sizing: content-box;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .home_works__read {
    padding-left: 80px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_works__read {
    padding-left: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .home_works__read {
    margin-top: 42px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 500px) {
  .home_works__read br {
    display: none;
  }
}

.lower_btn--home_works {
  position: absolute;
  bottom: 56px;
}
@media screen and (min-width: 1001px) {
  .lower_btn--home_works {
    right: 56px;
  }
}
@media screen and (max-width: 1000px) {
  .lower_btn--home_works {
    left: 40px;
    bottom: 40px;
  }
}

.lower_btn__link--home_works {
  display: inline-block;
}

.home_works__link:hover {
  opacity: 1;
}
.home_works__link:hover .home_works__back img {
  transform: scale(1.05, 1.05);
}
.home_works__link:hover .lower_btn__link--home_works {
  background: #FBF0D9;
}
.home_works__link:hover .lower_btn__link--home_works svg:first-of-type {
  left: 150%;
}
.home_works__link:hover .lower_btn__link--home_works svg:last-of-type {
  left: 50%;
}

/*================================================
home_works----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_recruit----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_recruit {
  padding-top: 172px;
  background: #FBF0D9;
}
@media screen and (max-width: 1000px) {
  .home_recruit {
    padding-top: 96px;
  }
}

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

.home_recruit__img {
  flex-basis: 50%;
}

.home_recruit__txt {
  flex-basis: 42.66%;
}

.home_readline--home_recruit {
  margin: 56px 0 32px;
}
@media screen and (max-width: 1000px) {
  .home_readline--home_recruit {
    margin: 48px 0 24px;
  }
}

.banner_area--home_recruit {
  margin-top: 56px;
}
@media screen and (max-width: 1000px) {
  .banner_area--home_recruit {
    margin-top: 40px;
  }
}

.banner_area--home_recruit .banner_area__card:hover {
  background: #fff;
}

.home_recruit__mobile_img {
  margin-top: 64px;
  padding: 0 40px;
}
@media screen and (max-width: 500px) {
  .home_recruit__mobile_img {
    padding: 0 20px;
  }
}

.home_recruit__slider_area {
  overflow: hidden;
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .home_recruit__slider_area {
    margin-top: 48px;
  }
}
@media screen and (max-width: 500px) {
  .home_recruit__slider_area {
    margin-top: 20px;
  }
}

.home_recruit__slider {
  position: relative;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 16px;
  animation: a_home_recruit__slider 40s linear infinite;
}
@media screen and (max-width: 500px) {
  .home_recruit__slider {
    gap: 20px;
    animation: a_home_recruit__slider 40s linear infinite;
  }
}

.home_recruit__slide {
  display: flex;
  gap: 16px;
}

.home_recruit__slide__img {
  max-width: 308px;
}
@media screen and (max-width: 500px) {
  .home_recruit__slide__img {
    max-width: 200px;
  }
}

@keyframes a_home_recruit__slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-33% - 22px));
  }
}
@media screen and (max-width: 500px) {
  @keyframes a_home_recruit__slider {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-33% - 17px));
    }
  }
}
/*================================================
home_recruit----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_company----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_company {
  padding: 178px 0 172px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .home_company {
    padding: 96px 0 130px;
  }
}

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

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

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

/*================================================
home_company----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_sustainability----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_sustainability {
  background: #fff;
}

.home_sustainability__back {
  margin-top: -368px;
}
@media screen and (min-width: 501px) {
  .home_sustainability__back {
    background: url(../images/home/back_sustainability1.webp);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 484px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .home_sustainability__back {
    margin-top: -334px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_sustainability__back {
    margin-top: -320px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .home_sustainability__back {
    margin-top: -268px;
    height: 360px;
  }
}
@media screen and (max-width: 500px) {
  .home_sustainability__back {
    margin-top: -326px;
  }
}

.home_sustainability__wrap {
  margin-left: 45%;
  max-width: 563px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .home_sustainability__wrap {
    margin-left: 43%;
  }
}
@media screen and (max-width: 1000px) {
  .home_sustainability__wrap {
    margin-left: 0;
    padding: 0 40px;
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .home_sustainability__wrap {
    padding: 0 20px;
  }
}

.home_sustainability__inner {
  margin-left: auto;
  margin-top: 32px;
  max-width: 376px;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .home_sustainability__inner {
    max-width: 100%;
    margin-left: 0;
    padding-left: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .home_sustainability__inner {
    margin-top: 44px;
    margin-left: 0;
    max-width: 100%;
  }
}

.lower_btn--home_sustainability {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .lower_btn--home_sustainability {
    margin-top: 64px;
  }
}

/*================================================
home_sustainability----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_news----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_news {
  margin-top: 160px;
}
@media screen and (max-width: 1000px) {
  .home_news {
    margin-top: 96px;
  }
}

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

.home_news__content {
  flex-basis: 65%;
  margin-top: 76px;
}
@media screen and (min-width: 1001px) {
  .home_news__content {
    min-height: 234px;
  }
}
@media screen and (max-width: 1000px) {
  .home_news__content {
    margin-top: 68px;
  }
}

@media screen and (min-width: 1001px) {
  .lower_btn--home_news {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .lower_btn--home_news {
    margin-top: 64px;
  }
}

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

.home_news__flex {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 1000px) {
  .home_news__flex {
    margin-bottom: 6px;
  }
}

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

.home_news__time {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
  color: #333333;
}

.home_news__cat {
  width: 168px;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  color: #FFFFFF;
  border-radius: 40px;
  padding: 6px 5px;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .home_news__cat {
    width: 138px;
    padding: 7px 5px;
  }
}

.home_news__caption {
  position: relative;
  font-weight: 300;
  font-style: normal;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  padding-right: 48px;
}
@media screen and (max-width: 1000px) {
  .home_news__caption {
    -webkit-line-clamp: 2;
  }
}

.home_news__caption__arrow {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  aspect-ratio: 27/14;
  width: 27px;
  height: auto;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .home_news__caption__arrow {
    right: 14px;
    aspect-ratio: 19/12;
    width: 19px;
  }
}
.home_news__caption__arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .home_news__caption__arrow svg {
    width: 19px;
  }
}
.home_news__caption__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.home_news__caption__arrow svg:last-of-type {
  left: -150%;
}

.home_news__link:hover {
  opacity: 1;
}
.home_news__link:hover::before {
  width: 100%;
}
.home_news__link:hover svg:first-of-type {
  left: 150%;
}
.home_news__link:hover svg:last-of-type {
  left: 50%;
}

/*================================================
home_news----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
汎用クラス----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.columns_swap {
  flex-direction: row-reverse;
}

.lower__readline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.4rem, 2.2580645161vw, 2.8rem);
  line-height: 1.8;
  color: #333333;
}

.lower__subline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 1.4;
  color: #333333;
}

.lower_borderline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 1.6;
  color: #333;
  border-bottom: solid 1px #DEDCD8;
  padding-bottom: 24px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .lower_borderline {
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
}

.lower_visual {
  position: relative;
}

@media screen and (max-width: 1000px) {
  .lower_visual__img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .lower_visual__img {
    height: 180px;
  }
}

@media screen and (max-width: 500px) {
  .lower_visual__img.lower_visual__img {
    -o-object-position: 25% center;
       object-position: 25% center;
  }
}
.lower_visual__title {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(3rem, 3.2258064516vw, 4rem);
  text-align: center;
  color: #FFFFFF;
  width: 100%;
}

.lower_btn__link {
  position: relative;
  width: 240px;
  padding: 15px 32px;
  box-sizing: border-box;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #fff;
  border-radius: 40px;
  text-align: left;
  border: solid 1px #DEDCD8;
  font-weight: 500;
  text-align: center;
  color: #333333;
  transition: all 0.3s;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .lower_btn__link {
    width: 200px;
    padding: 12px 24px;
  }
}

.lower_btn_arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  aspect-ratio: 23/14;
  width: 23px;
  height: auto;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .lower_btn_arrow {
    right: 14px;
    aspect-ratio: 19/12;
    width: 19px;
  }
}
.lower_btn_arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .lower_btn_arrow svg {
    width: 19px;
  }
}
.lower_btn_arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.lower_btn_arrow svg:last-of-type {
  left: -150%;
}

.lower_btn__link:hover {
  opacity: 1;
  background: #FBF0D9;
}
.lower_btn__link:hover svg:first-of-type {
  left: 150%;
}
.lower_btn__link:hover svg:last-of-type {
  left: 50%;
}

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

.lower_banner {
  margin-bottom: 160px;
}
@media screen and (max-width: 1000px) {
  .lower_banner {
    margin-bottom: 112px;
  }
}

.lower_banner__link {
  position: relative;
  max-width: 880px;
  margin: auto;
  border: solid 1px #DEDCD8;
  background: #fff;
  border-radius: 10px;
  width: 100%;
  display: flex;
  padding: 40px;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .lower_banner__link {
    max-width: 560px;
    gap: 32px;
    padding: 32px;
    padding-right: 64px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 501px) {
  .lower_banner__link br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .lower_banner__link {
    display: block;
    padding: 32px 20px 56px;
  }
}

.lower_banner__ico {
  max-width: 96px;
}
@media screen and (max-width: 500px) {
  .lower_banner__ico {
    margin: auto;
    margin-bottom: 32px;
  }
}

.lower_banner__headline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.8;
  color: #333333;
}

.lower_banner_arrow {
  position: absolute;
  right: 40px;
  aspect-ratio: 45/27;
  width: 45px;
  height: auto;
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 501px) {
  .lower_banner_arrow {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1000px) {
  .lower_banner_arrow {
    right: 20px;
    width: 32px;
  }
}
@media screen and (max-width: 500px) {
  .lower_banner_arrow {
    bottom: 24px;
  }
}
.lower_banner_arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .lower_banner_arrow svg {
    width: 32px;
  }
}
.lower_banner_arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.lower_banner_arrow svg:last-of-type {
  left: -150%;
}

.lower_banner__link:hover {
  opacity: 1;
  background: #FBF0D9;
}
.lower_banner__link:hover svg:first-of-type {
  left: 150%;
}
.lower_banner__link:hover svg:last-of-type {
  left: 50%;
}

@media screen and (min-width: 1001px) {
  .pc_only {
    display: block;
  }
  .mobile_only {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .pc_only {
    display: none !important;
  }
  .mobile_only {
    display: block;
  }
}
@media screen and (min-width: 501px) {
  .pc_only2 {
    display: block;
  }
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .pc_only2 {
    display: none !important;
  }
  .sp_only {
    display: block;
  }
}
/*================================================
汎用クラス----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
table_wrap----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.table_wrap {
  max-width: 880px;
  margin: auto;
}
.table_wrap th,
.table_wrap td {
  padding: 32px 24px;
  line-height: 1.8;
  border: none;
  border-bottom: solid 1px #DEDCD8;
}
.table_wrap th {
  border-bottom: solid 1px #333;
  width: 184px;
}
@media screen and (max-width: 1000px) {
  .table_wrap th,
  .table_wrap td {
    width: 100%;
    padding: 24px;
    border: none;
  }
  .table_wrap td {
    padding-top: 8px;
  }
  .table_wrap th {
    border-top: solid 1px #DEDCD8;
    padding-bottom: 0;
  }
  .table_wrap tr:last-of-type td {
    border-bottom: solid 1px #DEDCD8;
  }
}

/*================================================
table_wrap----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
page_menu----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.page_menu {
  margin: 120px 0;
}
@media screen and (max-width: 1000px) {
  .page_menu {
    margin: 96px 0;
  }
}

.page_menu__list {
  display: flex;
  justify-content: center;
  border-bottom: solid 1px #DEDCD8;
}

.page_menu__link {
  position: relative;
  display: block;
  width: 180px;
  padding-bottom: 24px;
  font-family: "Shippori Mincho B1", "游ゴシック", 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.4516129032vw, 1.8rem);
  line-height: 1.8;
  color: #333333;
  opacity: 0.3;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .page_menu__link {
    width: 160px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 500px) {
  .page_menu__link {
    width: 90px;
    font-size: 1.3rem;
  }
}

.page_menu__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: #20AC42;
  transition: all 0.3s;
}

.page_menu__link:hover,
.page_menu__link.active {
  opacity: 1;
}
.page_menu__link:hover::before,
.page_menu__link.active::before {
  width: 100%;
}

/*================================================
page_menu----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
動き----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.vaguely_light {
  position: relative;
  z-index: -1;
  opacity: 0;
  transition: all 1s;
}

.vaguely_light.cs_ac {
  opacity: 1;
  transition-delay: 0.3s;
}

.vaguely_light--main {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  transform: translate(50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 62, 0.2) 0%, rgba(255, 181, 62, 0) 100%);
  aspect-ratio: 1/1;
  height: auto;
  width: 433px;
  z-index: -1;
  animation: a_vaguely_light 8s infinite alternate;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .vaguely_light--main {
    transform: translate(0%, -50%);
  }
}
@media screen and (max-width: 1000px) {
  .vaguely_light--main {
    transform: translate(0%, -50%);
    width: 300px;
  }
}
@media screen and (max-width: 500px) {
  .vaguely_light--main {
    width: 200px;
  }
}

@keyframes a_vaguely_light {
  from {
    scale: 0.7;
  }
  to {
    scale: 1;
  }
}
.bluer_class {
  filter: blur(10px);
  opacity: 0;
  transition: all 1s;
}

.bluer_class.cs_ac {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.3s;
}

.a_img {
  filter: blur(20px);
  opacity: 0;
  transition: all 1s;
}

.a_img.cs_ac {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.3s;
}

/*================================================
動き----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 h2 {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  margin-bottom: 24px;
}

.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;
  border: 1px solid #DEDCD8;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  line-height: 1.8;
  text-align: center;
  border-radius: 40px;
}
.contact_block__tab.active {
  color: #333;
  background: #DEDCD8;
}
@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: #DEDCD8;
}
@media screen and (min-width: 1001px) {
  .contact_block__line {
    width: 72px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__line {
    width: 20px;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about__top----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.about_top__wrap {
  max-width: 966px;
  margin: auto;
}

@media screen and (min-width: 1401px) {
  .about_top .vaguely_light--main {
    transform: translate(90%, -50%);
  }
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .about_top .vaguely_light--main {
    transform: translate(-40%, -55%);
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .about_top .vaguely_light--main {
    transform: translate(55%, -55%);
  }
}
.about_top__columns {
  display: flex;
  justify-content: space-between;
}

.about_top__read {
  max-width: 736px;
  padding-top: 192px;
}

.about_top__headline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  letter-spacing: 0.1em;
  line-height: 1.1;
  height: -moz-max-content;
  height: max-content;
  writing-mode: vertical-rl;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.4rem, 2.2580645161vw, 2.8rem);
  color: #333;
}

/*------------------------------------------------
----SP
------------------------------------------------*/
@media screen and (max-width: 1000px) {
  .about_top__columns {
    display: block;
  }
  .about_top__read {
    padding-top: 40px;
  }
  .about_top__headline {
    margin: auto;
    gap: 16px;
  }
}
/*================================================
about__top----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about_catch----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.about_catch {
  position: relative;
  padding: 144px 0;
}

.about_catch__readline {
  position: relative;
  z-index: -1;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(7.2rem, 12.4193548387vw, 15.4rem);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.05em;
  color: #FBF0D9;
}

.about_catch__img {
  max-width: 826px;
  margin: auto;
  margin-top: -76px;
}

.about_contents__wrap + .about_contents__wrap {
  margin-top: 144px;
}

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

.about_contents__img {
  flex-basis: 48.57%;
}

.about_contents__content {
  flex-basis: 45.71%;
}
.about_contents__content .vaguely_light--main {
  transform: translate(-50%, -50%);
}

.lower__readline--about_contents {
  margin-bottom: 32px;
}

/*------------------------------------------------
about_catch----SP
------------------------------------------------*/
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .about_catch__readline {
    font-size: 12rem;
  }
  .about_catch__img {
    margin-top: -50px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .about_catch__readline {
    font-size: 9rem;
  }
  .about_contents__columns {
    align-items: flex-start;
  }
}
@media screen and (max-width: 1000px) {
  .about_catch {
    padding: 96px 0;
  }
  .about_catch__readline {
    font-size: 8rem;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .about_catch__readline {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1000px) {
  .about_catch__img {
    max-width: 726px;
    margin-top: -30px;
  }
  .about_contents__wrap + .about_contents__wrap {
    margin-top: 80px;
  }
  .about_contents__columns {
    display: block;
  }
  .about_contents__content {
    margin-top: 40px;
  }
  .lower__readline--about_contents {
    margin-bottom: 24px;
  }
}
/*================================================
about_catch----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about_banner----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.about_banner {
  margin-top: 200px;
}

.about_banner__columns {
  display: flex;
  gap: 32px;
}

.about_banner__link {
  display: block;
  position: relative;
  overflow: hidden;
}

.about_banner__wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 56px;
}

.about_banner__slag {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #333333;
}

.about_banner__title {
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #333333;
}

.about_banner__img {
  transition: all 0.6s;
}

.about_banner__link:hover {
  opacity: 1;
}
.about_banner__link:hover .about_banner__img {
  transform: scale(1.1, 1.1);
}

/*------------------------------------------------
about_banner----SP
------------------------------------------------*/
@media screen and (max-width: 1000px) {
  .about_banner {
    margin-top: 180px;
  }
  .about_banner__columns {
    display: block;
  }
  .about_banner__link + .about_banner__link {
    margin-top: 32px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .about_banner__img {
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1000px) {
  .about_banner__wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 56px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .about_banner__wrap {
    left: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .about_banner__slag {
    font-weight: 500;
    font-size: clamp(3.2rem, 3.8709677419vw, 4.8rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: #333333;
  }
  .about_banner__title {
    margin-top: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
    color: #333333;
  }
}
/*================================================
about_banner----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
service----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.service__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 104px 64px;
}

.service__card__title {
  margin: 40px 0 32px;
}

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

/*------------------------------------------------
service----SP
------------------------------------------------*/
@media screen and (max-width: 1000px) {
  .service__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 32px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .service__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 56px;
  }
}
@media screen and (max-width: 1000px) {
  .service__card__title {
    margin: 32px 0 24px;
  }
  .lower_btn--service {
    margin-top: 32px;
  }
}
/*================================================
service----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
service_detail----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.service_detail__top {
  padding-top: 120px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .service_detail__top {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .service_detail__top {
    display: block;
    padding-top: 96px;
  }
}
.service_detail__top .vaguely_light--main {
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .service_detail__top .vaguely_light--main {
    transform: translate(-50%, -50%);
  }
}

.service_detail__top__read {
  max-width: 568px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .service_detail__top__read {
    max-width: 100% !important;
  }
}
@media screen and (max-width: 1000px) {
  .service_detail__top__read {
    max-width: 100%;
    margin-top: 32px;
  }
}

.service_detail__columns {
  display: flex;
  justify-content: space-around;
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .service_detail__columns {
    display: block;
  }
}

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

.service_detail__img {
  flex-basis: 40%;
}

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

.service_list__item {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  position: relative;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.6;
  color: #333333;
  padding-left: 24px;
}
@media screen and (max-width: 1000px) {
  .service_list__item {
    padding-left: 20px;
  }
}

.service_list__item::before {
  content: "・";
  color: #0052A5;
  position: absolute;
  left: 0;
}

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

.service_table {
  padding: 80px 0px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .service_table {
    padding: 72px 40px;
  }
}
@media screen and (max-width: 500px) {
  .service_table {
    padding: 72px 20px;
  }
}

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

/*================================================
service_detail----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
outsourcing----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.outsourcing_content {
  margin: 120px 0 160px;
}
@media screen and (max-width: 1000px) {
  .outsourcing_content {
    margin: 96px 0 112px;
  }
}

.outsourcing_below {
  padding: 120px 0 72px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .outsourcing_below {
    padding: 96px 0 64px;
  }
}

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

.outsourcing_below__img {
  flex-basis: 56.33%;
}
@media screen and (max-width: 1000px) {
  .outsourcing_below__img {
    margin-bottom: 24px;
  }
}

.lower__readline--outsourcing_below {
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .lower__readline--outsourcing_below {
    margin-bottom: 40px;
  }
}

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

/*================================================
outsourcing----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
security----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.security_content {
  margin: 120px 0 160px;
}
@media screen and (max-width: 1000px) {
  .security_content {
    margin: 96px 0 112px;
  }
}

.security_strength {
  padding: 120px 0;
  background: #FBF0D9;
}
@media screen and (max-width: 1000px) {
  .security_strength {
    padding: 96px 0;
  }
}

@media screen and (min-width: 1001px) {
  .table_wrap--security.table_wrap th {
    width: 216px;
  }
}
@media screen and (min-width: 1401px) {
  .service_detail__top__read--security {
    max-width: 100%;
  }
}

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

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

.security_strength__card {
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .security_strength__card {
    padding: 32px;
  }
}
@media screen and (max-width: 500px) {
  .security_strength__card {
    padding: 32px 20px;
  }
}

.security_strength__ico {
  max-width: 128px;
  margin: auto;
}

.security_strength__headline {
  margin: 24px 0 16px;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.4;
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .security_strength__headline {
    margin: 16px 0 8px;
  }
}
@media screen and (max-width: 500px) {
  .security_strength__headline .ig {
    display: block;
  }
}

.lower_banner--security {
  margin: 160px 0;
}
@media screen and (max-width: 1000px) {
  .lower_banner--security {
    margin: 112px 0;
  }
}

/*================================================
security----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
maintenance----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.maintenance__columns_wrap1 {
  margin: 120px 0 64px;
}
@media screen and (max-width: 1000px) {
  .maintenance__columns_wrap1 {
    margin: 96px 0 80px;
  }
}

@media screen and (min-width: 1401px) {
  .service_detail__top__read--maintenance {
    max-width: 596px;
  }
}
.maintenance_hospitality {
  padding: 80px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .maintenance_hospitality {
    padding: 72px 40px;
  }
}
@media screen and (max-width: 500px) {
  .maintenance_hospitality {
    padding: 72px 20px;
  }
}

.lower__readline--maintenance_hospitality {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .lower__readline--maintenance_hospitality {
    margin-bottom: 48px;
    text-align: left;
  }
}

.maintenance_hospitality__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  .maintenance_hospitality__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.maintenance_hospitality__read {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .maintenance_hospitality__read {
    margin-top: 8px;
  }
}

.maintenance__columns_wrap2 {
  margin: 80px 0 160px;
}
@media screen and (max-width: 1000px) {
  .maintenance__columns_wrap2 {
    margin: 72px 0 112px;
  }
}

.maintenance_below {
  padding: 80px 72px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .maintenance_below {
    padding: 72px 40px;
  }
}
@media screen and (max-width: 500px) {
  .maintenance_below {
    padding: 72px 20px;
  }
}

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

.maintenance_below__img {
  flex-basis: 45.38%;
}

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

.maintenance_below__subline {
  margin-top: 56px;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .maintenance_below__subline {
    margin-top: 48px;
    text-align: left;
  }
}

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

/*================================================
maintenance----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
staffing----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
@media screen and (min-width: 1001px) {
  .service_detail__top__read--staffing {
    max-width: 680px;
  }
}
.staffing_columns_wrap {
  margin: 120px 0;
  padding: 80px 0;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .staffing_columns_wrap {
    margin: 96px 0;
    padding: 72px 0;
  }
}

.staffing_columns {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1040px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .staffing_columns {
    display: block;
  }
}

.staffing_columns__img {
  flex-basis: 45.38%;
}

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

.lower__readline--staffing_columns_wrap {
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .lower__readline--staffing_columns_wrap {
    margin-bottom: 40px;
  }
}

.staffing_columns__block {
  position: relative;
  padding-left: 24px;
}
@media screen and (max-width: 1000px) {
  .staffing_columns__block {
    padding-left: 20px;
  }
}

.staffing_columns__block::before {
  position: absolute;
  left: 0;
  content: "・";
  color: #0052A5;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.4;
  color: #333333;
}

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

.staffing_columns__subline {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.4;
  color: #333333;
  margin-bottom: 16px;
}
@media screen and (max-width: 1000px) {
  .staffing_columns__subline {
    margin-bottom: 8px;
  }
}

.staffing_search .container {
  padding-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  .staffing_search .container {
    padding-bottom: 96px;
  }
}
@media screen and (max-width: 1350px) {
  .staffing_search .container {
    overflow: hidden !important;
    max-width: 100%;
  }
}

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

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

.staffing_search__circles {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  align-items: center;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .staffing_search__circles {
    gap: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .staffing_search__circles {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 500px;
    margin: auto;
    margin-top: 64px;
  }
}

.staffing_search__circle {
  position: relative;
  width: 268px;
  height: 268px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .staffing_search__circle {
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 1200px) {
  .staffing_search__circle {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .staffing_search__circle {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
  }
}

.staffing_search__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  width: 380px;
  height: auto;
  background: radial-gradient(50% 50% at 50% 50%, rgba(32, 172, 66, 0.3) 30%, rgba(32, 172, 66, 0) 100%);
  z-index: -1;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .staffing_search__circle::before {
    width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .staffing_search__circle::before {
    width: 340px;
  }
}
@media screen and (max-width: 500px) {
  .staffing_search__circle::before {
    width: 240px;
  }
}

.staffing_search__catch {
  font-weight: 500;
  font-size: clamp(1.4rem, 1.4516129032vw, 1.8rem);
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.05em;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .staffing_search__catch br {
    display: block;
  }
}

.staffing_search__ico {
  max-width: 90px;
  margin: 0 auto;
  margin-top: 16px;
}
@media screen and (max-width: 500px) {
  .staffing_search__ico {
    max-width: 72px;
    margin-top: 8px;
  }
}

.table_wrap--staffing th {
  width: 256px;
}
@media screen and (max-width: 1000px) {
  .table_wrap--staffing th {
    width: 100%;
  }
}

.staffing_links {
  margin: 160px 0 200px;
}
@media screen and (max-width: 1000px) {
  .staffing_links {
    margin: 112px 0 160px;
  }
}
.staffing_links .lower_banner {
  margin: 0;
}
@media screen and (min-width: 1001px) {
  .staffing_links .lower_banner__link {
    max-width: 100%;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .staffing_links .lower_banner__link {
    gap: 24px;
  }
  .staffing_links .lower_banner_arrow {
    right: 16px;
  }
}

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

.service_table__add {
  max-width: 880px;
  margin: auto;
  margin-top: 80px;
}

.service_table_wrap {
  position: relative;
  padding-left: 24px;
}
@media screen and (max-width: 1000px) {
  .service_table_wrap {
    padding-left: 20px;
  }
}

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

.service_table__headline {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.6;
  color: #333333;
}

.service_table_wrap::before {
  content: "・";
  color: #0052A5;
  position: absolute;
  left: 0;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.6;
}

.service_table__read {
  margin-top: 16px;
}
@media screen and (max-width: 1000px) {
  .service_table__read {
    margin-top: 14px;
  }
}

.service_table__read__inner {
  position: relative;
  display: inline-block;
  padding-left: 8px;
}

.service_table__read__inner::before {
  content: "-";
  position: absolute;
  left: 0;
}

.swipe_style {
  margin: 16px 0 32px;
}

.swipe_style table td,
.swipe_style table th {
  background: #FFFCF5;
  padding: 16px 8px;
  border: solid 2px #fff;
  text-align: center;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 300;
  width: auto;
  min-width: 110px;
  box-sizing: border-box;
}
.swipe_style table th {
  background: #FBF0D9;
}

/*================================================
staffing----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
introduction----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.service_detail__top--introduction {
  padding-bottom: 160px;
}
@media screen and (max-width: 1000px) {
  .service_detail__top--introduction {
    padding-bottom: 112px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .service_detail__top--introduction br {
    display: none;
  }
  .service_detail__top--introduction br.ig {
    display: block;
  }
}

.service_detail__top--security {
  flex-direction: column;
}

.introduction__area {
  padding: 80px 0;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .introduction__area {
    padding: 72px 0;
  }
}

.introduction_img {
  position: relative;
  z-index: 1;
  max-width: 821px;
  margin: auto;
}

.introduction__headline {
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(6.2rem, 12.4193548387vw, 15.4rem);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.05em;
  color: #FBF0D9;
  margin-top: -120px;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .introduction__headline {
    font-size: 10rem;
    margin-top: -110px;
  }
}
@media screen and (max-width: 1000px) {
  .introduction__headline {
    font-size: 8rem;
    margin-top: -90px;
  }
}
@media screen and (max-width: 500px) {
  .introduction__headline {
    font-size: 4rem;
    margin-top: 0px;
  }
}

.introduction_flow {
  max-width: 758px;
  margin: auto;
  margin-top: 80px;
  padding: 48px;
  background: #FFFCF5;
}
.introduction_flow a {
  text-decoration: underline;
}
@media screen and (max-width: 1000px) {
  .introduction_flow {
    max-width: 100%;
    margin-top: 64px;
    padding: 40px;
  }
}
@media screen and (max-width: 500px) {
  .introduction_flow {
    padding: 40px 20px;
  }
}

.introduction_flow__subline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1;
  text-align: center;
  color: #333333;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .introduction_flow__subline {
    margin-bottom: 32px;
  }
}

.introduction_flow__block {
  padding: 32px;
  background: #fff;
  border: solid 1px #DEDCD8;
}
@media screen and (max-width: 1000px) {
  .introduction_flow__block {
    padding: 24px;
  }
}
@media screen and (max-width: 500px) {
  .introduction_flow__block {
    padding: 24px 20px;
  }
}

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

.introduction_flow__readline {
  display: flex;
  gap: 16px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 1.4;
  color: #333333;
  margin-bottom: 8px;
}
@media screen and (max-width: 1000px) {
  .introduction_flow__readline {
    gap: 12px;
  }
}

.introduction_flow__num {
  color: #0052A5;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
}

.introduction_flow__read {
  line-height: 1.8;
}

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

.service_table__wrap {
  padding: 0 160px;
}
@media screen and (max-width: 1000px) {
  .service_table__wrap {
    padding: 0 0px;
  }
}

/*================================================
introduction----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
archive works----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.works__top_txt {
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .works__top_txt {
    margin-bottom: 72px;
  }
}

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

.works_card__link {
  display: block;
}

.works_card__pic {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.works_card__pic img {
  transition: all 0.6s;
  aspect-ratio: 380/254;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.works_card__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 104px;
  border-radius: 0px 10px 0px 0px;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #FFFFFF;
  text-align: center;
  box-sizing: border-box;
}

.works_card__lead {
  margin-top: 16px;
  display: block;
  font-family: "Shippori Mincho B1";
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.4;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .works_card__lead {
    margin-top: 8px;
  }
}

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

/*================================================
archive works----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
single works----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.work__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .work__columns {
    display: block;
  }
}

.work__imgs {
  flex-basis: 45.33%;
  max-width: 45.33%;
}
@media screen and (max-width: 1000px) {
  .work__imgs {
    max-width: 100%;
  }
}

.work__slider {
  background: #fff;
  margin-bottom: 16px;
}
.work__slider img {
  aspect-ratio: 544/364;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 500px) {
  .work__slider {
    margin-bottom: 8px;
  }
}

.work__nav {
  margin: 0 -6px;
}
@media screen and (max-width: 500px) {
  .work__nav {
    margin: 0 -6px;
  }
}
.work__nav .slick-slide {
  background: #fff;
  margin: 0 4px;
}
@media screen and (max-width: 500px) {
  .work__nav .slick-slide {
    margin: 0 2px;
  }
}
.work__nav img {
  aspect-ratio: 176/118;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.work__nav .slick-arrow {
  top: 50%;
  transform: translateY(-50%) !important;
  bottom: unset;
  left: unset;
  right: unset;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  transform: none;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .work__nav .slick-arrow {
    width: 20px;
  }
}
.work__nav .slick-arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  background-image: url(../images/common/works_arrow.png);
  background-position: center center;
  background-size: 32px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 500px) {
  .work__nav .slick-arrow::after {
    width: 20px;
    background-size: 20px auto;
  }
}
.work__nav .slick-prev {
  right: -14px;
  left: auto;
  transform: translateY(-50%) rotate(180deg) !important;
}
@media screen and (max-width: 500px) {
  .work__nav .slick-prev {
    right: -8px;
  }
}
.work__nav .slick-next {
  left: -14px;
}
@media screen and (max-width: 500px) {
  .work__nav .slick-next {
    left: -8px;
  }
}

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

.work__leadline {
  margin-bottom: 24px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 1.4;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .work__leadline {
    margin-bottom: 32px;
  }
}

/*================================================
single works----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
service_detail__top--environment----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.service_detail__top--environment {
  padding-bottom: 120px;
  padding-top: 0;
}
@media screen and (max-width: 1000px) {
  .service_detail__top--environment {
    padding-bottom: 96px;
    padding-top: 0;
  }
}

.service_detail__top__read--environment {
  max-width: 624px;
}

/*================================================
service_detail__top--environment----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
environment_merit----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.environment__area {
  padding: 120px 0;
  position: relative;
  box-sizing: border-box;
}
.environment__area::before {
  content: "";
  position: absolute;
  background: #fff;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .environment__area {
    padding: 96px 0;
  }
}
@media screen and (max-width: 1400px) {
  .environment__area .container {
    overflow: hidden;
  }
}

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

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

.environment_merit__readline {
  margin: 24px 0 16px;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.8;
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .environment_merit__readline {
    margin: 16px 0 8px;
  }
}

/*================================================
environment_merit----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
environment_request----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.environment_request {
  margin-top: 160px;
}
@media screen and (max-width: 1000px) {
  .environment_request {
    margin-top: 112px;
  }
}

.lower__readline--environment_request {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 500px) {
  .lower__readline--environment_request {
    overflow: hidden;
  }
}

.environment_request__circles {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  align-items: center;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .environment_request__circles {
    gap: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .environment_request__circles {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 500px;
    margin: auto;
    margin-top: 64px;
  }
}

.environment_request__circle {
  position: relative;
  width: 268px;
  height: 268px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .environment_request__circle {
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 1200px) {
  .environment_request__circle {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .environment_request__circle {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
  }
}

.environment_request__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  width: 380px;
  height: auto;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 62, 0.3) 30%, rgba(255, 181, 62, 0) 100%);
  z-index: -1;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .environment_request__circle::before {
    width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .environment_request__circle::before {
    width: 340px;
  }
}
@media screen and (max-width: 500px) {
  .environment_request__circle::before {
    width: 240px;
  }
}

.environment_request__catch {
  font-weight: 500;
  font-size: clamp(1.4rem, 1.4516129032vw, 1.8rem);
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.05em;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .environment_request__catch br {
    display: block;
  }
}

.environment_request__ico {
  max-width: 90px;
  margin: 0 auto;
  margin-top: 16px;
}
@media screen and (max-width: 500px) {
  .environment_request__ico {
    max-width: 72px;
    margin-top: 8px;
  }
}

.environment_request__read {
  max-width: 880px;
  margin: auto;
  margin-top: 62px;
}
@media screen and (max-width: 1000px) {
  .environment_request__read {
    margin-top: 56px;
  }
}

/*================================================
environment_request----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
environment_important----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.environment_important {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .environment_important {
    margin-top: 96px;
  }
}

@media screen and (max-width: 1000px) {
  .environment_important__img img {
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .environment_important__img img {
    height: 280px;
  }
}
.environment_important__wrap {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 80px 80px 0;
  box-sizing: border-box;
  margin: auto;
  margin-top: -160px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .environment_important__wrap {
    max-width: calc(100% - 80px);
    padding: 64px 40px 0;
    margin-top: -120px;
  }
}
@media screen and (max-width: 500px) {
  .environment_important__wrap {
    max-width: calc(100% - 40px);
    padding: 32px 0px 0;
    margin-top: -40px;
  }
}

.lower__readline--environment_important {
  text-align: center;
  margin-bottom: 32px;
}

.environment_important__pas {
  max-width: 532px;
  margin: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .environment_important__pas {
    max-width: 380px;
  }
}

/*================================================
environment_important----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
banner_area__cards----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.banner_area__cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .banner_area__cards {
    gap: 10px;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
  }
}

.banner_area__card {
  flex-basis: 33.3%;
  position: relative;
  display: flex;
  width: 100%;
  gap: 20px;
  background: #fff;
  padding: 24px;
  align-items: center;
  transition: all 0.3s;
  box-sizing: border-box;
}

.banner_area__img {
  overflow: hidden;
  max-width: 104px;
}
.banner_area__img img {
  transition: all 0.6s;
}

.banner_area__txt {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  color: #333333;
}

.banner_area__card .lower_banner_arrow {
  position: absolute;
  right: 24px;
  aspect-ratio: 27/14;
  width: 27px;
  height: auto;
  display: block;
  overflow: hidden;
  top: 50%;
  transform: translateY(-50%);
}
.banner_area__card .lower_banner_arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.banner_area__card .lower_banner_arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.banner_area__card .lower_banner_arrow svg:last-of-type {
  left: -150%;
}

.banner_area__card:hover {
  opacity: 1;
  background: #FBF0D9;
}
.banner_area__card:hover svg:first-of-type {
  left: 150%;
}
.banner_area__card:hover svg:last-of-type {
  left: 50%;
}
.banner_area__card:hover .banner_area__img img {
  transform: scale(1.1, 1.1);
}

.banner_area--environment {
  margin-top: 200px;
}
@media screen and (max-width: 1000px) {
  .banner_area--environment {
    margin-top: 112px;
  }
}

/*================================================
banner_area__cards----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
infographics----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.infographics__cards {
  display: flex;
  flex-wrap: wrap;
  margin: -24px;
}
@media screen and (max-width: 1000px) {
  .infographics__cards {
    margin: -16px;
  }
}

.infographics__card {
  padding: 12px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .infographics__card {
    padding: 8px;
  }
}

.infographics__card--30 {
  flex-basis: 33.3%;
}
@media screen and (max-width: 1000px) {
  .infographics__card--30 {
    flex-basis: 50%;
    flex-basis: 100%;
  }
}

.infographics__card--50 {
  flex-basis: 50%;
}
@media screen and (max-width: 1000px) {
  .infographics__card--50 {
    flex-basis: 100%;
  }
}

.infographics__card--60 {
  flex-basis: 66.6%;
}
@media screen and (max-width: 1000px) {
  .infographics__card--60 {
    flex-basis: 100%;
  }
}

.infographics__card--100 {
  flex-basis: 100%;
}

.infographics__card__inner {
  background: #fff;
  padding: 40px 0 40px;
  height: 100%;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .infographics__card__inner {
    padding: 40px 20px 40px;
    height: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .infographics__card__inner {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 500px) {
  .infographics__card__inner {
    padding: 40px 10px;
  }
}

.infographics__title {
  margin-bottom: 32px;
  text-align: center;
  font-weight: 500;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 1.4;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .infographics__title {
    margin-bottom: 24px;
  }
}

.infographics__ico {
  max-width: 131px;
}
@media screen and (max-width: 500px) {
  .infographics__ico {
    max-width: 110px;
  }
}

.infographics__ico--center {
  margin: auto;
  margin-bottom: 20px;
}

.infographics__value {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(4rem, 4.5161290323vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #0052A5;
}

.infographics__area--flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .infographics__area--flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .infographics__area--flex {
    gap: 24px;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .infographics__area--flex {
    flex-direction: column;
    gap: 20px;
  }
}

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

.infographics__area__inner_wrap {
  display: block;
}

.infographics__card__read {
  background: #F4F9FF;
  border-radius: 22px;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 1;
  color: #333333;
  padding: 4px 12px;
  display: block;
  text-align: center;
  margin: auto;
  margin-bottom: 6px;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .infographics__card__read {
    padding: 6px 14px;
    margin-bottom: 5px;
  }
}

.infographics__area__type_ratio__bettxt {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #333333;
  padding-top: 26px;
}

.infographics__value__inner_p {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.2rem, 2.5806451613vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #333333;
  margin-left: 2px;
}

.infographics__area--grid4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 8px;
  text-align: center;
  max-width: 300px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .infographics__area--grid4 {
    gap: 24px 8px;
  }
}

.infographics__area--grid8 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 8px;
  justify-content: center;
  max-width: 610px;
  text-align: center;
  margin: auto;
}
.infographics__area--grid8 .infographics__area__inner_wrap {
  min-width: 146px;
}
@media screen and (max-width: 1000px) {
  .infographics__area--grid8 {
    max-width: 500px;
    gap: 24px 8px;
  }
  .infographics__area--grid8 .infographics__area__inner_wrap {
    min-width: 100px;
  }
}
@media screen and (max-width: 500px) {
  .infographics__area--grid8 {
    justify-content: left;
    max-width: 320px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

.infographics__area--grid5 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 8px;
  justify-content: center;
  max-width: 550px;
  text-align: center;
  margin: auto;
}
.infographics__area--grid5 .infographics__area__inner_wrap {
  min-width: 146px;
}
@media screen and (max-width: 1000px) {
  .infographics__area--grid5 {
    max-width: 400px;
    gap: 24px 8px;
  }
  .infographics__area--grid5 .infographics__area__inner_wrap {
    min-width: 100px;
  }
}
@media screen and (max-width: 500px) {
  .infographics__area--grid5 {
    justify-content: center;
    max-width: 320px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

.infographics__area--list_30 {
  max-width: 304px;
  margin: auto;
}

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

.infographics__area__list--center {
  justify-content: center;
}

.infographics__area__item {
  display: inline-block;
  padding: 8px 16px;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.4516129032vw, 1.8rem);
  line-height: 1.8;
  align-items: center;
  color: #333333;
  border-radius: 8px;
}
@media screen and (max-width: 1000px) {
  .infographics__area__item {
    padding: 6px 12px;
  }
}

.infographics__area__item--yellow {
  background: #FFFAEB;
}

.infographics__area__item--green {
  background: #EEFBF1;
}

.infographics__area__item--red {
  background: #FAF1F5;
}

.infographics__area__item--blue {
  background: #F4F9FF;
}

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

.infographics__title--100 {
  text-align: left;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .infographics__title--100 {
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  .infographics__title--100 {
    text-align: center;
  }
}

.infographics__max__flex {
  display: flex;
  align-items: center;
  gap: 56px;
}
@media screen and (max-width: 1000px) {
  .infographics__max__flex {
    gap: 20px;
    flex-direction: column;
  }
}

.infographics__card--100__img_only {
  max-width: 486px;
  margin: auto;
  margin-top: 32px;
}
@media screen and (max-width: 1000px) {
  .infographics__card--100__img_only {
    margin-top: 24px;
  }
}

/*================================================
infographics----END
==================================================*/
.lower_ver_top .vaguely_light--main {
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .lower_ver_top .vaguely_light--main {
    transform: translate(-25%, -50%);
  }
}

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

.lower_ver_top {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  .lower_ver_top {
    margin-bottom: 96px;
  }
}

.sustainability_section {
  padding: 64px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .sustainability_section {
    padding: 56px 40px;
  }
}
@media screen and (max-width: 500px) {
  .sustainability_section {
    padding: 48px 20px;
  }
}

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

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

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

.sustainability_columns__img {
  flex-basis: 37.31%;
}

.sustainability_columns__txt {
  flex-basis: 58.2%;
}
@media screen and (max-width: 1000px) {
  .sustainability_columns__txt {
    margin-top: 40px;
  }
  .sustainability_columns__txt.sustainability_columns__txt--ig {
    margin-top: 0;
  }
}

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

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

.sustainability_sdgs_img {
  max-width: 120px;
}
@media screen and (max-width: 500px) {
  .sustainability_sdgs_img {
    max-width: 96px;
  }
}

.sustainability_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media screen and (max-width: 1000px) {
  .sustainability_cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.sustainability_card__txt {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .sustainability_card__txt {
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: left;
  }
}
@media screen and (max-width: 1000px) {
  .sustainability_card__txt {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .sustainability_card__txt {
    font-size: 1.3rem;
  }
}

.sustainability_columns__banner {
  display: block;
  max-width: 352px;
  margin-bottom: 16px;
}

.lower_banner--sustainability {
  margin-top: 160px;
}
@media screen and (max-width: 1000px) {
  .lower_banner--sustainability {
    margin-top: 112px;
  }
}

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

.lower_contents {
  flex-basis: 73.33%;
}
@media screen and (max-width: 1000px) {
  .lower_contents {
    margin-top: 120px;
  }
}

.company_content + .company_content {
  margin-top: 160px;
}
@media screen and (max-width: 1000px) {
  .company_content + .company_content {
    margin-top: 112px;
  }
}

.lower__top {
  margin-top: 48px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

.lower__top__img {
  max-width: 23px;
}

.lower__top__txt {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 110%;
  letter-spacing: -0.05em;
  color: #333333;
}

.company_sp_headline {
  position: relative;
  display: block;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  color: #333333;
  padding-left: 12px;
  margin-bottom: 40px;
}
.company_sp_headline br {
  display: block;
}

.company_sp_headline::before {
  content: "";
  border-radius: 50%;
  background: #0052A5;
  aspect-ratio: 1/1;
  width: 4px;
  height: auto;
  position: absolute;
  left: 0;
  top: 16px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .company_sp_headline::before {
    top: 14px;
  }
}

/*================================================
company__main----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
lower_flex__list----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
@media screen and (min-width: 1001px) {
  .lower_flex__list__main {
    position: sticky;
    left: 0;
    top: 140px;
  }
}
@media screen and (max-width: 1000px) {
  .lower_flex__list__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    max-width: 340px;
    gap: 24px 0;
    flex-direction: column;
    max-height: 180px;
  }
}
@media screen and (max-width: 500px) {
  .lower_flex__list__main {
    max-width: 330px;
  }
}

.lower_flex__list__item {
  display: block;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .lower_flex__list__item {
    flex-basis: 50%;
    padding: 0 8px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 500px) {
  .lower_flex__list__item {
    padding: 0 0px;
  }
}

@media screen and (min-width: 1001px) {
  .lower_flex__list__item + .lower_flex__list__item {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1000px) and (max-width: 1400px) {
  .lower_flex__list__item + .lower_flex__list__item {
    margin-top: 16px;
  }
}
.lower_flex__list__link {
  position: relative;
  display: block;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  color: #333333;
  padding-left: 12px;
}
@media screen and (min-width: 1001px) {
  .lower_flex__list__link {
    opacity: 30%;
  }
}

.lower_flex__list__link::before {
  content: "";
  border-radius: 50%;
  background: #0052A5;
  aspect-ratio: 1/1;
  width: 4px;
  height: auto;
  position: absolute;
  left: 0;
  top: 16px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .lower_flex__list__link::before {
    top: 14px;
  }
}

@media screen and (min-width: 1001px) {
  .lower_flex__list__link:hover,
  .lower_flex__list__link.active {
    opacity: 1;
  }
  .lower_flex__list__link:hover::before,
  .lower_flex__list__link.active::before {
    transform: scale(2, 2);
  }
}
/*------------------------------------------------
lower_flex__list----SP
------------------------------------------------*/
/*================================================
lower_flex__list----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
company_message----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.company_message .vaguely_light--main {
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .company_message .vaguely_light--main {
    transform: translate(-50%, -50%);
  }
}

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

.company_message__name {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  justify-content: flex-end;
}
.company_message__name .company_message__class {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1;
  color: #333333;
}
.company_message__name .company_message__name__main {
  font-weight: 500;
  font-size: clamp(2.2rem, 1.935483871vw, 2.4rem);
  line-height: 1;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .company_message__name {
    gap: 14px;
  }
}

.company_message__img {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .company_message__img {
    margin-top: 64px;
  }
}

/*================================================
company_message----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
company_philosophy----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.company_philosophy__img__columns {
  display: flex;
  justify-content: space-between;
  gap: 0px;
}
@media screen and (max-width: 1200px) {
  .company_philosophy__img__columns {
    display: block;
  }
}

.company_philosophy__img {
  flex-basis: 496px;
}

.company_philosophy__readline,
.company_philosophy__readline p {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 1.6;
  color: #333333;
  text-align: left;
}
.company_philosophy__readline strong,
.company_philosophy__readline p strong {
  color: #0052A5;
  font-weight: 500;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .company_philosophy__readline,
  .company_philosophy__readline p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1200px) {
  .company_philosophy__wrap {
    padding-bottom: 32px;
    border-bottom: solid 1px #DEDCD8;
  }
  .company_philosophy__wrap + .company_philosophy__wrap {
    padding-top: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .company_philosophy__txt {
    margin-top: 32px;
  }
}
.company_philosophy__mob_headline {
  margin-bottom: 24px;
  display: block;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 1201px) {
  .company_philosophy__mob_headline {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .company_philosophy__readline1 {
    position: relative;
    padding: 27px 0;
  }
  .company_philosophy__readline1::before {
    content: "";
    background: #DEDCD8;
    width: 550px;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .company_philosophy__readline2 {
    position: relative;
    padding: 36px 0;
  }
  .company_philosophy__readline2::before {
    content: "";
    background: #DEDCD8;
    width: 462px;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .company_philosophy__readline3 {
    padding-top: 20px;
  }
}
/*================================================
company_philosophy----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
company_history----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.hidden-view {
  display: none;
}

.hidden-view.open {
  display: table-row;
}

.lower_btn__link--company_history {
  cursor: pointer;
}
.lower_btn__link--company_history .lower_btn_arrow {
  aspect-ratio: 14/22;
  width: 14px;
  height: auto;
  display: block;
  overflow: hidden;
}

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

.lower_btn__link--company_history:hover svg:first-of-type,
.lower_btn__link--company_history.open svg:first-of-type {
  opacity: 1;
  left: 50%;
  transform: rotate(180deg) translate(50%, 50%);
}
.lower_btn__link--company_history:hover svg:last-of-type,
.lower_btn__link--company_history.open svg:last-of-type {
  left: -150%;
}

.lower_btn__link--company_history::before {
  content: "すべて見る";
}

.lower_btn__link--company_history.open::before {
  content: "沿革を閉じる";
}

/*================================================
company_history----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
company_access----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.company_access__map {
  margin-bottom: 32px;
}

/*================================================
company_access----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
archive----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.search_content {
  padding-top: clamp(32px, 4vw, 64px);
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 64px);
  padding-bottom: clamp(32px, 4vw, 64px);
  background-color: #fff;
  box-sizing: border-box;
  margin-top: clamp(32px, 2.5vw, 40px);
  margin-bottom: 48px;
}

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

@media screen and (min-width: 501px) {
  .search_block__side {
    display: flex;
    align-items: flex-start;
    gap: 48px;
  }
}
@media screen and (max-width: 1000px) {
  .search_block__side {
    flex-direction: column;
    gap: 24px;
  }
}

.search_block__caption {
  display: block;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.4;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  min-width: 4em;
}
.search_block__caption::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * (0.5em - 1px));
}
.search_block__caption::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
}
@media screen and (max-width: 500px) {
  .search_block__caption {
    margin-bottom: 1em;
  }
}

.search_block__inner {
  flex: 1;
}

.search_block__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 501px) {
  .search_block__list {
    gap: 8px;
  }
}
@media screen and (max-width: 500px) {
  .search_block__list {
    gap: 8px;
  }
}

.search_label {
  font-size: clamp(1.5rem, 1.6vw, 1.6rem);
  padding: 8px 24px;
  box-sizing: border-box;
  border-radius: 50px;
  overflow: clip;
  transition-property: all;
  display: block;
  line-height: 1.4;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 400;
  cursor: pointer;
}
@media screen and (min-width: 1001px) {
  .search_label {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .search_label {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .search_label {
    padding: 6px 20px;
  }
}
.search_label:hover, .search_label.search_active {
  color: #fff;
}

.search_recruit__label {
  background-color: #F4F9FF;
}
.search_recruit__label:hover, .search_recruit__label.search_active {
  background-color: #0052A5;
}

.search_area__label {
  background-color: #EEFBF1;
}
.search_area__label:hover, .search_area__label.search_active {
  background-color: #20AC42;
}

.search_job__label {
  background-color: #FFFAEB;
}
.search_job__label:hover, .search_job__label.search_active {
  background-color: #E7CC7B;
}

.search_btn {
  display: none !important;
}

.search_buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.search_submit {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 56px;
  overflow: clip;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  padding-top: 0.8125em;
  padding-left: 1.75em;
  padding-right: 1.75em;
  padding-bottom: 0.8125em;
  color: #333;
  box-sizing: border-box;
  cursor: pointer;
  transition-property: all;
  margin-top: 32px;
}
@media screen and (min-width: 1001px) {
  .search_submit {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .search_submit {
    transition-duration: 300ms;
  }
}
.search_submit:hover {
  background-color: #FBF0D9;
}

.search_submit__ico {
  display: block;
  aspect-ratio: 1/1;
  max-width: 16px;
  width: 100%;
  height: auto;
}

.search_submit__label {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
}

.search_reset {
  font-size: 1.4rem;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition-property: all;
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (min-width: 1001px) {
  .search_reset {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .search_reset {
    transition-duration: 300ms;
  }
}
.search_reset:hover {
  color: #20AC42;
}

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

.requirements_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #fff;
  padding: 43px 40px;
  border: solid 1px #DEDCD8;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .requirements_link {
    padding: 32px 32px;
  }
}
@media screen and (max-width: 1000px) {
  .requirements_link {
    padding: 32px 20px;
  }
}
.requirements_link:hover {
  opacity: 1;
  background-color: #FBF0D9;
}
.requirements_link:hover svg:first-of-type {
  left: 150%;
}
.requirements_link:hover svg:last-of-type {
  left: 50%;
}

.requirements_link__caption {
  display: block;
  font-size: clamp(1.8rem, 1.935483871vw, 2.4rem);
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 24px;
}
.requirements_link__caption::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * (0.5em - 1px));
}
.requirements_link__caption::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
@media screen and (max-width: 1000px) {
  .requirements_link__caption {
    margin-bottom: 16px;
  }
}

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

.requirements_tag {
  display: block;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  border-radius: 50px;
  overflow: clip;
  line-height: 1.8;
  font-weight: 400;
  padding-left: 1.0666666667em;
  padding-right: 1.0666666667em;
}

.requirements_tag__type {
  background-color: #F4F9FF;
}

.requirements_tag__area {
  background-color: #EEFBF1;
}

.requirements_tag__job {
  background-color: #FFFAEB;
}

.requirements_list_arrow {
  position: absolute;
  right: 40px;
  aspect-ratio: 45/27;
  width: 45px;
  height: auto;
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 501px) {
  .requirements_list_arrow {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1000px) {
  .requirements_list_arrow {
    right: 20px;
    width: 32px;
  }
}
@media screen and (max-width: 500px) {
  .requirements_list_arrow {
    bottom: 24px;
  }
}
.requirements_list_arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .requirements_list_arrow svg {
    width: 32px;
  }
}
.requirements_list_arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.requirements_list_arrow svg:last-of-type {
  left: -150%;
}

/*================================================
archive----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
single----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.s_requirements_catch {
  position: relative;
}
.s_requirements_catch::before {
  content: "";
  background: #fff;
  width: 100%;
  height: 180px;
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1000px) {
  .s_requirements_catch::before {
    height: 320px;
  }
}

.s_requirements_catch__wrap {
  padding: 80px 80px 0;
  background: #fff;
  margin: auto;
  max-width: 880px;
  margin-top: -160px;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .s_requirements_catch__wrap {
    padding: 56px 40px 0;
    margin-top: -132px;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media screen and (max-width: 500px) {
  .s_requirements_catch__wrap {
    margin-top: 0px;
    padding: 48px 0 0;
    max-width: 100%;
  }
}

.lower__readline__s_requirements_catch__wrap {
  margin-bottom: 16px;
}
@media screen and (max-width: 1000px) {
  .lower__readline__s_requirements_catch__wrap {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 500px) {
  .lower__readline__s_requirements_catch__wrap {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 500px) {
  .s_requirements_catch__img img {
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.s_requirements_top {
  padding: 160px 0 120px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .s_requirements_top {
    padding: 112px 0 96px;
  }
}

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

.s_requirements_top__img {
  flex-basis: 46%;
}

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

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

.s_requirements_point {
  padding: 120px 0;
  background: #FBF0D9;
}
@media screen and (max-width: 1000px) {
  .s_requirements_point {
    padding: 96px 0;
  }
}

.lower__readline__s_requirements_point {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .lower__readline__s_requirements_point {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 500px) {
  .lower__readline__s_requirements_point {
    text-align: left;
  }
}

.s_requirements_point__cards {
  display: flex;
  margin: -24px;
  flex-wrap: wrap;
  justify-content: center;
}

.s_requirements_point__card {
  flex-basis: 25%;
  padding: 12px;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .s_requirements_point__card {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .s_requirements_point__card {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 500px) {
  .s_requirements_point__card {
    flex-basis: 100%;
  }
}

.s_requirements_point__wrap {
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 500px) {
  .s_requirements_point__wrap {
    padding: 32px 20px;
  }
}

.s_requirements_point__img {
  max-width: 128px;
  margin: auto;
}

.s_requirements_point__readline {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 1.4;
  text-align: center;
  color: #333333;
  margin: 24px 0 16px;
}
@media screen and (max-width: 1000px) {
  .s_requirements_point__readline {
    margin: 16px 0 8px;
  }
  .s_requirements_point__readline br {
    display: block;
  }
}

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

.s_requirements_table {
  background: #fff;
  margin-top: 160px;
  padding: 120px 160px;
}
@media screen and (max-width: 1000px) {
  .s_requirements_table {
    margin-top: 112px;
    padding: 96px 40px;
  }
}
@media screen and (max-width: 500px) {
  .s_requirements_table {
    padding: 96px 20px;
  }
}

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

.s_requirements_prev__link {
  margin-top: 24px;
}
.s_requirements_prev__link a {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 500;
  text-decoration: underline;
}

/*================================================
single----END
==================================================*/
.policy_block__wrap + .policy_block__wrap {
  margin-top: clamp(32px, 3.375vw, 54px);
}

.policy_block__lead {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  margin-bottom: 8px;
}

.policy_block__description {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 300;
}

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

.found_head__caption {
  display: block;
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(4.8rem, 5.1612903226vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #DEDCD8;
}

.found_head__lead {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 1.8;
  text-align: center;
  letter-spacing: -0.05em;
  color: #333333;
}

.found_menu {
  margin-top: clamp(24px, 3vw, 48px);
}
.found_menu ul ul {
  display: none !important;
}
.found_menu li {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}
.found_menu a {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  display: block;
  font-size: inherit;
  box-sizing: border-box;
  font-style: normal;
  font-weight: 500;
  color: #333333;
}
.found_menu a:hover {
  opacity: 1;
  color: #20AC42;
}
@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 32px;
    box-sizing: border-box;
    line-height: 1.8;
  }
  .found_menu li + li {
    border-left: 1px solid #DEDCD8;
  }
}
@media screen and (max-width: 1000px) {
  .found_menu li {
    text-align: center;
  }
  .found_menu li + li {
    border-top: 1px solid #DEDCD8;
  }
  .found_menu ul {
    max-width: 360px;
    margin: auto;
  }
  .found_menu a {
    padding: 10px 0;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
archive__list_wrap----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.archive__list_wrap {
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .archive__list_wrap {
    margin-bottom: 48px;
  }
}

.archive__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
@media screen and (max-width: 1000px) {
  .archive__list {
    gap: 8px;
  }
}

.archive__list__link {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  width: 168px;
  display: block;
  border: 1px solid var(--border-color, #ccc);
  color: inherit;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 1.8;
  color: #333333;
  background: #fff;
  box-sizing: border-box;
  padding: 0px 10px;
}
@media screen and (max-width: 1000px) {
  .archive__list__link {
    width: 140px;
    padding: 1px 4px;
  }
}

.archive__list__link:hover,
.current_page_item .archive__list__link {
  opacity: 1;
  background-color: var(--border-color);
  color: #fff;
}

/*================================================
archive__list_wrap----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
category----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.category_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 24px;
}
@media screen and (max-width: 1200px) {
  .category_cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
}
@media screen and (max-width: 1000px) {
  .category_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media screen and (max-width: 500px) {
  .category_cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.category_img {
  overflow: hidden;
}
.category_img img {
  aspect-ratio: 282/174;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.6s;
}

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

.category_time {
  font-family: "Shippori Mincho B1", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.1290322581vw, 1.4rem);
  color: #333333;
}

.category_cat {
  display: block;
}

.category_link {
  display: block;
}

.category_cat {
  width: 168px;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  color: #FFFFFF;
  border-radius: 40px;
  padding: 4px 5px;
}
@media screen and (max-width: 1000px) {
  .category_cat {
    padding: 3px 5px;
    width: 148px;
  }
}

.category_read__main {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.5;
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.p-main .wp-pagenavi {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .p-main .wp-pagenavi {
    margin-top: 96px;
  }
}

/*================================================
category----END
==================================================*/
.single_block {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 881px) {
  .single_block {
    max-width: 880px;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 880px) {
  .single_block {
    max-width: 880px;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .single_block {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.single_block__image {
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .single_block__image {
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 500px) {
  .single_block__image {
    margin-bottom: 32px;
  }
}

.single_block__headline {
  display: block;
  margin-bottom: 48px;
}
@media screen and (max-width: 1000px) {
  .single_block__headline {
    margin-bottom: 24px;
  }
}

.single_block__time {
  display: block;
  font-size: clamp(1.2rem, 1.2096774194vw, 1.5rem);
  color: #0c1c89;
  font-weight: 700;
}

.single_block__lead {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
}

.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 #DEDCD8;
  padding-top: 40px;
  margin-top: 160px;
}
@media screen and (max-width: 1000px) {
  .single_nav {
    padding-top: 32px;
    margin-top: 112px;
  }
}
.single_nav a {
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  font-weight: 500;
  text-decoration: underline;
  color: #333;
}
.single_nav a:hover {
  opacity: 1;
  color: #20AC42;
}

.single_nav__move {
  min-width: 56px;
}
.single_nav__move a {
  display: flex;
  gap: 16px;
  min-width: 56px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .single_nav__move a {
    gap: 10px;
  }
}
.single_nav__move a path {
  transition: all 0.3s;
  filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(384%) hue-rotate(335deg) brightness(90%) contrast(92%);
}
.single_nav__move a:hover path {
  filter: brightness(0) saturate(100%) invert(47%) sepia(84%) saturate(496%) hue-rotate(83deg) brightness(96%) contrast(81%);
}

.single_block__inner a {
  text-decoration: underline;
}
.single_block__inner a:hover {
  opacity: 1;
  color: #20AC42;
}

.post_single .single_nav {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .post_single .single_nav {
    margin-top: 96px;
  }
}/*# sourceMappingURL=customize.css.map */